@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── Crustacean — Primary Brand Red (H:350°) ── */
  /* Logo color (#d90024) is locked at step 40.    */
  /* Brand highlight (step 50) is one step brighter. */
  --crust-0:    #0d0002;
  --crust-10:   #290006;
  --crust-20:   #4f000c;
  --crust-30:   #840015;   /* Deep action, headings on light */
  --crust-40:   #d90024;   /* Logo red — primary actions on light bg */
  --crust-50:   #ff1a3d;   /* Brand highlight — CTAs, interactive focus */
  --crust-60:   #ff5170;   /* Hover state on dark bg */
  --crust-70:   #ff8599;
  --crust-80:   #ffb3bf;
  --crust-90:   #ffd9de;
  --crust-100:  #fff0f2;   /* Tint wash */

  /* Semantic aliases */
  --brand:        var(--crust-40);   /* Logo red */
  --brand-action: var(--crust-50);   /* Highlight / CTA */
  --brand-deep:   var(--crust-30);   /* Text on light */
  --brand-wash:   var(--crust-100);  /* Light tint bg */

  /* ── Abyss — Secondary Brand Teal (H:201°) ── */
  /* Logo wordmark color (#263f4d) is locked at step 30. */
  --abyss-0:    #080c0f;
  --abyss-10:   #111e26;
  --abyss-20:   #1b3040;
  --abyss-30:   #263f4d;   /* Logo teal — wordmark color */
  --abyss-40:   #335469;
  --abyss-50:   #447089;
  --abyss-60:   #5d8fa8;
  --abyss-70:   #84abc0;
  --abyss-80:   #aac5d3;
  --abyss-90:   #ccdde6;
  --abyss-100:  #eaf2f5;   /* Tint wash */

  /* Semantic aliases */
  --wordmark:     var(--abyss-30);   /* Exact wordmark color */
  --abyss-deep:   var(--abyss-20);   /* Darkest surfaces */
  --abyss-wash:   var(--abyss-100);  /* Light tint bg */

  /* ── Warm Neutrals ── */
  --slate-dark:   #191919;
  --slate:        #262625;
  --slate-light:  #40403E;
  --cloud-dark:   #666663;
  --cloud:        #91918D;
  --cloud-light:  #BFBFBA;
  --ivory-dark:   #E5E4DF;
  --ivory:        #F0F0EB;
  --ivory-light:  #FAFAF7;

  /* ── Semantic States ── */
  --success:  #256A2E;
  --warning:  #BD9520;
  --danger:   #9E2424;

  /* ── Typography ── */
  --sans:      'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif:     'IBM Plex Serif', Georgia, serif;
  --condensed: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
  --mono:      'IBM Plex Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* ── Spacing & Layout ── */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container-width: 1140px;
  --container-narrow: 780px;
  --radius: 8px;
  --radius-lg: 16px;
}

