/* =========================================
   COTIDIE "LIVING LIQUID" DESIGN TOKENS
   ========================================= */
:root {
  --bg-color: #080709;
  --bg-color-light: #0e0c12;
  --surface: #161319;
  --surface-elevated: #1e1b22;
  --surface-glass: rgba(22, 19, 25, 0.85);

  --primary: #c9a96e;
  --secondary: #7aab8a;
  --accent: #c96e8a;
  --deep: #0f0d11;

  --text-heading: #f0ece4;
  --text-body: rgba(240, 236, 228, 0.85);
  --text-muted: rgba(240, 236, 228, 0.45);
  --text-ghost: rgba(240, 236, 228, 0.25);
  --text-on-primary: #080709;

  --border-light: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.15);
  --border-glow: rgba(201, 169, 110, 0.2);
  --glow-primary: 0 12px 40px rgba(201, 169, 110, 0.35);
  --glow-vault: 0 10px 40px rgba(118, 171, 138, 0.2);
  --blur: blur(32px);
  --glass-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-blob: 48px;
  --radius-pill: 100px;

  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.4s var(--ease-out);
  --transition-spring: transform 0.6s var(--ease-spring), border-color 0.4s ease, box-shadow 0.6s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 100px; }

.skip-to-content {
  position: absolute; top: -100px; left: 16px;
  background: var(--primary); color: var(--text-on-primary);
  padding: 12px 24px; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 700; z-index: 9999; transition: top 0.3s;
}
.skip-to-content:focus { top: 16px; }

*:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 4px; }
*:focus:not(:focus-visible) { outline: none; }

body {
  font-family: 'Syne', system-ui, sans-serif;
  background-color: var(--bg-color); color: var(--text-body);
  line-height: 1.6; overflow-x: hidden; position: relative;
  -webkit-font-smoothing: antialiased;
}

::-moz-selection { background: var(--primary); color: var(--text-on-primary); }
::selection { background: var(--primary); color: var(--text-on-primary); }
a { text-decoration: none; color: inherit; transition: color 0.2s; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-padding { padding: 140px 0; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
h1, h2, h3, h4 { color: rgba(255,255,255,0.95); font-weight: 500; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(3.2rem, 6vw, 6rem); font-weight: 400; margin-bottom: 24px; }
h1 em { font-style: normal; color: var(--primary); font-weight: 500; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 400; margin-bottom: 24px; }
h2 em { font-style: normal; color: var(--primary); }
p { font-size: 1.1rem; color: rgba(255,255,255,0.6); letter-spacing: -0.01em; line-height: 1.6; }

/* =========================================
   LIVING LIQUID BACKGROUND
   ========================================= */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.amb { position: absolute; border-radius: 50%; opacity: 0.18; will-change: transform; contain: layout style; }
.amb-1 { width: 700px; height: 700px; background: radial-gradient(circle, var(--primary), transparent 60%); top: -15%; right: -20%; animation: ambMove 25s ease-in-out infinite alternate; }
.amb-2 { width: 600px; height: 600px; background: radial-gradient(circle, var(--secondary), transparent 60%); bottom: -20%; left: -15%; animation: ambMove 30s ease-in-out infinite alternate-reverse; }
.amb-3 { width: 500px; height: 500px; background: radial-gradient(circle, var(--accent), transparent 60%); top: 40%; left: 30%; animation: ambMove 35s ease-in-out infinite alternate; opacity: 0.12; }

@keyframes ambMove {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(60px, -40px) scale(1.1) rotate(10deg); }
  66% { transform: translate(-40px, 50px) scale(0.95) rotate(-5deg); }
  100% { transform: translate(20px, -20px) scale(1.05) rotate(0deg); }
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 24px 0; transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out), border 0.4s var(--ease-out); }
.navbar.stuck { padding: 16px 0; background: rgba(8, 7, 9, 0.92); border-bottom: 1px solid var(--border-glass); }

.nav-content { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 14px; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--text-heading); letter-spacing: 0.02em; }
.logo-icon { width: 44px; height: 44px; border-radius: 12px; overflow: hidden; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a:not(.btn) { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--text-heading); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent;
  border: 1px solid var(--border-glass); border-radius: var(--radius-sm);
  cursor: pointer; padding: 10px; z-index: 600; transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--primary); }
.hamburger-line { display: block; width: 100%; height: 2px; background: var(--text-body); border-radius: 2px; transition: all 0.3s var(--ease-out); transform-origin: center; }
.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: var(--radius-pill); font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; transition: transform 0.3s var(--ease-out), filter 0.3s; text-align: center; border: none; }
.btn-primary { background: var(--primary); color: var(--text-on-primary); box-shadow: var(--glow-primary); }
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.1); }
.btn-outline { background: transparent; color: var(--text-body); border: 1px solid var(--border-hover); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.lang-selector { position: relative; }
.lang-btn { background: transparent; border: 1px solid var(--border-glass); color: var(--text-muted); padding: 8px 16px; border-radius: var(--radius-pill); cursor: pointer; font-size: 0.8rem; font-weight: 600; transition: all 0.2s; display: flex; align-items: center; gap: 4px; }
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; background: rgba(22, 19, 25, 0.98); border: 1px solid var(--border-glow); border-radius: 12px; padding: 8px; display: flex; flex-direction: column; gap: 4px; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: all 0.3s var(--ease-out); box-shadow: 0 20px 40px rgba(0,0,0,0.5); min-width: 120px; }
.lang-menu.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-menu a { padding: 8px 16px; font-size: 0.85rem; color: var(--text-muted); border-radius: 6px; transition: all 0.2s; text-transform: none !important; letter-spacing: normal !important; }
.lang-menu a:hover { background: rgba(201, 169, 110, 0.1); color: var(--text-heading); }

