/* ===================================================
   FOXSTEP MARKETING — Editorial Serif
   Warm, crafted, authoritative
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* DM Sans loaded above for UI chrome; Newsreader/DM Serif remain via <link> in HTML */

/**
 * Design tokens — aligned with packages/design-tokens/src/colors.ts
 * Amber & parchment system (foxstep.io marketing + app)
 * NOTE: inlined here to avoid @import 404 on deployed site
 */
:root {
  /* Surfaces — warm cream page */
  --surface-page: #fdf9f3;
  --parchment: #fdf9f3;
  --parchment-dark: #eee6d9;
  --parchment-light: #fffbf5;
  --white: #faf6f0;

  --black: #0d0d0d;
  --charcoal: #1e293b;
  --dark-text: #1e293b;
  --body-text: #3d3530;
  --muted-text: #8a7e74;

  --light-border: rgba(0, 0, 0, 0.07);
  --medium-border: rgba(0, 0, 0, 0.12);

  /* Primary (Fox amber) — legacy names --forest* kept for existing selectors */
  --forest: #d97b3a;
  --forest-dark: #b85a1e;
  --forest-darker: #8b4513;
  --forest-light: #faf0e6;
  --terracotta: #d97b3a;
  --terracotta-light: #fdf4ec;

  --sage: #6b8f71;
  --sage-deep: #4a7c59;

  /* UI typography (buttons, nav chrome) */
  --font-ui: "DM Sans", ui-sans-serif, system-ui, sans-serif;

  /* Buttons */
  --btn-radius-pill: 9999px;
  --btn-primary-shadow:
    0 2px 8px rgba(217, 123, 58, 0.28),
    0 1px 2px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  --btn-primary-shadow-hover:
    0 10px 28px rgba(217, 123, 58, 0.38),
    0 4px 10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  --btn-nav-shadow: 0 2px 8px rgba(217, 123, 58, 0.22), 0 1px 2px rgba(0, 0, 0, 0.05);
  --btn-nav-shadow-hover: 0 5px 16px rgba(217, 123, 58, 0.3), 0 2px 4px rgba(0, 0, 0, 0.06);

  --ghost-border: rgba(61, 53, 48, 0.2);
  --btn-ghost-bg-hover: var(--parchment-light);
  --btn-ghost-bg-active: rgba(255, 255, 255, 0.65);

  /* Layout */
  --section-pad: clamp(5rem, 10vw, 8rem);
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;scroll-behavior:smooth}
body{
  font-family:'Newsreader',Georgia,'Times New Roman',serif;color:var(--body-text);
  background:var(--surface-page);overflow-x:hidden;line-height:1.7;font-size:1rem;
}
/* Subtle grain — fixed layer, does not intercept clicks */
body::before{
  content:'';
  position:fixed;inset:0;pointer-events:none;
  opacity:0.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
img{max-width:100%;display:block}
ul{list-style:none}

.section-inner{max-width:1100px;margin:0 auto;padding:0 2rem}

/* ─── Typography ────────────────────────────── */
.section-header{text-align:center;margin-bottom:3.5rem}
.section-eyebrow{
  display:inline-block;font-size:.7rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;
  color:var(--terracotta);margin-bottom:.8rem;
  font-family:'Newsreader',Georgia,serif;
}
.section-title{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(1.8rem,4vw,3rem);font-weight:400;
  line-height:1.15;letter-spacing:-.01em;
  color:var(--dark-text);
}
.section-desc{font-size:1.05rem;color:var(--body-text);max-width:480px;margin:.8rem auto 0;line-height:1.7}
.italic-accent{font-family:'Newsreader',Georgia,serif;font-style:italic;font-weight:400}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:.6rem 0;background:rgba(253,249,243,.85);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  transition:all .3s var(--ease);
}
.navbar.scrolled{
  background:rgba(253,249,243,.92);
  box-shadow:0 1px 0 var(--light-border);
}
.nav-inner{
  max-width:1100px;margin:0 auto;padding:0 2rem;
  display:flex;align-items:center;justify-content:space-between;height:52px;
}
.nav-logo{display:flex;align-items:center;gap:.45rem;font-weight:600;font-size:1.1rem;color:var(--dark-text);font-family:'DM Serif Display',Georgia,serif}
.nav-logo-icon{flex-shrink:0;border-radius:8px}
.nav-links{display:flex;align-items:center;gap:1.8rem}
.nav-links a{
  font-family:var(--font-ui);
  font-size:.88rem;font-weight:500;color:var(--body-text);transition:color .2s;
}
.nav-links a:hover{color:var(--dark-text)}
.nav-actions{display:flex;align-items:center;gap:1.2rem}
.nav-link-watch{
  display:inline-flex;align-items:center;gap:.35rem;
  font-family:var(--font-ui);
  font-size:.88rem;font-weight:500;color:var(--body-text);
  transition:color .2s;
}
.nav-link-watch:hover{color:var(--dark-text)}
.nav-login{
  font-family:var(--font-ui);
  font-size:.88rem;font-weight:500;color:var(--body-text);
  transition:color .2s;
}
.nav-login:hover{color:var(--dark-text)}
.btn-download{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  min-height:38px;
  padding:.45rem 1.15rem;background:var(--forest);color:#fff;
  border-radius:var(--btn-radius-pill);font-size:.85rem;font-weight:600;
  letter-spacing:.01em;
  font-family:var(--font-ui);
  box-shadow:var(--btn-nav-shadow);
  border:1px solid rgba(255,255,255,.12);
  transition:background .25s var(--ease),box-shadow .25s var(--ease),transform .25s var(--ease);
}
.btn-download:hover{
  background:var(--forest-dark);
  transform:translateY(-1px);
  box-shadow:var(--btn-nav-shadow-hover);
}
.btn-download:active{transform:translateY(0)}
.nav-burger{display:none;flex-direction:column;gap:5px;padding:4px;border-radius:8px}
.nav-burger span{display:block;width:22px;height:2px;background:var(--dark-text);border-radius:2px;transition:transform .25s var(--ease),opacity .25s var(--ease)}
.nav-burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-burger.active span:nth-child(2){opacity:0}
.nav-burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Skip link (visible on keyboard focus) */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:10001;
  padding:.65rem 1rem;background:var(--forest);color:#fff;font-size:.9rem;font-weight:600;
  border-radius:0 0 var(--radius) 0;font-family:var(--font-ui);
}
.skip-link:focus{left:0;outline:2px solid var(--dark-text);outline-offset:2px}