/* ── Base ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
    font-family: 'IBM Plex Sans', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: calc(2rem + env(safe-area-inset-top, 0px));
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

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

/* ── Containers ─────────────────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.container-narrow { max-width: var(--container-narrow); }
.container-centered { text-align: center; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--brand-action); color: #fff; padding: 0.875rem 2rem; font-size: 1rem; }
.btn-primary:hover { background: var(--crust-40); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-text-link { font-family: var(--sans); font-weight: 600; color: var(--slate); text-decoration: none; font-size: 1rem; }
.btn-text-link:hover { color: var(--brand); }

/* ── Eyebrow ─────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: var(--crust-70); }

/* ── Section wrapper ─────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section-light  { background: #fff; }
.section-ivory  { background: var(--ivory-light); }
.section-dark   { background: var(--slate-dark); color: #fff; }
.section-abyss  { background: var(--abyss-20); color: #fff; }
.section-guarantee { background: var(--abyss-20); color: #fff; padding: clamp(3rem, 6vw, 5rem) 0; }

h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
h3 { font-family: var(--sans); font-size: clamp(1.1rem, 2.5vw, 1.375rem); font-weight: 600; line-height: 1.3; margin-bottom: 0.75rem; }

.section-sub { font-size: clamp(1rem, 2vw, 1.125rem); color: var(--cloud-dark); max-width: 640px; margin-bottom: 3rem; line-height: 1.7; }
.section-dark .section-sub, .section-abyss .section-sub { color: var(--abyss-80); }

.section-footnote { margin-top: 3rem; font-family: var(--mono); font-size: 0.8125rem; color: var(--cloud); }
.section-footnote-light { color: var(--abyss-70); }
.muted { color: var(--cloud-dark); font-size: 0.9375rem; }

/* ══════════════════════════════════════════════════════════════
   SECTION 1 — PROMO RIBBON
══════════════════════════════════════════════════════════════ */
.promo-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
    padding: max(0.5rem, env(safe-area-inset-top, 0px)) 1rem 0.5rem;
    background-color: var(--crust-50);
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(0.8125rem, 2.8vw, 1rem);
    line-height: 1.35;
    text-align: center;
    box-shadow:
      0 1px 2px rgba(13, 0, 4, 0.2),
      0 4px 16px rgba(13, 0, 4, 0.1);
}
.ribbon-cta { color: #fff; text-decoration: underline; margin-left: 0.5em; }
.ribbon-cta:hover { opacity: 0.85; }
.ribbon-mobile { display: none; }
@media (max-width: 600px) {
  .ribbon-full { display: none; }
  .ribbon-mobile { display: inline; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION 2 — NAV
══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: calc(2rem + env(safe-area-inset-top, 0px));
  left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ivory-dark);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#nav.nav-visible { transform: translateY(0); opacity: 1; }
.nav-logo img { height: 1.75rem; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.9375rem; font-weight: 500; text-decoration: none; color: var(--slate); }
.nav-links a:hover { color: var(--brand); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: calc(2rem + 3.25rem + env(safe-area-inset-top, 0px));
    left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 1.5rem;
    border-bottom: 1px solid var(--ivory-dark); gap: 1.25rem;
  }
  .nav-links.nav-open { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION 3 — HERO (your original styles, preserved exactly)
══════════════════════════════════════════════════════════════ */
#header {
  background-image: url('images/home-hero-bkg.webp');
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem;
  h1 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #ffffff;
    text-shadow:
      0 0 25px rgba(0, 0, 0, 0.25),
      0 0 50px rgba(0, 0, 0, 0.12),
      0 0 100px rgba(0, 0, 0, 0.05);
    text-align: left;
    margin-top: 2rem;
    margin-left: 4rem;
  }
}

#header-hero {
  max-width: 75vw;
  margin-top: 0;
}

#header-hero img {
  width: auto;
  height: 4rem;
}

#header-hero-install {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #0d283c;
  text-align: left;
  margin-top: 3rem;
  margin-left: 2rem;
}

#header-hero-sub {
  display: block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: --var(slate);
  max-width: 560px;
  margin-top: 4rem;
  margin-left: 4rem;
}

#header-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-left: 4rem;
}

#header-hero-ctas .btn-text-link {
  color: rgba(255, 255, 255, 0.9);
}

#header-hero-ctas .btn-text-link:hover {
  color: #fff;
}

#header-hero-reassurance {
  display: block;
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
  margin-top: 1rem;
  margin-left: 4rem;
}

#header-hero-sub-container-mobile {
  display: none;
}

@media (orientation: landscape) {
  #header {
    h1 {
      width: 75%;
    }
  }
}
@media (orientation: portrait) {
  #header-hero-sub-container {
    width: 75%;
  }
  #header {
    background-image: url('images/home-hero-bkg-portrait.webp');
    background-position: top right;
    h1 {
      font-size: 2.6rem;
      width: 60%;
    }
  }
  #header-hero-install {
    width: 60%;
    margin-left: 3rem;
    font-size: 1rem;
    padding-left: 1rem;
    text-indent: -1rem;
  }
  #header-hero-sub {
    width: 60%;
    text-wrap: balance;
  }
}