/* =========================================
   HERO
   ========================================= */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: space-between; gap: 60px; padding-top: 120px; position: relative; z-index: 1; }
.hero-content { flex: 1.1; max-width: 600px; }
.kicker { display: inline-flex; align-items: center; gap: 12px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 24px; }
.kicker::before { content: ''; width: 32px; height: 1px; background: var(--primary); opacity: 0.6; }

.hero-sub { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.store-badge { display: inline-flex; height: 48px; transition: transform 0.3s var(--ease-out), filter 0.3s; }
.store-badge img { height: 100%; width: auto; display: block; }
.store-badge:hover { transform: translateY(-4px); filter: brightness(1.1); }

.social-proof { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.avatars { display: flex; }
.avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg-color); background: var(--surface-elevated); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; color: var(--text-muted); margin-left: -12px; }
.avatar:first-child { margin-left: 0; }
.proof-text { font-size: 0.85rem; color: var(--text-ghost); line-height: 1.4; }
.proof-text strong { color: var(--text-heading); font-weight: 600; display: block; }

/* Phone Mockup */
.hero-visual { flex: 0.9; display: flex; justify-content: center; position: relative; }
.phone-frame { position: relative; width: 320px; background: linear-gradient(145deg, #2a2430, #16131a); padding: 12px; border-radius: 56px; box-shadow: 0 80px 160px rgba(0,0,0,0.8), inset 0 2px 4px rgba(255,255,255,0.1), 0 0 0 1px rgba(255,255,255,0.05); }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 100px; height: 30px; background: #080709; border-radius: 0 0 24px 24px; z-index: 10; }
.phone-screen { background: #080709; border-radius: 44px; overflow: hidden; aspect-ratio: 9/19.5; position: relative; display: flex; flex-direction: column; background: linear-gradient(170deg, #0f0d14, #130f1a); }

.ui-status-bar { padding: 14px 24px; display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.05em; z-index: 10; }
.ui-content { padding: 24px 20px; flex: 1; display: flex; flex-direction: column; gap: 16px; overflow: hidden; }
.ui-header h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--text-heading); margin-bottom: 4px; }
.ui-header p { font-size: 0.8rem; color: var(--text-muted); }

.ui-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; }
.ui-card-title { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; font-weight: 600; }

.ui-chart { display: flex; align-items: flex-end; gap: 6px; height: 40px; }
.ui-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(255,255,255,0.06); transition: height 1s; }
.ui-bar.sage { background: var(--secondary); }
.ui-bar.gold { background: var(--primary); }

.ui-text-lines { display: flex; flex-direction: column; gap: 8px; }
.ui-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }

.ui-ai-insight { background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(201,169,110,0.02)); border: 1px solid var(--border-glow); border-radius: 20px 20px 8px 20px; padding: 18px; margin-top: auto; box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.ui-ai-title { display: flex; align-items: center; gap: 8px; font-size: 0.65rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 800; margin-bottom: 10px; }
.ui-ai-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; box-shadow: 0 0 10px var(--primary); }
.ui-ai-text { font-size: 0.85rem; color: rgba(255,255,255,0.9); line-height: 1.6; }

@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }

.float-card { position: absolute; background: rgba(22,19,26,0.95); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 16px 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 20; }
.fc-left { left: -140px; top: 25%; animation: floaty 6s ease-in-out infinite; }
.fc-right { right: -100px; bottom: 20%; animation: floaty 7s ease-in-out infinite alternate-reverse; }
.fc-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; font-weight: 600; }
.fc-value { font-size: 1rem; color: var(--text-heading); font-family: var(--serif); font-weight: 600; display: flex; align-items: center; gap: 8px; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* =========================================
   MARQUEE
   ========================================= */
.marquee-wrapper { border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); padding: 24px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 1; background: rgba(8,7,9,0.5); }
.marquee-track { display: inline-flex; animation: scroll-left 60s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 16px; padding: 0 40px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-ghost); }
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); opacity: 0.5; }

@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   BENTO GRID (PRIMARY FEATURES)
   ========================================= */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 80px; position: relative; z-index: 1; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative; z-index: 1;
  grid-auto-rows: auto;
}

.b-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px; padding: 40px;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out), opacity 0.5s, border-color 0.4s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  display: flex; flex-direction: column;
  contain: layout style;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateZ(0);
  backface-visibility: hidden;
  min-height: 380px;
}
.b-card:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-1deg) translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}
.b-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.b-card:hover::after { opacity: 1; }

