@charset "UTF-8";
/* =============================================================================
   styles.css — SlideShortcuts marketing site stylesheet
   =============================================================================
   Two-part file:
     1. Design system tokens (colors, typography, spacing, motion)
        — sourced from the SlideShortcuts Design System (claude.ai/design)
        — single source of truth for marketing site + in-product taskpane
     2. Marketing site component CSS (nav, hero, features, shortcuts, etc.)

   Self-hosts the brand fonts from /fonts (Instrument Serif + DM Sans +
   JetBrains Mono) — no Google Fonts CDN dependency.

   Cache-Control: public, max-age=600 (per netlify.toml).
   ============================================================================= */

/* ============================================================================
   SlideShortcuts — Colors & Type
   Single source of truth for the design-system. Marketing site + taskpane both
   reference the same tokens. Brand evolution lives here.
   ============================================================================ */

/* === Webfonts ===
   Brand stack: Instrument Serif (display) + DM Sans (body) + JetBrains Mono (mono).
   Self-hosted from /fonts to avoid CDN dependencies and licensing drift.
*/
@font-face {
  font-family: 'Instrument Serif';
  src: url('/fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('/fonts/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/DMSans-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/fonts/JetBrainsMono-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/fonts/JetBrainsMono-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/fonts/JetBrainsMono-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* ---------- Color: brand core ---------- */
  --navy:        #0B1A2E;   /* primary, body text on cream, large surfaces */
  --navy-mid:    #132B4A;   /* button hover, subtle elevation on navy */
  --navy-light:  #1A3A5C;   /* hairline-on-navy dividers, ghost outlines */
  --navy-deep:   #07111F;   /* darkest navy, footer & shadow base */

  --gold:        #C8A44E;   /* accent, italic emphasis, CTAs on navy */
  --gold-light:  #E8D5A0;   /* hover for gold; on-navy hairline label */
  --gold-deep:   #A88536;   /* gold press-down state */
  --gold-tint:   rgba(200,164,78,0.12);  /* gold halo / icon bg */

  --cream:       #FAF8F4;   /* page background — warm off-white */
  --cream-card:  #F5F0E8;   /* slightly deeper cream for cards on cream */
  --white:       #FFFFFF;   /* card surfaces */

  /* ---------- Color: text ---------- */
  --fg-1:        #0B1A2E;   /* same as navy — strongest body */
  --fg-2:        #1A1A1A;   /* near-black for body */
  --fg-3:        #555555;   /* secondary copy, sub heads */
  --fg-4:        #888888;   /* meta, captions, placeholder */
  --fg-on-navy:  #FFFFFF;   /* primary on-dark */
  --fg-on-navy-2:rgba(255,255,255,0.65);
  --fg-on-navy-3:rgba(255,255,255,0.4);

  /* ---------- Color: structure ---------- */
  --border:      #E5E1DA;   /* default hairline */
  --border-soft: #ECE8E0;   /* lightest divider */
  --border-strong:#D6D0C2;  /* emphasis / focus ring base */
  --hairline-on-navy: rgba(255,255,255,0.08);

  /* ---------- Color: status ---------- */
  --success:     #1A7A42;
  --success-bg:  #E8F5E9;
  --error:       #C62828;
  --error-bg:    #FCEAEA;
  --warning:     #B7791F;
  --warning-bg:  #FBF3DD;
  --pulse:       #3DBB78;   /* live-status dot */

  /* ---------- Type: families (brand stack — self-hosted) ---------- */
  --serif-display: 'Instrument Serif', Georgia, 'Times New Roman', Times, serif;
  --sans-body:     'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:          'JetBrains Mono', 'Courier New', Courier, 'Liberation Mono', monospace;

  /* ---------- Type: scale (marketing) ---------- */
  --fs-d1: clamp(2.4rem, 5vw, 4rem);     /* hero h1 */
  --fs-d2: clamp(1.6rem, 3vw, 2.2rem);   /* section h2 */
  --fs-d3: 1.4rem;
  --fs-h3: 1rem;
  --fs-body-lg: 1.0625rem;
  --fs-body: 0.9375rem;
  --fs-body-sm: 0.875rem;
  --fs-meta: 0.8125rem;
  --fs-eyebrow: 0.6875rem;

  --lh-tight: 1.1;
  --lh-display: 1.15;
  --lh-snug: 1.4;
  --lh-body: 1.7;

  --tracking-eyebrow: 0.14em;
  --tracking-display: -0.015em;
  --tracking-tight: -0.02em;

  /* ---------- Spacing scale (4px base) ---------- */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* ---------- Radii ---------- */
  --r-xs: 3px;     /* taskpane inputs (IE11-era) */
  --r-sm: 4px;     /* kbd badges */
  --r-md: 6px;     /* small cards, action-cards */
  --r-lg: 8px;     /* buttons, chips */
  --r-xl: 12px;    /* feature cards */
  --r-2xl: 14px;   /* pricing cards */
  --r-pill: 100px; /* badges, status pills */

  /* ---------- Elevation ---------- */
  --shadow-sm: 0 1px 0 var(--border);
  --shadow-md: 0 2px 12px rgba(11,26,46,0.06);
  --shadow-lg: 0 8px 30px rgba(11,26,46,0.08);
  --shadow-xl: 0 12px 40px rgba(11,26,46,0.12);
  --shadow-gold: 0 4px 24px rgba(200,164,78,0.14);
  --shadow-inset-soft: inset 0 1px 0 rgba(255,255,255,0.6);

  /* ---------- Motion ---------- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emphasis: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 600ms;
  --dur-reveal: 700ms;
}

/* ============================================================================
   Semantic typography classes
   Use these instead of styling tags from scratch — keeps marketing + slides
   + UI kits visually aligned.
   ============================================================================ */

.t-eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-4);
}

