/* ==========================================================================
   88741.INC — Design System
   Version 1.0 · Static site stylesheet
   --------------------------------------------------------------------------
   Sections
   01. Design tokens
   02. Reset & base
   03. Typography
   04. Layout primitives
   05. Buttons & links
   06. Header / navigation
   07. Hero
   08. Cards & features
   09. Game / product blocks
   10. Process & timeline
   11. FAQ / accordion
   12. Forms
   13. Tables
   14. Legal / prose
   15. Footer
   16. Motion & utilities
   17. Responsive
   ========================================================================== */

/* ==========================================================================
   01. Design tokens
   ========================================================================== */
:root {
  /* --- Brand core: warm sunrise palette --- */
  --c-amber-50:  #FFF6E6;
  --c-amber-100: #FFE9C4;
  --c-amber-200: #FFD79A;
  --c-amber-400: #F7B055;
  --c-amber-500: #F2A03D;   /* primary */
  --c-amber-600: #D97E1A;   /* primary hover */
  --c-amber-700: #A95E0E;

  --c-forest-100: #E3EFE6;
  --c-forest-300: #9CC3AC;
  --c-forest-500: #2F6B4F;  /* secondary */
  --c-forest-600: #255741;
  --c-forest-700: #1B4130;

  --c-clay-300:  #F0C0AE;
  --c-clay-500:  #E2725B;   /* accent */
  --c-clay-600:  #C55540;

  --c-sky-100: #E4F0F7;
  --c-sky-400: #7FB2D9;

  /* --- Neutrals (warm paper) --- */
  --c-cream:     #FDF8F0;
  --c-paper:     #FFFFFF;
  --c-sand:      #F5E9D9;
  --c-sand-deep: #EADBC6;
  --c-ink:       #1F1A17;
  --c-ink-2:     #4A403A;
  --c-mist:      #6E625A;   /* 5.6:1 on cream — AA compliant */
  --c-line:      #E7D9C6;
  --c-line-soft: #F0E4D4;

  /* --- Semantic --- */
  --c-success: #2F6B4F;
  --c-warning: #B8760B;
  --c-error:   #B3382B;
  --c-info:    #256C8F;

  /* --- Typography --- */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SFMono-Regular', 'JetBrains Mono', Consolas, monospace;

  --fs-xs:   0.75rem;   /* 12 */
  --fs-sm:   0.875rem;  /* 14 */
  --fs-base: 1rem;      /* 16 */
  --fs-md:   1.0625rem; /* 17 */
  --fs-lg:   1.125rem;  /* 18 */
  --fs-xl:   1.25rem;   /* 20 */
  --fs-2xl:  1.5rem;    /* 24 */
  --fs-3xl:  1.875rem;  /* 30 */
  --fs-4xl:  2.25rem;   /* 36 */
  --fs-5xl:  2.75rem;   /* 44 */
  --fs-6xl:  3.5rem;    /* 56 */

  --lh-tight: 1.12;
  --lh-snug: 1.3;
  --lh-normal: 1.65;
  --lh-relaxed: 1.8;

  --tracking-tight: -0.02em;
  --tracking-wide: 0.08em;
  --tracking-wider: 0.16em;

  /* --- Spacing: 4px base --- */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* --- Radius --- */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* --- Elevation: warm-tinted, low-spread --- */
  --sh-xs: 0 1px 2px rgba(63, 45, 26, 0.06);
  --sh-sm: 0 2px 6px rgba(63, 45, 26, 0.07);
  --sh-md: 0 8px 20px -6px rgba(63, 45, 26, 0.14), 0 2px 6px rgba(63, 45, 26, 0.05);
  --sh-lg: 0 20px 44px -12px rgba(63, 45, 26, 0.2), 0 4px 12px rgba(63, 45, 26, 0.06);
  --sh-xl: 0 34px 70px -18px rgba(63, 45, 26, 0.26);

  /* --- Motion --- */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 260ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 480ms cubic-bezier(0.22, 1, 0.36, 1);

  /* --- Layout --- */
  --maxw: 1200px;
  --maxw-prose: 74ch;
  --header-h: 76px;
}

/* ==========================================================================
   02. Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--c-ink-2);
  background-color: var(--c-cream);
  /* Faint warm paper grain, pure CSS — no image request */
  background-image:
    radial-gradient(circle at 12% 8%, rgba(242, 160, 61, 0.10), transparent 42%),
    radial-gradient(circle at 88% 4%, rgba(47, 107, 79, 0.07), transparent 38%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }

