/* ============================================================
   Einar Grotesk — brand body typeface
   ============================================================ */
@font-face {
  font-family: 'Einar Grotesk';
  src: url('assets/EinerGrotesk-Regular.woff2') format('woff2'),
       url('assets/EinerGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Einar Grotesk';
  src: url('assets/EinerGrotesk-Bold.woff2') format('woff2'),
       url('assets/EinerGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   108 · Website v2
   Per brand guidelines vol. 4
   Hanken Grotesk (Blauer Nue substitute) + Inter (Einer Grotesk substitute)
   Charcoal #141413 ground · Green #B1FB99 accent
   ============================================================ */

:root {
  /* Palette (exact hex from brand guide) -------------------- */
  --charcoal:   #141413;
  --charcoal-2: #1B1B19;
  --charcoal-3: #232321;
  --emerald:    #0F352A;
  --emerald-2:  #0A2A21;
  --pale:       #DCFFDF;
  --green:      #B1FB99;
  --orange:     #D66103;
  --brown:      #331C0A;

  /* Ink */
  --ink:        #F5F5F1;
  --ink-mute:   rgba(245, 245, 241, 0.62);
  --ink-dim:    rgba(245, 245, 241, 0.42);
  --ink-faint:  rgba(245, 245, 241, 0.10);
  --rule:       rgba(255, 255, 255, 0.08);
  --rule-2:     rgba(255, 255, 255, 0.14);

  /* Emerald-ground ink */
  --em-ink:      rgba(220, 255, 223, 0.92);
  --em-ink-mute: rgba(220, 255, 223, 0.62);
  --em-ink-dim:  rgba(220, 255, 223, 0.40);
  --em-rule:     rgba(177, 251, 153, 0.16);

  /* Type families */
  --font-display: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Einar Grotesk', 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Type scale — based on brand guide D1/H1/H2/H3/Sub/B1/B2/Caption */
  --t-d1:   clamp(48px, 7vw, 88px);   /* hero display */
  --t-h1:   clamp(40px, 4.6vw, 60px);
  --t-h2:   clamp(30px, 3.2vw, 44px);
  --t-h3:   clamp(22px, 1.9vw, 28px);
  --t-sub:  clamp(18px, 1.4vw, 22px);
  --t-b1:   18px;
  --t-b2:   16px;
  --t-cap:  12px;

  /* Layout */
  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(96px, 12vw, 160px);
  --radius: 16px;
  --radius-lg: 24px;
}

/* ============================================================
   Site-wide grain overlay
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============================================================
   Scroll-reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .grain { display: none; }
  *, *::before, *::after { animation: none !important; transition-duration: 0s !important; }
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-b1);
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--green); color: #051a13; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { position: relative; }

/* ============================================================
   Type
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-d1);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: pretty;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: pretty;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: pretty;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h3);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0;
}
.sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--t-sub);
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
  max-width: 56ch;
  text-wrap: pretty;
}
.accent { color: var(--green); }

/* Tiny label — used sparingly */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule-2);
  background: rgba(177, 251, 153, 0.04);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.kicker.green { color: var(--green); border-color: rgba(177, 251, 153, 0.3); }

/* Plain section label — lighter alternative to kicker pill */
.sec-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 12px;
}
.sec-label.green { color: var(--green); margin-bottom: 20px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid var(--rule-2);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn:hover { border-color: var(--ink); }
.btn .arr {
  display: inline-block;
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -1px;
  margin-left: 2px;
  transition: transform 0.18s ease;
}
.btn:hover .arr { transform: rotate(45deg) translate(2px, -2px); }
.btn.primary {
  background: var(--green);
  color: #051a13;
  border-color: var(--green);
}
.btn.primary:hover { background: #c8ffb2; border-color: #c8ffb2; }
.btn.lg { padding: 16px 26px; font-size: 16px; }
.btn.sm { padding: 10px 16px; font-size: 13px; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(20, 20, 19, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav .brand img.wm { height: 22px; width: auto; display: block; }
.brand-sub {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-top: 2px;
}
.nav .links {
  display: flex;
  gap: 28px;
  margin-right: auto;
  margin-left: 16px;
}
.nav .links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  transition: color 0.15s;
  padding: 8px 0;
}
.nav .links a:hover { color: var(--ink); }
.nav .cta-row { display: flex; gap: 8px; align-items: center; }

@media (max-width: 760px) {
  .nav .links { display: none; }
  .nav .cta-row .btn:first-child { display: none; }
  .nav .cta-row { margin-left: auto; }
}

/* ============================================================
   Hero — 2-column, text left / phone right
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(500px, 56vw, 700px);
}
.hero .wrap {
  position: relative;
  z-index: 2;
}

/* Hero background image — right-aligned, gradient bleed into left text */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 45%;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--charcoal) 0%, rgba(20, 20, 19, 0.4) 25%, transparent 50%),
    linear-gradient(to top, var(--charcoal) 0%, transparent 15%),
    linear-gradient(to bottom, rgba(20, 20, 19, 0.5) 0%, transparent 12%);
  pointer-events: none;
}

/* Hero text content — left-aligned over the image */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  min-height: clamp(500px, 56vw, 700px);
  max-width: 560px;
  padding: clamp(56px, 7vw, 100px) 0;
}
.hero-content h1 {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hero-content h1 { white-space: normal; }
}
.hero-content .sub {
  max-width: 38ch;
}
.hero-content .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 8px;
}

