/* ================================================================
   Auvi Landing Page — Creative Machines Limited
   Complete ground-up rewrite. No external dependencies.
   ================================================================ */

/* ============================================
   Reset & Variables
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* CM Brand Colour Palette */
  --cm-blue: #0B6EB9;
  --cm-orange: #F0841A;
  --cm-teal: #01A7AB;
  --cm-purple: #524594;
  --cm-lime: #B3CB11;
  --cm-red: #E62321;
  --cm-slate: #708090;
  --cm-forest: #2D8B57;

  --brand: var(--cm-blue);
  --brand-light: #4DA3E0;
  --brand-lighter: #E8F4FD;
  --brand-dark: #084A7A;
  --brand-glow: rgba(11, 110, 185, 0.3);

  --hero-bg-start: #0a1628;
  --hero-bg-end: #0d2847;

  --text: #1a1a2e;
  --text-body: #3a3a4e;
  --text-secondary: #5a5a72;
  --text-muted: #8a8aa0;

  --bg: #ffffff;
  --bg-alt: #f4f5f9;
  --bg-card: #ffffff;
  --border: #e0e0ea;
  --border-light: #f0f0f5;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 40px var(--brand-glow);

  --max-width: 1120px;
  --section-pad: 5.5rem 1.5rem;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #e8e8f0;
    --text-body: #c0c0d0;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;

    --bg: #0e0e18;
    --bg-alt: #151520;
    --bg-card: #1a1a28;
    --border: #2a2a3a;
    --border-light: #222230;

    --hero-bg-start: #060610;
    --hero-bg-end: #0a1830;

    --brand-lighter: #152540;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  }
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ============================================
   Skip Link
   ============================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   Container
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================
   Auvi Wordmark — dotless ı with pulsing dot
   ============================================ */