::selection { background: var(--c-amber-200); color: var(--c-ink); }

:focus-visible {
  outline: 3px solid var(--c-amber-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--c-ink);
  color: #fff;
  padding: var(--s-3) var(--s-5);
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   03. Typography
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--c-ink);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--s-4);
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
}
h1 { font-size: clamp(2.25rem, 5.2vw, var(--fs-6xl)); line-height: 1.06; }
h2 { font-size: clamp(1.75rem, 3.4vw, var(--fs-4xl)); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); font-family: var(--font-body); font-weight: 700; }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--c-forest-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c-forest-500); }

strong { color: var(--c-ink); font-weight: 700; }

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--c-mist);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-amber-700);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--c-amber-500);
  border-radius: 2px;
}
.section-title { max-width: 34ch; }
.section-sub { max-width: 62ch; color: var(--c-mist); }

/* ==========================================================================
   04. Layout primitives
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
.container--narrow { max-width: 880px; }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper { background: var(--c-paper); }
.section--sand  { background: var(--c-sand); }
.section--ink   { background: var(--c-ink); color: var(--c-sand); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--c-cream); }
.section--ink .lead, .section--ink p { color: rgba(253, 248, 240, 0.76); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--top { align-items: start; }

.stack-2 > * + * { margin-top: var(--s-2); }
.stack-4 > * + * { margin-top: var(--s-4); }
.stack-6 > * + * { margin-top: var(--s-6); }

.divider-wave { display: block; width: 100%; height: 42px; }

/* ==========================================================================
   05. Buttons & links
   ========================================================================== */
.btn {
  --btn-bg: var(--c-amber-500);
  --btn-fg: var(--c-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 0 var(--s-6);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: var(--fs-base);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-base), background-color var(--t-fast), color var(--t-fast);
  box-shadow: var(--sh-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--c-amber-500); --btn-fg: #241703; }
.btn--primary:hover { --btn-bg: var(--c-amber-400); }

.btn--secondary { --btn-bg: var(--c-forest-500); --btn-fg: #fff; }
.btn--secondary:hover { --btn-bg: var(--c-forest-600); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-ink);
  border-color: var(--c-line);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: var(--c-paper); border-color: var(--c-ink-2); box-shadow: var(--sh-sm); }

.btn--light { --btn-bg: var(--c-cream); --btn-fg: var(--c-ink); }
.btn--light:hover { --btn-bg: #fff; }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--c-cream);
  border-color: rgba(253, 248, 240, 0.45);
  box-shadow: none;
}
.btn--outline-light:hover { --btn-bg: rgba(253, 248, 240, 0.12); }

.btn--sm { min-height: 40px; padding: 0 var(--s-5); font-size: var(--fs-sm); }
.btn--lg { min-height: 56px; padding: 0 var(--s-8); font-size: var(--fs-lg); }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 700;
  color: var(--c-forest-600);
  text-decoration: none;
}
.arrow-link svg { transition: transform var(--t-base); }
.arrow-link:hover svg { transform: translateX(4px); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-mist);
}
.tag--amber { background: var(--c-amber-50); border-color: var(--c-amber-200); color: var(--c-amber-700); }
.tag--forest { background: var(--c-forest-100); border-color: var(--c-forest-300); color: var(--c-forest-700); }
.tag--clay { background: #FCEEE9; border-color: var(--c-clay-300); color: var(--c-clay-600); }

.tag-row { display: flex; flex-wrap: wrap; gap: var(--s-2); }

/* ==========================================================================
   06. Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base), background-color var(--t-base);
}
.site-header.is-stuck {
  border-bottom-color: var(--c-line);
  box-shadow: 0 6px 24px -14px rgba(63, 45, 26, 0.35);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--c-amber-400), var(--c-amber-600));
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  line-height: 1;
}
.brand__text span { color: var(--c-amber-600); }

.nav { display: flex; align-items: center; gap: var(--s-1); }
.nav__link {
  position: relative;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-ink-2);
  text-decoration: none;
  transition: background-color var(--t-fast), color var(--t-fast);
}
.nav__link:hover { background: rgba(242, 160, 61, 0.14); color: var(--c-ink); }
.nav__link[aria-current="page"] { color: var(--c-amber-700); background: rgba(242, 160, 61, 0.16); }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--sh-xs);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   07. Hero
   ========================================================================== */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background: radial-gradient(ellipse at 50% 0%, rgba(242, 160, 61, 0.22), transparent 62%);
  pointer-events: none;
}
.hero .split { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 7px 14px 7px 8px;
  border-radius: var(--r-pill);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-ink-2);
  margin-bottom: var(--s-5);
}
.hero__badge .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-forest-500);
  display: grid; place-items: center;
  color: #fff; font-size: 12px;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-amber-600);
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px dashed var(--c-line);
}
.fact__num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1;
}
.fact__label { font-size: var(--fs-sm); color: var(--c-mist); margin-top: 4px; }