.t-display-1, .h1 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: var(--fs-d1);
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-tight);
  color: var(--navy);
}
.t-display-1 em, .h1 em { font-style: italic; color: var(--gold); }

.t-display-2, .h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: var(--fs-d2);
  line-height: 1.2;
  letter-spacing: var(--tracking-display);
  color: var(--navy);
}
.t-display-2 em, .h2 em { font-style: italic; color: var(--gold); }

.t-display-3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: var(--fs-d3);
  line-height: 1.25;
  color: var(--navy);
}

.h3 {
  font-family: var(--sans-body);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
}

.t-lede {
  font-family: var(--sans-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--fg-3);
}

.t-body {
  font-family: var(--sans-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--fg-2);
}

.t-body-sm {
  font-family: var(--sans-body);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  color: var(--fg-3);
}

.t-meta {
  font-family: var(--sans-body);
  font-size: var(--fs-meta);
  color: var(--fg-4);
  letter-spacing: 0.01em;
}

.t-mono {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* Keystroke chip — the brand's signature unit. Use for shortcut keys, license
   key inputs, anything keyboard. Always JetBrains Mono. */
.kbd {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.18rem 0.45rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--navy);
  white-space: nowrap;
  line-height: 1.4;
}

/* On-navy variant for dark backgrounds */
.kbd-on-navy {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
  color: var(--gold-light);
}