/* Floating dashboard cards in hero */
.float-card {
  position: absolute;
  z-index: 3;
  background: var(--charcoal-2);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  font-family: var(--font-body);
  min-width: 180px;
  backdrop-filter: blur(10px);
}
.float-card.left {
  left: max(10%, calc(50% - 360px));
  top: 80px;
  transform: rotate(-3deg);
}
.float-card.right {
  right: max(10%, calc(50% - 360px));
  top: 220px;
  transform: rotate(3deg);
}
.float-card .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
.float-card .big {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--green);
  line-height: 1;
}
.float-card .meta {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 6px;
}
.float-card .bar-row {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  align-items: flex-end;
  height: 22px;
}
.float-card .bar {
  flex: 1;
  background: rgba(177, 251, 153, 0.25);
  border-radius: 2px;
  min-height: 4px;
}
.float-card .bar.tall { background: var(--green); }
.float-card .crown {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(177, 251, 153, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.float-card .crown svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .float-card.left { left: 12px; top: 40px; }
  .float-card.right { right: 12px; top: auto; bottom: 40px; }
}
@media (max-width: 600px) {
  .float-card { display: none; }
}

/* ============================================================
   Phone mockup
   ============================================================ */
.phone {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 1290 / 2552;
  border-radius: 44px;
  background: #0a0a0a;
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 60px 120px rgba(0,0,0,0.6),
    0 20px 40px rgba(0,0,0,0.4);
  position: relative;
}
.phone .screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #050505;
  position: relative;
}
.phone .screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.phone .screen img.active { opacity: 1; }

/* ============================================================
   Screen panel — shared base for HTML phone screens
   ============================================================ */
.screen-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  border-radius: 30px;
  overflow: hidden;
}
.screen-panel.active { opacity: 1; }

/* ============================================================
   Leaderboard HTML screen
   ============================================================ */
.lb-screen {
  background: #07100a;
  color: #F5F5F1;
  display: flex;
  flex-direction: column;
  position: absolute;
  inset: 0;
  font-family: 'Einar Grotesk', 'Inter', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.lb-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 2px;
  flex-shrink: 0;
}
.lb-time {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lb-sb-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #F5F5F1;
}
.lb-icon { width: 16px; height: 11px; display: block; }
.lb-batt { width: 22px; }
.lb-app-hd {
  display: flex;
  flex-direction: column;
  padding: 6px 18px 0;
  flex-shrink: 0;
}
.lb-wordmark {
  height: 18px;
  width: auto;
  display: block;
}
.lb-logomark {
  font-size: 22px;
  font-weight: 700;
  color: #B1FB99;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.lb-logomark-sub {
  font-size: 7px;
  letter-spacing: 0.1em;
  color: rgba(177,251,153,0.65);
  margin-top: 1px;
}
.lb-heading {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 8px 18px 6px;
  flex-shrink: 0;
}
.lb-tabs {
  display: flex;
  margin: 0 16px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.lb-tab {
  flex: 1;
  padding: 7px 0;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  color: rgba(245,245,241,0.45);
}
.lb-tab-on {
  background: #D66103;
  color: #fff;
}
.lb-entries {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px;
  scrollbar-width: none;
}
.lb-entries::-webkit-scrollbar { display: none; }
.lb-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lb-rank {
  font-size: 14px;
  font-weight: 600;
  width: 18px;
  text-align: center;
  color: rgba(245,245,241,0.38);
  flex-shrink: 0;
}
.r1, .r3 { color: #D66103; }
.lb-info { flex: 1; min-width: 0; }
.lb-name {
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 1.2;
}
.lb-device {
  font-size: 10px;
  color: rgba(245,245,241,0.38);
  display: block;
}
.lb-pts {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,245,241,0.65);
  flex-shrink: 0;
}
.p1, .p3 { color: #D66103; }
.lb-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0 18px;
  background: rgba(10,22,14,0.97);
  border-top: 1px solid rgba(177,251,153,0.1);
  flex-shrink: 0;
}
.lb-nav svg {
  width: 22px;
  height: 22px;
  stroke: #B1FB99;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.phone .notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}

/* Phone glow — ambient halo behind the phone */
.hero-phone-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -38%);
  background: radial-gradient(ellipse at 50% 50%, rgba(177, 251, 153, 0.32) 0%, rgba(177, 251, 153, 0.10) 48%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(32px);
}
.phone-wrap {
  position: relative;
  z-index: 2;
}

/* ============================================================
   Generic section
   ============================================================ */
.sec { padding: var(--section-y) 0; }
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 760px;
}
.sec-head.center { text-align: center; margin-inline: auto; align-items: center; }
.sec-head .sub { max-width: 50ch; }