@media (max-width: 1200px) {
  #header-hero-install {
    font-size: 1.1rem;
    padding-left: .9rem;
  }
}
@media (max-width: 768px) {
  #header {
    min-height: 90vh;
    margin-top: -2rem;
    background-image: url('images/home-hero-bkg-mobile.webp');
    background-position: top center;
    h1 {
      width: 100%;
      margin-top: 1.5rem;
      margin-left: 2.3rem;
      font-size: 2rem;
      text-wrap: balance;
    }
  }
  #header-hero img {
    height: 2rem;
  }
  #header-hero-install {
    width: 100%;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    margin-left: 1.2rem;
  }
  #header-hero-sub-container {
    display: none;
  }
  #header-hero-sub-container-mobile {
    display: block;
    padding: 2rem;
    background-color: var(--slate);
  }
  #header-hero-sub-mobile {
      color: var(--cloud-light);
      margin-bottom: 1rem;
      line-height: 1.3;
  }
  .btn-works-mobile {
    color: var(--cloud-light);
    text-decoration: none;
    font-weight: 700;
  }
  .btn-works-mobile:hover {
    color: white;
  }
  #header-hero-reassurance-mobile {
    display: block;
    font-family: 'IBM Plex Serif', serif;
    color: var(--cloud-light);
    font-size: 0.7rem;
    margin-top: 1rem;
  }
}

@media (max-width: 450px) {
  #header {
    min-height: 90vh;
    margin-top: -2rem;
    background-position: top center;
    h1 {
      width: 100%;
      margin-top: 1rem;
      font-size: 1.65rem;
    }
  }
  #header-hero-install {
    font-size: 0.7rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTION 4 — SETUP / HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.step { position: relative; padding-top: 1rem; }
.step-number { display: block; font-family: var(--mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--brand); margin-bottom: 0.75rem; }
.step h3 { font-size: 1.25rem; }
.step p { color: var(--cloud-dark); font-size: 0.9375rem; line-height: 1.65; }
.video-placeholder { background: var(--ivory); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; aspect-ratio: 16/9; max-width: 800px; }
.video-placeholder-inner { width: 100%; height: 100%; min-height: 280px; display: block; line-height: 0; }
.video-placeholder-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 2rem; } }

