/* ─── INVITE LANDING ─────────────────────────────── */
#invite-landing {
  position: relative;
  z-index: 10;
  padding: 56px 24px 72px;
  background: radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(255, 107, 74, 0.18),
      transparent 70%
    ),
    var(--bg);
  border-bottom: 1px solid var(--border);
  animation: fadeDown 0.5s ease both;
}
.invite-container {
  max-width: 560px;
  margin: 0 auto;
}
.invite-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 107, 74, 0.35);
  background: rgba(255, 107, 74, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.invite-eyebrow .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 107, 74, 0.7);
}
.invite-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--text);
  margin-bottom: 12px;
}
.invite-headline #invite-group-name {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.invite-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.invite-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.invite-step {
  --num-offset: 48px; /* circle width (32px) + gap (16px) */
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.invite-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.invite-step-body {
  flex: 1;
  min-width: 0;
}
.invite-step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.invite-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.invite-step:last-child .invite-step-desc {
  margin-bottom: 0;
}

/* ─── Invite code (step 1) ─────────────────────── */
/* Step 1 + 2 inner content blocks span the full step width (ignoring the
   numbered circle's offset) so they sit centered inside the box. */
.invite-code-row,
.invite-stores,
.invite-stores-note {
  margin-left: calc(-1 * var(--num-offset));
  width: calc(100% + var(--num-offset));
}
.invite-code-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.invite-code {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 5.5vw, 36px);
  letter-spacing: clamp(2px, 1.2vw, 8px);
  color: var(--orange);
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  user-select: all;
  -webkit-user-select: all;
  white-space: nowrap;
  overflow: hidden;
  /* Compensate for letter-spacing pushing the trailing edge off-centre. */
  text-indent: 0.5ch;
}
.invite-copy-btn {
  position: relative;
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: white;
  background: var(--grad);
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.2s, transform 0.05s;
  overflow: hidden;
}
.invite-copy-btn:hover {
  opacity: 0.9;
}
.invite-copy-btn:active {
  transform: scale(0.98);
}
.invite-copy-btn.is-copied {
  background: var(--green);
}
.invite-copy-label,
.invite-copied-flash {
  display: inline-block;
  transition: opacity 0.18s, transform 0.18s;
}
.invite-copied-flash {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
}
.invite-copy-btn.is-copied .invite-copy-label {
  opacity: 0;
  transform: translateY(-6px);
}
.invite-copy-btn.is-copied .invite-copied-flash {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Stores (step 2) ──────────────────────────── */
.invite-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.invite-stores-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-faint);
  font-style: italic;
  text-align: center;
}

/* ─── Already have FineTime ────────────────────── */
.invite-returning {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  background: var(--surface);
}
.invite-returning summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.invite-returning summary::-webkit-details-marker {
  display: none;
}
.invite-returning summary::after {
  content: '+';
  color: var(--orange);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.invite-returning[open] summary::after {
  content: '−';
}
.invite-returning p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.invite-returning strong {
  color: var(--text);
  font-weight: 500;
}

.invite-skip {
  text-align: center;
  font-size: 13px;
}
.invite-skip a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.invite-skip a:hover {
  color: var(--text-muted);
}

/* When invite is present, push the rest of the page below visually. */
body.has-invite nav {
  border-top: 1px solid var(--border);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  #invite-landing {
    padding: 40px 20px 56px;
  }
  .invite-step {
    --num-offset: 44px; /* 32 + 12 */
    padding: 18px;
    gap: 12px;
  }
  .invite-code {
    padding: 16px 6px;
  }
}

@media (max-width: 380px) {
  .invite-step {
    --num-offset: 42px; /* 32 + 10 */
    padding: 16px;
    gap: 10px;
  }
  .invite-code {
    font-size: 18px;
    letter-spacing: 1px;
    padding: 14px 4px;
    text-indent: 0;
  }
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.hero-glow-1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 61, 113, 0.14) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-glow-2 {
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 107, 74, 0.1) 0%, transparent 70%);
  bottom: 0;
  right: -100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 74, 0.08);
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-heading .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  margin: 16px auto 40px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.4s ease both;
}

