@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Geist-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "Geist";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Geist-Italic-VariableFont_wght.ttf") format("truetype");
}

:root {
  --primary: #883245;
  --primary-dark: #5a1726;
  --secondary: #b9852c;
  --ink: #191C23;
  --white: #ffffff;
  --paper: #f9f8f6;
  --soft-rule: rgba(255, 255, 255, 0.14);
  --dark-rule: rgba(90, 23, 38, 0.16);
  --font-body: "Geist", sans-serif;
  --font-footer: "Geist", sans-serif;
  --font-credit: "Geist", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 4px;
}

.text-dark{
  color: var(--ink) !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(100% - 36px, 1396px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 175px 1fr 200px;
  align-items: center;
  min-height: 76px;
  padding: 0 18px;
  background: var(--primary-dark);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--white);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.brand img {
  width: 130px;
  height: auto;
}

.primary-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  height: 35px;
  /* border-left: 1px solid var(--soft-rule); */
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--soft-rule);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.primary-nav a:last-child {
  border-right: 0;
}

.primary-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 170px;
  min-height: 43px;
  border-radius: 6px;
  background: var(--white);
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-button:hover {
  background: #fff8f8;
  box-shadow: 0 12px 24px rgba(24, 27, 34, 0.18);
  color: var(--primary);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  margin-top: 0;
  padding: 0 0 84px;
  background: linear-gradient(var(--primary-dark) 0 195px, var(--white) 195px);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 784px;
  border-radius: 16px;
  background: #dfc4a8;
}

.hero-frame img {
  width: 100%;
  height: 784px;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.18) saturate(0.86);
}

.hero-panel {
  position: absolute;
  right: 26px;
  bottom: 18px;
  left: 26px;
  display: grid;
  grid-template-columns: 1fr 398px;
  align-items: center;
  gap: 50px;
  min-height: 155px;
  padding: 22px 40px 23px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.hero h1,
.standard h2,
.categories h2,
.why h2,
.footer-cta h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.09;
  letter-spacing: 0;
  text-transform: capitalize;
}

.hero h1 {
  color: var(--ink);
}

.hero h1 span,
.standard h2 span,
.categories h2 span,
.why h2 span,
.made-with h2 span,
.footer-cta h2 span {
  color: var(--primary);
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--primary-dark);
  color: var(--white);
}

.button-primary:hover {
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(90, 23, 38, 0.18);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid rgba(90, 23, 38, 0.45);
  background: transparent;
  color: var(--primary-dark);
}

.button-secondary:hover {
  border-color: var(--primary);
  background: rgba(136, 50, 69, 0.06);
  color: var(--primary);
  transform: translateY(-1px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(400px, 1.23fr) minmax(205px, 0.45fr) minmax(280px, 0.7fr);
  gap: 0 84px;
  align-items: center;
}

.standard {
  padding: 0 0 82px;
}

.standard-image {
  overflow: hidden;
  height: 228px;
  border-radius: 114px;
  background: #e4d9d0;
}

.standard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.standard-copy {
  align-self: start;
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: minmax(205px, 0.45fr) minmax(280px, 0.7fr);
  gap: 84px;
  align-items: start;
}

.standard-copy h2 {
  line-height: 1.1;
}

.standard-description,
.proof-copy p,
.why-summary,
.feature-note,
.why-overlay p,
.category-overlay p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.standard-description {
  grid-column: 2 / -1;
  max-width: 645px;
}

.proof-copy {
  align-self: center;
  display: grid;
  gap: 17px;
  max-width: 355px;
  color: var(--primary);
}

.standard .proof-copy {
  align-self: start;
  min-height: 185px;
  padding-left: 54px;
  border-left: 1px solid #181b22;
}

.proof-mark,
.dash {
  display: block;
  width: 13px;
  height: 4px;
  background: currentColor;
}

.proof-copy h3 {
  max-width: 345px;
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  text-transform: capitalize;
}

.proof-copy p {
  color: var(--ink);
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-bottom: 88px;
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.feature-card,
.category-card,
.why-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #b29a82;
}

.feature-card::after,
.why-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(54, 31, 19, 0.08), rgba(54, 31, 19, 0.36));
  pointer-events: none;
}

