/* Cazzual landing — paleta Vinotinto (app) */
:root {
  --bg: #0a0508;
  --surface: #140a0e;
  --surface-elevated: #1f1015;
  --surface-high: #2b1520;
  --burgundy: #3d0a14;
  --wine: #8b1a2f;
  --wine-deep: #5c1020;
  --fire: #dc143c;
  --fire-soft: #e8174a;
  --ember: #b01030;
  --ember-soft: #ff4d6d;
  --purple: #6b1f3a;
  --gold: #c8857a;
  --gold-soft: #e8b0a0;
  --teal: #00c4a0;
  --text: #fff0f3;
  --text-secondary: #c09098;
  --text-muted: #8a6070;
  --cream-muted: #edd8dc;
  --border: rgba(255, 240, 243, 0.08);
  --border-fire: rgba(220, 20, 60, 0.35);
  --glow-fire: rgba(220, 20, 60, 0.22);
  --max: 1140px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-swipe: 28px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

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

/* ── Ambient glow (wineAura) ── */
.aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.aura-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.aura-blob--fire {
  width: 480px;
  height: 480px;
  top: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.22), transparent 68%);
  animation: drift-a 18s ease-in-out infinite alternate;
}

.aura-blob--wine {
  width: 420px;
  height: 420px;
  top: 28%;
  right: -120px;
  background: radial-gradient(circle, rgba(139, 26, 47, 0.28), transparent 70%);
  animation: drift-b 22s ease-in-out infinite alternate;
}

.aura-blob--burgundy {
  width: 360px;
  height: 360px;
  bottom: 8%;
  left: 12%;
  background: radial-gradient(circle, rgba(61, 10, 20, 0.55), transparent 72%);
  animation: drift-c 16s ease-in-out infinite alternate;
}

@keyframes drift-a {
  to { transform: translate(40px, 30px) scale(1.06); }
}

@keyframes drift-b {
  to { transform: translate(-30px, 40px) scale(1.08); }
}

@keyframes drift-c {
  to { transform: translate(24px, -20px) scale(1.04); }
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 4vw, 40px);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: background 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 5, 8, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.brand {
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-cazz {
  font-weight: 800;
  color: var(--fire);
}

.brand-ual {
  font-weight: 400;
  color: #ababab;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 240, 243, 0.04);
  border-color: var(--border);
  transform: translateY(-1px);
}

.pill-ios {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0, 196, 160, 0.32);
  background: rgba(0, 196, 160, 0.08);
  padding: 7px 11px;
  border-radius: var(--radius-pill);
}

/* ── Hero ── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 4vw, 40px) clamp(48px, 8vw, 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 12px var(--glow-fire);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--fire-soft) 0%, var(--ember-soft) 55%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  margin: 0 0 28px;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 38ch;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.stat-chip {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(31, 16, 21, 0.75);
  border: 1px solid var(--border);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-fire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  box-shadow: 0 10px 28px rgba(220, 20, 60, 0.35);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
  cursor: pointer;
}

.btn-fire:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(220, 20, 60, 0.45);
}

.btn-fire:active { transform: translateY(0) scale(0.98); }

.app-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 11px 18px;
  min-width: 200px;
  transition: transform 0.28s var(--ease-out), border-color 0.28s, background 0.28s;
}

.app-store:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.72);
}

.app-store.is-soon { cursor: default; }
.app-store.is-soon:hover { transform: none; }

.app-store svg { flex-shrink: 0; opacity: 0.95; }

.app-store small {
  display: block;
  font-size: 0.64rem;
  opacity: 0.72;
  line-height: 1.2;
}

.app-store strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.note-ios {
  margin: 20px 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 40ch;
}

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

/* ── iPhone 17 Pro mockup ── */
.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px 0;
}

.phone-glow {
  position: absolute;
  width: 78%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.18), transparent 68%);
  filter: blur(24px);
  animation: float-glow 5s ease-in-out infinite alternate;
}

@keyframes float-glow {
  to { transform: scale(1.08) translateY(-8px); opacity: 0.85; }
}

.iphone {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 71.9 / 155.9;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.15s ease-out;
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.iphone-frame {
  position: absolute;
  inset: 0;
  border-radius: 52px;
  padding: 11px;
  background: linear-gradient(
    155deg,
    #5a5a5e 0%,
    #2a2a2c 18%,
    #1a1a1c 42%,
    #48484a 58%,
    #1c1c1e 78%,
    #3a3a3c 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 40px 90px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.iphone-frame::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.iphone-btn {
  position: absolute;
  background: linear-gradient(180deg, #4a4a4c, #2c2c2e);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.iphone-btn--action {
  left: -3px;
  top: 108px;
  width: 3px;
  height: 34px;
}

.iphone-btn--vol-up {
  left: -3px;
  top: 154px;
  width: 3px;
  height: 56px;
}

.iphone-btn--vol-down {
  left: -3px;
  top: 218px;
  width: 3px;
  height: 56px;
}

.iphone-btn--power {
  right: -3px;
  top: 172px;
  width: 3px;
  height: 78px;
}

.iphone-screen {
  position: relative;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: var(--bg);
}

.dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 124px;
  height: 36px;
  border-radius: 20px;
  background: #000;
  z-index: 5;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.iphone-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* In-app UI preview */
.app-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 58px 14px 14px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(220, 20, 60, 0.15), transparent),
    var(--bg);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}

.app-topbar .brand { font-size: 1.05rem; }

.app-location {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.swipe-card {
  flex: 1;
  position: relative;
  border-radius: 26px 30px 22px 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--fire) 0%, var(--burgundy) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.swipe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(10, 5, 8, 0.45) 62%,
    rgba(10, 5, 8, 0.92) 100%
  );
}

