/* ═══════════════════════════════════════════════════════════════
   TI-SAM DESIGN SYSTEM — Global Foundation
   Hampton Grey. Musical Typography. 8pt Grid. Inter 4.1.
   
   v5.1 — Tight Spacing (Constitution v3.2)
   
   CHANGES from v5.0:
   - SPACING: Semantic layer → tight values
   - MOBILE: Proportionally tighter
   - SYNCED: Constitution v3.2
   
   Font Setup (Tilda):
   CSS Link: https://rsms.me/inter/inter.css
   
   Systems:
   - Typography: Musical intervals (1.13–1.33) + Inter optical sizing
   - Spacing: 8pt grid, tight (Constitution v3.2)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ─────────────────────────────────────────────────────────────
     PALETTE — Cold Tech + Warm Leather
     ───────────────────────────────────────────────────────────── */
  --paper: #fafafc;
  --card: #FFFFFF;
  
  /* Glass variants */
  --glass: rgba(255, 255, 255, 0.85);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --glass-fallback: rgba(255, 255, 255, 0.97);

  /* Ink scale — light backgrounds */
  --ink: #111111;
  --ink-60: #636366;
  --ink-40: rgba(0, 0, 0, 0.4);
  --ink-20: rgba(0, 0, 0, 0.2);
  --ink-10: rgba(0, 0, 0, 0.1);
  --ink-08: rgba(0, 0, 0, 0.08);
  --ink-05: rgba(0, 0, 0, 0.05);
  --ink-04: rgba(0, 0, 0, 0.04);

  /* Ink scale — dark backgrounds */
  --ink-on-dark: #FFFFFF;
  --ink-on-dark-80: rgba(255, 255, 255, 0.8);
  --ink-on-dark-60: rgba(255, 255, 255, 0.6);
  --ink-on-dark-50: rgba(255, 255, 255, 0.5);
  --ink-on-dark-40: rgba(255, 255, 255, 0.4);
  --ink-on-dark-30: rgba(255, 255, 255, 0.3);
  --ink-on-dark-20: rgba(255, 255, 255, 0.2);
  --ink-on-dark-10: rgba(255, 255, 255, 0.1);
  --ink-on-dark-06: rgba(255, 255, 255, 0.06);
  --ink-on-dark-05: rgba(255, 255, 255, 0.05);

  /* Dark surfaces */
  --surface-dark: #1a1a1a;
  --surface-dark-elevated: #2a2a2a;
  --glass-dark: rgba(20, 20, 20, 0.92);
  --glass-dark-fallback: rgba(20, 20, 20, 0.97);

  /* Borders */
  --border: rgba(0, 0, 0, 0.08);
  --border-glass: rgba(255, 255, 255, 0.6);
  --border-on-dark: rgba(255, 255, 255, 0.1);

  /* Accents */
  --accent: #D6001C;
  --accent-hover: #b8001a;
  --accent-grn: #34C759;

  /* ─────────────────────────────────────────────────────────────
     TYPOGRAPHY — Inter 4.1 + Musical Scale
     
     Inter 4.1 has optical sizing (opsz) [14-32]:
     - ≤14px: Text optimization (wider, open forms)
     - ≥32px: Display optimization (tighter, refined)
     - Browser handles this automatically with font-optical-sizing: auto
     ───────────────────────────────────────────────────────────── */
  
  /* Font families — Inter Variable handles both text and display */
  --font: Inter, sans-serif;
  --font-tight: Inter, sans-serif;  /* Same — Inter auto-adjusts */
  --font-tech: 'SF Mono', 'Menlo', 'Monaco', 'Consolas', monospace;

  /* Scale — Musical Intervals
     48 → 36 → 28 → 21 → 17 → 15 → 13 → 11
        1.33  1.29  1.33  1.24  1.13  1.15  1.18  */
  
  /* Display Zone (≥21px) */
  --text-hero: clamp(36px, 8vw, 64px);
  --text-3xl: 48px;        /* Page titles */
  --text-display: 36px;    /* Section headers */
  
  /* Navigation Zone */
  --text-xxl: 28px;        /* Category headers */
  --text-xl: 21px;         /* Product titles, cards */
  
  /* Reading Zone (<21px) */
  --text-md: 17px;         /* Body text — read */
  --text-base: 15px;       /* Descriptions — scan */
  --text-sm: 13px;         /* Specs, meta */
  --text-xs: 11px;         /* Legal, captions */
  --text-xxs: 9px;         /* Legacy — avoid */

  /* Tracking — Apple Values
     Larger = tighter, Smaller = wider */
  --tracking-hero: -0.04em;     /* 64px */
  --tracking-3xl: -0.03em;      /* 48px */
  --tracking-display: -0.02em;  /* 36px */
  --tracking-title: -0.015em;   /* 28px */
  --tracking-card: -0.01em;     /* 21px */
  --tracking-normal: 0;         /* 17px */
  --tracking-base: 0.01em;      /* 15px */
  --tracking-small: 0.02em;     /* 13px */
  --tracking-micro: 0.03em;     /* 11px */
  --tracking-label: 0.05em;     /* Uppercase labels */

  /* Legacy aliases (backward compat with v4.x) */
  --tracking-tighter: -0.04em;
  --tracking-tight: -0.02em;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.05em;

  /* Leading — Apple Values
     Larger = tighter, Smaller = looser */
  --leading-hero: 0.9;       /* 64px */
  --leading-3xl: 0.95;       /* 48px */
  --leading-display: 1.0;    /* 36px */
  --leading-title: 1.1;      /* 28px */
  --leading-card: 1.2;       /* 21px */
  --leading-normal: 1.4;     /* 17px–15px */
  --leading-relaxed: 1.45;   /* 13px */
  --leading-loose: 1.5;      /* 11px */

  /* Weight — Apple Values
     Hero/Page = 700, Section/Card = 600 */
  --weight-hero: 700;      /* Hero 64px */
  --weight-page: 700;      /* Page titles 48px */
  --weight-section: 600;   /* Section headers 36px */
  --weight-card: 600;      /* Card titles 21-28px */
  --weight-nav: 700;       /* Active states, badges, uppercase */
  --weight-emphasis: 500;  /* Inline emphasis */
  --weight-body: 400;      /* Body text */
  --weight-light: 400;     /* Secondary text */

  /* ─────────────────────────────────────────────────────────────
     SPACING — 8-Point Grid (Primitives)
     Industry standard. Clean divisibility. Dev-friendly.
     
     Scale: 4, 8, 16, 24, 32, 48, 64, 96, 128
     ───────────────────────────────────────────────────────────── */
  --sp-0: 0;
  --sp-px: 1px;
  --sp-05: 4px;      /* half-step */
  --sp-1: 8px;       /* base */
  --sp-2: 16px;      /* ×2 */
  --sp-3: 24px;      /* ×1.5 */
  --sp-4: 32px;      /* ×1.33 */
  --sp-5: 48px;      /* ×1.5 */
  --sp-6: 64px;      /* ×1.33 */
  --sp-7: 96px;      /* ×1.5 — section breaks */
  --sp-8: 128px;     /* ×1.33 — page breaks */

  /* ─────────────────────────────────────────────────────────────
     SPACING — Semantic Layer (TIGHT — Constitution v3.2)
     Maps primitives to usage context
     ───────────────────────────────────────────────────────────── */
  --gap-page: var(--sp-6);       /* Between page sections: 64px */
  --gap-section: var(--sp-5);    /* Between L2 sections: 48px */
  --gap-block: var(--sp-4);      /* Between L3 blocks: 32px */
  --gap-header: var(--sp-4);     /* Section header to content: 32px */
  --gap-content: var(--sp-2);    /* Inside sections: 16px */
  --gap-elements: var(--sp-2);   /* Between elements: 16px */
  --gap-tight: var(--sp-1);      /* Compact spacing: 8px */
  --gap-micro: var(--sp-05);     /* Minimal: 4px */

  /* ─────────────────────────────────────────────────────────────
     BREAKPOINTS — Tilda Aligned
     ───────────────────────────────────────────────────────────── */
  --bp-xs: 480px;    /* Phones portrait → landscape */
  --bp-sm: 640px;    /* Phones → Tablets */
  --bp-md: 960px;    /* Tablets → Desktop */
  --bp-lg: 1200px;   /* Desktop → Large */

  /* ─────────────────────────────────────────────────────────────
     LAYOUT
     ───────────────────────────────────────────────────────────── */
  --max-w: 1248px;
  --nav-h: 66px;
  
  /* Navbar clearance: top-padding + navbar + gap
     24px + 66px + 48px = 138px */
  --nav-offset: calc(var(--sp-3) + var(--nav-h) + var(--sp-5));
  
  /* Component sizes */
  --btn-h: 48px;
  --btn-h-sm: 40px;
  --icon-btn: 44px;
  --pill-h: 40px;

  /* ─────────────────────────────────────────────────────────────
     RADII — 8pt Based
     ───────────────────────────────────────────────────────────── */
  --rad-none: 0;
  --rad-xs: 4px;
  --rad-sm: 8px;
  --rad-md: 12px;
  --rad-lg: 16px;
  --rad-xl: 24px;
  --rad-2xl: 32px;
  --rad-full: 9999px;

  /* ─────────────────────────────────────────────────────────────
     MOTION — Physics
     ───────────────────────────────────────────────────────────── */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.16, 1, 0.3, 1);

  /* Duration scale */
  --dur-xs: 0.05s;
  --dur-sm: 0.1s;
  --dur-md: 0.15s;
  --dur-lg: 0.3s;
  --dur-xl: 0.5s;

  /* Legacy (backwards compat) */
  --duration-fast: var(--dur-sm);
  --duration: var(--dur-md);
  --duration-slow: var(--dur-lg);

  /* ─────────────────────────────────────────────────────────────
     TRANSFORMS
     ───────────────────────────────────────────────────────────── */
  --lift-sm: -4px;
  --lift-md: -6px;

  --shift-xs: 2px;
  --shift-sm: 4px;
  --shift-md: 8px;
  --shift-lg: 12px;

  /* ─────────────────────────────────────────────────────────────
     OPACITY
     ───────────────────────────────────────────────────────────── */
  --opacity-muted: 0.6;
  --opacity-hint: 0.4;
  --opacity-faint: 0.2;
  --opacity-ghost: 0.08;

  /* ─────────────────────────────────────────────────────────────
     COMPONENT SIZES
     ───────────────────────────────────────────────────────────── */
  --solver-slot-w: 200px;
  --card-content-max: 380px;

  /* ─────────────────────────────────────────────────────────────
     ICONS — Visual sizes (NOT 8pt grid)
     ───────────────────────────────────────────────────────────── */
  --icon-xs: 14px;
  --icon-sm: 16px;
  --icon-md: 18px;
  --icon-lg: 20px;
  --icon-xl: 24px;

  /* ─────────────────────────────────────────────────────────────
     BLUR — Glassmorphism
     ───────────────────────────────────────────────────────────── */
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 24px;
  --blur-xl: 32px;

  /* ─────────────────────────────────────────────────────────────
     DEPTH — Z-Index
     ───────────────────────────────────────────────────────────── */
  --z-base: 1;
  --z-card-hover: 5;
  --z-dropdown: 100;
  --z-overlay: 900;
  --z-nav: 1000;

  /* ─────────────────────────────────────────────────────────────
     SHADOWS — 4-Level System
     ───────────────────────────────────────────────────────────── */
  --shadow-subtle:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 1px 1px rgba(0, 0, 0, 0.02);

  --shadow-soft:
    0 4px 24px rgba(0, 0, 0, 0.05),
    0 1px 4px rgba(0, 0, 0, 0.03);

  --shadow-medium:
    0 8px 32px rgba(0, 0, 0, 0.07),
    0 2px 8px rgba(0, 0, 0, 0.04);

  --shadow-heavy:
    0 20px 60px rgba(0, 0, 0, 0.10),
    0 8px 24px rgba(0, 0, 0, 0.06);

  --shadow-mega:
    0 25px 80px rgba(0, 0, 0, 0.14),
    0 10px 40px rgba(0, 0, 0, 0.08);

  --shadow-glass:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px var(--border-glass),
    inset 0 1px 0 var(--ink-on-dark-50);

  --shadow-glass-dark:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px var(--border-on-dark);
}