.hero__art { position: relative; }
.hero__art img {
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  border: 6px solid var(--c-paper);
}
.hero__float {
  position: absolute;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: var(--s-3) var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-ink);
}
.hero__float--a { left: -18px; bottom: 12%; transform: rotate(-4deg); }
.hero__float--b { right: -14px; top: 8%; transform: rotate(3deg); }

/* Device frame */
.device {
  position: relative;
  background: var(--c-ink);
  border-radius: 26px;
  padding: 12px;
  box-shadow: var(--sh-xl);
}
.device__screen {
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-sand);
  aspect-ratio: 4 / 3;
}
.device__screen img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   08. Cards & features
   ========================================================================== */
.card {
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--c-line); }
.card--sand { background: var(--c-sand); border-color: var(--c-sand-deep); }
.card--flat { box-shadow: none; background: transparent; border-style: dashed; border-color: var(--c-line); }
.card--flat:hover { transform: none; box-shadow: var(--sh-sm); }

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: var(--s-5);
  background: var(--c-amber-50);
  border: 1px solid var(--c-amber-200);
  color: var(--c-amber-700);
}
.card__icon--forest { background: var(--c-forest-100); border-color: var(--c-forest-300); color: var(--c-forest-600); }
.card__icon--clay { background: #FCEEE9; border-color: var(--c-clay-300); color: var(--c-clay-600); }
.card__icon--sky { background: var(--c-sky-100); border-color: #C7DDEB; color: var(--c-info); }
.card h3 { font-size: var(--fs-xl); margin-bottom: var(--s-3); }
.card p { color: var(--c-mist); font-size: var(--fs-base); }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: var(--s-4);
  color: var(--c-ink-2);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-forest-100);
  border: 1px solid var(--c-forest-300);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23255741' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.feature-list li strong { display: block; color: var(--c-ink); }

/* ==========================================================================
   09. Game / product blocks
   ========================================================================== */
.game-hero {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--c-forest-700);
  box-shadow: var(--sh-xl);
}
.game-hero img { width: 100%; height: 100%; object-fit: cover; }
.game-hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(to top, rgba(20, 15, 11, 0.92) 8%, rgba(20, 15, 11, 0.55) 55%, transparent);
  color: var(--c-cream);
}
.game-hero__overlay h2 { color: var(--c-cream); margin-bottom: var(--s-2); }
.game-hero__overlay p { color: rgba(253, 248, 240, 0.85); max-width: 56ch; }

.screens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-4);
}
.screens figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--c-paper);
  box-shadow: var(--sh-md);
  background: var(--c-sand);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.screens figure:hover { transform: translateY(-5px) scale(1.015); box-shadow: var(--sh-lg); }
.screens img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.screens figcaption {
  padding: var(--s-3) var(--s-4);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-paper);
}

.spec-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px dashed var(--c-line);
  font-size: var(--fs-base);
}
.spec-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-list dt, .spec-list .k { color: var(--c-mist); }
.spec-list .v { font-weight: 700; color: var(--c-ink); text-align: right; }

.product-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
}
.product-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(140deg, var(--c-sand), var(--c-sand-deep));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.product-card__body h3 { margin: 0; font-size: var(--fs-xl); }
.product-card__body p { color: var(--c-mist); font-size: var(--fs-base); margin: 0; }
.product-card__foot { margin-top: auto; padding-top: var(--s-4); }