/* ============================================================
   How it works — three numbered steps with phone visual
   ============================================================ */
.how {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--charcoal);
  overflow: hidden;
  padding: 0;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.how-head {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.how-head .h1 {
  margin-bottom: 16px;
  font-size: clamp(36px, 3.8vw, 50px);
}
.how-head .sub {
  color: var(--ink-mute);
}
.how-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.how-inner {
  padding: clamp(32px, 4vw, 56px) clamp(16px, 2vw, 32px) clamp(32px, 4vw, 56px) 0;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Horizontal card-hand screenshots */
.floating-screens {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
}
.float-screen {
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.float-screen:hover { transform: translateY(-8px) !important; }

/* Carousel pagination dots */
.screen-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 8px;
}
.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-faint);
  transition: background 0.25s ease, transform 0.25s ease;
}
.screen-dot.active {
  background: var(--green);
  transform: scale(1.25);
}
.screen-back {
  width: 28%;
  max-width: 180px;
  transform: rotate(-3deg) translateX(20px);
  z-index: 1;
}
.screen-mid {
  width: 34%;
  max-width: 220px;
  transform: scale(1.05);
  z-index: 3;
  margin: 0 -16px;
}
.screen-front {
  width: 28%;
  max-width: 180px;
  transform: rotate(3deg) translateX(-20px);
  z-index: 1;
}

@media (max-width: 880px) {
  .how-right { overflow: visible; }
  .floating-screens {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    gap: 16px;
    padding: 24px 20px 12px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .floating-screens::-webkit-scrollbar { display: none; }
  .float-screen {
    width: 75vw;
    min-width: 75vw;
    max-width: none;
    flex-shrink: 0;
    scroll-snap-align: center;
    transform: none !important;
    margin: 0 !important;
    border-radius: 14px;
  }
  .screen-dots {
    display: flex;
  }
}
.how-icon-bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(280px, 32vw, 480px);
  height: auto;
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.how-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 30vw, 380px);
  height: clamp(260px, 30vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177,251,153,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.how-right .phone-wrap {
  position: relative;
  z-index: 2;
}
.how-faq {
  margin-top: 40px;
  padding: 20px 24px;
  border: 1px solid rgba(177, 251, 153, 0.22);
  border-radius: 12px;
  background: rgba(177, 251, 153, 0.04);
}
.how-faq a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.how-faq a:hover { gap: 18px; }
.how-faq-arr {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.how-faq a:hover .how-faq-arr { transform: translateX(4px); }
.how-get-started { margin-top: 28px; }

@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-right { padding: 16px 0 32px; }
  .how-inner { padding: clamp(32px, 5vw, 56px) 0; max-width: 100%; }
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--green);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
  max-width: 44ch;
}
.how-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Pillars — feature grid
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feat-card {
  background: var(--charcoal-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover { border-color: var(--rule-2); }
.feat-card .feat-visual {
  height: 200px;
  margin: -10px -10px 24px;
  border-radius: 14px;
  background: var(--charcoal-3);
  position: relative;
  overflow: hidden;
}
.feat-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feat-card .feat-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(15, 53, 42, 0.6) 0%, transparent 50%),
    linear-gradient(to top, rgba(20, 20, 19, 0.7) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(177, 251, 153, 0.08) 0%, transparent 30%);
  mix-blend-mode: normal;
  pointer-events: none;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.feat-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .feat-card { min-height: auto; }
}

