/* ============ Tokens ============ */
:root {
  --brand: #4B45DF;
  --brand-2: #6B62FF;
  --brand-3: #9C95FF;
  --bg: #000000;
  --bg-2: #0A0A0F;
  --card: #121218;
  --card-2: #16161E;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-mute: rgba(255, 255, 255, 0.40);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { display: inline-flex; }
.brand-name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.16em;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--text-dim);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 14px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(255,255,255,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  font-size: 15px; font-weight: 600;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: var(--surface); border-color: rgba(255,255,255,0.25); }
.btn-ghost.block, .btn-primary.block { width: 100%; justify-content: center; padding: 16px 22px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-size: 15px; font-weight: 600;
  box-shadow: 0 12px 36px -12px rgba(75, 69, 223, 0.7);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 44px -12px rgba(75, 69, 223, 0.9); }

/* App Store button */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: #fff; color: #000;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 14px 40px -10px rgba(255,255,255,0.2);
}
.appstore:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -10px rgba(255,255,255,0.35); }
.appstore-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.appstore-text small { font-size: 10.5px; opacity: 0.7; letter-spacing: 0.02em; }
.appstore-text strong { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.appstore-lg { padding: 16px 30px; }
.appstore-lg .appstore-text strong { font-size: 20px; }

/* ============ Common type ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 500;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 999px;
  letter-spacing: 0.02em;
}
.eyebrow.muted { background: transparent; }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 10px var(--brand-2);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

.accent {
  background: linear-gradient(120deg, var(--brand-3), var(--brand-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(75, 69, 223, 0.35) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(46px, 6.8vw, 84px);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 22px 0 26px;
}
.lede {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-ctas.centered { justify-content: center; }

.hero-meta {
  margin-top: 38px;
  display: flex; align-items: center; gap: 14px;
  color: var(--text-mute); font-size: 13.5px;
}
.memoji-stack { display: inline-flex; }
.memoji-stack .m {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #000;
  margin-left: -10px;
  object-fit: cover;
  background: #1a1a22;
}
.memoji-stack .m:first-child { margin-left: 0; }

/* ============ iPhone mockup ============ */
.hero-art {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.phone {
  width: 340px;
  flex-shrink: 0;
  background: #050507;
  border-radius: 52px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.06),
    0 60px 100px -30px rgba(75, 69, 223, 0.45),
    0 30px 60px -20px rgba(0,0,0,0.8);
  position: relative;
}
.phone-hero { transform: rotate(-2deg); }
.phone-md { width: 320px; }
.phone-frame {
  width: 100%;
  background: #000;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px; border-radius: 20px;
  background: #000;
  z-index: 5;
}
.status-bar, .status-icons { display: none; }

.screen {
  width: 100%; height: 100%;
  padding: 64px 22px 22px;
  background: #000;
  position: relative;
}
.screen-img {
  width: 100%;
  height: auto;
  display: block;
}
.dots {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 22px;
}
.dots span {
  width: 26px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.15);
}
.dots span.active { background: var(--brand-2); }
.brand-lockup {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 18px;
}
.brand-lockup.small { margin-bottom: 12px; }
.brand-lockup .brand-text { font-size: 18px; font-weight: 800; letter-spacing: 0.18em; }
.brand-lockup.small .brand-text { font-size: 14px; }

.screen-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  text-align: center;
  color: #fff;
}
.phone-md .screen-title { font-size: 22px; }
.screen-sub {
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  margin: 0 0 22px;
  padding: 0 8px;
  line-height: 1.4;
}
.phone-md .screen-sub { font-size: 12px; margin-bottom: 18px; }