.feature-card img,
.category-card img,
.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.feature-card,
.category-card,
.why-card {
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.feature-card:hover,
.category-card:hover,
.why-card:hover {
  box-shadow: 0 20px 42px rgba(60, 19, 28, 0.18);
  transform: translateY(-2px);
}

.feature-card:hover img,
.category-card:hover img,
.why-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.feature-card-large {
  height: 639px;
}

.feature-stack .feature-card {
  height: 205px;
}

.feature-overlay,
.category-overlay,
.why-overlay {
  position: absolute;
  z-index: 2;
  color: var(--white);
}

.feature-overlay-large {
  inset: 45px 50px 43px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: end;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.feature-overlay-large .eyebrow {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--white);
}

.feature-overlay-large h2 {
  grid-column: 1 / -1;
  align-self: start;
  margin: 8px 0 0;
  font-size: 64px;
  font-weight: 300;
  line-height: 100%;
  text-transform: capitalize;
}

.fiber-stat {
  align-self: end;
}

.fiber-stat strong {
  display: block;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.fiber-stat strong span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.fiber-stat p {
  margin: 7px 0 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
}

.feature-note {
  align-self: end;
  max-width: 315px;
  font-size: 18px;
  line-height: 27px;
}

.feature-overlay-row {
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: end;
  gap: 36px;
  padding: 34px 40px 42px;
}

.feature-overlay-row h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.feature-overlay-row p {
  margin: 0;
  max-width: 310px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.categories {
  padding: 0 0 95px;
}

.category-intro,
.why-intro {
  display: grid;
  grid-template-columns: 1fr 372px;
  gap: 80px;
  align-items: end;
  margin-bottom: 45px;
  padding: 0 58px;
}

.category-intro h2 {
  margin-top: 16px;
  margin-left: -4px;
}

.category-intro .compact {
  align-self: center;
  gap: 20px;
}

.category-intro .compact p {
  font-size: 18px;
  line-height: 27px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.category-card {
  height: 899px;
}

.category-card-wide {
  grid-column: 1 / -1;
  height: 695px;
}

.category-overlay {
  right: 48px;
  bottom: 56px;
  left: 48px;
}

.category-overlay h3 {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.category-overlay p {
  max-width: 345px;
  font-weight: 400;
  line-height: 32px;
}

.why {
  padding: 0 0 118px;
}

.why-intro {
  margin-bottom: 38px;
}

.why-intro h2 {
  margin-top: 16px;
  margin-left: -4px;
}

.why-summary {
  max-width: 375px;
  font-size: 18px;
  line-height: 27px;
}

.why-grid {
  display: flex;
  gap: 12px;
}

.why-card {
  flex: 0.65 1 0;
  height: 621px;
  min-width: 0;
  will-change: flex, transform;
  transition: flex 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, transform 240ms ease;
}

.why-card img {
  position: absolute;
  inset: 0;
}

.why-img-expanded {
  opacity: 0;
}

.why-card:hover .why-img-expanded {
  opacity: 1;
  transform: scale(1.035);
}

.why-card:has(.why-img-expanded):hover .why-img-collapsed {
  opacity: 0;
}

.why-card-large {
  flex: 2.06 1 0;
}

.why-grid:hover .why-card {
  flex: 0.48 1 0;
}

.why-grid .why-card:hover {
  flex: 2.18 1 0;
}

.why-grid:hover .why-card:not(:hover)::after {
  background: linear-gradient(180deg, rgba(54, 31, 19, 0.18), rgba(54, 31, 19, 0.52));
}

.why-grid .why-card:hover img {
  transform: scale(1.035);
}

.why-overlay {
  inset: 41px 38px auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  column-gap: 120px;
  row-gap: 25px;
  align-items: start;
  transition: column-gap 360ms ease;
}

.why-card-large .dash,
.why-card:hover .dash {
  grid-column: 1;
  grid-row: 1;
}

.why-card-large h3,
.why-card:hover h3 {
  grid-column: 1;
  grid-row: 2;
}

.why-card-large p,
.why-card:hover p {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.why-card:not(.why-card-large) .why-overlay {
  grid-template-columns: 1fr;
  gap: 25px;
}

.why-card:not(.why-card-large) .why-overlay p,
.why-grid:hover .why-card:not(:hover) .why-overlay p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  visibility: hidden;
}

.why-card:hover .why-overlay {
  grid-template-columns: minmax(150px, 1fr) minmax(220px, 1.15fr);
  column-gap: 72px;
  row-gap: 25px;
}

.why-card:hover .why-overlay p {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.why-grid:hover .why-card:not(:hover) .why-overlay {
  grid-template-columns: 1fr;
  column-gap: 0;
}

.why-overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}

.why-overlay p {
  max-width: 360px;
  font-size: 20px;
  line-height: 28px;
  transition: max-height 300ms ease, opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.made-with {
  padding: 0 0 142px;
  text-align: center;
}

.made-with .eyebrow {
  margin-bottom: 17px;
  font-size: 13px;
  line-height: 20px;
}

.made-with .eyebrow span {
  color: var(--primary);
}

.made-with h2 {
  margin: 0 0 52px;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

.brand-slot {
  display: grid;
  min-height: 78px;
  place-items: center;
}

.brand-slot:not(:last-child) {
  border-right: 1px solid var(--dark-rule);
}

.brand-strip img {
  max-width: 136px;
  max-height: 70px;
  object-fit: contain;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.brand-slot:hover img {
  filter: contrast(1.12);
  opacity: 0.86;
  transform: translateY(-2px);
}

.brand-slot:nth-child(2) img {
  max-width: 235px;
}

.brand-slot:nth-child(3) img {
  max-width: 176px;
}

.site-footer {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(50% 50% at 50% 50%, #3c131c 0%, rgba(60, 19, 28, 0) 100%),
    var(--primary-dark);
  color: var(--white);
}

.footer-inner {
  padding: 76px 58px 58px;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr 398px;
  gap: 80px;
  align-items: center;
}

.footer-cta h2 {
  color: var(--white);
}

.footer-cta h2 span {
  color: var(--secondary);
}

.footer-cta p,
.footer-brand-block p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.footer-credit {
  font-family: var(--font-credit);
  font-weight: 400;
  line-height: 30px;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 398px;
  min-height: 42px;
  margin-top: 18px;
  border-radius: 6px;
  background: var(--secondary);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-button:hover {
  background: #d19a35;
  box-shadow: 0 14px 28px rgba(24, 27, 34, 0.18);
  transform: translateY(-1px);
}

.footer-divider {
  height: 1px;
  margin: 68px 0 58px;
  background: rgba(255, 255, 255, 0.13);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 80px;
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 31px;
}

.footer-brand img {
  width: 168px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px;
  position: relative;
  left: 4rem;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-nav h3 {
  margin: 0 0 7px;
  font-family: var(--font-footer);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: var(--secondary);
}

.footer-nav a {
  font-family: var(--font-footer);
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer-nav a:hover {
  color: #f0c36b;
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 155px 1fr 150px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .hero-panel {
    grid-template-columns: 1fr 330px;
  }

  .hero h1,
  .standard h2,
  .categories h2,
  .why h2,
  .footer-cta h2 {
    font-size: 48px;
  }

  .section-grid {
    gap: 44px;
  }

  .feature-overlay-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 32px;
  }

  .category-intro,
  .why-intro {
    padding: 0 24px;
  }

  .why-overlay {
    inset: 32px 24px auto;
    column-gap: 44px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 68px;
    padding: 0 14px;
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    width: 100%;
    border: 0;
    background: var(--primary-dark);
    box-shadow: 0 18px 30px rgba(24, 27, 34, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    z-index: 30;
  }

  .site-header.is-menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 22px;
    border-top: 1px solid var(--soft-rule);
    border-right: 0;
    font-size: 14px;
  }

  .header-button {
    width: auto;
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
  }

  .menu-toggle {
    display: inline-grid;
    align-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: 8px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: transparent;
    color: var(--white);
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
  }

  .hero {
    padding-bottom: 62px;
    background: linear-gradient(var(--primary-dark) 0 128px, var(--white) 128px);
  }

  .hero-frame {
    min-height: 610px;
  }

  .hero-frame img {
    height: 610px;
    object-position: 58% center;
  }

  .hero-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .hero h1,
  .standard h2,
  .categories h2,
  .why h2,
  .footer-cta h2 {
    font-size: 44px;
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2.4px;
  }

  .section-grid,
  .features,
  .category-intro,
  .why-intro,
  .footer-cta,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .standard {
    padding-bottom: 62px;
  }

  .section-grid {
    gap: 28px;
  }

  .standard-copy,
  .standard-description {
    grid-column: auto;
  }

  .standard-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .standard-image {
    height: 180px;
  }

  .proof-copy {
    max-width: 100%;
  }

  .standard .proof-copy {
    min-height: 0;
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid #181b22;
    border-left: 0;
  }

  .features {
    padding-bottom: 70px;
  }

  .feature-card-large {
    height: 610px;
  }

  .feature-overlay-large {
    inset: 32px 28px;
  }

  .feature-overlay-large h2 {
    font-size: 48px;
  }

  .fiber-stat strong {
    font-size: 44px;
  }

  .fiber-stat p,
  .proof-copy h3 {
    font-size: 27px;
    line-height: 34px;
  }

  .feature-overlay-row h3,
  .made-with h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .feature-overlay-row p {
    font-size: 18px;
    line-height: 27px;
  }

  .why-overlay h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .category-intro,
  .why-intro {
    gap: 24px;
    margin-bottom: 30px;
    padding: 0;
  }

  .category-grid,
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .category-card,
  .category-card-wide,
  .why-card {
    flex: none;
    height: auto;
    min-height: 520px;
  }

  .category-card-wide,
  .why-card-large {
    grid-column: 1 / -1;
  }

  .category-card img,
  .why-card img {
    position: absolute;
    inset: 0;
  }

  .category-card img {
    object-position: left center;
  }

  .why-overlay {
    inset: 28px 24px auto;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: calc(100% - 48px);
    column-gap: 0;
  }

  .why-card:hover .why-overlay,
  .why-grid:hover .why-card:not(:hover) .why-overlay {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .why-card-large .dash,
  .why-card:hover .dash,
  .why-card.is-active .dash,
  .why-card-large h3,
  .why-card:hover h3,
  .why-card.is-active h3,
  .why-card-large p,
  .why-card:hover p,
  .why-card.is-active p {
    grid-column: 1;
    grid-row: auto;
  }

  .why-card-large .why-overlay p,
  .why-card:not(.why-card-large) .why-overlay p,
  .why-card:hover .why-overlay p,
  .why-grid:hover .why-card:not(:hover) .why-overlay p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(6px);
    visibility: hidden;
  }

  .why-card.is-active .why-overlay p {
    max-height: 180px;
    max-width: 100%;
    opacity: 1;
    overflow: visible;
    transform: translateY(0);
    visibility: visible;
  }

  .why-card.is-active .why-img-expanded {
    opacity: 1;
    transform: scale(1.035);
  }

  .why-card.is-active:has(.why-img-expanded) .why-img-collapsed {
    opacity: 0;
  }

  .made-with {
    padding-bottom: 82px;
  }

  .site-footer {
    border-radius: 6px 6px 0 0;
  }

  .footer-inner {
    padding: 54px 24px 44px;
  }

  .footer-cta,
  .footer-bottom {
    gap: 34px;
  }

  .footer-button {
    width: 100%;
  }

  .footer-divider {
    margin: 44px 0 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .footer-nav a {
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 24px, 420px);
  }

  .brand img {
    width: 132px;
  }

  .header-button {
    display: none;
  }

  .hero-frame {
    min-height: 570px;
  }

  .hero-frame img {
    height: 570px;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero h1,
  .standard h2,
  .categories h2,
  .why h2,
  .footer-cta h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .standard-description,
  .proof-copy p,
  .why-summary,
  .feature-note,
  .why-overlay p,
  .category-overlay p {
    font-size: 17px;
    line-height: 26px;
  }

  .standard-image {
    height: 138px;
    border-radius: 72px;
  }

  .feature-card-large {
    height: 570px;
  }

  .feature-stack .feature-card {
    height: 260px;
  }

  .feature-overlay-large {
    grid-template-columns: 1fr;
    inset: 25px 22px;
    align-items: start;
  }

  .feature-overlay-large h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .fiber-stat strong {
    font-size: 36px;
  }

  .fiber-stat p,
  .proof-copy h3 {
    font-size: 24px;
    line-height: 31px;
  }

  .fiber-stat,
  .feature-note {
    align-self: end;
  }

  .feature-overlay-row {
    padding: 24px;
  }

  .feature-overlay-row h3 {
    font-size: 30px;
    line-height: 1.05;
  }

  .category-grid,
  .why-grid,
  .brand-strip,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card-wide {
    min-height: 525px;
  }

  .category-card-wide {
    min-height: 360px;
  }

  .category-overlay {
    right: 26px;
    bottom: 34px;
    left: 26px;
  }

  .why-card {
    min-height: 420px;
  }

  .why-card-large {
    min-height: 520px;
  }

  .made-with h2 {
    font-size: 29px;
    line-height: 1.12;
  }

  .footer-nav h3 {
    font-size: 13px;
  }

  .footer-nav a {
    font-size: 16px;
    line-height: 1.15;
  }

  .brand-strip {
    gap: 70px;
  }

  .brand-slot {
    min-height: auto;
  }

  .brand-slot:not(:last-child) {
    border-right: 0;
  }

  .footer-nav {
    gap: 32px;
    left: 0;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .standard h2,
  .categories h2,
  .why h2,
  .footer-cta h2 {
    font-size: 31px;
  }

  .hero-panel {
    gap: 16px;
    padding: 16px;
  }

  .button,
  .footer-button {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 2px;
  }

  .standard-description,
  .proof-copy p,
  .why-summary,
  .feature-note,
  .why-overlay p,
  .category-overlay p {
    font-size: 16px;
    line-height: 25px;
  }

  .proof-copy h3 {
    font-size: 22px;
    line-height: 29px;
  }

  .feature-overlay-large h2 {
    font-size: 34px;
  }

  .feature-overlay-row h3 {
    font-size: 28px;
  }

  .feature-overlay-row p {
    font-size: 16px;
    line-height: 25px;
  }

  .why-overlay h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card-large {
    min-height: 340px;
  }

  .why-card-large {
    min-height: 430px;
  }

  .why-overlay {
    inset: 24px 20px auto;
    max-width: calc(100% - 40px);
  }

  .made-with h2 {
    font-size: 27px;
  }

  .footer-cta p,
  .footer-brand-block p,
  .footer-nav a {
    font-size: 15px;
    line-height: 23px;
  }
}
