:root {
  --cream: #f7f2e8;
  --deep-green: #263923;
  --forest: #13291c;
  --olive: #6f7651;
  --terracotta: #be5a38;
  --sand: #ded2be;
  --ink: #22251f;
  --off-white: #fcfaf6;
  --gold: #d4b767;
  --line: rgba(38, 57, 35, 0.16);
  --soft-shadow: 0 18px 44px rgba(41, 43, 31, 0.12);
  --tight-shadow: 0 6px 18px rgba(28, 35, 24, 0.15);
  --shell: min(1280px, calc(100% - 40px));
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--off-white);
  color: var(--deep-green);
  padding: 12px 20px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  color: var(--off-white);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  line-height: 0.74;
  letter-spacing: 0.055em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand small {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.65vw, 28px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-nav a {
  position: relative;
  padding-block: 10px;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 23px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--tight-shadow);
}

.button:not(:disabled):active {
  transform: scale(0.95);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

.button--small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 12px;
}

.button--large {
  min-height: 52px;
  padding: 15px 26px;
}

.button--full {
  width: 100%;
}

.button--terracotta {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: white;
}

.button--terracotta:not(:disabled):hover {
  background: #a94427;
}

.button--green {
  border-color: var(--deep-green);
  background: var(--deep-green);
  color: white;
}

.button--green:not(:disabled):hover {
  background: var(--forest);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(19, 41, 28, 0.25);
  color: white;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(8, 20, 13, 0.42);
  box-shadow: inset 720px 0 220px rgba(8, 20, 13, 0.54);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 92px;
}