/* ═══════════════════════════════════════════════════════════════
   BASE STYLES — Reset & Defaults
   ═══════════════════════════════════════════════════════════════ */

html {
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--ink);
  
  /* Inter 4.1 features */
  font-feature-settings: 'liga' 1, 'calt' 1;
  font-optical-sizing: auto;
  
  /* Rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

/* Use InterVariable when supported */
@supports (font-variation-settings: normal) {
  body {
    font-family: InterVariable, Inter, sans-serif;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: var(--ink);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  margin: 0;
}

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


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Semantic Spacing (Mobile)
   Breakpoint: 640px (Tilda aligned)
   
   Mobile = one step tighter than desktop
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  :root {
    --gap-page: var(--sp-5);      /* 64px → 48px */
    --gap-section: var(--sp-4);   /* 48px → 32px */
    --gap-block: var(--sp-3);     /* 32px → 24px */
    --gap-header: var(--sp-3);    /* 32px → 24px */
    --gap-content: var(--sp-2);   /* 16px → 16px (same) */
    --gap-elements: var(--sp-2);  /* 16px → 16px (same) */
    --gap-tight: var(--sp-1);     /* 8px → 8px (same) */
    --gap-micro: var(--sp-05);    /* 4px → 4px (same) */
  }
}


/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES — Typography (Full Recipes)
   
   Each class = complete recipe:
   SIZE + WEIGHT + TRACKING + LEADING
   
   Inter 4.1 handles most tracking via opsz.
   We add fine-tuning for extremes (>32px, <14px).
   ═══════════════════════════════════════════════════════════════ */