.btn-store-badge {
  display: inline-block;
  transition:
    transform 0.15s,
    opacity 0.2s;
}
.btn-store-badge:hover {
  transform: translateY(-2px);
}
.btn-store-badge[aria-disabled='true'] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-store-badge img {
  height: 52px;
  width: auto;
}
.btn-store-badge--google img {
  height: 52px;
  margin: -3px 0;
}
.store-coming-soon {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  font-style: italic;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  border-radius: 14px;
  padding: 14px 28px;
  text-decoration: none;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.2px;
  box-shadow: 0 8px 32px rgba(255, 61, 113, 0.3);
  transition:
    opacity 0.2s,
    transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ─── PHONE MOCKUP ───────────────────────────────── */
.hero-phones {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeUp 0.8s 0.5s ease both;
}

.phone-frame {
  position: absolute;
  width: 220px;
  background: #0a0a0f;
  border-radius: 32px;
  border: 1.5px solid #2a2835;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.phone-frame:hover {
  transform: translateY(-8px) !important;
}
.phone-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.phone-center {
  width: 240px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow:
    0 60px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(255, 61, 113, 0.1);
}
.phone-left {
  width: 200px;
  bottom: -30px;
  left: calc(50% - 270px);
  z-index: 2;
  opacity: 0.7;
  transform: rotate(-6deg) translateY(10px);
}
.phone-right {
  width: 200px;
  bottom: -30px;
  right: calc(50% - 270px);
  z-index: 2;
  opacity: 0.7;
  transform: rotate(6deg) translateY(10px);
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: #0a0a0f;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Phone screen content */
.pscreen {
  width: 100%;
  background: #0a0a0f;
  padding: 8px 12px 16px;
  font-family: 'DM Sans', sans-serif;
}
.pscreen-status {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #5a5870;
  font-weight: 500;
  padding: 4px 0 8px;
}
.pscreen-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.pscreen-label {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4a4860;
  margin-bottom: 6px;
}
.pcard {
  background: #13121a;
  border: 1px solid #1e1d2a;
  border-radius: 12px;
  padding: 10px 10px 10px 14px;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}
.pcard-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 12px 0 0 12px;
}
.pcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}
.pcard-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #f0eee8;
}
.pbadge {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 10px;
}
.pbadge-voting {
  background: rgba(74, 158, 255, 0.15);
  color: #4a9eff;
}
.pbadge-guilty {
  background: rgba(255, 61, 113, 0.15);
  color: #ff3d71;
}
.pbadge-served {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}
.pcard-meta {
  font-size: 7px;
  color: #5a5870;
  margin-bottom: 5px;
}
.pbar {
  height: 2px;
  border-radius: 2px;
  background: #1e1d2a;
  overflow: hidden;
  display: flex;
  margin-bottom: 5px;
}
.pbar-g {
  background: #ff3d71;
  border-radius: 2px;
}
.pbar-i {
  background: #2ecc71;
  border-radius: 2px;
}
.pcard-bottom {
  display: flex;
  gap: 4px;
}
.preact {
  background: #1e1d2a;
  border-radius: 10px;
  padding: 2px 7px;
  font-size: 7px;
  color: #7a7890;
}

/* Verdict screen */
.pverdict {
  margin: 6px 0;
  background: linear-gradient(135deg, #ff3d71, #cc1155);
  border-radius: 10px;
  padding: 10px 12px;
}
.pverdict-sub {
  font-size: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}
.pverdict-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: white;
}

/* Submit screen */
.psubmit-hero {
  background: #13121a;
  border: 1px solid #2e2c3e;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
}
.psubmit-icon {
  width: 22px;
  height: 22px;
  background: var(--grad);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-bottom: 6px;
}
.psubmit-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #f0eee8;
}
.psubmit-body {
  font-size: 7px;
  color: #4a4860;
  margin-top: 3px;
  line-height: 1.5;
}
.pfield-label {
  font-size: 7px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #5a5870;
  margin: 8px 0 4px;
}
.pinput {
  background: #13121a;
  border: 1px solid #1e1d2a;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 8px;
  color: #3a3850;
  width: 100%;
}
.pbtn-submit {
  width: 100%;
  background: var(--grad);
  border-radius: 8px;
  padding: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-top: 10px;
  box-shadow: 0 4px 14px rgba(255, 61, 113, 0.3);
}