.badge-soon {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  background: var(--c-ink);
  color: var(--c-amber-200);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* App Store button */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 16px;
  border-radius: 14px;
  background: var(--c-ink);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--c-ink);
  transition: transform var(--t-fast), box-shadow var(--t-base), background-color var(--t-fast);
  box-shadow: var(--sh-sm);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); background: #000; color: #fff; }
.store-btn__small { display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; line-height: 1.4; }
.store-btn__big { display: block; font-size: 18px; font-weight: 700; line-height: 1.15; font-family: var(--font-display); }

/* ==========================================================================
   10. Process & timeline
   ========================================================================== */
.timeline { display: grid; gap: var(--s-6); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step { position: relative; padding-top: var(--s-6); }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--c-line);
  border-radius: 3px;
}
.step::after {
  content: '';
  position: absolute;
  top: -5px; left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--c-amber-500);
  border: 3px solid var(--c-cream);
  box-shadow: 0 0 0 1px var(--c-amber-600);
}
.section--ink .step::after { border-color: var(--c-ink); }
.step__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--c-amber-700);
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.section--ink .step__num { color: var(--c-amber-400); }
.step h3 { font-size: var(--fs-lg); margin-bottom: var(--s-2); }
.step p { font-size: var(--fs-base); color: var(--c-mist); }
.section--ink .step p { color: rgba(253, 248, 240, 0.72); }

/* ==========================================================================
   11. FAQ / accordion
   ========================================================================== */
.faq { border-top: 1px solid var(--c-line); }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-2);
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-ink);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--c-amber-700); }
.faq__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  display: grid; place-items: center;
  transition: transform var(--t-base), background-color var(--t-fast);
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--c-amber-100); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base);
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__inner {
  padding: 0 var(--s-2) var(--s-6);
  color: var(--c-mist);
  max-width: 78ch;
}
.faq__inner > *:first-child { margin-top: 0; }

/* ==========================================================================
   12. Forms
   ========================================================================== */
.form-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--sh-md);
}
.field { margin-bottom: var(--s-5); }
.field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--s-2);
}
.field label .req { color: var(--c-clay-600); }
.field .hint { font-weight: 500; color: var(--c-mist); font-size: var(--fs-xs); display: block; margin-top: 5px; }
input[type="text"], input[type="email"], input[type="search"], select, textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--c-ink);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast);
}
textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
input:focus, select:focus, textarea:focus {
  outline: none;
  background: var(--c-paper);
  border-color: var(--c-amber-500);
  box-shadow: 0 0 0 4px rgba(242, 160, 61, 0.18);
}
input::placeholder, textarea::placeholder { color: #A99C90; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); }

.form-note {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-4);
  border-radius: var(--r-md);
  background: var(--c-amber-50);
  border: 1px solid var(--c-amber-200);
  font-size: var(--fs-sm);
  color: var(--c-amber-700);
  margin-bottom: var(--s-5);
}

/* Inline subscribe */
.subscribe { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.subscribe input { flex: 1 1 240px; }

/* ==========================================================================
   13. Tables
   ========================================================================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  box-shadow: var(--sh-sm);
}
table { width: 100%; border-collapse: collapse; font-size: var(--fs-base); min-width: 560px; }
thead th {
  text-align: left;
  background: var(--c-sand);
  color: var(--c-ink);
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--c-line);
  white-space: nowrap;
}
tbody td { padding: var(--s-4) var(--s-5); border-bottom: 1px solid var(--c-line-soft); vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--c-amber-50); }
td strong { color: var(--c-ink); }

/* ==========================================================================
   14. Legal / prose
   ========================================================================== */
.prose { max-width: var(--maxw-prose); }
.prose h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--s-12);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
}
.prose h3 { font-size: var(--fs-xl); margin-top: var(--s-8); }
.prose h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.prose p, .prose li { color: var(--c-ink-2); }
.prose ul, .prose ol { padding-left: var(--s-6); margin: 0 0 var(--s-4); }
.prose li { margin-bottom: var(--s-2); line-height: 1.7; }
.prose a { color: var(--c-forest-600); }

.toc {
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
}
.toc h2 { font-size: var(--fs-lg); margin-bottom: var(--s-4); border: 0; padding: 0; margin-top: 0; }
.toc ol { margin: 0; padding-left: var(--s-5); }
.toc li { margin-bottom: var(--s-2); }
.toc a { text-decoration: none; font-weight: 600; }
.toc a:hover { text-decoration: underline; }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-8);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r-lg);
  background: var(--c-sand);
  border: 1px dashed var(--c-sand-deep);
  font-size: var(--fs-sm);
  margin-bottom: var(--s-8);
}
.legal-meta div strong { display: block; color: var(--c-ink); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; }

