/* ─── ACCESSIBILITY ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  /* Brand gradient palette */
  --c-orange:    #FF8C00;
  --c-pink:      #FF3CA0;
  --c-purple:    #8B5CF6;
  --c-blue:      #3B82F6;
  --c-teal:      #06B6D4;
  --c-green:     #10B981;

  /* Brand gradient */
  --grad-brand: linear-gradient(135deg, var(--c-orange) 0%, var(--c-pink) 40%, var(--c-purple) 75%, var(--c-blue) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(255,140,0,.15) 0%, rgba(255,60,160,.12) 50%, rgba(139,92,246,.10) 100%);

  /* Typography */
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Radius */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Nav height */
  --nav-h: 72px;
}

/* ─── DARK THEME ────────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:           #0A0A0F;
  --bg-2:         #111118;
  --bg-3:         #18181F;
  --bg-card:      #16161E;
  --bg-card-2:    #1E1E28;
  --border:       rgba(255,255,255,.07);
  --border-soft:  rgba(255,255,255,.04);
  --text-primary: #F5F5F7;
  --text-secondary: #9999AA;
  --text-tertiary: #55556A;
  --text-on-brand: #ffffff;
  --shadow-card:  0 1px 3px rgba(0,0,0,.5), 0 8px 32px rgba(0,0,0,.4);
  --shadow-phone: 0 24px 64px rgba(0,0,0,.6), 0 4px 16px rgba(0,0,0,.4);
  --glow-1: rgba(255,140,0,.18);
  --glow-2: rgba(139,92,246,.14);
  --nav-bg: rgba(10,10,15,.8);
  --pill-bg: rgba(255,255,255,.05);
  --pill-border: rgba(255,255,255,.08);
  --input-bg: #1A1A24;
  --input-border: rgba(255,255,255,.1);
  --input-border-focus: rgba(139,92,246,.6);
}

/* ─── LIGHT THEME ───────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:           #FAFAFA;
  --bg-2:         #F3F3F8;
  --bg-3:         #ECECF5;
  --bg-card:      #FFFFFF;
  --bg-card-2:    #F7F7FC;
  --border:       rgba(0,0,0,.07);
  --border-soft:  rgba(0,0,0,.04);
  --text-primary: #0A0A14;
  --text-secondary: #5555668;
  --text-secondary: #555568;
  --text-tertiary: #AAAABC;
  --text-on-brand: #ffffff;
  --shadow-card:  0 1px 3px rgba(0,0,0,.06), 0 8px 32px rgba(0,0,0,.08);
  --shadow-phone: 0 24px 64px rgba(0,0,0,.15), 0 4px 16px rgba(0,0,0,.08);
  --glow-1: rgba(255,140,0,.12);
  --glow-2: rgba(139,92,246,.10);
  --nav-bg: rgba(250,250,250,.85);
  --pill-bg: rgba(0,0,0,.04);
  --pill-border: rgba(0,0,0,.07);
  --input-bg: #F5F5FA;
  --input-border: rgba(0,0,0,.1);
  --input-border-focus: rgba(139,92,246,.5);
}

/* ─── GLOBAL ────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────────── */
.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.feature-label.label-accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.4rem;
  background: var(--text-primary);
  color: var(--bg);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.8rem;
  background: var(--text-primary);
  color: var(--bg);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-appstore svg { width: 24px; height: 24px; flex-shrink: 0; }
.btn-appstore span { display: flex; flex-direction: column; line-height: 1.2; }
.btn-appstore small { font-size: 0.65rem; font-weight: 400; opacity: 0.7; }
.btn-appstore:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

.btn-appstore--large {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}