/* Mobile drawer + backdrop (populated/cloned by nav.js) */
.nav-backdrop{
  position:fixed;inset:0;z-index:998;background:rgba(13,13,13,.35);
  opacity:0;visibility:hidden;transition:opacity .25s var(--ease),visibility .25s;
}
.nav-backdrop:not([hidden]){opacity:1;visibility:visible}
.nav-mobile-drawer{
  display:none;
}
body.nav-no-scroll{overflow:hidden}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero{
  background:var(--parchment);
  padding:7rem 2rem 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;inset:0;pointer-events:none;z-index:0;
  background:radial-gradient(ellipse 90% 55% at 50% -15%,rgba(217,123,58,.09),transparent 58%);
}
.hero > *{position:relative;z-index:1}
.hero-content{
  max-width:700px;margin:0 auto;position:relative;z-index:1;
}
.hero-headline{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(2.4rem,6vw,4.2rem);
  font-weight:400;line-height:1.1;letter-spacing:-.02em;
  color:var(--dark-text);margin-bottom:1.4rem;
}
.hero-line{display:block}

.hero-sub{
  font-size:1.1rem;color:var(--body-text);
  max-width:520px;margin:0 auto 2rem;line-height:1.75;
}
.hero-sub em{font-style:italic;color:var(--terracotta);font-weight:400}

.hero-cta-group{
  display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;align-items:center;
  margin-bottom:3rem;
}

.btn-primary-dark{
  display:inline-flex;align-items:center;justify-content:center;gap:.45rem;
  min-height:46px;
  padding:.8rem 1.75rem;background:var(--forest);color:#fff;
  border-radius:var(--btn-radius-pill);
  font-weight:600;font-size:.95rem;letter-spacing:.01em;
  font-family:var(--font-ui);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--btn-primary-shadow);
  transition:background .25s var(--ease),box-shadow .25s var(--ease),transform .25s var(--ease);
}
.btn-primary-dark:hover{
  background:var(--forest-dark);
  transform:translateY(-2px);
  box-shadow:var(--btn-primary-shadow-hover);
}
.btn-primary-dark:active{transform:translateY(0);box-shadow:var(--btn-primary-shadow)}

.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  min-height:44px;
  padding:.72rem 1.5rem;color:var(--dark-text);
  border:1.5px solid var(--ghost-border);
  border-radius:var(--btn-radius-pill);
  font-weight:500;font-size:.95rem;
  font-family:var(--font-ui);
  background:transparent;
  transition:background .25s var(--ease),border-color .25s var(--ease),color .25s var(--ease),transform .25s var(--ease);
}
.btn-ghost:hover{
  border-color:var(--body-text);
  background:var(--btn-ghost-bg-hover);
  color:var(--dark-text);
  transform:translateY(-2px);
}
.btn-ghost:active{transform:translateY(0)}

/* Hero: secondary CTA is visually subordinate to primary */
.hero-cta-group .btn-ghost{
  min-height:40px;
  padding:.52rem 1.28rem;
  font-size:.875rem;
  font-weight:500;
  color:var(--muted-text);
  border-color:var(--ghost-border);
}
.hero-cta-group .btn-ghost:hover{
  color:var(--dark-text);
  background:var(--btn-ghost-bg-hover);
  border-color:rgba(61,53,48,.35);
}

/* Hero image */
.hero-image-wrap{
  position:relative;margin:0 auto;max-width:1100px;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  overflow:hidden;
}
.hero-image{
  width:100%;height:auto;display:block;
  object-fit:cover;max-height:520px;
  transition:opacity .5s ease;
}