/* ─── Display Zone (≥21px) ─────────────────────────────────────── */

.text-hero {
  font-size: var(--text-hero);
  font-weight: var(--weight-hero);  /* 700 */
  line-height: var(--leading-hero);  /* 0.9 */
  letter-spacing: var(--tracking-hero);  /* -0.04em */
}

.text-3xl {
  font-size: var(--text-3xl);
  font-weight: var(--weight-page);  /* 700 */
  line-height: var(--leading-3xl);  /* 0.95 */
  letter-spacing: var(--tracking-3xl);  /* -0.03em */
}

.text-display {
  font-size: var(--text-display);
  font-weight: var(--weight-section);  /* 600 */
  line-height: var(--leading-display);  /* 1.0 */
  letter-spacing: var(--tracking-display);  /* -0.02em */
}

.text-xxl {
  font-size: var(--text-xxl);
  font-weight: var(--weight-section);  /* 600 */
  line-height: var(--leading-title);  /* 1.1 */
  letter-spacing: var(--tracking-title);  /* -0.015em */
}

.text-xl {
  font-size: var(--text-xl);
  font-weight: var(--weight-card);  /* 600 */
  line-height: var(--leading-card);  /* 1.2 */
  letter-spacing: var(--tracking-card);  /* -0.01em */
}