/* ─── DIVIDER ────────────────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
  position: relative;
  z-index: 1;
}

/* ─── HOW IT WORKS ───────────────────────────────── */
.how {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.7;
}

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

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.step:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4px;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.step-icon-1 {
  background: rgba(255, 107, 74, 0.12);
  border: 1px solid rgba(255, 107, 74, 0.2);
}
.step-icon-2 {
  background: rgba(74, 158, 255, 0.12);
  border: 1px solid rgba(74, 158, 255, 0.2);
}
.step-icon-3 {
  background: rgba(255, 61, 113, 0.12);
  border: 1px solid rgba(255, 61, 113, 0.2);
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 10px;
  padding-top: 12px;
}
.step-body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
}
.step-verdict {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
}
.verdict-guilty {
  background: rgba(255, 61, 113, 0.12);
  color: var(--red);
  border: 1px solid rgba(255, 61, 113, 0.2);
}
.verdict-session {
  background: rgba(74, 158, 255, 0.1);
  color: var(--blue);
  border: 1px solid rgba(74, 158, 255, 0.2);
}
.verdict-null {
  background: rgba(255, 107, 74, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 74, 0.2);
}

/* ─── RULES SECTION ──────────────────────────────── */
.rules-section {
  position: relative;
  z-index: 1;
  padding: 0 48px 100px;
}
.rules-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.rules-content {
  order: 1;
}
.rules-visual {
  order: 2;
}

.rules-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rule-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.rule-item:hover {
  border-color: var(--border-2);
}
.rule-bullet {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.rule-bullet-red {
  background: rgba(255, 61, 113, 0.12);
}
.rule-bullet-orange {
  background: rgba(255, 107, 74, 0.12);
}
.rule-bullet-green {
  background: rgba(46, 204, 113, 0.1);
}
.rule-bullet-blue {
  background: rgba(74, 158, 255, 0.1);
}
.rule-text-head {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.2px;
  color: var(--text);
  margin-bottom: 3px;
}
.rule-text-body {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* Verdict card visual */
.verdict-showcase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}
.vs-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.vs-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.vs-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
}
.vs-verdict {
  background: linear-gradient(135deg, #ff3d71, #cc1155);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.vs-verdict-top {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.vs-verdict-main {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: white;
  letter-spacing: -0.8px;
}
.vs-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.vs-meta-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.vs-meta-label {
  font-size: 9px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.vs-meta-val {
  font-size: 14px;
  font-weight: 500;
  color: #c0becc;
}
.vs-bar-section {
}
.vs-bar-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.vs-bar-row {
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  margin-bottom: 8px;
}
.vs-bar-guilty {
  background: #ff3d71;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-bar-innocent {
  background: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-bar-text {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.vs-tally {
  display: flex;
  gap: 12px;
}
.vs-tally-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-dim);
}
.vs-tally-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* ─── VOCABULARY SECTION ─────────────────────────── */
.vocab-section {
  position: relative;
  z-index: 1;
  padding: 0 48px 100px;
}
.vocab-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vocab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.vocab-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.vocab-item:hover {
  border-color: rgba(255, 107, 74, 0.25);
  transform: translateY(-3px);
}
.vocab-term {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.vocab-def {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 0 48px 100px;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1c1b26, #13121a);
  border: 1px solid var(--border-2);
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow-1 {
  position: absolute;
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 61, 113, 0.1), transparent 70%);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(40px);
}
.cta-glow-2 {
  position: absolute;
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255, 107, 74, 0.08), transparent 70%);
  bottom: -40px;
  right: 40px;
  pointer-events: none;
  filter: blur(40px);
}
.cta-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─── FAQ SECTION ──────────────────────────────── */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 0 48px 100px;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--border-2);
}
.faq-item[open] {
  border-color: rgba(255, 107, 74, 0.25);
}
.faq-question {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.2px;
  color: var(--text);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-dim);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--orange);
}
.faq-answer {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
  padding: 0 24px 20px;
}

/* ─── REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    padding: 24px 24px 40px;
    min-height: auto;
  }
  .hero-phones {
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    padding: 0 16px;
  }
  .phone-frame {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    opacity: 1;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  .phone-center {
    width: 40%;
  }
  .phone-left,
  .phone-right {
    width: 32%;
    transform: none;
  }
  .how {
    padding: 48px 24px;
  }
  .rules-section,
  .vocab-section {
    padding: 0 24px 48px;
  }
  .rules-section[style],
  .vocab-section[style] {
    padding-top: 48px !important;
  }
  .cta-section,
  .faq-section {
    padding: 0 24px 48px;
  }
  .cta-section[style],
  .faq-section[style] {
    padding-top: 48px !important;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .rules-inner {
    grid-template-columns: 1fr;
  }
  .rules-visual {
    display: none;
  }
  .vocab-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    padding: 40px 24px;
  }
  .cta-btns .btn-store-badge img,
  .cta-btns .btn-store-badge--google img {
    height: 40px;
  }
}