/* ─── NAV ───────────────────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: var(--nav-h);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}
.nav-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.nav-link-active { color: var(--text-primary); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s;
}
.theme-toggle:hover { background: var(--bg-3); color: var(--text-primary); }
.theme-toggle svg { width: 18px; height: 18px; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--border);
  background: var(--nav-bg);
}
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; margin-top: var(--space-sm); }
.nav-mobile a.btn-primary { color: var(--bg); text-align: center; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--space-xl));
  padding-bottom: var(--space-xl);
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--glow-1) 0%, var(--glow-2) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.9rem;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: var(--space-lg);
}
.hero-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phones {
  position: relative;
  z-index: 2;
}
.hero-img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(var(--shadow-phone));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.orb-1 {
  width: 300px; height: 300px;
  top: 0; right: 0;
  background: radial-gradient(circle, rgba(255,140,0,.25) 0%, transparent 70%);
}
.orb-2 {
  width: 250px; height: 250px;
  bottom: 0; left: 10%;
  background: radial-gradient(circle, rgba(139,92,246,.2) 0%, transparent 70%);
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-lg);
  color: var(--text-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 16px; height: 16px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(4px); opacity: 1; }
}

/* ─── FEATURE PILLS ─────────────────────────────────────────────── */
.feature-pills {
  padding: var(--space-md) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.pills-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.1rem;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: var(--r-full);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: var(--border); color: var(--text-primary); }
.pill-icon { font-size: 1rem; }

/* ─── FEATURE SECTIONS ──────────────────────────────────────────── */
.feature-section {
  padding: var(--space-xl) 0;
}
.feature-section--alt {
  background: var(--bg-2);
}
.feature-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--space-xl);
  align-items: center;
}
.feature-grid--right {
  grid-template-columns: 4fr 5fr;
}
.feature-grid--left .feature-visual { order: -1; }
.feature-grid--right .feature-visual { order: 1; }

.feature-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.feature-heading em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.list-icon {
  color: var(--c-purple);
  font-size: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* ─── PHONE SHOWCASE ────────────────────────────────────────────── */
.phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 var(--space-sm);
}
.phone-img {
  max-width: 365px;
  width: 100%;
  filter: drop-shadow(var(--shadow-phone));
  border-radius: 36px;
  transition: transform 0.3s;
}
.phone-showcase:hover .phone-img { transform: translateY(-6px) scale(1.01); }

.phone-badge {
  position: absolute;
  bottom: 12%;
  right: -8%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.phone-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.badge-collage { color: var(--c-pink); border-color: rgba(255,60,160,.2); }
.badge-heic    { color: var(--c-teal); border-color: rgba(6,182,212,.2); }

/* ─── BULK CONVERT ──────────────────────────────────────────────── */
.bulk-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.bulk-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand-soft);
  pointer-events: none;
}
.bulk-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.bulk-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--glow-1) 0%, transparent 65%);
  pointer-events: none;
}
.bulk-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.bulk-heading em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bulk-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.bulk-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.bulk-visuals {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  min-height: 560px;
}
.bulk-phone-stack {
  position: relative;
  width: 100%;
  min-height: 560px;
}
.bulk-phone {
  position: absolute;
  width: 320px;
  filter: drop-shadow(var(--shadow-phone));
  border-radius: 36px;
}
.bulk-phone--back {
  top: 10px; left: 0;
  opacity: 0.55;
  transform: rotate(-5deg) translateX(-10px);
}
.bulk-phone--front {
  top: 60px; right: 0;
  transform: rotate(2deg);
  z-index: 2;
}

/* ─── STEPS ─────────────────────────────────────────────────────── */
.steps-section {
  padding: var(--space-xl) 0;
  background: var(--bg-2);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-xs);
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.step-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--text-tertiary);
  flex-shrink: 0;
  margin-top: -2rem;
}