/* Hero demo overlay (play + iframe) */
.hero-demo-play{
  position:absolute;inset:0;z-index:10;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  cursor:pointer;
}
.hero-demo-play-btn{
  width:72px;height:72px;border-radius:50%;
  background:rgba(217,123,58,.88);
  display:flex;align-items:center;justify-content:center;
  box-shadow:
    0 8px 32px rgba(217,123,58,.32),
    0 0 0 6px rgba(217,123,58,.1);
  transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.hero-demo-play:hover .hero-demo-play-btn{
  transform:scale(1.04);
  box-shadow:
    0 12px 36px rgba(217,123,58,.38),
    0 0 0 8px rgba(217,123,58,.12);
}
.hero-demo-play-label{
  margin-top:16px;font-size:13px;font-weight:600;font-family:var(--font-ui);
  color:#475569;background:rgba(255,255,255,.93);
  backdrop-filter:blur(8px);
  padding:7px 20px;border-radius:20px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.hero-demo-overlay{
  position:absolute;top:0;left:0;right:0;
  opacity:0;pointer-events:none;
  transition:opacity .5s ease;
  border-radius:inherit;overflow:hidden;
  height:486px;
}
.hero-demo-overlay iframe{
  width:100%;height:100%;border:none;
}

/* ══════════════════════════════════════════════
   PRODUCT DESCRIPTION BAR
   ══════════════════════════════════════════════ */
.product-bar{
  background:var(--forest);
  padding:2.5rem 0;
  text-align:center;
}
.product-bar-text{
  font-family:'Newsreader',Georgia,serif;
  font-size:1.15rem;
  color:rgba(255,255,255,.92);
  line-height:1.7;
  max-width:560px;
  margin:0 auto;
  letter-spacing:.01em;
}
.product-bar-text em{
  font-style:italic;
  color:#fff;
  font-weight:400;
}

/* ══════════════════════════════════════════════
   FEATURES (Problem Cards)
   ══════════════════════════════════════════════ */
.features{
  background:var(--white);padding:var(--section-pad) 0;
}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}

.feature-card{
  padding:2rem;border-radius:var(--radius);
  background:var(--parchment-light);
  border:1px solid var(--light-border);
  transition:all .3s var(--ease);
}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.06)}

.feature-icon{
  margin-bottom:1.2rem;
  width:48px;height:48px;display:flex;align-items:center;justify-content:center;
  background:var(--terracotta-light);border-radius:12px;
  color:var(--terracotta);
}
.feature-card h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.15rem;font-weight:400;color:var(--dark-text);margin-bottom:.5rem;
}
.feature-card p{font-size:.92rem;color:var(--body-text);line-height:1.7}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-it-works{
  background:var(--parchment);padding:var(--section-pad) 0;
}
.steps{
  max-width:600px;margin:0 auto;
  display:flex;flex-direction:column;gap:0;
}
.step{display:flex;gap:1.8rem;padding:1.8rem 0}
.step + .step{border-top:1px solid var(--light-border)}

.step-number{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.5rem;color:var(--terracotta);
  flex-shrink:0;width:48px;padding-top:.15rem;
  opacity:.6;
}
.step-content h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.1rem;font-weight:400;color:var(--dark-text);margin-bottom:.4rem;
}
.step-content p{font-size:.92rem;color:var(--body-text);line-height:1.7}

/* ══════════════════════════════════════════════
   SHOWCASE (Tabbed)
   ══════════════════════════════════════════════ */
.showcase{
  background:var(--white);padding:var(--section-pad) 0;
}
.showcase-tabs{
  display:flex;justify-content:center;gap:.3rem;
  padding:.3rem;background:var(--parchment);
  border:1px solid var(--light-border);
  border-radius:100px;margin-bottom:3rem;
  width:fit-content;margin-left:auto;margin-right:auto;
}
.showcase-tab{
  padding:.6rem 1.3rem;border-radius:100px;
  font-size:.88rem;font-weight:400;color:var(--body-text);
  transition:all .25s var(--ease);
  font-family:'Newsreader',Georgia,serif;
}
.showcase-tab:hover{color:var(--dark-text)}
.showcase-tab.active{
  background:var(--white);color:var(--dark-text);
  box-shadow:0 1px 4px rgba(0,0,0,.08);font-weight:500;
}

.showcase-panel{
  display:none;
  grid-template-columns:1fr 1fr;gap:3rem;
  align-items:center;
  animation:fadeIn .4s var(--ease);
}
.showcase-panel.active{display:grid}

@keyframes fadeIn{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}

.showcase-text h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.4rem;font-weight:400;color:var(--dark-text);margin-bottom:.7rem;
}
.showcase-text>p{font-size:.95rem;color:var(--body-text);line-height:1.7;margin-bottom:1.3rem}

.check-list{display:flex;flex-direction:column;gap:.5rem}
.check-list li{
  display:flex;align-items:center;gap:.5rem;
  font-size:.88rem;color:var(--body-text);
}
.check-list li::before{
  content:'';display:flex;align-items:center;justify-content:center;
  width:18px;height:18px;border-radius:50%;
  background:var(--forest-light);flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%23D97B3A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;
}

/* Showcase card visuals */
.showcase-visual{display:flex;align-items:center;justify-content:center}
.showcase-card{
  width:100%;max-width:380px;padding:1.5rem;
  background:var(--parchment-light);border:1px solid var(--light-border);
  border-radius:var(--radius-lg);
}
.showcase-card-dot{width:8px;height:8px;border-radius:50%;display:inline-block;margin-right:.4rem}
.dot-recording{background:var(--terracotta);box-shadow:0 0 6px rgba(217,123,58,.4);animation:dotPulse 1.5s infinite}
.dot-active{background:var(--sage)}
.dot-success{background:var(--sage);box-shadow:0 0 6px rgba(107,143,113,.3)}
@keyframes dotPulse{0%,100%{opacity:1}50%{opacity:.4}}

.showcase-card-label{
  font-size:.78rem;font-weight:500;color:var(--body-text);
  vertical-align:middle;
}
.showcase-card-steps{margin-top:1rem;display:flex;flex-direction:column;gap:.5rem}
.card-step{display:flex;align-items:center;gap:.5rem}
.card-step span{
  width:24px;height:24px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.6rem;font-weight:600;color:var(--forest);
  background:var(--forest-light);flex-shrink:0;
}
.card-bar{flex:1;height:8px;background:var(--parchment-dark);border-radius:4px}
.card-bar--shimmer{
  background:linear-gradient(90deg,var(--parchment-dark),var(--forest-light),var(--parchment-dark));
  background-size:200% 100%;animation:shimmer 1.5s infinite;
}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}

