:root {
  --bg: #0c0a09;
  --bg-alt: #14100e;
  --surface: #1a1614;
  --surface-2: #231e1a;
  --text: #f5f0ea;
  --text-muted: #b8a99a;
  --text-dim: #7a6f63;
  --accent: #e8a317;
  --accent-light: #f5d078;
  --accent-dark: #c4880f;
  --accent-soft: rgba(232, 163, 23, 0.1);
  --accent-glow: rgba(232, 163, 23, 0.22);
  --warm-glow: rgba(255, 180, 100, 0.12);
  --border: rgba(139, 156, 184, 0.14);
  --border-strong: rgba(232, 163, 23, 0.35);
  --success: #4ade80;
  --danger: #f87171;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.text-accent {
  color: var(--accent-light);
}

/* Background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.page-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 156, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 156, 184, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

.page-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.page-bg-glow--hero {
  top: -10%;
  right: -5%;
  width: 560px;
  height: 560px;
  background: var(--accent-glow);
  opacity: 0.5;
}

.page-bg-glow--warm {
  top: 40%;
  left: 20%;
  width: 480px;
  height: 480px;
  background: var(--warm-glow);
  opacity: 0.7;
}

.page-bg-glow--accent {
  bottom: 15%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: rgba(180, 120, 60, 0.06);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(12, 10, 9, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 10, 9, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0a0f1a;
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-links,
.nav-mobile-links {
  list-style: none;
  display: flex;
  gap: 8px;
}

.nav-links a,
.nav-mobile-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-num {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-mobile-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(12, 10, 9, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px 24px;
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile-links {
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-links a {
  width: 100%;
  padding: 12px 14px;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 72px) 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease infinite;
}

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

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 10px;
  line-height: 1.85;
}

.hero-en {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #0a0f1a;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
  color: #0a0f1a;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  color: var(--accent-light);
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags li {
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: min(100%, 300px);
}

.phone-frame {
  position: relative;
  z-index: 2;
  background: linear-gradient(160deg, #2a3347 0%, #1a2235 100%);
  border-radius: 44px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #0a0f1a;
  border-radius: 20px;
  z-index: 3;
}

.phone-screen {
  background: linear-gradient(180deg, #121a2b 0%, #0d1422 100%);
  border-radius: 34px;
  padding: 48px 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.mock-signal {
  letter-spacing: 2px;
}

.mock-header {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.mock-tab {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
}

.mock-tab.active {
  color: var(--accent-light);
}

.mock-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.mock-stat-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-light);
}

.mock-stat-label {
  font-size: 0.6rem;
  color: var(--text-dim);
}

.mock-card {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 0 30px rgba(232, 163, 23, 0.08);
}

.mock-card-label {
  display: block;
  font-size: 0.58rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-card-front {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
}

.mock-card-hint {
  font-size: 0.58rem;
  color: var(--text-dim);
}

.mock-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mock-btn {
  font-size: 0.52rem;
  font-weight: 600;
  text-align: center;
  padding: 7px 2px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.mock-btn--good {
  background: rgba(232, 163, 23, 0.2);
  color: var(--accent-light);
}

.phone-glow {
  position: absolute;
  inset: 10% -10%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  z-index: 1;
  filter: blur(30px);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--accent-light);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

.floating-chip--1 {
  top: 12%;
  left: -8%;
}

.floating-chip--2 {
  bottom: 18%;
  right: -10%;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section--alt {
  background: rgba(20, 16, 14, 0.55);
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.section-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.85;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 56px;
  font-size: 1.02rem;
}

.section-desc--poetic {
  line-height: 2;
  font-weight: 400;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Moments */
.moments-panel {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(232, 163, 23, 0.06), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.moment-quote {
  margin: 0 0 40px;
  padding: 0;
  border: none;
}

.moment-quote p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.moment-quote p + p {
  margin-top: 6px;
  color: var(--text-muted);
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.moment-item {
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.35s var(--ease);
}

.moment-item:hover {
  border-color: var(--border-strong);
}

.moment-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.moment-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.story-card:hover {
  border-color: rgba(232, 163, 23, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.story-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.story-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.45;
}

.story-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Privacy banner */
.privacy-banner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(232, 163, 23, 0.06), rgba(20, 16, 14, 0.9));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.privacy-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.privacy-banner h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-light);
}

.privacy-banner-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-links {
  margin-top: 14px;
  font-size: 0.85rem;
}

.legal-links a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-links a:hover {
  color: var(--accent);
}

.legal-links span {
  margin: 0 8px;
  color: var(--text-dim);
}

.pricing-note-detail a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-note-detail a:hover {
  color: var(--accent);
}

.footer-legal a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--accent-light);
}

.footer-legal span {
  margin: 0 6px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 163, 23, 0.3);
}

.pricing-card--featured {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(232, 163, 23, 0.1), var(--surface));
  box-shadow: 0 0 40px rgba(232, 163, 23, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0f1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.pricing-tier {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  margin: 8px 0 4px;
}

.pricing-card .credits {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card .usage {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-note {
  padding: 32px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.pricing-note-poetic {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
}

.pricing-note-detail {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Platform */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color 0.3s var(--ease);
}

.platform-item:hover {
  border-color: var(--border-strong);
}

.platform-item .status {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.platform-item .status.yes {
  background: rgba(74, 222, 128, 0.12);
  color: var(--success);
}

.platform-item .status.no {
  background: rgba(248, 113, 113, 0.1);
  color: var(--danger);
}

.platform-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.platform-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.data-panel {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th,
.data-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--surface-2);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.data-table td {
  color: var(--text-muted);
}

/* CTA */
.cta-section {
  padding: 100px 0 120px;
}

.cta-inner {
  text-align: center;
  padding: 72px 40px;
  background: linear-gradient(160deg, rgba(232, 163, 23, 0.08), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 12px 0 16px;
}

.cta-inner > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

.cta-inner .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: rgba(12, 10, 9, 0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 380px;
  margin-top: 14px;
  line-height: 1.65;
}

.no-break {
  white-space: nowrap;
}

.footer-brand strong {
  color: var(--accent-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Privacy page */
.privacy-page {
  padding: calc(var(--header-h) + 48px) 0 80px;
}

.privacy-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--text-muted);
}

.privacy-page .back-link:hover {
  color: var(--accent-light);
}

.privacy-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.privacy-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.privacy-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.privacy-meta p {
  margin-bottom: 4px;
}

.privacy-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-top: 8px;
  color: var(--text);
}

.privacy-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--accent-light);
}

.privacy-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.privacy-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content a:hover {
  color: var(--accent);
}

.privacy-content .data-table {
  margin: 16px 0 24px;
}

.privacy-content ul,
.privacy-content ol {
  margin: 12px 0 16px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.privacy-content li {
  margin-bottom: 6px;
}

.company-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.9rem;
}

.company-info p {
  margin-bottom: 4px;
  color: var(--text-muted);
}

.company-info p strong {
  color: var(--text);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: min(100%, 260px);
  }

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

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 40px);
    min-height: auto;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    flex-direction: column;
    gap: 8px;
  }

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

  .audience-grid,
  .pricing-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .moments-grid {
    grid-template-columns: 1fr;
  }

  .moments-panel {
    padding: 32px 24px;
  }

  .story-card:hover {
    transform: none;
  }

  .privacy-banner {
    flex-direction: column;
    padding: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cta-inner {
    padding: 40px 24px;
  }

  .floating-chip--1 {
    left: 0;
  }

  .floating-chip--2 {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-chip,
  .badge-dot {
    animation: none;
  }
}