/* Identity card */
.id-card {
  background: linear-gradient(155deg, #6B62FF 0%, #4B45DF 100%);
  border-radius: 22px;
  padding: 28px 20px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(75,69,223,0.6);
}
.id-card::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 70%);
  filter: blur(20px);
}
.id-card.compact { padding: 22px 18px 18px; }
.id-avatar {
  width: 72px; height: 72px;
  margin: 0 auto 12px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  position: relative;
  z-index: 1;
}
.id-card.compact .id-avatar { width: 60px; height: 60px; font-size: 32px; }
.id-name {
  text-align: center;
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
  position: relative; z-index: 1;
}
.id-card.compact .id-name { font-size: 20px; }
.id-role {
  text-align: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.id-tag {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.id-actions {
  display: flex; gap: 14px; justify-content: center;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.id-actions button {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.id-actions button:hover { transform: scale(1.05); }
.id-socials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative; z-index: 1;
}
.id-socials span {
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
}

/* Group rows (Screen 2) */
.group-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  background: rgba(75,69,223,0.06);
  border: 1px solid rgba(75,69,223,0.25);
  border-radius: 18px;
  margin-bottom: 10px;
}
.g-thumb {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; text-align: center;
  color: #fff;
  flex-shrink: 0;
}
.g1 { background: #000; }
.g2 { background: linear-gradient(135deg, #4B45DF, #FF7AC6); }
.g3 { background: linear-gradient(135deg, #2DD4FF, #4B45DF); }
.g-meta { flex: 1; min-width: 0; }
.g-name { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.g-sub { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-mute); }
.ava-stack { display: inline-flex; }
.ava-stack span {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #FFD089, #FF9B6A);
  border: 2px solid #000;
  margin-left: -6px;
}
.ava-stack span:first-child { margin-left: 0; background: linear-gradient(135deg, #B6E5FF, #6BA8FF); }
.ava-stack span:nth-child(3) { background: linear-gradient(135deg, #C7B6FF, #4B45DF); }
.chev {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 18px;
  flex-shrink: 0;
}

/* Connection rows (Screen 3) */
.conn-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--card);
  border-radius: 16px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.c-ava {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #FFD089, #FF9B6A);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.c-meta { flex: 1; min-width: 0; }
.c-name { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 5px; }
.verified { color: var(--brand-2); font-size: 12px; }
.c-sub { font-size: 11.5px; color: var(--text-mute); margin-top: 1px; }
.meetings {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10.5px; color: var(--text-mute);
}
.meetings .cal { font-size: 13px; }

/* ============ Strip ============ */
.strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--text-mute);
  font-size: 13.5px;
}
.strip-label { letter-spacing: 0.04em; margin-right: 8px; }
.pill {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  font-weight: 500;
  background: var(--surface);
}

/* ============ Sections ============ */
.section { padding: 120px 0; position: relative; }
.section-alt {
  background:
    radial-gradient(circle at 50% 0%, rgba(75,69,223,0.08), transparent 60%),
    #050508;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }
.section-head h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 18px 0 18px;
}
.section-head .sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto;
}

/* ============ Feature rows ============ */
.feature-row { padding: 90px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse .copy-side { order: 2; }
.feature-row.reverse .art-side { order: 1; }
.feat-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-3);
  margin-bottom: 22px;
}
.copy-side h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 480px;
}
.copy-side p {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0 0 28px;
  max-width: 500px;
}
.check { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.check li {
  position: relative;
  padding-left: 32px;
  font-size: 15.5px;
  color: var(--text);
}
.check li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
}
.art-side { display: flex; justify-content: center; }

/* ============ Bento ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.b {
  grid-column: span 2;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.b::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(75,69,223,0.15), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.b:hover { transform: translateY(-3px); border-color: var(--border-2); }
.b:hover::after { opacity: 1; }
.b-lg { grid-column: span 3; }
.b-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px -8px rgba(75,69,223,0.5);
}
.b h4 {
  font-size: 19px; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.b p { color: var(--text-dim); font-size: 15px; margin: 0; }

/* ============ Steps ============ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.step {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
}
.step-num {
  font-size: 13px; font-weight: 700;
  color: var(--brand-3);
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.step h4 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.step p { color: var(--text-dim); margin: 0; font-size: 15.5px; }

/* ============ Plans ============ */
.plans {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  max-width: 980px; margin: 0 auto;
}
.plan {
  position: relative;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
}
.plan-pro {
  background:
    linear-gradient(180deg, rgba(75,69,223,0.18), rgba(75,69,223,0.02)),
    radial-gradient(circle at top right, rgba(124,115,255,0.22), transparent 60%);
  border-color: rgba(124,115,255,0.45);
  box-shadow: 0 30px 80px -30px rgba(75,69,223,0.5);
}
.plan-badge {
  position: absolute; top: 22px; right: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  padding: 5px 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 999px;
}
.plan-tier { font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.plan-price {
  font-size: 38px; font-weight: 800;
  letter-spacing: -0.03em;
}
.plan-price span {
  font-size: 14px; font-weight: 500;
  color: var(--text-mute); margin-left: 6px;
}
.plan-tag { color: var(--text-dim); margin: 14px 0 28px; font-size: 14.5px; }
.plan-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.plan-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.plan-list li::before {
  content: '';
  position: absolute; left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
}
.plan-pro .plan-list li { color: #fff; }
.plan-pro .plan-list li::before { background-color: var(--brand); border-color: var(--brand-2); }
.plan-list li strong { color: #fff; font-weight: 700; }

/* ============ Testimonials ============ */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
}
.testi blockquote {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
}
.testi figcaption {
  color: var(--text-mute);
  font-size: 13.5px;
}
.testi figcaption strong { color: var(--text); font-weight: 600; }

/* ============ FAQ ============ */
.faq-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start;
}
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: rgba(75,69,223,0.5); }
.faq summary {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-mute);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--text-dim); margin: 12px 0 0; font-size: 15px; }

/* ============ CTA ============ */
.cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(75,69,223,0.3) 0%, transparent 60%),
    #000;
  border-top: 1px solid var(--border);
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta h2 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 18px;
}
.cta p { font-size: 18px; color: var(--text-dim); margin: 0 0 36px; }
.cta-meta {
  margin-top: 30px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  color: var(--text-mute);
  font-size: 13px;
}

/* ============ Footer ============ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { color: var(--text-dim); font-size: 14px; transition: color 0.2s; }
.foot-links a:hover { color: var(--text); }
.foot-copy { color: var(--text-mute); font-size: 13px; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-art { order: -1; transform: scale(0.85); }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .feature-row.reverse .copy-side { order: 1; }
  .feature-row.reverse .art-side { order: 2; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b, .b-lg { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .testis { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .section, .feature-row { padding: 80px 0; }
  .hero { padding: 48px 0 64px; }
}
@media (max-width: 600px) {
  .nav { padding: 14px 18px; }
  .container { padding: 0 20px; }
  .hero-copy h1 { font-size: clamp(40px, 11vw, 56px); }
  .footer-inner { flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
}