.hero-copy-block {
  width: min(650px, 57vw);
  padding-block: 78px 58px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow--gold {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.bundle-copy h2,
.companion-copy h2,
.install-copy h2,
.mission-copy h2,
.faq-content h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(60px, 6.6vw, 104px);
}

.hero h1 span {
  color: #e77a50;
}

.hero-copy {
  max-width: 590px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.checkout-wrap {
  display: grid;
  gap: 7px;
}

.checkout-wrap--center {
  justify-items: center;
}

.checkout-status {
  max-width: 240px;
  margin: 0;
  color: rgba(34, 37, 31, 0.66);
  font-size: 12px;
  line-height: 1.35;
}

.checkout-status--dark {
  color: rgba(255, 255, 255, 0.67);
}

.benefit-bar {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.benefit-list {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.benefit-list span {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding-inline: 18px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.benefit-list span:first-child {
  border-left: 1px solid var(--line);
}

.apps-section,
.fiber-calculator-section,
.how-section,
.faq-section {
  padding-block: 102px;
}

.apps-section > .shell {
  width: min(1500px, calc(100% - 48px));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--deep-green);
  font-size: clamp(40px, 4vw, 62px);
}

.section-heading > p:last-child {
  margin: 14px 0 0;
  color: rgba(34, 37, 31, 0.66);
  font-size: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(76, 71, 49, 0.15);
  border-radius: 18px;
  background: #efe5d4;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.68) inset, 0 10px 28px rgba(63, 53, 36, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--soft-shadow);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 10 / 11;
  overflow: hidden;
  background: var(--sand);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.035);
}

.app-seal {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
  box-shadow: var(--tight-shadow);
}

.product-number {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 42px;
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.92);
  color: var(--deep-green);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.product-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 22px;
}

.product-kicker {
  min-height: 34px;
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  color: var(--deep-green);
  font-family: var(--display);
  font-size: clamp(31px, 2.15vw, 37px);
  font-weight: 600;
  line-height: 1;
}

.product-copy > p:not(.product-kicker) {
  margin: 17px 0 19px;
  color: rgba(34, 37, 31, 0.74);
  font-size: 14.5px;
  line-height: 1.58;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.badges span {
  border: 1px solid rgba(38, 57, 35, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--deep-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-buy {
  margin-top: auto;
}

.product-buy > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
}

.product-buy .checkout-status {
  margin-inline: auto;
  text-align: center;
}

.product-buy .button {
  min-height: 55px;
  font-size: 14px;
}

.bundle-section {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: white;
  padding-block: 110px 42px;
}

.bundle-section::before {
  position: absolute;
  top: -280px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(212, 183, 103, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(212, 183, 103, 0.025), 0 0 0 180px rgba(212, 183, 103, 0.018);
  content: "";
}

.bundle-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
}

.bundle-copy {
  text-align: center;
}

.bundle-copy h2 {
  color: #f4dfaa;
  font-size: clamp(46px, 5vw, 72px);
}

.bundle-subhead {
  max-width: 550px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.bundle-price {
  display: grid;
  justify-items: center;
  margin: 25px 0 22px;
}

.bundle-price span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}

.bundle-price del {
  margin-left: 5px;
}

.bundle-price strong {
  font-family: var(--display);
  font-size: 77px;
  line-height: 1;
}

.bundle-price small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.bundle-note {
  max-width: 520px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.bundle-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.collection-stack {
  position: relative;
  width: min(620px, 100%);
  height: 380px;
  perspective: 900px;
}

.collection-card {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 138px;
  min-height: 225px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: #203827;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  padding: 16px;
  transform-origin: center 125%;
}

.collection-card img {
  width: 88px;
  height: 88px;
  border-radius: 21px;
  box-shadow: var(--tight-shadow);
}

.collection-card span {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.collection-card--1 { z-index: 1; transform: translate(-142%, -42%) rotate(-20deg); }
.collection-card--2 { z-index: 2; transform: translate(-112%, -53%) rotate(-12deg); }
.collection-card--3 { z-index: 3; transform: translate(-80%, -59%) rotate(-5deg); }
.collection-card--4 { z-index: 4; transform: translate(-49%, -60%) rotate(4deg); }
.collection-card--5 { z-index: 5; transform: translate(-16%, -53%) rotate(12deg); }
.collection-card--6 { z-index: 6; transform: translate(16%, -42%) rotate(20deg); }

.value-seal {
  position: absolute;
  z-index: 8;
  top: 18px;
  right: 2px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  transform: rotate(9deg);
  border: 5px double var(--forest);
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  line-height: 0.98;
  text-align: center;
}

.bundle-benefits {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 38px;
  padding-top: 38px;
}

.bundle-benefits span {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  padding-inline: 12px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.bundle-benefits span:last-child {
  border-right: 0;
}

.companion-section {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--off-white);
}

.companion-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.companion-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 80px;
  padding-block: 85px;
}

.companion-product {
  display: grid;
  place-items: center;
}

.companion-card {
  width: min(340px, 80%);
  display: grid;
  justify-items: center;
  transform: rotate(-7deg);
  border: 9px solid #101c13;
  border-radius: 38px;
  background: var(--deep-green);
  box-shadow: 0 30px 65px rgba(28, 35, 24, 0.26);
  color: white;
  padding: 28px 24px 25px;
}

.companion-card p {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.08em;
}

.companion-card img {
  width: 165px;
  height: 165px;
  border-radius: 34px;
}

.companion-card strong {
  margin-top: 22px;
  font-size: 16px;
  text-align: center;
}

.companion-card span {
  margin-top: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep-green);
  padding: 8px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.companion-copy {
  border-radius: 18px;
  background: rgba(247, 242, 232, 0.92);
  box-shadow: var(--soft-shadow);
  padding: 46px;
  backdrop-filter: blur(4px);
}

.companion-copy h2 {
  color: var(--deep-green);
  font-size: clamp(48px, 5vw, 72px);
}

.companion-copy > p:not(.eyebrow):not(.companion-note) {
  margin: 20px 0;
  color: rgba(34, 37, 31, 0.75);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 19px;
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 600;
}

.feature-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  content: "";
}

.companion-note {
  border-top: 1px solid var(--line);
  margin: 22px 0 0;
  padding-top: 18px;
  color: rgba(34, 37, 31, 0.64);
  font-size: 13px;
}

.fiber-calculator-section {
  background: var(--cream);
}

.calculator-heading {
  max-width: 850px;
}

.calculator-heading h2 {
  color: var(--deep-green);
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.calculator-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  overflow: hidden;
  border: 1px solid rgba(38, 57, 35, 0.15);
  border-radius: 24px;
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
}

.calculator-form {
  padding: clamp(30px, 4vw, 56px);
}

.calculator-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}

.calculator-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.calculator-field > span {
  color: var(--deep-green);
  font-size: 15px;
  font-weight: 700;
}

.calculator-field input,
.calculator-field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(38, 57, 35, 0.28);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 13px 15px;
  font: 600 16px/1.2 var(--sans);
}

.calculator-field input:focus,
.calculator-field select:focus {
  border-color: var(--terracotta);
  outline: 3px solid rgba(190, 90, 56, 0.16);
  outline-offset: 1px;
}

.calculator-field small {
  color: rgba(34, 37, 31, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.input-with-unit {
  position: relative;
}

.input-with-unit input {
  padding-right: 48px;
}

.input-with-unit > span {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--olive);
  font-weight: 700;
}

.calculator-submit {
  min-height: 56px;
  margin-top: 30px;
  padding-inline: 28px;
  font-size: 14px;
}

.calculator-error {
  margin: 14px 0 0;
  color: #9b2f20;
  font-weight: 700;
}

.calculator-disclaimer {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(34, 37, 31, 0.64);
  font-size: 13px;
}

.calculator-results {
  display: grid;
  align-content: center;
  background: var(--deep-green);
  color: white;
  padding: clamp(34px, 5vw, 64px);
}

.calculator-results-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calculator-result-primary > span,
.calculator-result-grid span,
.fiber-progress-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.calculator-result-primary > strong {
  display: block;
  margin-top: 4px;
  color: #f4dfaa;
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
}

.calculator-result-primary small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.calculator-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
  margin-block: 28px;
  padding-block: 24px;
}

.calculator-result-grid strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.fiber-progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.fiber-progress-copy strong {
  color: var(--gold);
}

.fiber-progress {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  margin-top: 10px;
}

.fiber-progress > span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--terracotta);
  transition: width 240ms ease;
}