/* ============================================================
   Geometric symbol visuals in Principles cards
   ============================================================ */
.sym-wrap {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(177,251,153,0.06), transparent 70%),
    var(--charcoal-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-sym {
  width: 130px;
  height: 130px;
  object-fit: contain;
  opacity: 0;
  transform: rotate(-12deg) scale(0.88);
  transition: opacity 1.1s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  filter: url('#green-tint');
}
.feat-card.sym-visible .geo-sym {
  opacity: 0.82;
  transform: rotate(0deg) scale(1);
}
.feat-card.sym-visible:hover .geo-sym {
  animation: symRotate 20s linear infinite;
  opacity: 1;
}
@keyframes symRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   FAQ strip — below Wear. Live. Earn.
   ============================================================ */
.faq-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--charcoal);
}
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.18s;
}
.faq-link:hover { color: var(--green); }
.faq-arr {
  display: inline-block;
  transition: transform 0.18s;
}
.faq-link:hover .faq-arr { transform: translateX(4px); }

/* ============================================================
   Who is 108 for — zig-zag rows
   ============================================================ */
.pillars { padding-bottom: clamp(32px, 4vw, 56px); }
.audiences .sec-head {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(64px, 8vw, 100px);
}
.zigzag:last-child { margin-bottom: 0; }

.zigzag-reverse .zigzag-img { order: 2; }
.zigzag-reverse .zigzag-text { order: 1; }

.zigzag-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--charcoal-3);
  border: 1px solid var(--rule);
}
.zigzag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zigzag-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(15, 53, 42, 0.5) 0%, transparent 50%),
    linear-gradient(to top, rgba(20, 20, 19, 0.6) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(177, 251, 153, 0.06) 0%, transparent 25%);
  pointer-events: none;
}
.zigzag-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

.zigzag-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.zigzag-text .h2 { margin: 0; }
.zigzag-text p {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--ink-mute);
  margin: 0;
  max-width: 40ch;
}
.zigzag-text .btn { margin-top: 8px; }

@media (max-width: 768px) {
  .zigzag {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .zigzag-reverse .zigzag-img { order: 0; }
  .zigzag-reverse .zigzag-text { order: 0; }
  .zigzag-text { align-items: center; text-align: center; }
  .zigzag-text p { max-width: 50ch; }
}
/* ============================================================
   Built different — emerald
   ============================================================ */
.built {
  background: var(--emerald);
  color: var(--pale);
  position: relative;
  overflow: hidden;
}
.built .h1, .built .h2 { color: var(--pale); }
.built .sub { color: rgba(220, 255, 223, 0.72); }
.built .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.built .cell {
  padding: 36px;
  border: 1px solid var(--em-rule);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.18);
}
.built .cell h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--pale);
  margin: 0 0 12px;
}
.built .cell p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(220, 255, 223, 0.7);
  margin: 0;
  max-width: 44ch;
}

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

/* ============================================================
   Starts with you — three columns
   ============================================================ */
.starts .cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.starts .col h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  max-width: 18ch;
}
.starts .col p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
  max-width: 38ch;
}
.starts .col .pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(177, 251, 153, 0.08);
}
@media (max-width: 800px) {
  .starts .cols { grid-template-columns: 1fr; }
}

/* ============================================================
   Join — emerald
   ============================================================ */
.join {
  background: var(--emerald);
  color: var(--pale);
  border-top: 1px solid rgba(177, 251, 153, 0.12);
}
.join .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.join h2 { color: var(--pale); margin: 20px 0 18px; max-width: 14ch; }
.join .sub { color: rgba(220, 255, 223, 0.72); margin-bottom: 36px; }
.join form {
  display: flex;
  gap: 8px;
  max-width: 480px;
}
.join input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--em-rule);
  border-radius: 999px;
  color: var(--pale);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border 0.15s;
}
.join input[type="email"]::placeholder { color: rgba(220, 255, 223, 0.42); }
.join input[type="email"]:focus { border-color: var(--green); }
.join button.notify {
  padding: 14px 22px;
  background: var(--green);
  color: #051a13;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.join button.notify:hover { background: #c8ffb2; border-color: #c8ffb2; }
.join .fine {
  font-size: 13px;
  color: rgba(220, 255, 223, 0.5);
  margin-top: 16px;
}

.join-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
}
.join-content .h1 { color: var(--pale); }
.join-content .sub { color: rgba(220, 255, 223, 0.72); text-align: center; }