.bc-content { margin-bottom: 32px; z-index: 2; position: relative; }
.bc-tag { font-family: 'Syne', sans-serif; font-size: 0.70rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; display: inline-block; padding: 6px 12px; background: rgba(201, 169, 110, 0.05); border-radius: var(--radius-pill); border: 1px solid rgba(201, 169, 110, 0.15); }
.bc-h { margin-bottom: 16px; font-size: 1.8rem; line-height: 1.25; font-family: var(--serif); color: rgba(255,255,255,0.95); font-weight: 500; }
.bc-p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.card-ai { grid-column: span 1; background: linear-gradient(145deg, #13111a, #1a1522); }
.card-vault { grid-column: span 1; background: linear-gradient(145deg, #111009, #1a1508); }
.card-dash { grid-column: span 1; background: linear-gradient(145deg, #0d1410, #0f1a13); }
.card-insights { grid-column: span 2; background: linear-gradient(145deg, #14101a, #1c1528); flex-direction: row; align-items: center; gap: 40px; min-height: auto; }
.card-capsule { grid-column: span 1; background: linear-gradient(145deg, #12100e, #1a1610); }
.card-voice { grid-column: span 3; background: linear-gradient(145deg, #12101a, #1a1522); flex-direction: row; align-items: center; gap: 40px; min-height: auto; }

.b-card { transform-style: flat; }

/* Bento Demos */
.bento-demo-container {
    margin-top: auto; position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end; flex: 1;
}

/* AI Chat Demo */
.bento-demo-chat { padding-top: 16px; }
.chat-mssg { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 0.9rem; }
.chat-mssg:last-child { margin-bottom: 0; }
.c-av { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.c-av.user { background: rgba(255,255,255,0.1); color: var(--text-muted); }
.c-av.ai { background: var(--primary); color: var(--bg-color); }
.c-bub { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); padding: 12px 16px; border-radius: 0 16px 16px 16px; color: var(--text-body); line-height: 1.5; flex: 1; }
.c-bub.ai { background: rgba(201,169,110,0.1); border-color: rgba(201,169,110,0.15); border-radius: 16px 0 16px 16px; color: rgba(255,255,255,0.9); }

/* Vault Demo */
.vault-lock { text-align: center; margin: 0 auto; }
.v-icon { width: 72px; height: 72px; background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.3); border-radius: 24px; display: inline-flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 32px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); color: var(--primary); }
.v-icon svg { transform-origin: center; }
.card-vault:hover .v-icon svg { animation: vaultBlinkHover 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes vaultBlinkHover { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.1); } }
.v-dots { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }
.v-dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); transition: all 0.4s var(--ease-out); }
.v-dot.filled { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 16px var(--glow-primary); transform: scale(1.1); }
.v-text { font-size: 0.85rem; color: var(--text-ghost); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.v-text span { color: var(--primary); }

/* Dashboard Demo */
.dash-stats { display: flex; gap: 16px; margin-bottom: 24px; }
.d-stat { flex: 1; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 16px; padding: 20px; text-align: center; box-shadow: inset 0 2px 10px rgba(0,0,0,0.2); }
.d-lbl { font-size: 0.7rem; color: var(--text-ghost); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; font-weight: 600; }
.d-val { font-family: var(--serif); font-size: 1.8rem; color: var(--text-heading); }
.d-val.sage { color: var(--secondary); text-shadow: 0 0 20px rgba(118, 171, 138, 0.4); }
.dash-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; padding: 20px; background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px solid rgba(255,255,255,0.03); margin-top: auto; }
.d-bar { flex: 1; border-radius: 6px 6px 0 0; background: var(--secondary); transition: height 1.2s var(--ease-out); }
.d-bar:nth-child(even) { background: var(--primary); }

/* AI Insights Demo (NEW) */
.insights-demo { padding-top: 8px; }
.insight-report { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 24px; }
.insight-header { display: flex; align-items: center; gap: 10px; font-size: 0.7rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.insight-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; box-shadow: 0 0 8px rgba(201,169,110,0.4); }
.insight-item { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.insight-item + .insight-item { border-top: 1px solid rgba(255,255,255,0.03); }
.insight-emoji { font-size: 1.3rem; width: 32px; text-align: center; flex-shrink: 0; }
.insight-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.4; }

/* Time Capsule Demo — Envelope */
.capsule-demo { text-align: center; padding-top: 12px; position: relative; }
.capsule-wrapper {
  position: relative; width: 150px; height: 110px; margin: 0 auto 16px;
  cursor: pointer; perspective: 800px;
}
.capsule-envelope {
  position: relative; width: 100%; height: 100%;
  animation: capsuleFloat 4s ease-in-out infinite;
}

/* Envelope body */
.capsule-body {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 75px;
  background: linear-gradient(170deg, rgba(201,169,110,0.18) 0%, rgba(201,169,110,0.06) 100%);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 2px 2px 10px 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}

/* Envelope flap — rectangular, folds from top edge */
.capsule-flap {
  position: absolute; top: 0; left: 0; width: 100%; height: 40px;
  background: linear-gradient(180deg, rgba(201,169,110,0.22) 0%, rgba(201,169,110,0.10) 100%);
  border: 1px solid rgba(201,169,110,0.25); border-bottom: none;
  border-radius: 6px 6px 0 0;
  transform-origin: top center;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 4;
}
.capsule-wrapper.opened .capsule-flap {
  transform: rotateX(-180deg);
}

/* Wax seal on the body */
.capsule-seal {
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4b87a, var(--primary) 60%, #a0843a);
  position: relative; z-index: 5;
  box-shadow: 0 3px 12px rgba(201,169,110,0.5), inset 0 1px 2px rgba(255,255,255,0.2);
  transition: transform 0.5s ease, opacity 0.4s ease 0.15s;
}
.capsule-seal::after {
  content: '✦'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); font-size: 0.7rem;
  color: rgba(8,7,9,0.5); line-height: 1;
}
.capsule-wrapper.opened .capsule-seal { opacity: 0; transform: scale(0.3) rotate(90deg); }

/* Letter that slides out */
.capsule-letter {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 120px; min-height: 85px;
  background: linear-gradient(170deg, #faf6ee 0%, #f0e8d8 100%);
  border-radius: 4px; padding: 12px 10px 8px; z-index: 1;
  opacity: 0; pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s, opacity 0.4s ease 0.1s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.capsule-wrapper.opened .capsule-letter {
  opacity: 1; transform: translateX(-50%) translateY(-80px); pointer-events: auto;
}
.letter-text {
  font-size: 0.58rem; color: #4a4540; font-style: italic; line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
}
.letter-line { width: 75%; height: 1px; background: rgba(74,69,64,0.12); margin: 5px auto; }

/* Date, label, hint */
.capsule-date {
  font-size: 0.75rem; color: var(--primary); font-weight: 700;
  letter-spacing: 0.05em; white-space: nowrap; margin-top: 10px;
}
.capsule-label {
  margin-top: 4px; font-size: 0.8rem; color: var(--text-ghost);
  font-style: italic; transition: color 0.4s;
}
.capsule-wrapper.opened ~ .capsule-label { color: var(--primary); font-style: normal; }
.capsule-hint {
  font-size: 0.65rem; color: var(--text-ghost); margin-top: 3px;
  opacity: 0.6; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 0.25; } }
@keyframes capsuleFloat { 0%, 100% { transform: translateY(0) rotate(-0.5deg); } 50% { transform: translateY(-6px) rotate(0.5deg); } }

/* Voice Demo */
.voice-wave { display: flex; gap: 10px; align-items: center; justify-content: center; height: 100px; margin: 0 auto; width: 100%; }
.v-line { width: 10px; border-radius: 5px; background: var(--accent); opacity: 0.8; animation: wave 1.2s ease-in-out infinite; }
@keyframes wave { 0%, 100% { height: 20%; } 50% { height: 100%; } }
.v-line:nth-child(1) { animation-delay: 0.0s; } .v-line:nth-child(2) { animation-delay: 0.1s; }
.v-line:nth-child(3) { animation-delay: 0.2s; } .v-line:nth-child(4) { animation-delay: 0.3s; }
.v-line:nth-child(5) { animation-delay: 0.4s; } .v-line:nth-child(6) { animation-delay: 0.1s; }
.v-line:nth-child(7) { animation-delay: 0.5s; } .v-line:nth-child(8) { animation-delay: 0.2s; }
.v-line:nth-child(9) { animation-delay: 0.35s; } .v-line:nth-child(10) { animation-delay: 0.15s; }
.v-line:nth-child(11) { animation-delay: 0.45s; } .v-line:nth-child(12) { animation-delay: 0.25s; }
.v-line:nth-child(13) { animation-delay: 0.05s; } .v-line:nth-child(14) { animation-delay: 0.3s; }

/* =========================================
   SHOWCASE GRID (SECONDARY FEATURES)
   ========================================= */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative; z-index: 1;
  grid-auto-rows: auto;
}

.s-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 36px;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex; flex-direction: column;
  min-height: 340px;
}
.s-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.s-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.s-card:hover::after { opacity: 1; }

.sc-content { margin-bottom: 24px; z-index: 2; position: relative; }
.sc-demo { margin-top: auto; z-index: 2; position: relative; }

.s-card-streak { background: linear-gradient(145deg, #16131a, #1e1920); }
.s-card-drawing { background: linear-gradient(145deg, #14101a, #1a1420); }
.s-card-themes { background: linear-gradient(145deg, #10101a, #181428); transition: background 0.6s ease, box-shadow 0.6s ease; }
.s-card-achievements { background: linear-gradient(145deg, #141008, #1a1610); }
.s-card-global { grid-column: span 3; background: linear-gradient(145deg, #0f1012, #161a1c); flex-direction: row; align-items: center; gap: 40px; min-height: auto; }

/* Streak Demo */
.streak-wrapper { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding-top: 16px; }
.streak-num { font-family: var(--serif); font-size: 5rem; color: var(--text-heading); line-height: 1; margin-bottom: 8px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.streak-lbl { font-size: 0.9rem; color: var(--primary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.streak-days { display: flex; gap: 10px; }
.s-day { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.s-day.done { background: var(--primary); }
.s-day.today { background: var(--bg-color); box-shadow: 0 0 20px var(--primary); border: 2px solid var(--primary); transform: scale(1.2); }

/* Drawing Demo (NEW) — Interactive Canvas */
.drawing-demo { border-radius: 16px; overflow: hidden; }
.drawing-canvas-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px 16px 0 0; position: relative; height: 150px; cursor: crosshair; touch-action: none; }
.drawing-canvas-wrap canvas { display: block; width: 100%; height: 100%; border-radius: 16px 16px 0 0; }
.draw-hint { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.75rem; color: var(--text-ghost); pointer-events: none; transition: opacity 0.4s; letter-spacing: 0.05em; }
.draw-hint.hidden { opacity: 0; }

.drawing-tools { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-top: none; border-radius: 0 0 16px 16px; }
.draw-tool { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--text-muted); cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.draw-tool:hover { border-color: rgba(255,255,255,0.2); }
.draw-tool.active { background: rgba(201,169,110,0.15); border-color: rgba(201,169,110,0.3); color: var(--primary); }
.draw-tool-color { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.1); cursor: pointer; transition: transform 0.2s, border-color 0.2s; flex-shrink: 0; }
.draw-tool-color:hover { transform: scale(1.15); }
.draw-tool-color.active-color { border-color: rgba(255,255,255,0.6); transform: scale(1.2); }
.draw-tools-spacer { flex: 1; }
.draw-tool-clear { font-size: 0.65rem; font-weight: 700; color: var(--text-ghost); text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; padding: 6px 10px; border-radius: 6px; transition: color 0.2s; border: none; background: none; }
.draw-tool-clear:hover { color: var(--accent); }

/* Photos Demo — Vibrant, Glowing & Interactive */
.photos-demo { text-align: center; position: relative; }
.photo-stack { position: relative; width: 180px; height: 140px; margin: 0 auto 16px; cursor: pointer; }
.photo-card {
  position: absolute; width: 100px; height: 100px; border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.2); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s var(--ease-spring), box-shadow 0.6s ease, border-color 0.4s;
  backface-visibility: hidden;
}
.photo-glow { position: absolute; inset: -4px; opacity: 0.6; filter: blur(16px); z-index: 0; }
.photo-icon { font-size: 2rem; position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); transition: transform 0.4s var(--ease-spring); }
.photo-card:hover .photo-icon { transform: scale(1.15); }

.pc-1 { background: linear-gradient(135deg, #667eea, #764ba2); top: 15px; left: 0; transform: rotate(-12deg); z-index: 1; box-shadow: 0 8px 28px rgba(102,126,234,0.4); animation: photoFloat1 4s ease-in-out infinite; }
.pc-1 .photo-glow { background: linear-gradient(135deg, #667eea, #764ba2); }
.pc-2 { background: linear-gradient(135deg, #f093fb, #f5576c); top: 8px; left: 40px; transform: rotate(4deg); z-index: 2; box-shadow: 0 8px 28px rgba(240,147,251,0.4); animation: photoFloat2 4.5s ease-in-out infinite; }
.pc-2 .photo-glow { background: linear-gradient(135deg, #f093fb, #f5576c); }
.pc-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); top: 0; left: 75px; transform: rotate(8deg); z-index: 3; box-shadow: 0 8px 28px rgba(79,172,254,0.4); animation: photoFloat3 3.5s ease-in-out infinite; }
.pc-3 .photo-glow { background: linear-gradient(135deg, #4facfe, #00f2fe); }

@keyframes photoFloat1 { 0%, 100% { transform: rotate(-12deg) translateY(0); box-shadow: 0 8px 28px rgba(102,126,234,0.4); } 50% { transform: rotate(-10deg) translateY(-6px); box-shadow: 0 16px 40px rgba(102,126,234,0.6); } }
@keyframes photoFloat2 { 0%, 100% { transform: rotate(4deg) translateY(0); box-shadow: 0 8px 28px rgba(240,147,251,0.4); } 50% { transform: rotate(2deg) translateY(-8px); box-shadow: 0 18px 44px rgba(240,147,251,0.6); } }
@keyframes photoFloat3 { 0%, 100% { transform: rotate(8deg) translateY(0); box-shadow: 0 8px 28px rgba(79,172,254,0.4); } 50% { transform: rotate(6deg) translateY(-7px); box-shadow: 0 16px 42px rgba(79,172,254,0.6); } }

.photo-stack.fanned .pc-1 { transform: rotate(-22deg) translateX(-20px) translateY(-5px); box-shadow: 0 14px 36px rgba(102,126,234,0.6); border-color: rgba(102,126,234,0.5); animation: none; }
.photo-stack.fanned .pc-2 { transform: rotate(0deg) translateY(-14px); box-shadow: 0 14px 36px rgba(240,147,251,0.6); border-color: rgba(240,147,251,0.5); animation: none; }
.photo-stack.fanned .pc-3 { transform: rotate(22deg) translateX(20px) translateY(-5px); box-shadow: 0 14px 36px rgba(79,172,254,0.6); border-color: rgba(79,172,254,0.5); animation: none; }
.photo-count { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; transition: color 0.3s; }
.photo-stack.fanned ~ .photo-count { color: var(--primary); }

/* Photos card background glow */
.s-card-photos { background: linear-gradient(145deg, #12100e, #1a1610); position: relative; overflow: hidden; }
.s-card-photos::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(102,126,234,0.12), rgba(240,147,251,0.08), transparent 70%);
  transform: translate(-50%, -50%); border-radius: 50%; filter: blur(40px);
  animation: photoBgGlow 5s ease-in-out infinite; pointer-events: none; z-index: 0;
}
@keyframes photoBgGlow { 0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } }

/* Themes Demo (NEW) */
.themes-demo { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px 0; }
.theme-orb { width: 42px; height: 42px; border-radius: 50%; border: 2px solid transparent; transition: all 0.4s var(--ease-spring); cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.3); position: relative; }
.theme-orb:hover { transform: scale(1.2); box-shadow: 0 6px 24px rgba(255,255,255,0.15); }
.theme-orb.active-theme { border-color: rgba(255,255,255,0.5); transform: scale(1.25); box-shadow: 0 0 24px currentColor, 0 4px 20px rgba(255,255,255,0.2); animation: orbPulse 2s ease-in-out infinite; }
@keyframes orbPulse { 0%, 100% { box-shadow: 0 0 20px currentColor, 0 4px 20px rgba(255,255,255,0.2); } 50% { box-shadow: 0 0 32px currentColor, 0 8px 30px rgba(255,255,255,0.3); } }

/* Achievements Demo (NEW) */
.achievements-demo { padding-top: 8px; }
.badge-row { display: flex; gap: 12px; margin-bottom: 20px; justify-content: center; }
.ach-badge { width: 60px; height: 70px; border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; transition: transform 0.3s; }
.ach-badge.earned { background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.25); }
.ach-badge.locked { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); opacity: 0.5; }
.ach-badge:hover { transform: translateY(-3px); }
.ach-badge span { font-size: 1.4rem; }
.ach-badge small { font-size: 0.6rem; color: var(--text-ghost); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.ach-badge.earned small { color: var(--primary); }
.ach-progress { display: flex; align-items: center; gap: 12px; }
.ach-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.ach-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; transition: width 1.5s var(--ease-out); }
.ach-level { font-size: 0.75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }

/* Global / Language Demo (NEW) */
.global-demo { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.lang-flags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.flag-item { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; font-size: 0.85rem; color: var(--text-body); transition: all 0.2s; }
.flag-item:hover { border-color: rgba(201,169,110,0.3); background: rgba(201,169,110,0.05); }
.flag-item.more { background: rgba(201,169,110,0.1); border-color: rgba(201,169,110,0.2); color: var(--primary); font-weight: 700; }
.flag-item span { font-size: 0.8rem; }
.export-row { display: flex; gap: 10px; justify-content: center; }
.export-chip { padding: 8px 20px; background: rgba(122,171,138,0.1); border: 1px solid rgba(122,171,138,0.2); border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.1em; }

/* =========================================
   HOW IT WORKS (AI GUIDED MODE)
   ========================================= */
.how-steps { display: flex; align-items: flex-start; gap: 0; max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.how-step { flex: 1; text-align: center; padding: 40px 32px; }
.how-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--primary); opacity: 0.6; margin-bottom: 20px; line-height: 1; }
.how-step h4 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-heading); font-weight: 600; }
.how-step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.how-divider { width: 1px; min-height: 160px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent); align-self: stretch; flex-shrink: 0; margin-top: 40px; }

/* =========================================
   PROOF SECTION
   ========================================= */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-glass); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); position: relative; z-index: 1; overflow: hidden; }
.proof-card { background: var(--surface); padding: 56px 48px; text-align: left; transition: background 0.3s; }
.proof-card:hover { background: var(--surface-elevated); }
.proof-num { font-family: var(--serif); font-size: clamp(3rem, 4vw, 4rem); font-weight: 300; line-height: 1; margin-bottom: 12px; color: var(--text-heading); }
.proof-num em { font-style: normal; color: var(--primary); }
.proof-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-scroller { width: 100%; overflow: hidden; position: relative; z-index: 1; margin: 40px 0; }
.testimonials-scroller::before, .testimonials-scroller::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 10vw; z-index: 5; pointer-events: none;
}
.testimonials-scroller::before { left: 0; background: linear-gradient(to right, var(--bg-color), transparent); }
.testimonials-scroller::after { right: 0; background: linear-gradient(to left, var(--bg-color), transparent); }

.testimonials-track { display: inline-flex; gap: 32px; padding: 0 32px; animation: scroll-tests 70s linear infinite; }
.testimonials-track:hover { animation-play-state: paused; }

@keyframes scroll-tests { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.test-card {
    width: 420px; background: rgba(22, 19, 25, 0.85);
    border: 1px solid var(--border-glass); padding: 48px;
    border-radius: 36px; position: relative;
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
    flex-shrink: 0; contain: layout style; backface-visibility: hidden;
}
.test-card:hover { transform: translateY(-4px); border-color: rgba(201,169,110,0.25); }
.test-quote-ic { position: absolute; top: 0px; left: 32px; font-family: var(--serif); font-size: 8rem; color: rgba(201,169,110,0.08); line-height: 1; pointer-events: none; }
.test-stars { display: flex; gap: 4px; margin-bottom: 24px; color: var(--primary); font-size: 1rem; position: relative; z-index: 2; }
.test-body { font-family: var(--serif); font-style: italic; font-size: 1.25rem; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 40px; position: relative; z-index: 2; }
.test-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; }
.ta-av { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, rgba(201,169,110,0.2), transparent); border: 1px solid rgba(201,169,110,0.3); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--text-heading); font-size: 1.2rem; }
.ta-info h5 { font-size: 1rem; font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 4px; color: var(--text-heading); }
.ta-info p { font-size: 0.85rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* =========================================
   TRUST / PRIVACY BANNER (NEW)
   ========================================= */
.trust-banner {
  display: flex; align-items: center; gap: 40px;
  background: linear-gradient(145deg, rgba(122,171,138,0.06), rgba(122,171,138,0.02));
  border: 1px solid rgba(122,171,138,0.15);
  border-radius: 32px; padding: 48px 56px;
  position: relative; z-index: 1;
}
.trust-icon { flex-shrink: 0; width: 80px; height: 80px; background: rgba(122,171,138,0.08); border: 1px solid rgba(122,171,138,0.2); border-radius: 24px; display: flex; align-items: center; justify-content: center; }
.trust-content { flex: 1; }
.trust-content h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--text-heading); font-family: var(--serif); }
.trust-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.trust-badges { display: flex; gap: 12px; flex-shrink: 0; }
.trust-badge { padding: 8px 16px; background: rgba(122,171,138,0.08); border: 1px solid rgba(122,171,138,0.2); border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 800; color: var(--secondary); letter-spacing: 0.1em; }

/* =========================================
   PRICING
   ========================================= */
.pricing-grid { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 28px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; align-items: center; }
.price-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 36px; padding: 48px;
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    position: relative; display: flex; flex-direction: column; align-items: flex-start;
}
.price-card:hover {
    transform: translateY(-6px); border-color: rgba(255,255,255,0.15);
    box-shadow: 0 40px 80px rgba(0,0,0,0.7); z-index: 10;
}
.price-card.premium {
    background: rgba(255,255,255,0.03); border-color: rgba(201,169,110,0.3);
    overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.1) inset;
    transform: scale(1.02);
}
.price-card.premium:hover { transform: translateY(-8px) scale(1.01); }
.price-card.premium::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 500px; background: radial-gradient(circle at top center, rgba(201,169,110,0.2), transparent 70%); pointer-events: none; }
.popular-badge { display: inline-block; margin-bottom: 24px; background: var(--primary); color: #2A1F13; font-size: 0.8rem; font-weight: 600; padding: 10px 18px; border-radius: var(--radius-pill); box-shadow: 0 4px 16px rgba(201,169,110,0.4); white-space: nowrap; }
.pop-sub { display: inline-block; margin-bottom: 24px; border: 1px solid var(--primary); color: var(--primary); font-size: 0.75rem; font-weight: 600; padding: 8px 16px; border-radius: var(--radius-pill); }

.p-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 24px; }
.p-amt { font-family: var(--serif); font-size: 4rem; line-height: 1; margin-bottom: 8px; color: var(--text-heading); }
.p-amt .cur { font-size: 1.8rem; vertical-align: top; margin-top: 10px; display: inline-block; margin-right: 4px; color: var(--text-ghost); font-family: 'Syne', sans-serif; }
.p-amt em { font-style: normal; color: var(--primary); }
.p-per { font-size: 0.9rem; color: var(--text-ghost); margin-bottom: 32px; }
.p-div { height: 1px; background: var(--border-glass); margin-bottom: 32px; }

.p-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.p-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-body); }
.picon { color: var(--primary); font-size: 1rem; }

.price-card .btn { width: 100%; padding: 18px; }

/* Pricing Compare Table */
.pricing-compare { margin-top: 100px; text-align: center; }
.compare-title { font-family: var(--serif); font-size: 2.2rem; color: var(--text-heading); margin-bottom: 40px; }
.table-wrapper { overflow-x: auto; background: rgba(26, 22, 32, 0.8); border: 1px solid var(--border-glass); border-radius: 36px; padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); max-width: 960px; margin: 0 auto; position: relative; }
.pricing-compare table { width: 100%; border-collapse: collapse; text-align: center; }
.pricing-compare th, .pricing-compare td { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pricing-compare tbody tr:last-child td { border-bottom: none; }
.pricing-compare th { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-heading); border-bottom: 1px solid rgba(201,169,110,0.15); }
.th-feature { text-align: left; width: 40%; border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
.th-free { width: 30%; color: var(--text-muted) !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
.th-premium { width: 30%; color: var(--primary) !important; background: linear-gradient(to top, rgba(201,169,110,0.05), transparent); border-radius: 16px 16px 0 0; }
.td-feature { text-align: left; font-size: 1.05rem; color: var(--text-body); font-weight: 500; }
.td-icon { font-size: 1.2rem; color: var(--text-ghost); font-weight: 700; }
.td-icon.cross { color: rgba(255,255,255,0.15); font-size: 1.5rem; font-weight: 300; }
.td-icon.premium-check { color: var(--primary); font-size: 1.4rem; text-shadow: 0 0 16px var(--glow-primary); background: rgba(201,169,110,0.03); }
.pricing-compare tbody tr:last-child .premium-check { border-radius: 0 0 16px 16px; }

/* =========================================
   FINAL CTA
   ========================================= */
.fcta-section { padding: 160px 0; position: relative; z-index: 1; }
.fcta-card { background: linear-gradient(145deg, rgba(26, 22, 32, 0.95), rgba(18, 15, 24, 0.95)); border: 1px solid var(--border-glow); border-radius: 48px; padding: 100px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 2px 20px rgba(201,169,110,0.1); }
.fcta-card::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(circle, rgba(201,169,110,0.2), transparent 70%); pointer-events: none; }
.fcta-card > * { position: relative; z-index: 2; }
.fcta-card .kicker { justify-content: center; margin-bottom: 32px; }
.fcta-card h2 { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 32px; line-height: 1.05; }
.fcta-card p { font-size: 1.15rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 48px; }

/* =========================================
   FOOTER
   ========================================= */
footer { border-top: 1px solid var(--border-glass); padding: 80px 0 32px; background: var(--bg-color-light); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.fb-desc { font-size: 0.95rem; color: var(--text-muted); max-width: 280px; margin-top: 24px; line-height: 1.7; }
.fc h5 { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-ghost); margin-bottom: 24px; }
.fc a { display: block; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; }
.fc a:hover { color: var(--text-heading); }
.footer-bot { border-top: 1px solid var(--border-glass); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-ghost); }
.footer-bot a { color: var(--text-ghost); }
.footer-bot a:hover { color: var(--text-heading); }

/* =========================================
   VISUAL EFFECTS
   ========================================= */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201, 169, 110, 0.05), transparent 70%);
  pointer-events: none; z-index: 9990; opacity: 0; will-change: transform; backface-visibility: hidden;
}
.cursor-glow.active { opacity: 1; transition: opacity 0.6s; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  z-index: 10000; transition: none; box-shadow: 0 0 12px rgba(201, 169, 110, 0.5);
}