.calculator-reference-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.calculator-teaser {
  display: grid;
  justify-items: center;
  gap: 18px;
  border-radius: 18px;
  background: var(--sand);
  margin-top: 28px;
  padding: 30px;
  text-align: center;
}

.calculator-teaser > p {
  margin: 0;
  color: var(--deep-green);
  font-size: 19px;
  font-weight: 700;
}

.calculator-teaser .checkout-status {
  max-width: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 70px;
}

.step {
  position: relative;
  border-right: 1px solid var(--line);
  padding: 14px 34px 25px;
  text-align: center;
}

.step:last-child {
  border-right: 0;
}

.step span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--deep-green);
  font-family: var(--display);
  font-size: 28px;
}

.step h3 {
  margin: 0;
  color: var(--deep-green);
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: 0.04em;
}

.step p {
  margin: 10px 0 0;
  color: rgba(34, 37, 31, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.install-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border-radius: 18px;
  background: var(--deep-green);
  box-shadow: var(--soft-shadow);
  color: white;
}

.install-photo {
  min-height: 500px;
}

.install-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.install-copy {
  display: grid;
  align-content: center;
  padding: clamp(42px, 6vw, 88px);
}

.install-copy h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.install-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.73);
}

.device-instructions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.device-instructions div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 16px;
}

.device-instructions strong,
.device-instructions span {
  display: block;
}

.device-instructions strong {
  color: var(--gold);
  font-size: 14px;
}

.device-instructions span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.mission-section {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--sand);
}

.mission-image {
  min-height: 650px;
}

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

.mission-copy {
  display: grid;
  align-content: center;
  padding: clamp(50px, 8vw, 125px);
}

.mission-copy h2 {
  max-width: 570px;
  color: var(--deep-green);
  font-size: clamp(47px, 5vw, 72px);
}

.mission-copy > p:last-child {
  max-width: 530px;
  margin-top: 25px;
  color: rgba(34, 37, 31, 0.7);
  font-size: 17px;
}

.faq-section {
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(32px, 5vw, 80px);
}

.faq-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  align-self: start;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.faq-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-content {
  align-self: start;
}

.faq-content h2 {
  margin-bottom: 28px;
  color: var(--deep-green);
  font-size: clamp(42px, 4.4vw, 64px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--deep-green);
  padding: 16px 46px 16px 0;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 8px;
  content: "+";
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 720px;
  padding: 0 50px 18px 0;
  color: rgba(34, 37, 31, 0.67);
  font-size: 16px;
  line-height: 1.6;
}

.final-cta {
  background: var(--forest);
  color: white;
  padding-block: 82px;
  text-align: center;
}

.final-cta h2 {
  color: #f4dfaa;
  font-size: clamp(54px, 6vw, 86px);
}