/* ─── Reading Zone (<21px) ─────────────────────────────────────── */

.text-md {
  font-size: var(--text-md);
  font-weight: var(--weight-body);  /* 400 */
  line-height: var(--leading-normal);  /* 1.4 */
  letter-spacing: var(--tracking-normal);  /* 0 */
}

.text-base {
  font-size: var(--text-base);
  font-weight: var(--weight-body);  /* 400 */
  line-height: var(--leading-normal);  /* 1.4 */
  letter-spacing: var(--tracking-base);  /* +0.01em */
}

.text-sm {
  font-size: var(--text-sm);
  font-weight: var(--weight-body);  /* 400 */
  line-height: var(--leading-relaxed);  /* 1.45 */
  letter-spacing: var(--tracking-small);  /* +0.02em */
}

.text-xs {
  font-size: var(--text-xs);
  font-weight: var(--weight-body);  /* 400 */
  line-height: var(--leading-loose);  /* 1.5 */
  letter-spacing: var(--tracking-micro);  /* +0.03em */
}

/* ─── Labels (Uppercase micro-text) ────────────────────────────── */

.text-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-nav);
  line-height: 1.2;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES — Tabular Numbers (Prices, Specs)
   ═══════════════════════════════════════════════════════════════ */

.tabular-nums {
  font-feature-settings: 'tnum' 1, 'liga' 1, 'calt' 1;
}

.slashed-zero {
  font-feature-settings: 'zero' 1, 'liga' 1, 'calt' 1;
}

.price {
  font-feature-settings: 'tnum' 1, 'zero' 1, 'liga' 1, 'calt' 1;
}


/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Screen reader only */
.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;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  background: var(--ink);
  color: var(--card);
  font-weight: var(--weight-emphasis);
  border-radius: var(--rad-sm);
  z-index: calc(var(--z-nav) + 1);
  transition: top var(--dur-md) var(--smooth);
}

.skip-link:focus {
  top: var(--sp-3);
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS — System
   ═══════════════════════════════════════════════════════════════ */

.ti-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  height: var(--btn-h);
  padding: 0 var(--sp-3);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-nav);
  text-decoration: none !important;
  border-radius: var(--rad-sm);
  transition:
    background var(--dur-md),
    border-color var(--dur-md),
    color var(--dur-md);
}

.ti-btn svg {
  width: var(--icon-md);
  height: var(--icon-md);
}

.ti-btn--primary {
  background: var(--ink) !important;
  color: var(--card) !important;
  border: 1px solid var(--ink) !important;
}