.swipe-sticker {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(10, 5, 8, 0.55);
  border: 1px solid var(--border);
  color: var(--cream-muted);
  transform: rotate(-3deg);
}

.swipe-sticker--avail {
  top: 14px;
  left: auto;
  right: 14px;
  color: var(--teal);
  border-color: rgba(0, 196, 160, 0.35);
  transform: rotate(4deg);
}

.swipe-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.swipe-info h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.swipe-info p {
  margin: 4px 0 0;
  font-size: 0.68rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.swipe-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.swipe-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.swipe-btn--like {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(220, 20, 60, 0.4);
}

.app-tabbar {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
  padding: 10px 8px 4px;
  border-radius: 20px;
  background: rgba(20, 10, 14, 0.88);
  border: 1px solid var(--border);
}

.tab-dot {
  width: 22px;
  height: 4px;
  border-radius: 4px;
  background: var(--text-muted);
  opacity: 0.35;
}

.tab-dot.is-active {
  background: var(--fire);
  opacity: 1;
  box-shadow: 0 0 10px var(--glow-fire);
}

/* ── Curved section dividers ── */
.wave-wrap {
  line-height: 0;
  color: var(--surface);
  margin-top: -1px;
}

.wave-wrap svg {
  width: 100%;
  height: clamp(48px, 8vw, 88px);
}

.wave-wrap--flip {
  transform: scaleY(-1);
  color: var(--bg);
}

/* ── Sections ── */
.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px);
}

.section--surface {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(20, 10, 14, 0.6) 100%);
}

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

.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.section-kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fire-soft);
  margin-bottom: 10px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.section-intro {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(31, 16, 21, 0.55);
  border: 1px solid var(--border);
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.step:hover {
  border-color: var(--border-fire);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fire);
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(43, 21, 32, 0.65), rgba(20, 10, 14, 0.9));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}

.feature::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-fire), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s;
}

.feature:hover {
  border-color: var(--border-fire);
  transform: translateY(-3px);
}

.feature:hover::before { opacity: 1; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(139, 26, 47, 0.15));
  border: 1px solid var(--border-fire);
  font-size: 1.2rem;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Trust band */
.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.trust-item {
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  background: rgba(10, 5, 8, 0.45);
  border: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fire-soft);
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ── Legal section ── */
.legal-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(139, 26, 47, 0.2), transparent),
    var(--bg);
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.legal-tab {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  cursor: pointer;
  transition: all 0.28s var(--ease-out);
}

.legal-tab:hover {
  color: var(--text);
  border-color: rgba(255, 240, 243, 0.16);
}

.legal-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.28);
}

.legal-panel { display: none; }
.legal-panel.is-active { display: block; }

.legal-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.legal-doc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.28s, transform 0.28s var(--ease-out), background 0.28s;
}

.legal-doc-link:hover {
  border-color: var(--border-fire);
  background: var(--surface-elevated);
  transform: translateX(4px);
}

.legal-doc-link span {
  font-size: 0.92rem;
  font-weight: 500;
}

.legal-doc-link em {
  font-size: 0.72rem;
  font-style: normal;
  color: var(--text-muted);
}

.legal-doc-link svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.28s, transform 0.28s;
}

.legal-doc-link:hover svg {
  opacity: 1;
  transform: translateX(3px);
}

.legal-regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.legal-region {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface-elevated), var(--surface));
  border: 1px solid var(--border);
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}

.legal-region:hover {
  border-color: var(--border-fire);
  transform: translateY(-3px);
}

.legal-region-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.legal-region h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-region .lang {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.legal-region-links {
  display: grid;
  gap: 8px;
}

.legal-region-links a {
  font-size: 0.84rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
}

.legal-region-links a:hover {
  color: var(--text);
  background: rgba(220, 20, 60, 0.08);
}

.legal-hub {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 196, 160, 0.28);
  background: rgba(0, 196, 160, 0.06);
  transition: transform 0.28s var(--ease-out), background 0.28s;
}

.legal-hub:hover {
  transform: translateY(-2px);
  background: rgba(0, 196, 160, 0.12);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(48px, 7vw, 72px) clamp(20px, 4vw, 40px);
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(220, 20, 60, 0.18), transparent),
    linear-gradient(180deg, var(--surface-high), var(--burgundy));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 auto 24px;
  max-width: 48ch;
  color: var(--text-secondary);
}

/* Footer */
.site-footer {
  padding: 40px clamp(20px, 4vw, 40px) 48px;
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.footer-brand p {
  margin: 8px 0 0;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--fire-soft); }

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

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eyebrow, .lead, .note-ios, .hero-stats { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .phone-stage { order: -1; }
  .steps, .features, .trust-band { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav a:not([href="#download"]) { display: none; }
  .features { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aura-blob, .iphone, .phone-glow, .eyebrow-dot { animation: none; }
  .iphone { transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .btn-fire:hover, .feature:hover, .step:hover, .legal-region:hover,
  .legal-doc-link:hover, .app-store:hover, .legal-hub:hover { transform: none; }
}