.morph-word {
  display: inline-block; color: var(--primary); font-weight: 600; position: relative;
  min-width: 80px; text-align: center;
}
.morph-word::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px;
  background: var(--primary); border-radius: 2px; opacity: 0.5;
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
}

.navbar.stuck::after {
  content: ''; position: absolute; bottom: -1px; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5; animation: navGlow 3s ease-in-out infinite;
}
@keyframes navGlow {
  0%, 100% { opacity: 0.3; width: 60%; left: 20%; }
  50% { opacity: 0.7; width: 80%; left: 10%; }
}

/* =========================================
   ANIMATIONS & REVEAL
   ========================================= */
.rv { opacity: 0; transform: translateY(40px) scale(0.95) rotateX(-5deg); transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring); will-change: opacity, transform; transform-origin: top center; }
.rv.left { transform: translateX(-40px) scale(0.95); }
.rv.right { transform: translateX(40px) scale(0.95); }
.rv.scale { transform: scale(0.9); }
.rv.active { opacity: 1; transform: translate(0,0) scale(1) rotateX(0deg); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 160px; gap: 80px; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .card-voice { grid-column: span 2; flex-direction: column; align-items: flex-start; min-height: auto; }
  .card-insights { grid-column: span 2; flex-direction: column; align-items: flex-start; min-height: auto; }
  .card-insights .bc-content { margin-bottom: 24px !important; }
  .card-voice .bc-content { max-width: 100% !important; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .s-card-global { grid-column: span 2; flex-direction: column; align-items: flex-start; min-height: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
  .pricing-grid .price-card.premium { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .trust-banner { flex-direction: column; text-align: center; }
  .trust-badges { justify-content: center; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-divider { width: 1px; min-height: 40px; height: 40px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 7, 9, 0.97); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px; z-index: 550; padding: 80px 32px;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links a:not(.btn) { font-size: 1.2rem; color: var(--text-heading); }
  .nav-links .btn { width: 100%; max-width: 280px; }
  .nav-links .lang-selector { margin-top: 16px; }
  .bento-grid { grid-template-columns: 1fr; }
  .card-ai, .card-vault, .card-dash, .card-insights, .card-capsule, .card-voice { grid-column: span 1; min-height: auto; }
  .card-voice, .card-insights { flex-direction: column; align-items: flex-start; }
  .card-voice .bc-content, .card-insights .bc-content { max-width: 100% !important; flex: none !important; margin-bottom: 24px !important; }
  .card-voice .bento-demo-container, .card-insights .bento-demo-container { flex: none !important; margin-top: 0 !important; width: 100%; }
  .showcase-grid { grid-template-columns: 1fr; }
  .s-card-global { grid-column: span 1; flex-direction: column; min-height: auto; }
  .s-card-global .sc-content { max-width: 100% !important; }
  .s-card { min-height: auto; }
  .b-card { min-height: auto; }
  .section-padding { padding: 80px 0; }
  .fcta-card { padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bot { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .b-card { padding: 32px 24px; border-radius: 24px; }
  .s-card { padding: 28px 20px; border-radius: 20px; }
  .price-card { padding: 32px 24px; border-radius: 28px; }
  .test-card { width: 300px; padding: 32px 24px; border-radius: 24px; }
  .hero { padding-top: 120px; }
  .store-badge { height: 40px; }
  .trust-banner { padding: 32px 24px; border-radius: 24px; }
}

/* =========================================
   REDUCED MOTION
   ========================================= */
@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;
  }
  .rv { opacity: 1; transform: none; filter: none; }
  .marquee-track { animation: none; }
  .testimonials-track { animation: none; }
}

/* =========================================
   PRINT
   ========================================= */
@media print {
  .ambient, .navbar, .hamburger, .marquee-wrapper, .testimonials-scroller,
  .store-badge, .hero-visual, .lang-selector, .skip-to-content { display: none !important; }
  body { background: #fff; color: #000; }
  h1, h2, h3, h4, h5 { color: #000; }
  p { color: #333; }
  .section-padding { padding: 40px 0; }
  .b-card, .s-card, .price-card, .test-card, .proof-card, .fcta-card, .trust-banner {
    background: #fff; border: 1px solid #ddd; box-shadow: none; break-inside: avoid;
  }
  a { color: #000; text-decoration: underline; }
}