/* Editor mockup */
.showcase-card-editor{margin-top:1rem}
.editor-toolbar{
  display:flex;gap:.5rem;margin-bottom:.7rem;
  padding:.35rem .5rem;background:var(--white);
  border:1px solid var(--light-border);border-radius:8px;
}
.editor-toolbar span{font-size:.7rem;color:var(--muted-text);font-weight:500;padding:.1rem .3rem}
.editor-line{height:8px;background:var(--parchment-dark);border-radius:4px;margin-bottom:.35rem}
.editor-line--short{width:60%}
.editor-image{
  height:50px;background:var(--forest-light);
  border:1px solid var(--light-border);border-radius:8px;margin-top:.5rem;
}

/* Share mockup */
.showcase-share-grid{display:grid;grid-template-columns:1fr 1fr;gap:.4rem;margin-top:1rem}
.share-item{
  padding:.6rem;font-size:.75rem;font-weight:500;color:var(--dark-text);
  background:var(--white);border:1px solid var(--light-border);
  border-radius:8px;text-align:center;transition:all .2s;
}
.share-item:hover{border-color:var(--forest-dark);background:var(--forest-light)}

/* ══════════════════════════════════════════════
   GUIDE PREVIEW (Product Mockup)
   ══════════════════════════════════════════════ */
.guide-preview{
  background:var(--parchment);padding:var(--section-pad) 0;
}
.guide-mockup{
  max-width:680px;margin:0 auto;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.08),0 1px 3px rgba(0,0,0,.06);
  border:1px solid var(--light-border);
}

/* Browser chrome */
.guide-mockup-chrome{
  background:#f0ede8;
  padding:.6rem 1rem;
  display:flex;align-items:center;gap:.8rem;
  border-bottom:1px solid var(--light-border);
}
.guide-mockup-dots{display:flex;gap:.35rem}
.guide-mockup-dots span{
  width:10px;height:10px;border-radius:50%;
  background:var(--parchment-dark);
}
.guide-mockup-url{
  flex:1;
  font-size:.7rem;color:var(--muted-text);
  background:var(--white);
  padding:.3rem .7rem;
  border-radius:6px;
  border:1px solid var(--light-border);
  font-family:'Newsreader',Georgia,serif;
}

/* Guide body */
.guide-mockup-body{
  background:#fff;padding:2rem;
}
.guide-mockup-header{margin-bottom:1.8rem}
.guide-mockup-title{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.4rem;font-weight:400;color:var(--dark-text);
  margin-bottom:.3rem;
}
.guide-mockup-meta{
  font-size:.75rem;color:var(--muted-text);
}

/* Guide steps */
.guide-steps-mock{display:flex;flex-direction:column;gap:1.5rem}
.guide-step-mock{display:flex;gap:1rem;align-items:flex-start}
.guide-step-num{
  width:28px;height:28px;border-radius:50%;
  background:var(--forest);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:.75rem;font-weight:600;flex-shrink:0;
  margin-top:.1rem;
  font-family:'Newsreader',Georgia,serif;
}
.guide-step-body{flex:1}
.guide-step-text{
  font-size:.9rem;color:var(--dark-text);
  margin-bottom:.7rem;line-height:1.5;
}
.guide-step-text strong{font-weight:600}

/* Screenshot mockups */
.guide-step-screenshot{
  position:relative;
  height:100px;
  background:#f8f6f2;
  border:1px solid var(--light-border);
  border-radius:8px;
  overflow:hidden;
}
.guide-screenshot-bar{
  height:12px;background:#ece8e0;
  border-bottom:1px solid var(--light-border);
}
.guide-screenshot-sidebar{
  position:absolute;top:12px;left:0;
  width:25%;height:calc(100% - 12px);
  background:#f0ede8;
  border-right:1px solid var(--light-border);
}
.guide-screenshot-content{
  position:absolute;top:20px;left:30%;right:5%;
  height:30px;
}
.guide-screenshot-btn{
  width:60px;height:16px;
  background:var(--forest-light);
  border:1px solid rgba(217,123,58,.2);
  border-radius:4px;
}
.guide-screenshot-form{
  position:absolute;top:20px;left:10%;right:10%;
  display:flex;flex-direction:column;gap:6px;
}
.guide-form-line{
  height:10px;background:#ece8e0;border-radius:3px;
}
.guide-form-line--short{width:65%}

/* Annotation circle */
.guide-annotation{
  position:absolute;
  width:22px;height:22px;border-radius:50%;
  background:var(--terracotta);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:.65rem;font-weight:700;
  box-shadow:0 0 0 3px rgba(217,123,58,.25);
  font-family:'Newsreader',Georgia,serif;
}

.guide-mockup-more{
  padding-top:1.2rem;
  margin-top:1.2rem;
  border-top:1px solid var(--light-border);
  text-align:center;
}
.guide-mockup-more span{
  font-size:.82rem;color:var(--terracotta);font-weight:500;
  cursor:pointer;
}

/* ══════════════════════════════════════════════
   USE CASES
   ══════════════════════════════════════════════ */
.use-cases{background:var(--white);padding:var(--section-pad) 0}