@media (max-width: 800px) {
  .join .grid { grid-template-columns: 1fr; }
  .join form { flex-direction: column; max-width: 100%; }
}

/* ============================================================
   Footer
   ============================================================ */
footer.foot {
  padding: 72px 0 40px;
  border-top: 1px solid var(--rule);
  background: var(--charcoal);
}
footer.foot .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer.foot .brand-block {
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start;
}
footer.foot .brand-block .wm {
  height: 24px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
footer.foot .brand-block p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
  max-width: 32ch;
}
footer.foot h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 16px;
}
footer.foot .col a {
  display: block;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
  transition: color 0.15s;
}
footer.foot .col a:hover { color: var(--green); }
footer.foot .legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-dim);
  flex-wrap: wrap; gap: 16px;
}
footer.foot .legal .links { display: flex; gap: 24px; }

@media (max-width: 800px) {
  footer.foot .row { grid-template-columns: 1fr 1fr; }
  footer.foot .brand-block { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  footer.foot .row { grid-template-columns: 1fr; }
}

/* ============================================================
   Hover lift — buttons + cards
   ============================================================ */
.feat-card, .aud-feat, .built .cell {
  transition: border-color 0.25s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.feat-card:hover, .aud-feat:hover, .built .cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.btn { transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover { transform: translateY(-1px); }
.btn.primary:hover { box-shadow: 0 14px 32px rgba(177, 251, 153, 0.28); }

/* ============================================================
   Mala bead orbit — 108 beads, slow circle
   ============================================================ */
.mala-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}
.mala-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(177, 251, 153, 0.10);
  animation: malaSpin 80s linear infinite;
}
.mala-ring.inner { inset: 12%; border-color: rgba(177, 251, 153, 0.06); animation-duration: 120s; animation-direction: reverse; }
.mala-ring.outer { inset: -6%; border-color: rgba(177, 251, 153, 0.04); animation-duration: 160s; }
.mala-bead {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(177, 251, 153, 0.6);
}
.mala-core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(177, 251, 153, 0.18), rgba(177, 251, 153, 0.02) 60%),
    radial-gradient(circle at 50% 50%, rgba(15, 53, 42, 0.6), transparent 70%);
  filter: blur(2px);
  animation: malaPulse 6s ease-in-out infinite;
}
.mala-core::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
}
@keyframes malaSpin { to { transform: rotate(360deg); } }
@keyframes malaPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* Flower of Life — It starts with you */
.flower-of-life {
  position: absolute;
  width: clamp(320px, 52%, 540px);
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 48px rgba(177, 251, 153, 0.35));
  animation: flowerSpin 70s linear infinite;
}
@keyframes flowerSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Wordmark centred in mala orbit */
.mala-wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26%;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 16px rgba(177, 251, 153, 0.3));
}

/* Section housing the mala — replaces the simple "It starts with you" centered head */
.starts {
  position: relative;
}
.starts .mala-bg {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}
.starts .wrap { position: relative; z-index: 1; }

/* ============================================================
   Wearables — single logo strip
   ============================================================ */
.wearables-strip {
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--charcoal);
}
.wearables-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 28px;
}
.wearables-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 56px);
  flex-wrap: wrap;
}
.wl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.wl-logo {
  height: 26px;
  width: auto;
  display: block;
}
.wl-badge-beta { color: var(--orange); }
.wl-dot-beta {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}
.wl-whoop-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green);
  line-height: 1;
  display: block;
}
.wl-soon {
  opacity: 0.3;
}
.wl-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  padding-left: 0.1em;
}
.wl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: wlPulse 2s ease-in-out infinite;
}
@keyframes wlPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@media (max-width: 500px) {
  .wl-logo { height: 22px; }
  .wearables-row { gap: 20px; }
}

/* ============================================================
   Mobile — 768px (tablet) — stack hero to single column
   ============================================================ */