.ti-btn--primary:hover {
  background: #000000 !important;
  border-color: #000000 !important;
}

.ti-btn--secondary {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink-20) !important;
}

.ti-btn--secondary:hover {
  background: var(--ink-05) !important;
  color: var(--ink) !important;
  border-color: var(--ink-20) !important;
}

.ti-btn--accent {
  background: var(--accent) !important;
  color: var(--card) !important;
  border: 1px solid var(--accent) !important;
}

.ti-btn--accent:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
}

/* Ghost button — Constitution v3.2 hover pattern */
.ti-btn--ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink-20) !important;
}

.ti-btn--ghost:hover {
  background: var(--ink-05) !important;
}

.ti-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .ti-btn { transition: none; }
}


/* ═══════════════════════════════════════════════════════════════
   LINKS & CTA — Constitution v3.2 Hover Patterns
   ═══════════════════════════════════════════════════════════════ */

/* Text links — opacity hover */
.ti-link {
  color: var(--ink);
  text-decoration: none;
  transition: opacity var(--dur-md) ease;
}

.ti-link:hover {
  opacity: var(--opacity-muted);
}

/* CTA with arrow — opacity + arrow move */
.ti-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-05);
  color: var(--ink);
  text-decoration: none;
  transition: opacity var(--dur-md) ease;
}

.ti-cta::after {
  content: "→";
  transition: transform var(--dur-md) ease;
}

.ti-cta:hover {
  opacity: var(--opacity-muted);
}

.ti-cta:hover::after {
  transform: translateX(var(--sp-05));
}

/* Dark background links — color to accent */
.ti-link--dark {
  color: var(--ink-on-dark);
  transition: color var(--dur-md) ease;
}

.ti-link--dark:hover {
  color: var(--accent);
}


/* ═══════════════════════════════════════════════════════════════
   CARDS — Constitution v3.2 Hover Pattern (Lift + Shadow)
   ═══════════════════════════════════════════════════════════════ */

.ti-card {
  background: var(--card);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-soft);
  transition: 
    transform var(--dur-md) ease,
    box-shadow var(--dur-md) ease;
}

.ti-card--interactive {
  cursor: pointer;
}

.ti-card--interactive:hover {
  transform: translateY(var(--lift-sm));
  box-shadow: var(--shadow-medium);
}

@media (prefers-reduced-motion: reduce) {
  .ti-card--interactive:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Constitution v3.2 Hover Pattern (Opacity)
   ═══════════════════════════════════════════════════════════════ */

.ti-nav-link {
  color: var(--ink);
  text-decoration: none;
  transition: opacity var(--dur-md) ease;
}

.ti-nav-link:hover {
  opacity: var(--opacity-muted);
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCT PAGE — Navbar Clearance
   ═══════════════════════════════════════════════════════════════ */

.t-store__prod-snippet__container {
  padding-top: var(--nav-offset) !important;
}


/* ═══════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════ */

@media print {
  body {
    background: white;
    color: black;
  }

  .ti-nav-wrap,
  .ti-mob {
    display: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   MIGRATION GUIDE — v5.0 → v5.1
   
   Spacing changes (TIGHT):
   ─────────────────────────────────────
   Desktop:
   --gap-page:     128px → 64px
   --gap-section:  96px  → 48px
   --gap-block:    48px  → 32px
   --gap-header:   48px  → 32px
   --gap-content:  32px  → 16px
   --gap-elements: 24px  → 16px
   --gap-tight:    16px  → 8px
   --gap-micro:    8px   → 4px
   
   Mobile (≤640px):
   --gap-page:     96px  → 48px
   --gap-section:  64px  → 32px
   --gap-block:    32px  → 24px
   --gap-header:   32px  → 24px
   --gap-content:  24px  → 16px (same as desktop)
   --gap-elements: 16px  → 16px (same as desktop)
   --gap-tight:    8px   → 8px (same as desktop)
   --gap-micro:    4px   → 4px (same as desktop)
   
   New classes:
   ─────────────────────────────────────
   .ti-link          — text link with opacity hover
   .ti-cta           — CTA with arrow + hover animation
   .ti-link--dark    — dark bg link with accent hover
   .ti-card--interactive — card with lift+shadow hover
   .ti-nav-link      — nav link with opacity hover
   .ti-btn--ghost    — ghost button with fill hover
   
   Button changes:
   ─────────────────────────────────────
   .ti-btn--secondary:hover — now has background fill
   
   ═══════════════════════════════════════════════════════════════ */