.use-cases-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.2rem}
.use-case-card{
  padding:2rem;border-radius:var(--radius);
  background:var(--parchment-light);border:1px solid var(--light-border);
  transition:all .3s var(--ease);text-decoration:none;
  display:flex;flex-direction:column;
}
.use-case-card:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.use-case-icon{
  margin-bottom:.8rem;
  width:44px;height:44px;display:flex;align-items:center;justify-content:center;
  background:var(--forest-light);border-radius:10px;
  color:var(--forest);
}
.use-case-card h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.05rem;font-weight:400;color:var(--dark-text);margin-bottom:.3rem;
}
.use-case-card p{font-size:.9rem;color:var(--body-text);line-height:1.7}

/* ══════════════════════════════════════════════
   PRIVACY
   ══════════════════════════════════════════════ */
.privacy{background:var(--parchment);padding:var(--section-pad) 0}
.privacy-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.privacy-card{
  padding:2rem;border-radius:var(--radius);
  background:var(--white);border:1px solid var(--light-border);
  transition:all .3s var(--ease);
}
.privacy-card:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.privacy-icon{
  margin-bottom:1rem;
  width:48px;height:48px;display:flex;align-items:center;justify-content:center;
  background:var(--forest-light);border-radius:12px;
  color:var(--forest);
}
.privacy-card h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.05rem;font-weight:400;color:var(--dark-text);margin-bottom:.4rem;
}
.privacy-card p{font-size:.9rem;color:var(--body-text);line-height:1.7}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq{background:var(--white);padding:var(--section-pad) 0}
.faq-list{max-width:680px;margin:0 auto;display:flex;flex-direction:column;gap:.6rem}

.faq-item{
  background:var(--parchment-light);border:1px solid var(--light-border);
  border-radius:var(--radius);overflow:hidden;
  transition:border-color .2s;
}
.faq-item[open]{border-color:var(--medium-border)}
.faq-item[open] .faq-icon{transform:rotate(45deg)}