@media (max-width: 768px) {
  .float-card { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 40px;
  }
  .hero { min-height: 620px; }
  .hero-bg { left: 0; }
  .hero-bg-img { object-position: 30% 70%; }
  .hero-bg-fade {
    background:
      linear-gradient(to bottom, rgba(20, 20, 19, 0.85) 0%, rgba(20, 20, 19, 0.35) 50%, transparent 70%),
      linear-gradient(to top, var(--charcoal) 0%, transparent 25%);
  }
  .hero-content {
    min-height: 620px;
    max-width: 100%;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: 0;
  }
  .hero-content .cta-row { justify-content: center; }
  .hero-content .sub { text-align: center; }
  .phone { width: 320px; }
}

/* ============================================================
   Mobile — 600px
   ============================================================ */
@media (max-width: 600px) {
  .hero-content { gap: 20px; }
  .display { font-size: clamp(34px, 8.5vw, 44px); }
  .hero-content .sub { font-size: 15px; }
  .phone { width: 320px; }
}

/* ============================================================
   Mobile — 500px (large phone)
   ============================================================ */
@media (max-width: 500px) {
  /* Nav */
  .nav-inner { gap: 16px; padding: 12px var(--pad-x); }
  .nav .brand img.wm { height: 18px; }
  .btn.sm { padding: 9px 14px; font-size: 12px; }

  /* Hero */
  .phone { width: 320px; }

  /* Buttons */
  .btn { padding: 12px 18px; font-size: 14px; }
  .btn.lg { padding: 14px 20px; font-size: 15px; }
  .cta-row { gap: 8px; }

  /* How it works steps */
  .step { grid-template-columns: 36px 1fr; gap: 14px; padding: 12px 0; }
  .step .num { width: 28px; height: 28px; font-size: 12px; }
  .step h3 { font-size: 18px; }

  /* Pillars */
  .feat-card { padding: 20px; }
  .feat-card .feat-visual { height: 140px; margin: -8px -8px 16px; }
  .feat-card h3 { font-size: 18px; }

  /* Audiences */
  .aud-features { grid-template-columns: 1fr; }

  /* Built different */
  .built .cell { padding: 24px; }
  .built .cell h3 { font-size: 20px; }

  /* Mala / It starts with you */
  .mala-stage { max-width: clamp(240px, 70vw, 360px); }
  .flower-of-life { width: clamp(180px, 50vw, 320px); }

  /* Join */
  .join input[type="email"] { padding: 14px 16px; font-size: 16px; min-height: 44px; }
  .join button.notify { min-height: 44px; padding: 12px 18px; }

  /* Footer */
  footer.foot { padding: 48px 0 32px; }
  footer.foot .row { gap: 28px; margin-bottom: 36px; }
  footer.foot h5 { font-size: 11px; margin: 0 0 10px; }

  /* Section vertical spacing */
  :root { --section-y: clamp(64px, 10vw, 96px); }
}
.tw-panel {
  position: fixed; bottom: 24px; right: 24px;
  width: 280px;
  background: rgba(27, 27, 25, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 20px 16px;
  z-index: 9999;
  font-family: var(--font-body);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.tw-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tw-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.tw-close { background: none; border: none; color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 4px; opacity: 0.6; }
.tw-close:hover { opacity: 1; }
.tw-section { display: flex; flex-direction: column; gap: 14px; }
.tw-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  color: rgba(245, 245, 241, 0.85);
  cursor: pointer;
}
.tw-row input[type=checkbox] { accent-color: var(--green); width: 16px; height: 16px; cursor: pointer; }
.tw-foot {
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-dim);
}

/* ============================================================
   Hamburger button (mobile only)
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-open span:nth-child(2) { opacity: 0; }
.hamburger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .hamburger { display: flex; }
  .nav-inner { gap: 12px; }
}

/* ============================================================
   Mobile drawer
   ============================================================ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(20, 20, 19, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer.drawer-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.drawer-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s;
}
.drawer-nav a:hover { color: var(--green); }
.drawer-nav hr {
  width: 40px;
  border: none;
  border-top: 1px solid var(--rule-2);
  margin: 4px 0;
}

/* ============================================================
   Phone pagination dots
   ============================================================ */
.phone-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--ink-faint);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.phone-dot-active {
  background: var(--green);
  transform: scale(1.25);
}
.phone-dot:hover:not(.phone-dot-active) {
  background: var(--ink-dim);
}

/* ============================================================
   Community social proof line
   ============================================================ */
.community-proof {
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  opacity: 0.75;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