/* ══════════════════════════════════════════════════════════════
   SECTION 5 — EXPERTLY CONFIGURED
══════════════════════════════════════════════════════════════ */
.config-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; margin-bottom: 1rem; }
.config-item h3 { color: #fff; }
.config-item p { color: var(--abyss-80); font-size: 0.9375rem; line-height: 1.65; }
.config-links { display: flex; gap: 1.5rem; margin-top: 0.75rem; }
.config-links a { font-family: var(--mono); font-size: 0.8125rem; color: var(--crust-70); text-decoration: none; }
.config-links a:hover { color: var(--crust-60); text-decoration: underline; }
@media (max-width: 768px) { .config-items { grid-template-columns: 1fr; gap: 2rem; } }

/* ══════════════════════════════════════════════════════════════
   SECTION 6 — MEET AIMEE
══════════════════════════════════════════════════════════════ */
#meet-aimee .aimee-intro-img { margin-bottom: 1.25rem; text-align: left; }
.aimee-intro { margin-bottom: 3.5rem; }
.aimee-intro-copy { font-size: clamp(1rem, 1.8vw, 1.0625rem); line-height: 1.7; color: var(--cloud-dark); }
.aimee-intro-copy p + p { margin-top: 1rem; }
/* Override global img { max-width:100% } so the headshot stays square (else 50% radius is an oval). */
.aimee-headshot {
  width: 200px;
  height: 200px;
  max-width: 200px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.personality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.personality-card { background: var(--ivory-light); border: 1px solid var(--ivory-dark); border-radius: var(--radius-lg); padding: 1.75rem; }
.personality-card h3 { font-size: 1.0625rem; color: var(--slate-dark); margin-bottom: 0.625rem; }
.personality-card p { font-size: 0.9375rem; color: var(--cloud-dark); line-height: 1.65; margin-bottom: 1rem; }
.personality-card blockquote { font-family: var(--serif); font-style: italic; font-size: 0.9375rem; color: var(--brand-deep); border-left: 3px solid var(--crust-90); padding-left: 1rem; margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .personality-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .aimee-headshot { width: 120px; height: 120px; max-width: 120px; }
  .personality-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION 7 — ALWAYS ON (STACKS)
══════════════════════════════════════════════════════════════ */
.stacks-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 1rem; }
.stacks-icon { font-size: 2rem; margin-bottom: 1rem; }
.stacks-item h3 { color: #fff; }
.stacks-item p { color: var(--abyss-80); font-size: 0.9375rem; line-height: 1.65; }
@media (max-width: 768px) { .stacks-items { grid-template-columns: 1fr; gap: 2rem; } }

/* ══════════════════════════════════════════════════════════════
   SECTION 8 — WHAT'S IN THE BOX
══════════════════════════════════════════════════════════════ */
.box-contents { list-style: none; border: 1px solid var(--ivory-dark); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.box-contents li { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.375rem 1.75rem; border-bottom: 1px solid var(--ivory-dark); }
.box-contents li:last-child { border-bottom: none; }
.box-claw { font-size: 1.375rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.box-contents strong { display: block; font-weight: 600; color: var(--slate-dark); margin-bottom: 0.2rem; }
.box-spec { display: block; font-family: var(--mono); font-size: 0.8125rem; color: var(--cloud-dark); margin-bottom: 0.2rem; }
.box-note { display: block; font-size: 0.9375rem; color: var(--cloud-dark); }
.box-sub { font-size: 0.9375rem; color: var(--cloud-dark); line-height: 1.65; border-top: 1px solid var(--ivory-dark); padding-top: 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   SECTION 9 — PRICING
══════════════════════════════════════════════════════════════ */
.hardware-block { background: #fff; border: 2px solid var(--ivory-dark); border-radius: var(--radius-lg); padding: 2.5rem; margin-bottom: 3rem; }
.hardware-badge { display: inline-block; background: var(--success); color: #fff; font-family: var(--mono); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; padding: 0.3rem 0.875rem; border-radius: 100px; margin-bottom: 1.5rem; }
.hardware-inner { display: flex; gap: 2.5rem; align-items: flex-start; }
.hardware-product-img { flex-shrink: 0; width: min(280px, 42vw); max-width: 100%; }
.hardware-product-img img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.hardware-copy { flex: 1; min-width: 0; }
.hardware-inner h3 { font-size: 1.5rem; font-family: var(--serif); font-weight: 400; margin-bottom: 0.5rem; }
.hardware-price { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; }
.price-current { font-size: 2.5rem; font-weight: 700; color: var(--slate-dark); line-height: 1; }
.price-was { font-size: 1.25rem; color: var(--cloud); text-decoration: line-through; }
.hardware-specs { list-style: none; margin-bottom: 2rem; }
.hardware-specs li { padding: 0.5rem 0 0.5rem 1.25rem; position: relative; color: var(--cloud-dark); font-size: 0.9375rem; border-bottom: 1px solid var(--ivory); }
.hardware-specs li::before { content: '·'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.hardware-fine-print { margin-top: 1rem; font-size: 0.8125rem; color: var(--cloud); line-height: 1.55; }
@media (max-width: 768px) {
  .hardware-inner { flex-direction: column; }
  .hardware-product-img { width: min(260px, 85vw); margin-inline: auto; }
}

.plan-toggle { display: inline-flex; background: var(--ivory); border-radius: 100px; padding: 0.25rem; margin-bottom: 2rem; gap: 0.25rem; }
.toggle-btn { font-family: var(--sans); font-size: 0.875rem; font-weight: 600; padding: 0.4rem 1.25rem; border-radius: 100px; border: none; background: transparent; color: var(--cloud-dark); cursor: pointer; transition: all 0.15s; }
.toggle-btn-active { background: #fff; color: var(--slate-dark); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

.launch-banner { background: var(--brand-wash); border: 1px solid var(--crust-80); border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.launch-badge { font-family: var(--sans); font-weight: 700; font-size: 0.9375rem; color: var(--brand-deep); }

.countdown { display: flex; gap: 0.75rem; align-items: center; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; min-width: 2.5rem; }
.countdown-unit span:first-child { font-family: var(--mono); font-size: 1.375rem; font-weight: 700; color: var(--brand-deep); line-height: 1; }
.countdown-label { font-family: var(--mono); font-size: 0.6875rem; color: var(--cloud-dark); letter-spacing: 0.05em; margin-top: 0.2rem; }

.plans-table-wrap { overflow-x: auto; margin-bottom: 1rem; }
.plans-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.plans-table th { text-align: left; padding: 0.75rem 1rem; font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cloud-dark); border-bottom: 2px solid var(--ivory-dark); }
.plans-table td { padding: 1rem; border-bottom: 1px solid var(--ivory-dark); color: var(--slate); }
.plan-row-featured td { background: var(--ivory-light); }
.plan-row-featured td:first-child { border-left: 3px solid var(--brand); }
.plan-fine-print { font-size: 0.8125rem; color: var(--cloud-dark); line-height: 1.55; margin-top: 0.75rem; }
.plan-byom-note { margin-top: 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   SECTION 10 — GUARANTEE
══════════════════════════════════════════════════════════════ */
.section-guarantee h3 { font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 400; color: #fff; margin-bottom: 1.25rem; }
.section-guarantee p { font-size: 1.0625rem; line-height: 1.7; color: var(--abyss-90); margin-bottom: 1.25rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.guarantee-fine-print { font-size: 0.875rem !important; color: var(--abyss-70) !important; }
.guarantee-fine-print a { color: var(--abyss-80); }
.guarantee-fine-print a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   SECTION 11 — FAQ
══════════════════════════════════════════════════════════════ */
.faq-list { margin-top: 1rem; }
.faq-item { border-bottom: 1px solid var(--ivory-dark); padding: 1.5rem 0; }
.faq-item dt { font-weight: 600; font-size: 1rem; color: var(--slate-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; user-select: none; }
.faq-item dt::after { content: '+'; font-size: 1.25rem; font-weight: 300; color: var(--brand); flex-shrink: 0; transition: transform 0.2s; margin-top: -0.1rem; }
.faq-item.faq-open dt::after { transform: rotate(45deg); }
.faq-item dd { display: none; margin: 0; padding-top: 0.875rem; font-size: 0.9375rem; color: var(--cloud-dark); line-height: 1.7; }
.faq-item.faq-open dd { display: block; }
.faq-item dd a { color: var(--brand-deep); text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   SECTION 12 — EMAIL CAPTURE
══════════════════════════════════════════════════════════════ */
#email-capture h3 { font-family: var(--serif); font-size: clamp(1.375rem, 3vw, 2rem); font-weight: 400; margin-bottom: 1rem; }
#email-capture .email-capture-main > p { color: var(--cloud-dark); font-size: 1rem; margin-bottom: 2rem; }
.email-capture-row { display: flex; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: flex-start; }
.email-capture-main { flex: 1 1 0; min-width: 0; }
.email-capture-visual { flex: 0 0 30%; max-width: 30%; }
.email-capture-visual img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }
.email-form-inner { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-start; max-width: 500px; }
@media (max-width: 700px) {
  .email-capture-row { flex-direction: column; }
  .email-capture-visual { flex: none; width: min(240px, 70%); max-width: 100%; align-self: flex-end; }
}
.email-form-inner input[type="email"] { flex: 1; min-width: 220px; padding: 0.875rem 1.25rem; font-family: var(--sans); font-size: 1rem; border: 1.5px solid var(--ivory-dark); border-radius: var(--radius); background: #fff; color: var(--slate-dark); outline: none; }
.email-form-inner input[type="email"]:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--crust-90); }
.email-status { font-size: 0.9375rem; margin-top: 0.75rem; text-align: left; }

/* ══════════════════════════════════════════════════════════════
   SECTION 13 — FOOTER
══════════════════════════════════════════════════════════════ */
#footer { background: var(--slate-dark); color: var(--cloud-light); padding: 3rem clamp(1.25rem, 4vw, 2.5rem); }
.footer-inner { max-width: var(--container-width); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; }
.footer-logo img { height: 1.5rem; width: auto; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-logo:hover img { opacity: 1; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.875rem; color: var(--cloud-light); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.8125rem; color: var(--cloud); text-align: right; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin: 0 auto; }
  .footer-copy { text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — catch-all mobile fixes
══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  #header { padding: 4rem 1.5rem 3rem; }
  .hardware-block { padding: 1.5rem; }
  .launch-banner { flex-direction: column; align-items: flex-start; }
  .plans-table { font-size: 0.875rem; }
  .plans-table th, .plans-table td { padding: 0.75rem 0.625rem; }
}

/* Floating Order now — flat rules (avoid nesting/hidden conflicts) */
@media (max-width: 768px) {
  #floating-order-cta.floating-order-cta:not(.is-floating-visible) {
    display: none !important;
  }
  #floating-order-cta.floating-order-cta.is-floating-visible {
    position: fixed !important;
    display: inline-block !important;
    z-index: 1001;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    max-width: calc(100vw - 2rem);
    text-align: center;
  }
}
@media (min-width: 769px) {
  #floating-order-cta.floating-order-cta {
    display: none !important;
  }
}