.faq-item summary{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 1.4rem;cursor:pointer;list-style:none;
  user-select:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary h3{font-size:.95rem;font-weight:500;color:var(--dark-text);margin:0;font-family:'Newsreader',Georgia,serif}
.faq-icon{
  font-size:1.2rem;color:var(--muted-text);font-weight:300;
  transition:transform .25s var(--ease);flex-shrink:0;margin-left:1rem;
}
.faq-answer{padding:0 1.4rem 1.3rem}
.faq-answer p{font-size:.9rem;color:var(--body-text);line-height:1.75;margin:0}

/* ══════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════ */
.final-cta{background:var(--parchment);padding:var(--section-pad) 0}
.cta-box{
  text-align:center;padding:4rem 2rem;
  background:var(--charcoal);border-radius:var(--radius-lg);
  color:#fff;position:relative;overflow:hidden;
}
.cta-box h2{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(1.6rem,3.5vw,2.5rem);
  font-weight:400;color:#fff;margin-bottom:.7rem;
}
.cta-box p{font-size:1.05rem;color:rgba(255,255,255,.8);max-width:420px;margin:0 auto 1.8rem}
.cta-buttons{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;align-items:center}
.cta-box .btn-primary-dark{
  background:#fff;color:var(--forest);
  border-color:transparent;
  box-shadow:
    0 4px 18px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.cta-box .btn-primary-dark:hover{
  background:var(--parchment-light);
  transform:translateY(-2px);
  box-shadow:
    0 10px 28px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.cta-box .btn-ghost{
  color:rgba(255,255,255,.95);
  border-color:rgba(255,255,255,.38);
  background:transparent;
}
.cta-box .btn-ghost:hover{
  border-color:#fff;
  background:rgba(255,255,255,.12);
  color:#fff;
  transform:translateY(-2px);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer{background:var(--parchment);padding:3.5rem 0 2rem;border-top:1px solid var(--light-border)}
.footer-top{display:grid;grid-template-columns:1.5fr repeat(4,1fr);gap:2rem;margin-bottom:2.5rem}
.footer-brand{display:flex;flex-direction:column;gap:.6rem}
.footer-tagline{font-size:.88rem;color:var(--muted-text);max-width:240px;line-height:1.5}
.footer-col h4{font-size:.72rem;font-weight:600;color:var(--dark-text);margin-bottom:.7rem;text-transform:uppercase;letter-spacing:.06em}
.footer-col ul{display:flex;flex-direction:column;gap:.4rem}
.footer-col a{font-size:.88rem;color:var(--muted-text);transition:color .2s}
.footer-col a:hover{color:var(--dark-text)}
.footer-bottom{padding-top:1.5rem;border-top:1px solid var(--light-border);font-size:.75rem;color:var(--muted-text)}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media(max-width:1024px){
  .features-grid{grid-template-columns:1fr}
  .showcase-panel{grid-template-columns:1fr;gap:2rem}
  .showcase-visual{order:-1}
  .privacy-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:768px){
  .nav-links,.nav-actions{display:none}
  .nav-burger{display:flex}
  .nav-mobile-drawer{
    display:block;max-height:0;overflow:hidden;
    transition:max-height .35s var(--ease);
    background:rgba(253,249,243,.98);
    border-bottom:1px solid var(--light-border);
    box-shadow:0 8px 24px rgba(0,0,0,.06);
  }
  .navbar.nav-open .nav-mobile-drawer{
    max-height:min(85vh,640px);
    overflow-y:auto;
  }
  .nav-mobile-drawer .nav-links,
  .nav-mobile-drawer .nav-actions{
    display:flex;flex-direction:column;align-items:stretch;gap:0;
    max-width:1100px;margin:0 auto;padding:0 1.25rem 1.25rem;
  }
  .nav-mobile-drawer .nav-links > li{width:100%}
  .nav-mobile-drawer .nav-links a{
    display:block;padding:.75rem 0;font-size:1rem;border-bottom:1px solid var(--light-border);
  }
  .nav-mobile-drawer .nav-dropdown{position:static}
  .nav-mobile-drawer .nav-dropdown-toggle{
    font-weight:600;color:var(--dark-text);pointer-events:none;padding:.75rem 0;
  }
  .nav-mobile-drawer .nav-dropdown-toggle svg{display:none}
  .nav-mobile-drawer .nav-dropdown-menu{
    position:static;left:auto;transform:none;opacity:1;visibility:visible;
    min-width:0;width:100%;background:transparent;border:none;box-shadow:none;
    padding:0 0 .5rem .75rem;margin:0;
  }
  .nav-mobile-drawer .nav-dropdown-menu a{
    padding:.45rem 0;border-bottom:none;font-size:.95rem;white-space:normal;
  }
  .nav-mobile-drawer .nav-actions{
    padding-top:.75rem;border-top:1px solid var(--medium-border);gap:.75rem;
  }
  .nav-mobile-drawer .nav-link-watch,.nav-mobile-drawer .btn-download{
    justify-content:center;width:100%;
  }
  .hero-headline{font-size:clamp(2rem,8vw,3rem)}
  .showcase-tabs{flex-direction:column;width:100%;border-radius:var(--radius)}
  .showcase-tab{width:100%;text-align:center;border-radius:8px}
  .showcase-panel{grid-template-columns:1fr}
  .use-cases-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .cta-buttons{flex-direction:column;align-items:center}
  .hero-cta-group{flex-direction:column;align-items:center}
  .guide-mockup-body{padding:1.2rem}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .hero-line,.hero-sub,.hero-cta-group,.hero-image-wrap,
  .feature-card,.step,.showcase-tab,.faq-item,.use-case-card,.privacy-card,.cta-box{
    animation:none !important;
  }
  .btn-download:hover,.btn-primary-dark:hover,.btn-ghost:hover,
  .hero-demo-play:hover .hero-demo-play-btn{
    transform:none !important;
  }
  .nav-mobile-drawer{transition:none}
  .nav-backdrop{transition:none}
}

/* Keyboard focus — keep visible despite reduced-motion preferences */
:focus-visible{
  outline:2px solid var(--forest);
  outline-offset:2px;
}
.btn-download:focus-visible,.btn-primary-dark:focus-visible,.btn-ghost:focus-visible,.skip-link:focus-visible{
  outline-offset:3px;
}

/* ══════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
   ══════════════════════════════════════════════ */
.legal-page{padding:7rem 0 var(--section-pad);background:var(--white)}
.legal-header{text-align:center;margin-bottom:3rem}
.legal-header h1{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(2rem,4vw,3rem);font-weight:400;
  color:var(--dark-text);margin-bottom:.5rem;
}
.legal-meta{font-size:.85rem;color:var(--muted-text)}
.legal-body{max-width:720px;margin:0 auto}
.legal-body h2{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.2rem;font-weight:400;color:var(--dark-text);
  margin:2.5rem 0 .8rem;padding-top:1.5rem;
  border-top:1px solid var(--light-border);
}
.legal-body h2:first-of-type{border-top:none;padding-top:0}
.legal-body h3{
  font-size:1rem;font-weight:600;color:var(--dark-text);
  margin:1.5rem 0 .5rem;
}
.legal-body p{font-size:.92rem;color:var(--body-text);line-height:1.8;margin-bottom:1rem}
.legal-body ul{margin:0 0 1rem 1.5rem;list-style:disc}
.legal-body li{font-size:.92rem;color:var(--body-text);line-height:1.8;margin-bottom:.3rem}
.legal-body a{color:var(--terracotta);text-decoration:underline;text-underline-offset:2px}
.legal-body a:hover{color:var(--forest-darker)}

/* ══════════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════════ */
.pricing-page{padding:7rem 0 var(--section-pad);background:var(--white)}
.pricing-page .section-title{margin-bottom:0}
.pricing-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-bottom:var(--section-pad);
}
.pricing-card{
  padding:2.5rem 2rem;border-radius:var(--radius-lg);
  background:var(--parchment-light);border:1px solid var(--light-border);
  display:flex;flex-direction:column;position:relative;
  transition:all .3s var(--ease);
}
.pricing-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.06)}
.pricing-card--featured{
  background:var(--forest);color:#fff;
  border-color:var(--forest);
}
.pricing-card--featured .pricing-plan-name,
.pricing-card--featured .pricing-amount,
.pricing-card--featured .pricing-plan-desc,
.pricing-card--featured .pricing-features li{color:#fff}
.pricing-card--featured .pricing-features li::before{
  background-image:url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color:rgba(255,255,255,.15);
}
.pricing-card--featured .btn-primary-dark{
  background:#fff;color:var(--forest);
  border-color:transparent;
  box-shadow:
    0 4px 18px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.pricing-card--featured .btn-primary-dark:hover{
  background:var(--parchment-light);
  box-shadow:
    0 10px 28px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.pricing-card--featured .btn-ghost{
  color:#fff;
  border-color:rgba(255,255,255,.4);
  background:transparent;
}
.pricing-card--featured .btn-ghost:hover{
  background:rgba(255,255,255,.12);
  border-color:#fff;
  color:#fff;
}

.pricing-badge{
  position:absolute;top:1.2rem;right:1.2rem;
  padding:.25rem .7rem;border-radius:100px;
  font-size:.7rem;font-weight:600;letter-spacing:.06em;
  text-transform:uppercase;background:rgba(255,255,255,.2);color:#fff;
}
.pricing-plan-name{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.3rem;font-weight:400;color:var(--dark-text);
  margin-bottom:1rem;
}
.pricing-price{margin-bottom:1rem}
.pricing-amount{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:2.2rem;font-weight:400;color:var(--dark-text);
}
.pricing-amount--coming{font-size:1.3rem;color:var(--muted-text)}
.pricing-plan-desc{font-size:.88rem;color:var(--body-text);line-height:1.6;margin-bottom:1.5rem}
.pricing-features{
  list-style:none;display:flex;flex-direction:column;gap:.5rem;
  margin-bottom:2rem;flex:1;
}
.pricing-features li{
  display:flex;align-items:center;gap:.5rem;
  font-size:.88rem;color:var(--body-text);
}
.pricing-features li::before{
  content:'';width:18px;height:18px;border-radius:50%;flex-shrink:0;
  background:var(--forest-light);
  background-image:url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%23D97B3A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;
}
.pricing-cta{width:100%;text-align:center;justify-content:center}
.pricing-faq{max-width:680px;margin:0 auto}
.pricing-faq .section-header{margin-bottom:2rem}

.pricing-per-seat{
  font-size:.82rem;color:var(--muted-text);margin-bottom:1.2rem;margin-top:-.8rem;
}
.pricing-card--featured .pricing-per-seat{color:rgba(255,255,255,.7)}
.pricing-card--featured .pricing-per-seat strong{color:#fff}
.pricing-period{
  font-size:.9rem;color:var(--muted-text);font-family:'Newsreader',Georgia,serif;
}
.pricing-card--featured .pricing-period{color:rgba(255,255,255,.6)}

/* Billing toggle */
.billing-toggle{
  display:flex;justify-content:center;gap:.3rem;
  padding:.3rem;background:var(--parchment);
  border:1px solid var(--light-border);border-radius:100px;
  width:fit-content;margin:0 auto 3rem;
}
.billing-btn{
  padding:.6rem 1.3rem;border-radius:100px;
  font-size:.88rem;font-weight:400;color:var(--body-text);
  transition:all .25s var(--ease);
  font-family:'Newsreader',Georgia,serif;
}
.billing-btn:hover{color:var(--dark-text)}
.billing-btn.active{
  background:var(--white);color:var(--dark-text);
  box-shadow:0 1px 4px rgba(0,0,0,.08);font-weight:500;
}
.billing-save{
  display:inline-block;padding:.1rem .5rem;border-radius:100px;
  font-size:.7rem;font-weight:600;
  background:var(--terracotta-light);color:var(--terracotta);
  margin-left:.3rem;vertical-align:middle;
}

/* Comparison table */
.pricing-compare{margin-bottom:var(--section-pad)}
.compare-table-wrap{max-width:680px;margin:0 auto;overflow-x:auto}
.compare-table{
  width:100%;border-collapse:collapse;
  font-size:.9rem;font-family:'Newsreader',Georgia,serif;
}
.compare-table th,.compare-table td{
  padding:.8rem 1.2rem;text-align:left;
  border-bottom:1px solid var(--light-border);
}
.compare-table th{
  font-size:.8rem;font-weight:600;text-transform:uppercase;
  letter-spacing:.06em;color:var(--muted-text);
}
.compare-table th.compare-highlight{color:var(--forest)}
.compare-table td.compare-highlight{color:var(--forest);font-weight:500}
.compare-table td:first-child{color:var(--body-text);font-weight:500}
.compare-table tbody tr:hover{background:var(--parchment-light)}

/* Enterprise CTA */
.pricing-enterprise{margin-bottom:var(--section-pad)}

@media(max-width:1024px){
  .pricing-grid{grid-template-columns:1fr}
  .pricing-card--featured{order:-1}
}

/* ══════════════════════════════════════════════
   AEO PAGES (Category explainers, Comparisons)
   ══════════════════════════════════════════════ */
.aeo-page{padding:7rem 0 var(--section-pad);background:var(--white)}
.aeo-header{text-align:center;margin-bottom:3.5rem;max-width:680px;margin-left:auto;margin-right:auto}
.aeo-header h1{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(2.2rem,5vw,3.2rem);font-weight:400;
  color:var(--dark-text);margin-bottom:.8rem;line-height:1.15;
}
.aeo-header .aeo-subtitle{font-size:1.1rem;color:var(--body-text);line-height:1.7;max-width:560px;margin:0 auto .6rem}
.aeo-header .aeo-meta{font-size:.82rem;color:var(--muted-text);letter-spacing:.02em}

.aeo-body{max-width:780px;margin:0 auto}
.aeo-body h2{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.5rem;font-weight:400;color:var(--dark-text);
  margin:3rem 0 1rem;padding-top:2rem;
  border-top:1px solid var(--light-border);
}
.aeo-body h2:first-of-type{border-top:none;padding-top:0}
.aeo-body h3{
  font-size:1.05rem;font-weight:600;color:var(--dark-text);
  margin:1.8rem 0 .6rem;
  font-family:'Newsreader',Georgia,serif;
}
.aeo-body p{font-size:.95rem;color:var(--body-text);line-height:1.8;margin-bottom:1rem}
.aeo-body ul,.aeo-body ol{margin:0 0 1.2rem 1.5rem;list-style:disc}
.aeo-body ol{list-style:decimal}
.aeo-body li{font-size:.95rem;color:var(--body-text);line-height:1.8;margin-bottom:.35rem}
.aeo-body a{color:var(--terracotta);text-decoration:underline;text-underline-offset:2px}
.aeo-body a:hover{color:var(--forest-darker)}

.aeo-body blockquote{
  margin:1.5rem 0;padding:1.2rem 1.5rem;
  background:var(--parchment-light);
  border-left:3px solid var(--terracotta);
  border-radius:0 var(--radius) var(--radius) 0;
  font-size:.95rem;color:var(--body-text);line-height:1.7;
}
.aeo-body blockquote strong{color:var(--dark-text)}

.aeo-body .triple{
  display:block;font-size:.82rem;font-style:italic;
  color:var(--muted-text);margin-top:-.5rem;margin-bottom:1rem;
}

/* AEO comparison table — polished */
.aeo-body .compare-table-wrap{
  max-width:100%;margin:2rem 0 2.5rem;overflow-x:auto;
  border:1px solid var(--light-border);border-radius:var(--radius);
  background:var(--parchment-light);
}
.aeo-body .compare-table{width:100%;border-collapse:collapse}
.aeo-body .compare-table th{
  background:var(--parchment);font-size:.72rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;color:var(--muted-text);
  padding:1rem 1.2rem;border-bottom:2px solid var(--medium-border);
}
.aeo-body .compare-table th.compare-highlight{color:var(--forest)}
.aeo-body .compare-table td{
  padding:.9rem 1.2rem;border-bottom:1px solid var(--light-border);
  font-size:.9rem;background:#fff;
}
.aeo-body .compare-table td.compare-highlight{
  color:var(--forest);font-weight:500;background:rgba(250,240,230,.45);
}
.aeo-body .compare-table td:first-child{
  min-width:180px;font-weight:500;color:var(--dark-text);background:var(--parchment-light);
}
.aeo-body .compare-table tbody tr:last-child td{border-bottom:none}

/* AEO fit cards */
.aeo-body .aeo-fit-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;margin:1.5rem 0 2rem}
.aeo-body .aeo-fit-card{
  padding:1.5rem;border-radius:var(--radius);
  border:1px solid var(--light-border);background:var(--parchment-light);
}
.aeo-body .aeo-fit-card h3{margin-top:0;margin-bottom:.8rem}
.aeo-body .aeo-fit-card ul{margin-bottom:0}
.aeo-body .aeo-fit-card--primary{background:var(--forest);color:#fff;border-color:var(--forest)}
.aeo-body .aeo-fit-card--primary h3{color:#fff}
.aeo-body .aeo-fit-card--primary li{color:rgba(255,255,255,.85)}

/* AEO FAQ within body */
.aeo-body .faq-list{max-width:100%;margin:1.5rem 0 2rem}

/* Responsive */
@media(max-width:768px){
  .aeo-body .compare-table th,.aeo-body .compare-table td{
    padding:.7rem .8rem;font-size:.82rem;
  }
  .aeo-body .compare-table td:first-child{min-width:130px}
  .aeo-body .aeo-fit-grid{grid-template-columns:1fr}
}

/* ══════════════════════════════════════════════
   COMPARE HUB
   ══════════════════════════════════════════════ */
.compare-hub{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.2rem;margin:1.5rem 0 2.5rem;
}
.compare-card{
  padding:1.8rem;border-radius:var(--radius-lg);
  background:var(--parchment-light);border:1px solid var(--light-border);
  display:flex;flex-direction:column;
  transition:all .3s var(--ease);
  text-decoration:none;
}
.compare-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,.06);
  border-color:var(--medium-border);
}
.compare-card h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.15rem;font-weight:400;color:var(--dark-text);
  margin-bottom:.5rem;
}
.compare-card>p{
  font-size:.88rem;color:var(--body-text);line-height:1.65;
  margin-bottom:1rem;flex:1;
}
.compare-card-price{
  font-size:.82rem;color:var(--muted-text);line-height:1.5;
  margin-bottom:.8rem;
}
.compare-card-price strong{color:var(--dark-text);font-weight:600}
.compare-card-link{
  font-size:.88rem;font-weight:500;color:var(--terracotta);
  transition:color .2s;
}
.compare-card:hover .compare-card-link{color:var(--forest-darker)}

@media(max-width:1024px){
  .compare-hub{grid-template-columns:1fr}
}
@media(max-width:768px){
  .compare-hub{grid-template-columns:1fr}
}

/* ── 404 page ───────────────────────────────────────────── */
.not-found-page{
  padding:10rem 0 var(--section-pad);
  background:var(--white);
  min-height:60vh;
  display:flex;
  align-items:center;
}
.not-found-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:1.25rem;
  max-width:520px;
  margin:0 auto;
}
.not-found-code{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:6rem;
  line-height:1;
  color:var(--forest);
  margin:0;
  opacity:.18;
}
.not-found-page .section-title{margin-bottom:0}
.not-found-page .section-desc{margin-bottom:.5rem}
.not-found-page .cta-buttons{margin-top:.5rem}

@media(max-width:600px){
  .not-found-code{font-size:4rem}
  .not-found-page{padding:8rem 0 var(--section-pad)}
}

/* ── Nav dropdown ────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle svg { transition: transform 0.2s var(--ease); }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--parchment-light);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), visibility 0.2s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--body-text);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--parchment-dark);
  color: var(--forest);
}
.nav-dropdown-divider {
  list-style: none;
  padding: 0.45rem 1.25rem 0.15rem !important;
  pointer-events: none;
}
.nav-dropdown-divider span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-text);
}
.nav-mobile-drawer .nav-dropdown-divider span {
  padding-top: 0.5rem;
}