.final-cta > .shell > p:not(.eyebrow) {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.site-footer {
  background: #0c1f15;
  color: rgba(255, 255, 255, 0.74);
  padding-block: 68px 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.8fr;
  gap: 60px;
}

.brand--footer {
  color: white;
}

.footer-brand > p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.footer-grid h3 {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-block: 9px;
  font-size: 15px;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 55px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

@media (max-width: 1379px) and (min-width: 801px) {
  .apps-section > .shell {
    width: min(1240px, calc(100% - 48px));
  }

  .product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
  }

  .product-card {
    grid-column: span 2;
  }

  .product-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .product-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 1120px) {
  .header-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bundle-visual {
    min-height: 390px;
  }

  .companion-grid {
    gap: 40px;
  }

  .companion-copy {
    padding: 36px;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    min-height: 76px;
  }

  .header-cta {
    max-width: 150px;
    min-height: 38px;
    padding: 8px 13px;
    font-size: 9px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background: rgba(8, 20, 13, 0.61);
    box-shadow: none;
  }

  .hero-photo {
    object-position: 66% center;
  }

  .hero-inner {
    padding-top: 76px;
  }

  .hero-copy-block {
    width: 100%;
    padding-block: 82px 50px;
  }

  .hero h1 {
    font-size: clamp(50px, 14vw, 76px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .benefit-list {
    grid-template-columns: 1fr 1fr;
    padding-block: 10px;
  }

  .benefit-list span {
    min-height: 46px;
    border: 0;
    font-size: 10px;
  }

  .apps-section,
  .fiber-calculator-section,
  .how-section,
  .faq-section {
    padding-block: 75px;
  }

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

  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: auto;
  }

  .calculator-panel {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    min-height: 440px;
  }

  .bundle-section {
    padding-top: 80px;
  }

  .collection-stack {
    transform: scale(0.88);
  }

  .bundle-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }

  .bundle-benefits span:nth-child(2) {
    border-right: 0;
  }

  .companion-section {
    min-height: auto;
  }

  .companion-photo {
    object-position: 67% center;
  }

  .companion-grid {
    grid-template-columns: 1fr;
    padding-block: 65px;
  }

  .companion-card {
    width: 270px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }

  .step:nth-child(2) {
    border-right: 0;
  }

  .install-band {
    grid-template-columns: 1fr;
  }

  .install-photo {
    min-height: 340px;
    max-height: 420px;
  }

  .mission-section {
    grid-template-columns: 1fr;
  }

  .mission-image {
    min-height: 440px;
    max-height: 500px;
  }

  .mission-copy {
    padding: 64px 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-photo {
    aspect-ratio: 16 / 10;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: clamp(47px, 13.8vw, 64px);
  }

  .hero-copy {
    margin-top: 21px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 23px;
  }

  .button--large {
    font-size: 11px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image-wrap {
    aspect-ratio: 1.2 / 1;
  }

  .product-copy {
    padding: 22px;
  }

  .product-kicker {
    min-height: auto;
  }

  .product-copy h3 {
    font-size: 36px;
  }

  .product-copy > p:not(.product-kicker) {
    font-size: 15px;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .calculator-heading h2 {
    font-size: 48px;
  }

  .calculator-form,
  .calculator-results {
    padding: 30px 22px;
  }

  .calculator-result-primary > strong {
    font-size: 62px;
  }

  .calculator-teaser {
    padding: 26px 18px;
  }

  .calculator-teaser .button {
    width: 100%;
  }

  .bundle-copy h2 {
    font-size: 43px;
  }

  .bundle-subhead {
    font-size: 15px;
  }

  .bundle-visual {
    min-height: 330px;
    margin-inline: -20px;
  }

  .collection-stack {
    width: 620px;
    transform: scale(0.58);
  }

  .value-seal {
    top: 24px;
    right: 2px;
    width: 76px;
    height: 76px;
    font-size: 16px;
  }

  .companion-copy {
    padding: 30px 24px;
  }

  .companion-copy h2 {
    font-size: 47px;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .step,
  .step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-block: 15px 30px;
  }

  .step:last-child {
    border-bottom: 0;
  }

  .install-copy {
    padding: 42px 24px;
  }

  .install-copy h2 {
    font-size: 43px;
  }

  .device-instructions {
    grid-template-columns: 1fr;
  }

  .mission-copy h2,
  .faq-content h2 {
    font-size: 43px;
  }

  .faq-photo {
    aspect-ratio: 4 / 3;
  }

  .final-cta {
    padding-block: 70px;
  }

  .final-cta h2 {
    font-size: 55px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Mobile launch hotfix — 2026-08-09 ===
   Frontend-only. Keeps Worker runtime, Stripe variables, entitlement routes,
   and all six PWA folders unchanged. */
@media (max-width: 800px) {
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  .shell,
  .apps-section > .shell { width: min(100% - 28px, 680px); max-width: 100%; }

  .button,
  .checkout-wrap,
  .checkout-wrap .button { max-width: 100%; }
  .button { white-space: normal; overflow-wrap: anywhere; }

  .bundle-grid,
  .bundle-copy,
  .bundle-visual,
  .collection-stack,
  .companion-grid,
  .install-band,
  .faq-grid,
  .footer-grid { min-width: 0; max-width: 100%; }

  .bundle-copy h2,
  .final-cta h2,
  .companion-copy h2,
  .install-copy h2,
  .mission-copy h2,
  .faq-content h2 { overflow-wrap: anywhere; word-break: normal; }

  .bundle-copy .checkout-wrap,
  .final-cta .checkout-wrap { width: 100%; }

  .bundle-copy .button,
  .final-cta .button { width: 100%; }
}

@media (max-width: 540px) {
  :root { --shell: calc(100% - 28px); }

  .header-inner { grid-template-columns: 1fr; min-height: 70px; }
  .header-cta { display: none; }
  .brand { justify-self: start; }

  .hero { min-height: auto; }
  .hero-inner { padding-top: 70px; }
  .hero-copy-block { padding-block: 66px 42px; }
  .hero h1 { font-size: clamp(43px, 12.7vw, 58px); line-height: .98; }
  .hero-copy { font-size: 16px; line-height: 1.5; }
  .hero-actions { gap: 10px; }
  .button--large { min-height: 50px; padding: 13px 17px; font-size: 12px; line-height: 1.25; }
  .checkout-status { max-width: none; font-size: 12px; }

  .apps-section,
  .fiber-calculator-section,
  .how-section,
  .faq-section { padding-block: 60px; }

  .section-heading h2 { font-size: 40px; }
  .section-heading > p:last-child { font-size: 16px; }

  .product-grid { grid-template-columns: minmax(0, 1fr); }
  .product-card { width: 100%; }
  .product-image-wrap { aspect-ratio: 16 / 11; }
  .product-copy { padding: 24px 22px 23px; }
  .product-copy h3 { font-size: 40px; }
  .product-copy > p:not(.product-kicker) { font-size: 16px; line-height: 1.55; }
  .badges span { font-size: 11px; padding: 8px 11px; }
  .product-buy > strong { font-size: 44px; }
  .product-buy .button { min-height: 54px; font-size: 14px; }

  .calculator-heading h2 { font-size: 42px; }
  .calculator-panel { border-radius: 18px; }
  .calculator-form,
  .calculator-results { padding: 28px 18px; }

  .bundle-section { padding: 68px 0 36px; }
  .bundle-grid { gap: 26px; }
  .bundle-copy h2 { font-size: clamp(34px, 10.2vw, 42px); line-height: 1.02; }
  .bundle-subhead { font-size: 16px; line-height: 1.5; }
  .bundle-price strong { font-size: 70px; }
  .bundle-note { font-size: 13px; line-height: 1.45; }

  /* The desktop fan used a fixed 620px canvas and CSS transform. On phones the
     transformed canvas still occupied desktop width, so it could be clipped.
     Replace it with a true responsive 3x2 app grid. */
  .bundle-visual { min-height: 0; margin: 8px 0 0; overflow: visible; }
  .collection-stack {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    transform: none;
    perspective: none;
  }
  .collection-card,
  .collection-card--1,
  .collection-card--2,
  .collection-card--3,
  .collection-card--4,
  .collection-card--5,
  .collection-card--6 {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 132px;
    gap: 8px;
    transform: none;
    border-radius: 13px;
    padding: 12px 7px;
  }
  .collection-card img { width: 58px; height: 58px; border-radius: 14px; }
  .collection-card span { font-size: 13px; line-height: 1.05; text-align: center; }
  .value-seal { display: none; }

  .bundle-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 28px;
    padding-top: 22px;
  }
  .bundle-benefits span {
    min-height: 54px;
    display: grid;
    place-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 8px;
    font-size: 11px;
  }

  .companion-grid { gap: 28px; padding-block: 52px; }
  .companion-card { width: min(250px, 82vw); transform: rotate(-3deg); }
  .companion-copy { padding: 28px 20px; }
  .companion-copy h2 { font-size: 42px; }

  .install-copy { padding: 36px 20px; }
  .install-copy h2 { font-size: 40px; }
  .mission-copy { padding: 48px 20px; }
  .mission-copy h2,
  .faq-content h2 { font-size: 40px; }

  .faq-grid { gap: 28px; }
  .faq-photo { width: 100%; aspect-ratio: 4 / 3; align-self: start; overflow: hidden; }
  .faq-photo img { width: 100%; height: 100%; object-fit: cover; }
  .faq-answer { padding-right: 24px; font-size: 16px; }

  .final-cta { padding-block: 58px; }
  .final-cta h2 { font-size: clamp(40px, 12vw, 52px); line-height: 1; }
  .final-cta > .shell > p:not(.eyebrow) { font-size: 16px; }

  .site-footer { padding-block: 52px 24px; }
  .footer-grid { gap: 30px; }
  .footer-bottom { gap: 12px; margin-top: 35px; }
}