/* =============================================================================
   COMPONENT STYLES (marketing site)
   ============================================================================= */
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body { background: var(--cream); color: var(--fg-2); font-family: var(--sans-body); -webkit-font-smoothing: antialiased; }
  a { color: inherit; }

  /* ----- shared ----- */
  section { padding: 96px 56px; }
  .container { max-width: 1240px; margin: 0 auto; }
  .eyebrow {
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--fg-4);
    margin: 0 0 18px;
  }
  .eyebrow.on-navy { color: var(--gold-light); }
  h1, h2, h3, h4 { margin: 0; font-family: var(--serif-display); font-weight: 400; color: var(--navy); }
  h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }
  .on-navy h2 em { color: var(--gold-light); }
  p { margin: 0; }

  /* wordmark */
  .wm { font-family: var(--serif-display); font-weight: 400; line-height: .92;
        letter-spacing: -.018em; display: inline-flex; align-items: baseline; }
  .wm em { font-style: italic; color: var(--gold); }
  .wm.on-navy { color: #fff; }

  /* buttons */
  .btn { display: inline-block; padding: .85rem 1.6rem; text-decoration: none;
         border-radius: 6px; font-weight: 700; font-size: 14px;
         font-family: var(--sans-body); border: 1px solid transparent;
         cursor: pointer; line-height: 1.2; }
  .btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
  .btn-primary:hover { background: var(--navy-mid); }
  .btn-ghost { background: transparent; color: var(--fg-2);
               text-decoration: underline; text-underline-offset: 4px;
               padding: .85rem 1rem; }
  .btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
  .btn-outline:hover { background: var(--navy); color: #fff; }

  /* kbd */
  .kbd { display: inline-flex; align-items: center; justify-content: center;
         min-width: 24px; height: 22px; padding: 0 7px; background: var(--cream);
         border: 1px solid var(--border); border-bottom-width: 2px;
         border-radius: 3px; font-family: var(--mono); font-size: 10.5px;
         font-weight: 700; color: var(--navy); white-space: nowrap;
         line-height: 1; }
  .kbd-row { display: inline-flex; gap: 4px; }
  .kbd-on-navy { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12);
                 color: var(--gold-light); border-bottom-color: rgba(255,255,255,0.18); }

  .pulse { display: inline-block; width: 6px; height: 6px; border-radius: 50%;
           background: var(--pulse); margin-right: 8px; vertical-align: middle;
           animation: pulse 2s ease infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .35 } }

  /* ===== NAV ===== */
  .nav { display: flex; align-items: center; justify-content: space-between;
         padding: 18px 56px; background: var(--cream);
         border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { font-size: 13px; color: var(--fg-2); text-decoration: none; }
  .nav-cta { padding: .55rem 1rem; background: var(--navy); color: #fff !important;
             border-radius: 6px; font-weight: 700; white-space: nowrap; }

  /* ===== HERO ===== */
  .hero { padding: 80px 56px 88px; background: var(--cream);
          border-bottom: 1px solid var(--border); }
  .hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 72px; align-items: center; }
  .hero h1 { font-size: clamp(48px, 6.4vw, 84px); line-height: 1.06;
             letter-spacing: -.025em; margin-bottom: 28px; padding-bottom: 4px; }
  .hero p.lede { font-size: 17px; line-height: 1.6; color: var(--fg-3);
                 max-width: 540px; margin-bottom: 28px; }
  .hero-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
  .hero-meta { font-family: var(--mono); font-size: 11px; color: var(--fg-4);
               letter-spacing: .06em; text-transform: uppercase; }

  /* hero spec card */
  .hero-spec { background: #fff; border: 1px solid var(--border); border-radius: 6px;
               padding: 24px; box-shadow: 0 1px 0 rgba(11,26,46,.04); }
  .hero-spec h3 { font-size: 19px; margin-bottom: 14px; letter-spacing: -.005em; }
  .spec-row { display: grid; grid-template-columns: 1fr auto; align-items: center;
              gap: 16px; padding: 11px 0; border-top: 1px solid var(--border-soft);
              font-size: 13px; color: var(--fg-2); }
  .spec-row:first-of-type { border-top: 0; }
  .hero-spec .spec-foot { margin-top: 12px; padding-top: 12px;
                          border-top: 1px solid var(--border-soft);
                          font-family: var(--mono); font-size: 10.5px; color: var(--fg-4);
                          letter-spacing: .06em; text-transform: uppercase; }
  .hero-spec .kbd { min-width: 26px; height: 24px; padding: 0 7px;
                    border-radius: 4px; font-size: 11px; }

  /* Hero demo video — constrain to the spec-card column so it never
     renders at the MP4's intrinsic size (which overflows the viewport
     on phones). width:100% + height:auto preserves aspect ratio inside
     whatever column the responsive grid gives us. */
  .hero-video { display: block; width: 100%; height: auto;
                border-radius: 4px; background: var(--cream-card); }

  /* ===== PROBLEM ===== */
  .problem { background: var(--cream-card); border-bottom: 1px solid var(--border); }
  .problem-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
  .problem h2 { font-size: 52px; line-height: 1.08; letter-spacing: -.022em; max-width: 520px; }
  .problem-body { display: flex; flex-direction: column; gap: 16px; }
  .problem-body p { font-size: 15.5px; line-height: 1.7; color: var(--fg-3); }
  .problem-body p strong { color: var(--navy); font-weight: 600; }

  /* ===== FEATURES ===== */
  .features { background: var(--cream); }
  .features h2 { font-size: 52px; line-height: 1.08; letter-spacing: -.022em;
                 margin-bottom: 56px; max-width: 820px; }
  .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .feature-card { background: #fff; border: 1px solid var(--border); border-radius: 6px;
                  padding: 32px; display: flex; flex-direction: column; }
  .feature-card .num { font-family: var(--mono); font-size: 11px; font-weight: 700;
                       letter-spacing: .14em; color: var(--gold); margin-bottom: 24px;
                       text-transform: uppercase; }
  .feature-card h3 { font-size: 28px; line-height: 1.12; margin-bottom: 12px;
                     letter-spacing: -.018em; padding-bottom: 4px; }
  .feature-card p { font-size: 14px; line-height: 1.65; color: var(--fg-3); }

  /* ===== SHORTCUTS REFERENCE ===== */
  .shortcuts { background: var(--cream-card); border-top: 1px solid var(--border);
               border-bottom: 1px solid var(--border); }
  .shortcuts-head { display: grid; grid-template-columns: 1fr auto; gap: 56px;
                    align-items: end; margin-bottom: 48px; }
  .shortcuts h2 { font-size: 52px; line-height: 1.08; letter-spacing: -.022em; }
  .shortcuts-head p { font-size: 15px; line-height: 1.65; color: var(--fg-3); max-width: 480px; }

  /* OS toggle (Windows / Mac pills, right side of shortcuts-head). Sits
     on the cream-card section bg, so the pill group has a white inner
     background with a soft border. Active pill = navy filled + cream
     text. Hover = navy text on cream. */
  .os-toggle { display: inline-flex; gap: 0; border: 1px solid var(--border);
               border-radius: 999px; overflow: hidden; background: #fff;
               align-self: end; }
  .os-btn { font-family: var(--mono); font-size: 11px; font-weight: 600;
            letter-spacing: .12em; text-transform: uppercase;
            color: var(--fg-3); padding: 9px 18px;
            background: transparent; border: 0; cursor: pointer;
            transition: background .15s, color .15s; }
  .os-btn:hover { color: var(--navy); }
  .os-btn[aria-pressed="true"] { background: var(--navy); color: var(--cream); }

  .ref-card { background: #fff; border: 1px solid var(--border); border-radius: 4px;
              padding: 32px 40px 24px; }
  /* 3 columns on desktop, wraps to 2 rows when 6 .ref-col children present.
     Mobile collapses to 1 column via the 768px media query. */
  .ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 56px; }
  /* Quick Actions card (.ref-col-win) is Windows-only — on Windows the
     .ppam keyboard hook handles Alt+5/6/7/8/9. Mac has no equivalent
     keyboard hook; Quick Actions on Mac live in the ribbon's Quick
     Actions group + the taskpane "Actions" tab, not as keyboard
     shortcuts. Hide the card on Mac so we don't mislead Mac visitors
     with keystrokes that don't actually work. */
  .ref-grid[data-os="mac"] .ref-col-win { display: none; }
  /* Subcategory header: numbered eyebrow only (italic subtitle dropped 2026-05-04
     per Davon — kept the page tighter and let the keystroke rows breathe). */
  .ref-col .ref-num { font-family: var(--mono); font-size: 11px; font-weight: 700;
                      letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
                      display: block; margin-bottom: 14px; padding-bottom: 12px;
                      border-bottom: 1px solid var(--border-soft); }
  /* h4 retained for backward compat in case any other section uses .ref-col h4 */
  .ref-col h4 { font-family: var(--serif-display); font-weight: 400;
                font-size: 1.15rem; color: var(--navy); letter-spacing: -0.005em;
                margin: 0 0 14px; padding-bottom: 12px;
                border-bottom: 1px solid var(--border-soft); }
  .ref-row { display: grid; grid-template-columns: 1fr auto; align-items: center;
             gap: 12px; padding: 8px 0; font-size: 13px; color: var(--fg-2); }
  .shortcuts-foot { margin-top: 20px; font-family: var(--mono); font-size: 11px;
                    color: var(--fg-4); letter-spacing: .06em; text-transform: uppercase; }

  /* ===== SETUP ===== */
  .setup { background: var(--cream); }
  .setup h2 { font-size: 52px; line-height: 1.08; letter-spacing: -.022em;
              margin-bottom: 48px; max-width: 760px; }
  .setup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .step { background: #fff; border: 1px solid var(--border); border-radius: 6px;
          padding: 28px 28px 32px; }
  .step .step-num { font-family: var(--serif-display); font-size: 56px; line-height: 1;
                    color: var(--gold); letter-spacing: -.02em; margin-bottom: 20px; }
  .step h3 { font-size: 24px; margin-bottom: 10px; letter-spacing: -.01em; }
  .step p { font-size: 14px; line-height: 1.6; color: var(--fg-3); }

  /* ===== PRICING ===== */
  .pricing { background: var(--navy-deep); color: #fff;
             border-top: 1px solid rgba(255,255,255,0.06); }
  .pricing h2 { color: #fff; font-size: 52px; line-height: 1.08;
                letter-spacing: -.022em; margin-bottom: 16px; max-width: 820px; }
  .pricing-lede { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.65);
                  margin-bottom: 56px; max-width: 580px; }
  .pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
                  border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
                  background: rgba(255,255,255,0.02); }
  /* 3-card variant (Trial / Monthly / Annual) — see issue #170. Same
     unified-card-frame visual as the 2-col version, just a 3rd column. */
  .pricing-grid.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .tier { padding: 36px; position: relative; display: flex; flex-direction: column; }
  .tier + .tier { border-left: 1px solid rgba(255,255,255,0.08); }
  .tier.featured { background: rgba(200,164,78,0.04); }
  .tier.featured::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0;
                           width: 3px; background: var(--gold); }
  /* Trial card: subtle warm tint (cream-toned alpha) so it reads as "the
     friendly try-first option" without competing with Annual's featured
     gold treatment. No left bar. */
  .tier.tier-trial { background: rgba(245,240,232,0.025); }
  .tier.tier-trial .tier-eyebrow { color: rgba(245,240,232,0.7); }

  /* ===== Bordered minimal (D2 variant — chosen 2026-05-15) =====
     Editorial restraint: each card is its own rounded rect with a gap
     between them (no shared frame), no bullet-list features, arrow-style
     text-link CTAs. Annual gets a fuller gold border + gold-tinted bg
     for clear "best value" emphasis. See issue #170 for the design
     comparison that landed on this variant. */
  .pricing-bordered {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    border: none; background: none;
  }
  .pricing-bordered .btier {
    padding: 28px 24px; display: flex; flex-direction: column; gap: 12px;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
    background: rgba(255,255,255,0.02);
    transition: border-color .15s, background .15s;
  }
  .pricing-bordered .btier:hover { border-color: rgba(255,255,255,0.22); }
  /* Trial: cream-toned tint for "friendly try-first" reading */
  .pricing-bordered .btier.tier-trial { background: rgba(245,240,232,0.025); }
  /* Annual: full gold treatment — gold border + tinted bg */
  .pricing-bordered .btier.featured {
    border-color: rgba(200,164,78,0.6);
    background: rgba(200,164,78,0.12);
  }
  .pricing-bordered .beyebrow { font-family: var(--mono); font-size: 10.5px;
                                  letter-spacing: .14em; text-transform: uppercase;
                                  color: rgba(255,255,255,0.4); margin: 0; }
  .pricing-bordered .btier.featured .beyebrow { color: var(--gold); }
  .pricing-bordered h3 { color: #fff; font-size: 24px; margin: 0;
                          font-weight: 400; font-family: var(--serif-display);
                          letter-spacing: -.015em; }
  .pricing-bordered .bprice { color: #fff; font-size: 28px;
                                font-family: var(--serif-display);
                                letter-spacing: -.02em; line-height: 1; }
  .pricing-bordered .bprice .small { font-family: var(--mono); font-size: 11px;
                                       color: rgba(255,255,255,0.5);
                                       margin-left: 6px; letter-spacing: .04em; }
  .pricing-bordered .bblurb { color: rgba(255,255,255,0.7); font-size: 13px;
                                line-height: 1.5; flex: 1; }
  .pricing-bordered .bcta {
    align-self: flex-start; color: var(--gold); font-family: var(--mono);
    font-size: 12px; text-transform: uppercase; letter-spacing: .14em;
    text-decoration: none; border-bottom: 1px solid rgba(200,164,78,0.4);
    padding-bottom: 4px; font-weight: 700;
  }
  .pricing-bordered .bcta:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
  .tier-eyebrow { font-family: var(--mono); font-size: 10.5px; font-weight: 700;
                  letter-spacing: .14em; text-transform: uppercase;
                  color: rgba(255,255,255,0.4); margin-bottom: 14px; }
  .tier.featured .tier-eyebrow { color: var(--gold); }
  .tier h3 { color: #fff; font-size: 30px; margin-bottom: 8px; letter-spacing: -.018em; }
  .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
  .price { font-family: var(--serif-display); font-size: 56px; color: #fff;
           letter-spacing: -.025em; line-height: 1; }
  .cadence { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.55); }
  .tier-note { font-family: var(--mono); font-size: 11px; font-weight: 700;
               letter-spacing: .06em; text-transform: uppercase;
               color: var(--gold-light); margin: 0 0 22px; }
  .tier-note.muted { color: rgba(255,255,255,0.55); }
  .tier-features { list-style: none; padding: 0; margin: 0 0 28px;
                   display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .tier-features li { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.85);
                      display: grid; grid-template-columns: 14px 1fr; gap: 10px;
                      align-items: baseline; }
  .tier-features li::before { content: '·'; color: var(--gold); font-size: 18px; line-height: 0; }
  .tier .btn-primary { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
  .tier .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
  .tier .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
  .tier .btn-outline:hover { background: #fff; color: var(--navy-deep); }
  .tier-sub-cta { font-family: var(--mono); font-size: 10.5px; font-weight: 700;
                  letter-spacing: .06em; text-transform: uppercase;
                  color: rgba(255,255,255,0.4); margin-top: 10px; }

  /* ===== FAQ ===== */
  .faq { background: var(--cream); border-top: 1px solid var(--border); }
  .faq .container { max-width: 820px; }
  .faq h2 { font-size: 44px; line-height: 1.08; letter-spacing: -.022em; margin-bottom: 40px; }
  .qa { border-top: 1px solid var(--border); padding: 22px 0; }
  .qa:last-of-type { border-bottom: 1px solid var(--border); }
  .qa summary { list-style: none; cursor: pointer;
                display: grid; grid-template-columns: 36px 1fr auto;
                gap: 14px; align-items: center; }
  .qa summary::-webkit-details-marker { display: none; }
  .qa .num { font-family: var(--mono); font-size: 11px; font-weight: 700;
             letter-spacing: .06em; color: var(--fg-4); }
  .qa .q { font-family: var(--serif-display); font-size: 22px; color: var(--navy);
           letter-spacing: -.01em; line-height: 1.3; }
  .qa .plus { font-family: var(--mono); font-size: 18px; color: var(--fg-4);
              transition: transform .18s ease; }
  .qa[open] .plus { transform: rotate(45deg); }
  .qa .a { padding: 14px 0 0 50px; font-size: 14.5px; line-height: 1.7; color: var(--fg-3); }

  /* ===== FINAL CTA ===== */
  .final { background: var(--cream-card); border-top: 1px solid var(--border); }
  .final-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
  .final h2 { font-size: 56px; line-height: 1.04; letter-spacing: -.025em; margin-bottom: 22px; }
  .final p { font-size: 16px; line-height: 1.6; color: var(--fg-3); max-width: 540px; }
  .final-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  .final-actions .btn-primary { padding: .95rem 1.8rem; font-size: 15px; }

  /* ===== FOOTER ===== */
  .footer { background: var(--navy-deep); color: #fff; padding: 56px 56px 40px; }
  .footer .container { max-width: 1240px; }
  .footer-row { display: flex; justify-content: space-between; align-items: center;
                gap: 24px; flex-wrap: wrap; padding-top: 24px;
                border-top: 1px solid rgba(255,255,255,0.08); }
  .footer-meta { font-family: var(--mono); font-size: 11px;
                 color: rgba(255,255,255,0.4); letter-spacing: .06em;
                 text-transform: uppercase; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.7);
                    text-decoration: none; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start;
                gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
  .footer-top .blurb { font-size: 13px; line-height: 1.65;
                       color: rgba(255,255,255,0.65); max-width: 380px; margin-top: 14px; }

  /* ===== Responsive ===== */
  @media (max-width: 1200px) {
    .ref-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 960px) {
    section, .nav, .footer { padding-left: 24px; padding-right: 24px; }
    .nav-links { gap: 16px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .hero-grid, .problem-grid, .shortcuts-head, .features-grid, .setup-grid,
    .pricing-grid, .final-grid { grid-template-columns: 1fr; gap: 32px; }
    .pricing-bordered { grid-template-columns: 1fr; gap: 16px; }
    .ref-grid { grid-template-columns: 1fr; gap: 28px; }
    .tier + .tier { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
    .qa .a { padding-left: 0; }
  }

/* =============================================================================
   LEGAL & SUPPORT PAGE STYLES
   Used by /privacy, /terms, /support. Single source of truth — replaces the
   per-page inline <style> blocks that lived in privacy.html / terms.html /
   support.html before the brand cascade on 2026-05-04.
   ============================================================================= */

/* Sub-page nav (used on /privacy, /terms, /support) — simpler than the
   home-page nav which has the full link list */
.subpage-nav {
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(250,248,244,0.85);
  backdrop-filter: blur(20px);
}
.subpage-nav .nav-back {
  font-family: var(--sans-body);
  font-size: 0.875rem;
  color: var(--fg-3);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.subpage-nav .nav-back:hover { color: var(--navy); }

/* Long-form content body — used for legal pages and support FAQ */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  font-family: var(--sans-body);
  background: var(--cream);
}
.legal h1 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 2.75rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.legal h1 em { font-style: italic; color: var(--gold); }
.legal .updated {
  font-size: 0.85rem;
  color: var(--fg-4);
  margin-bottom: 2.5rem;
  font-family: var(--mono);
}
.legal h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.65rem);
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.legal h2 em { font-style: italic; color: var(--gold); }
.legal h3 {
  font-family: var(--sans-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal p, .legal li {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.legal ul, .legal ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--navy); text-decoration: underline; }
.legal a:hover { color: var(--gold); }
.legal code {
  font-family: var(--mono);
  font-size: 0.85rem;
  background: rgba(11,26,46,0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
}
.legal th, .legal td {
  text-align: left;
  padding: 0.75rem;
  border: 1px solid var(--border);
  vertical-align: top;
}
.legal th {
  background: var(--white);
  font-weight: 600;
  color: var(--navy);
}
.legal td { background: var(--white); }
.legal .callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

/* Support page contact card */
.contact-card {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin: 2.5rem 0;
  text-align: center;
  font-family: var(--sans-body);
}
.contact-card h2 {
  color: var(--gold);
  margin: 0 0 0.5rem 0;
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 400;
}
.contact-card p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin: 0 0 1.25rem 0;
}
.contact-card a.contact-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.contact-card a.contact-btn:hover {
  background: var(--gold-light);
  color: var(--navy);
}
.contact-card .response {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* Support FAQ items */
.faq-item {
  margin-bottom: 1.75rem;
}
.faq-item .q {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  display: block;
}
.faq-item .a {
  color: var(--fg-2);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* Sub-page footer (simpler than home — single line, navy bg) */
.subpage-footer {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--sans-body);
}
.subpage-footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.subpage-footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
.subpage-footer a:hover { color: var(--gold-light); }