/* ─── CTA SECTION ───────────────────────────────────────────────── */
.cta-section {
  padding: var(--space-xl) 0;
}
.cta-card {
  position: relative;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--glow-1) 0%, var(--glow-2) 35%, transparent 65%);
  pointer-events: none;
}
.cta-logo {
  width: 88px;
  height: 88px;
  border-radius: var(--r-lg);
  margin: 0 auto var(--space-md);
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-sm);
}
.cta-heading em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
}
.footer-name {
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links {
  display: flex;
  gap: var(--space-md);
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-copy {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ─── PAGE HERO (privacy / contact) ────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--space-xl));
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero-inner { max-width: 600px; margin: 0 auto; }
.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xs);
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ─── PRIVACY PAGE ──────────────────────────────────────────────── */
.privacy-highlight {
  padding: var(--space-lg) 0;
}
.privacy-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-lg) var(--space-md);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.privacy-card-icon { font-size: 3rem; margin-bottom: var(--space-sm); }
.privacy-card-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}
.privacy-card-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-content { padding: var(--space-lg) 0 var(--space-xl); }
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.legal-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.legal-block p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  margin-top: 0.75rem;
  padding-left: var(--space-md);
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-block ul li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.legal-block a {
  color: var(--c-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── CONTACT PAGE ──────────────────────────────────────────────── */
/* ─── CONTACT PAGE ──────────────────────────────────────────────── */
.contact-section { padding: var(--space-lg) 0 var(--space-xl); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 960px;
  margin: 0 auto;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-md) calc(var(--space-md) * 1.25);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-2);
  border-radius: var(--r-sm);
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--c-purple); }
.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  flex: 1;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
  margin-top: auto;
}
.contact-link:hover { opacity: 0.75; }

/* ── Email reveal ── */
.email-reveal-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.email-masked {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: opacity 0.3s;
}
.email-revealed {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--c-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: none;
  letter-spacing: 0.01em;
  transition: opacity 0.3s;
}
.email-revealed.visible { display: inline; }
.email-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.email-reveal-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.email-reveal-btn:hover {
  color: var(--c-purple);
  border-color: rgba(139,92,246,.4);
  background: rgba(139,92,246,.06);
}
.email-reveal-btn.done { display: none; }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bulk-inner {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
  }
  .bulk-stats { justify-content: center; }

  .bulk-visuals {
    order: -1;
    min-height: unset;
    justify-content: center;
    align-items: center;
    padding: 0;
    display: flex;
  }
  /* Switch to inline flex so the stack height matches the images */
  .bulk-phone-stack {
    position: static;
    width: auto;
    max-width: none;
    min-height: unset;
    height: auto;
    margin: 0 auto;
    display: inline-flex;
    align-items: flex-start;
  }
  .bulk-phone {
    position: static;
    width: 200px;
    flex-shrink: 0;
  }
  .bulk-phone--back {
    transform: rotate(-4deg) translateY(10px);
    margin-right: -40px;
    opacity: 0.6;
    z-index: 1;
  }
  .bulk-phone--front {
    transform: rotate(2deg) translateY(30px);
    z-index: 2;
  }
}

@media (max-width: 760px) {
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-img { max-width: 400px; }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .feature-grid--left .feature-visual { order: 0; }
  .feature-grid--right .feature-visual { order: -1; }

  /* On single-column, let phone fill available width */
  .phone-img { max-width: 340px; }
  .phone-badge { display: none; }

  .steps-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .step-arrow { text-align: center; margin: 0; }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .nav-links,
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  /* Push toggle+burger group to the far right */
  .theme-toggle { margin-left: auto; margin-right: 4px; }
}

@media (max-width: 600px) {
  :root { --space-lg: 3rem; --space-xl: 4rem; }

  .bulk-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .stat-divider { width: 60px; height: 1px; }

  .hero-img { max-width: 300px; }
  .phone-img { max-width: 280px; }

  .bulk-phone { width: 160px; }
  .bulk-phone--back { margin-right: -32px; }
  .bulk-phone--front { transform: rotate(2deg) translateY(24px); }
}

/* ─── SCROLL ANIMATION ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ZOOMABLE IMAGES ───────────────────────────────────────────── */
.zoomable {
  cursor: zoom-in;
}

/* ─── LIGHTBOX ──────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.lightbox-img {
  position: relative;
  z-index: 2;
  max-height: 90vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
  object-fit: contain;
}
.lightbox.open .lightbox-img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-full);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.22);
  transform: scale(1.1);
}
.lightbox-close svg { width: 18px; height: 18px; }