.auvi-wordmark {
  font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.auvi-wm-footer {
  font-size: 1.75rem;
}

.auvi-i {
  position: relative;
  display: inline-block;
}

/* Breathing circle replaces the i-dot */
.auvi-dot {
  position: absolute;
  top: 0.08em;
  left: 54%;
  margin-left: -0.11em;
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  animation:
    dotScale 5s ease-in-out infinite,
    dotColour 40s linear infinite;
}

@keyframes dotScale {
  0%   { scale: 1; }
  40%  { scale: 1.35; }
  100% { scale: 1; }
}

@keyframes dotColour {
  0%      { background-color: var(--cm-blue); }
  11.6%   { background-color: var(--cm-blue); }
  13.4%   { background-color: var(--cm-orange); }
  24.1%   { background-color: var(--cm-orange); }
  25.9%   { background-color: var(--cm-teal); }
  36.6%   { background-color: var(--cm-teal); }
  38.4%   { background-color: var(--cm-purple); }
  49.1%   { background-color: var(--cm-purple); }
  50.9%   { background-color: var(--cm-lime); }
  61.6%   { background-color: var(--cm-lime); }
  63.4%   { background-color: var(--cm-red); }
  74.1%   { background-color: var(--cm-red); }
  75.9%   { background-color: var(--cm-forest); }
  86.6%   { background-color: var(--cm-forest); }
  88.4%   { background-color: var(--cm-slate); }
  99.1%   { background-color: var(--cm-slate); }
  100%    { background-color: var(--cm-blue); }
}

/* ============================================
   Streamline Icon Base
   ============================================ */

.sl {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  border-bottom-color: rgba(255,255,255,0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta svg {
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-icon {
  flex-shrink: 0;
}

.btn-primary {
  background: #fff;
  color: var(--hero-bg-start);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(255,255,255,0.15);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

.btn-cta {
  background: #fff;
  color: var(--brand-dark);
  font-size: 1.0625rem;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px var(--brand-glow);
}

/* ============================================
   Badges
   ============================================ */

.badge {
  display: inline-block;
  padding: 0.3125rem 0.875rem;
  background: var(--brand-lighter);
  color: var(--brand);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.badge-teal {
  background: rgba(1, 167, 171, 0.12);
  color: var(--cm-teal);
}

.badge-red {
  background: rgba(230, 35, 33, 0.1);
  color: var(--cm-red);
}

.badge-purple {
  background: rgba(82, 69, 148, 0.1);
  color: var(--cm-purple);
}

.badge-orange {
  background: rgba(240, 132, 26, 0.1);
  color: var(--cm-orange);
}

.badge-dark {
  background: rgba(77, 163, 224, 0.15);
  color: var(--brand-light);
}

@media (prefers-color-scheme: dark) {
  .badge {
    background: rgba(11, 110, 185, 0.2);
    color: var(--brand-light);
  }
  .badge-teal {
    background: rgba(1, 167, 171, 0.2);
    color: #33c4c8;
  }
  .badge-red {
    background: rgba(230, 35, 33, 0.2);
    color: #f06060;
  }
  .badge-purple {
    background: rgba(82, 69, 148, 0.2);
    color: #9B8BE4;
  }
  .badge-orange {
    background: rgba(240, 132, 26, 0.2);
    color: #F5A04E;
  }
}

/* ============================================
   Accent gradient text
   ============================================ */

.accent {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--cm-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Section shared styles
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.section-title-light { color: #fff; }
.section-sub-light { color: rgba(255,255,255,0.65); }

/* ============================================
   Hero Section
   ============================================ */

.hero {
  background: linear-gradient(160deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 50%, #0d3055 100%);
  padding: 8rem 1.5rem 4.5rem;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.hero-orb-1 {
  width: 650px;
  height: 650px;
  background: var(--cm-blue);
  top: -180px;
  right: -120px;
  animation: floatOrb1 22s ease-in-out infinite;
}

.hero-orb-2 {
  width: 420px;
  height: 420px;
  background: var(--cm-teal);
  bottom: -120px;
  left: -80px;
  animation: floatOrb2 28s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--cm-purple);
  top: 40%;
  left: 35%;
  opacity: 0.1;
  animation: floatOrb3 18s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(20px, -30px); }
  66%      { transform: translate(-15px, 15px); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(-20px, -15px); }
  66%      { transform: translate(25px, 10px); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.15); }
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 520px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(77, 163, 224, 0.12);
  border: 1px solid rgba(77, 163, 224, 0.25);
  color: var(--brand-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.hero-logo-large {
  margin-bottom: 0.5rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-logo-large.scrolled-away {
  opacity: 0;
  transform: scale(0.85) translateY(-12px);
}

.auvi-wm-hero {
  font-size: 4rem;
  letter-spacing: -0.03em;
}

.hero-strapline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.hero-accent {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--cm-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 2rem;
  letter-spacing: 0.005em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ============================================
   Phone Mockup (shared)
   ============================================ */

.hero-phones {
  position: relative;
  flex-shrink: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 575px;
  background: #1a1a1a;
  border-radius: 42px;
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 25px 60px rgba(0,0,0,0.4),
    0 0 80px var(--brand-glow);
  position: relative;
  flex-shrink: 0;
}

.phone-mockup-sm {
  width: 240px;
  height: 500px;
  border-radius: 36px;
}

.phone-secondary {
  width: 250px;
  height: 515px;
  border-radius: 38px;
  transform: translateY(40px);
  opacity: 0.92;
}

.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8f8fa;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-screen-dark {
  background: #111118;
}

.phone-mockup-sm .phone-screen {
  border-radius: 30px;
}

.phone-secondary .phone-screen {
  border-radius: 32px;
}

/* ============================================
   Phone Mockup — Status Bar
   ============================================ */

.mock-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
}

.phone-screen-dark .mock-status {
  color: rgba(255,255,255,0.7);
}

.mock-icons,
.mock-icons-sm {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ============================================
   Phone Mockup — Caption Area
   ============================================ */

.mock-caption-area {
  flex: 1;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
}

/* Segment: circle + text */
.mock-seg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  animation: mockFadeIn 0.5s ease both;
  animation-delay: var(--delay, 0s);
}

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

/* Speaker circle (numbered) */
.mc {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

/* Caption text */
.mt {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.85);
  line-height: 1.4;
}

.phone-screen-dark .mt {
  color: rgba(255,255,255,0.88);
}

/* Typing cursor */
.mock-typing {
  opacity: 0.85;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--brand-light);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============================================
   Phone Mockup — Toolbar
   ============================================ */

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(0,0,0,0.04);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
}

.phone-screen-dark .mock-toolbar {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
}

.mock-toolbar-warn {
  background: rgba(230, 35, 33, 0.15);
  color: var(--cm-red);
}

.phone-screen-dark .mock-toolbar-warn {
  background: rgba(230, 35, 33, 0.2);
  color: #f07070;
}

.mock-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c759;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================
   Phone Mockup — Translation Elements
   ============================================ */

.mock-lang-bar {
  display: flex;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  background: rgba(255,255,255,0.04);
}

.mock-lang-pill {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: rgba(1, 167, 171, 0.2);
  color: #33c4c8;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.mock-translated {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  padding-left: 1.75rem;
  line-height: 1.35;
  font-style: italic;
  animation: mockFadeIn 0.5s ease both;
  animation-delay: var(--delay, 0s);
}

.mock-speak {
  display: inline-block;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  font-size: 0.5rem;
  padding: 0 3px;
  margin-left: 4px;
  cursor: default;
  vertical-align: middle;
}

/* ============================================
   Phone Mockup — Privacy Visual
   ============================================ */

.mock-privacy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
}

.privacy-shield-icon svg {
  filter: drop-shadow(0 0 12px rgba(77, 163, 224, 0.3));
}

.privacy-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.privacy-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.privacy-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.privacy-stat {
  text-align: center;
}

.ps-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1.2;
}

.ps-key {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.privacy-pills {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0.2rem 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.privacy-pill .sl {
  width: 12px;
  height: 12px;
}

/* ============================================
   Phone Mockup — Scam Banner
   ============================================ */

.mock-scam-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, var(--cm-red), #c41a18);
  color: #fff;
  font-size: 0.65rem;
  line-height: 1.35;
}

.mock-scam-banner svg {
  flex-shrink: 0;
}

.mock-scam-banner strong {
  display: block;
  font-size: 0.7rem;
}

.mock-scam-banner span {
  opacity: 0.85;
}

/* ============================================
   Phone Mockup — Sound Events
   ============================================ */

.mock-sound {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  animation: mockFadeIn 0.5s ease both;
  animation-delay: var(--delay, 0s);
}

.mock-sound .sl {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.mock-sound-crit {
  background: rgba(230, 35, 33, 0.15);
  border: 1px solid rgba(230, 35, 33, 0.3);
}

.mock-sound-crit .sl {
  color: var(--cm-red);
}

.mock-sound-info {
  background: rgba(11, 110, 185, 0.1);
  border: 1px solid rgba(11, 110, 185, 0.2);
}

.mock-sound-info .sl {
  color: var(--brand-light);
}

.sound-name {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.sound-tier {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: auto;
}

.mock-sound-crit .sound-tier { color: var(--cm-red); }
.mock-sound-info .sound-tier { color: var(--brand-light); }

/* ============================================
   Watch Mockup
   ============================================ */

.watch-mockup {
  width: 140px;
  height: 170px;
  background: #2a2a2e;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 12px 30px rgba(0,0,0,0.35);
  flex-shrink: 0;
}

.watch-screen {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 28px;
  padding: 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.watch-time {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.35rem;
}

.watch-caption {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
  margin-bottom: 0.3rem;
}

.wc {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 3px;
}

.watch-status {
  margin-top: auto;
  font-size: 0.45rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   Float Legend (speaker identification)
   ============================================ */

.float-legend {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.8rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

@media (prefers-color-scheme: dark) {
  .float-legend {
    background: #1e1e2e;
    border-color: #333;
  }
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   Showcase Visual Duo (phone + watch)
   ============================================ */

.showcase-visual-duo {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats {
  background: linear-gradient(180deg, var(--hero-bg-end) 0%, #0b2240 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2.25rem 1.5rem;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-light);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat-text {
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

.stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   Showcase Sections (alternating)
   ============================================ */

.showcase {
  padding: var(--section-pad);
  background: var(--bg);
}

.showcase-alt {
  background: var(--bg-alt);
}

.showcase-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.showcase-reverse .showcase-inner {
  flex-direction: row-reverse;
}

.showcase-text {
  flex: 1;
  min-width: 0;
}

.showcase-visual {
  flex-shrink: 0;
  position: relative;
  will-change: transform;
}

.showcase-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: var(--text);
}

.showcase-desc {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.showcase-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}

.showcase-list .sl {
  width: 16px;
  height: 16px;
  color: var(--brand);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Section-specific accent colours */
.showcase-purple .badge { background: rgba(82, 69, 148, 0.1); color: var(--cm-purple); }
.showcase-purple .accent { background: linear-gradient(135deg, #7B6BC4 0%, var(--cm-purple) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.showcase-purple .showcase-list .sl { color: var(--cm-purple); }

.showcase-teal .badge { background: rgba(1, 167, 171, 0.1); color: var(--cm-teal); }
.showcase-teal .accent { background: linear-gradient(135deg, #33C4C8 0%, var(--cm-teal) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.showcase-teal .showcase-list .sl { color: var(--cm-teal); }

.showcase-red .showcase-list .sl { color: var(--cm-red); }

.showcase-orange .badge { background: rgba(240, 132, 26, 0.1); color: var(--cm-orange); }
.showcase-orange .accent { background: linear-gradient(135deg, #F5A04E 0%, var(--cm-orange) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.showcase-orange .showcase-list .sl { color: var(--cm-orange); }

@media (prefers-color-scheme: dark) {
  .showcase-purple .badge { background: rgba(82, 69, 148, 0.2); color: #9B8BE4; }
  .showcase-teal .badge { background: rgba(1, 167, 171, 0.2); color: #33C4C8; }
  .showcase-orange .badge { background: rgba(240, 132, 26, 0.2); color: #F5A04E; }
}

/* Coloured Use Case card icons — cycle through palette */
.uc-card:nth-child(1) .uc-icon { color: var(--cm-red); }
.uc-card:nth-child(2) .uc-icon { color: var(--cm-blue); }
.uc-card:nth-child(3) .uc-icon { color: var(--cm-purple); }
.uc-card:nth-child(4) .uc-icon { color: var(--cm-teal); }
.uc-card:nth-child(5) .uc-icon { color: var(--cm-orange); }
.uc-card:nth-child(6) .uc-icon { color: var(--cm-forest); }

/* ============================================
   Multilingual Showcase
   ============================================ */

.multilingual {
  padding: var(--section-pad);
  background: linear-gradient(160deg, #0a1628 0%, #0d2847 50%, #0d3055 100%);
  position: relative;
  overflow: hidden;
}

.multilingual::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--cm-teal);
  filter: blur(120px);
  opacity: 0.08;
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.multilingual .section-title { color: #fff; }
.multilingual .section-sub { color: rgba(255,255,255,0.6); }

.ml-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.ml-phone {
  text-align: center;
}

.ml-phone-center {
  transform: translateY(-16px);
}

.phone-mockup-ml {
  width: 230px;
  height: 470px;
  border-radius: 36px;
}

.phone-mockup-ml .phone-screen {
  border-radius: 30px;
}

.phone-mockup-ml .phone-notch {
  width: 80px;
  height: 20px;
  border-radius: 0 0 14px 14px;
}

.ml-greeting {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.ml-phone:nth-child(1) .ml-greeting { color: var(--cm-blue); }
.ml-phone:nth-child(2) .ml-greeting { color: var(--cm-orange); }
.ml-phone:nth-child(3) .ml-greeting { color: var(--cm-teal); }

.ml-lang-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

.ml-note {
  text-align: center;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
  padding: var(--section-pad);
  background: var(--bg-alt);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  max-width: 300px;
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px var(--brand-glow);
}

.step:nth-child(1) .step-num { background: linear-gradient(135deg, var(--cm-blue), var(--brand-light)); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--cm-teal), #33C4C8); box-shadow: 0 4px 16px rgba(1, 167, 171, 0.3); }
.step:nth-child(5) .step-num { background: linear-gradient(135deg, var(--cm-purple), #7B6BC4); box-shadow: 0 4px 16px rgba(82, 69, 148, 0.3); }

.step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
}

.step-line {
  display: flex;
  align-items: center;
  width: 48px;
  height: 2px;
  background: var(--border);
  margin-top: 3.5rem;
  flex-shrink: 0;
}

/* ============================================
   Features Grid
   ============================================ */

.features-grid {
  padding: var(--section-pad);
  background: var(--bg);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feat-item {
  display: flex;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(16px);
}

.feat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.feat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.feat-icon .sl {
  width: 22px;
  height: 22px;
}

.feat-icon-blue    { background: rgba(11, 110, 185, 0.1); color: var(--cm-blue); }
.feat-icon-orange  { background: rgba(240, 132, 26, 0.1); color: var(--cm-orange); }
.feat-icon-teal    { background: rgba(1, 167, 171, 0.1); color: var(--cm-teal); }
.feat-icon-purple  { background: rgba(82, 69, 148, 0.1); color: var(--cm-purple); }
.feat-icon-red     { background: rgba(230, 35, 33, 0.08); color: var(--cm-red); }
.feat-icon-forest  { background: rgba(45, 139, 87, 0.1); color: var(--cm-forest); }
.feat-icon-slate   { background: rgba(112, 128, 144, 0.1); color: var(--cm-slate); }

@media (prefers-color-scheme: dark) {
  .feat-icon-blue    { background: rgba(11, 110, 185, 0.2); }
  .feat-icon-orange  { background: rgba(240, 132, 26, 0.2); }
  .feat-icon-teal    { background: rgba(1, 167, 171, 0.2); }
  .feat-icon-purple  { background: rgba(82, 69, 148, 0.2); }
  .feat-icon-red     { background: rgba(230, 35, 33, 0.15); }
  .feat-icon-forest  { background: rgba(45, 139, 87, 0.2); }
  .feat-icon-slate   { background: rgba(112, 128, 144, 0.2); }
}

.feat-item strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}

.feat-item p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   Cost Comparison / Savings
   ============================================ */

.savings {
  padding: var(--section-pad);
  background: linear-gradient(160deg, #0a1628 0%, #0d2847 50%, #0d3055 100%);
  position: relative;
  overflow: hidden;
}

.savings::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--cm-purple);
  filter: blur(100px);
  opacity: 0.07;
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.savings-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.savings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 520px;
}

.savings-table th,
.savings-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.savings-table thead th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.12);
}

.savings-table tbody tr:last-child td {
  border-bottom: none;
}

.savings-table strong {
  color: rgba(255,255,255,0.9);
}

.savings-row-auvi {
  background: rgba(11, 110, 185, 0.12);
}

.savings-row-auvi td {
  color: var(--brand-light);
  font-weight: 600;
}

.savings-row-auvi strong {
  color: var(--brand-light);
}

.cell-warn {
  color: rgba(240, 132, 26, 0.85) !important;
  font-size: 0.8rem;
}

.cell-good {
  color: #34c759 !important;
  font-weight: 600;
}

.savings-note {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

.savings-note a {
  color: var(--brand-light);
  text-decoration: none;
}

.savings-note a:hover {
  text-decoration: underline;
}

/* ============================================
   Social Proof + Origin Story
   ============================================ */

.social-proof {
  padding: var(--section-pad);
  background: var(--bg-alt);
}

/* Timeline */
.origin-timeline {
  max-width: 640px;
  margin: 0 auto 3rem;
  position: relative;
  padding-left: 2rem;
}

.origin-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 1.5rem;
  padding-bottom: 1.75rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--border);
}

.timeline-marker-active {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-lighter);
}

@media (prefers-color-scheme: dark) {
  .timeline-marker-active {
    box-shadow: 0 0 0 4px rgba(11, 110, 185, 0.25);
  }
}

.timeline-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Reddit Cards */
.reddit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.reddit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.reddit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.reddit-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.reddit-logo {
  flex-shrink: 0;
}

.reddit-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
  margin-bottom: 0.75rem;
}

.reddit-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: auto;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.review-stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  font-style: normal;
}

/* ============================================
   Use Cases
   ============================================ */

.use-cases {
  padding: var(--section-pad);
  background: var(--bg);
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.uc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.uc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.uc-icon {
  width: 32px;
  height: 32px;
  color: var(--brand);
  margin: 0 auto 0.75rem;
  display: block;
}

.uc-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.uc-card p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Pricing
   ============================================ */

.pricing {
  padding: var(--section-pad);
  background: var(--bg-alt);
}

/* Trial Banner */
.trial-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--brand-lighter);
  border: 1px solid rgba(11, 110, 185, 0.2);
  border-radius: var(--radius-md);
}

@media (prefers-color-scheme: dark) {
  .trial-banner {
    background: rgba(11, 110, 185, 0.12);
    border-color: rgba(11, 110, 185, 0.25);
  }
}

.trial-banner .sl {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
}

.trial-banner strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.trial-banner span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: var(--brand);
  border-width: 2px;
  background: linear-gradient(180deg, #edf5fd 0%, #f5f9ff 50%, var(--bg-card) 100%);
  box-shadow: 0 8px 30px rgba(11, 110, 185, 0.15);
  transform: scale(1.04);
}

@media (prefers-color-scheme: dark) {
  .pricing-featured {
    background: linear-gradient(180deg, #152540 0%, #1a1a28 50%, var(--bg-card) 100%);
  }
}

.pricing-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-head {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-head h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.pricing-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pricing-period {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Pricing feature list */
.pricing-list {
  list-style: none;
  padding: 0;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

/* Check circles — properly centered */
.chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--brand-lighter);
  color: var(--brand);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

@media (prefers-color-scheme: dark) {
  .chk {
    background: rgba(11, 110, 185, 0.2);
  }
}

.pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-note strong {
  color: var(--text-secondary);
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
  padding: var(--section-pad);
  background: var(--bg);
}

.cta-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 60%, #0d3055 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--cm-blue);
  filter: blur(100px);
  opacity: 0.2;
  top: -120px;
  right: -60px;
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--cm-teal);
  filter: blur(80px);
  opacity: 0.12;
  bottom: -100px;
  left: -50px;
  pointer-events: none;
}

.cta-card h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.cta-card .btn-cta {
  position: relative;
  z-index: 1;
}

.cta-small {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--hero-bg-start);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 280px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.footer-newsletter h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.375rem;
}

.footer-newsletter p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  max-width: 300px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.5rem 0.875rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--brand-light);
}

.newsletter-form button {
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: var(--brand-light);
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   Scroll-Triggered Animations
   ============================================ */

.anim-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Focus & Accessibility
   ============================================ */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   Responsive — Tablet (max 960px)
   ============================================ */

@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-phones {
    justify-content: center;
  }

  .showcase-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .showcase-reverse .showcase-inner {
    flex-direction: column;
  }

  .showcase-title {
    font-size: 2rem;
  }

  .showcase-list li {
    justify-content: center;
    text-align: left;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reddit-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .reddit-cards .reddit-card:last-child {
    grid-column: span 2;
    max-width: 360px;
    margin: 0 auto;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid .review-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }

  .pricing-featured {
    transform: none;
  }

  .pricing-featured:hover {
    transform: translateY(-4px);
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-line {
    width: 2px;
    height: 32px;
    margin-top: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .uc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-legend {
    display: none;
  }

  .ml-phones {
    gap: 1.25rem;
  }

  .phone-mockup-ml {
    width: 200px;
    height: 410px;
    border-radius: 30px;
  }

  .ml-phone-center {
    transform: none;
  }

  .ml-greeting {
    font-size: 1.25rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .origin-timeline {
    max-width: 100%;
  }
}

/* ============================================
   Responsive — Mobile (max 600px)
   ============================================ */

@media (max-width: 600px) {
  :root {
    --section-pad: 3.5rem 1rem;
  }

  /* Nav mobile menu */
  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .nav-inner {
    height: 56px;
  }

  /* Hero */
  .hero {
    padding: 6rem 1rem 2.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .hero-phones {
    gap: 1rem;
  }

  .phone-mockup {
    width: 200px;
    height: 415px;
    border-radius: 30px;
    padding: 4px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .phone-notch {
    width: 70px;
    height: 18px;
    top: 4px;
    border-radius: 0 0 12px 12px;
  }

  .phone-secondary {
    width: 180px;
    height: 375px;
    transform: translateY(24px);
  }

  .phone-mockup-sm {
    width: 200px;
    height: 415px;
    border-radius: 30px;
  }

  .mc {
    width: 16px;
    height: 16px;
    font-size: 0.5rem;
  }

  .mt {
    font-size: 0.68rem;
  }

  .mock-toolbar {
    font-size: 0.6rem;
    padding: 0.5rem;
  }

  /* Sections */
  .showcase-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-sub {
    font-size: 0.9375rem;
  }

  .showcase-desc {
    font-size: 0.95rem;
  }

  /* Features grid */
  .feat-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-inner {
    gap: 1.25rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-text {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .stat-sep {
    height: 24px;
  }

  /* Reddit */
  .reddit-cards {
    grid-template-columns: 1fr;
  }

  .reddit-cards .reddit-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid .review-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  /* Use cases */
  .uc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .uc-card {
    padding: 1rem;
  }

  /* Savings table */
  .savings-table {
    font-size: 0.8rem;
  }

  .savings-table th,
  .savings-table td {
    padding: 0.5rem 0.625rem;
  }

  /* Watch */
  .showcase-visual-duo {
    flex-direction: column;
    gap: 1rem;
  }

  .watch-mockup {
    width: 120px;
    height: 146px;
    border-radius: 30px;
    padding: 8px;
  }

  .watch-screen {
    border-radius: 24px;
  }

  /* Multilingual */
  .ml-phones {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .phone-mockup-ml {
    width: 220px;
    height: 450px;
    border-radius: 34px;
  }

  .ml-phone-center {
    transform: none;
  }

  /* CTA */
  .cta-card {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  .cta-card h2 {
    font-size: 1.75rem;
  }

  /* Trial banner */
  .trial-banner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }

  /* Footer */
  .footer-links {
    gap: 2rem;
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
  }
}

/* ============================================
   Reduced Motion
   ============================================ */

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

  html {
    scroll-behavior: auto;
  }

  .hero-orb {
    opacity: 0.1;
  }

  .feat-item {
    opacity: 1;
    transform: none;
  }

  .anim-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Print
   ============================================ */

@media print {
  .nav,
  .site-footer,
  .skip-link,
  .hero-phones,
  .hero-bg,
  .cta,
  .hero-actions,
  .hero-note,
  .nav-cta,
  .showcase-visual,
  .trial-banner,
  .newsletter-form {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    background: none !important;
    color: #000;
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-title,
  .hero-subtitle,
  .hero-badge {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    background: none !important;
  }

  .accent,
  .hero-accent {
    -webkit-text-fill-color: #000 !important;
    background: none !important;
  }

  .stats { background: none !important; }
  .stat-num { color: #000 !important; }
  .stat-label { color: #333 !important; }

  section {
    padding: 1.5rem 0 !important;
    background: none !important;
  }

  .pricing-card,
  .feat-item,
  .uc-card,
  .reddit-card,
  .review-card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .savings {
    background: none !important;
  }

  .savings-table th,
  .savings-table td {
    color: #000 !important;
    border-color: #ccc !important;
  }

  .section-title-light { color: #000 !important; }
  .section-sub-light { color: #333 !important; }
}