.callout {
  border-left: 4px solid var(--c-amber-500);
  background: var(--c-amber-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--s-5) var(--s-6);
  margin: var(--s-6) 0;
}
.callout p { margin: 0; color: var(--c-amber-700); }
.callout--forest { border-left-color: var(--c-forest-500); background: var(--c-forest-100); }
.callout--forest p { color: var(--c-forest-700); }

/* ==========================================================================
   15. Footer
   ========================================================================== */
.site-footer {
  background: var(--c-ink);
  color: rgba(253, 248, 240, 0.7);
  padding-block: clamp(3rem, 6vw, 4.5rem) var(--s-8);
  position: relative;
}
.site-footer h4 {
  color: var(--c-cream);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-10) var(--s-6);
  padding-bottom: var(--s-10);
}
.footer-brand .brand__text { color: var(--c-cream); }
.footer-brand .brand__text span { color: var(--c-amber-400); }
.footer-brand p { margin-top: var(--s-4); max-width: 34ch; font-size: var(--fs-base); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: var(--s-3); }
.footer-list a {
  color: rgba(253, 248, 240, 0.72);
  text-decoration: none;
  font-size: var(--fs-base);
  transition: color var(--t-fast);
}
.footer-list a:hover { color: var(--c-amber-200); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.14);
  padding-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-sm);
}
.footer-bottom p { margin: 0; }
.socials { display: flex; gap: var(--s-2); }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(253, 248, 240, 0.2);
  color: rgba(253, 248, 240, 0.8);
  transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.socials a:hover { background: var(--c-amber-500); color: var(--c-ink); transform: translateY(-2px); }

/* ==========================================================================
   16. Motion & utilities
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 640ms ease, transform 640ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }
.text-mist { color: var(--c-mist); }
.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;
}

/* CTA band */
.cta-band {
  position: relative;
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(242, 160, 61, 0.35), transparent 55%),
    linear-gradient(140deg, #2A211B, #17110D);
  color: var(--c-cream);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.cta-band h2 { color: var(--c-cream); }
.cta-band p { color: rgba(253, 248, 240, 0.78); max-width: 52ch; }
.cta-band .btn-row { margin-top: var(--s-6); }

/* Page hero (inner pages) */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.breadcrumb { font-size: var(--fs-sm); color: var(--c-mist); margin-bottom: var(--s-4); }
.breadcrumb a { color: var(--c-mist); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-amber-700); text-decoration: underline; }

/* Support search */
.search-bar { position: relative; max-width: 560px; }
.search-bar input { padding-left: 48px; min-height: 52px; }
.search-bar svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--c-mist); }

/* Contact info cards */
.info-card {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5);
  border-radius: var(--r-lg);
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--sh-sm);
}
.info-card .card__icon { margin-bottom: 0; flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; }
.info-card h3 { font-size: var(--fs-lg); margin: 0 0 4px; }
.info-card p { font-size: var(--fs-sm); color: var(--c-mist); margin: 0; }
.info-card a { font-size: var(--fs-base); font-weight: 700; word-break: break-word; }

/* ==========================================================================
   17. Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: var(--s-4) var(--s-5) var(--s-6);
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--sh-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: 14px 16px; font-size: var(--fs-lg); border-radius: var(--r-md); }
  .nav .btn { display: none; }

  .split, .grid--3, .timeline { grid-template-columns: 1fr; }
  .split { gap: var(--s-8); }
  .grid--2 { grid-template-columns: 1fr; }
  .screens { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__float--a { left: 0; }
  .hero__float--b { right: 0; }
  .hero__art { order: -1; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .container { padding-inline: var(--s-4); }
  .grid--4, .screens { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .card { padding: var(--s-6); }
  .field-row { grid-template-columns: 1fr; }
  .hero__float { display: none; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
  .btn--block { width: 100%; }
  .subscribe { flex-direction: column; }
  .fact__num { font-size: var(--fs-2xl); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Accessibility & print
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .nav-toggle, .hero__glow { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .form-card, .toc { box-shadow: none; border: 1px solid #ccc; }
}
