/* CallxCall landing page — premium dark, voice-first */

:root {
  --bg:        oklch(0.155 0.005 270);
  --bg-2:      oklch(0.18 0.005 270);
  --bg-3:      oklch(0.21 0.006 270);
  --line:      oklch(1 0 0 / 0.07);
  --line-2:    oklch(1 0 0 / 0.12);
  --fg:        oklch(0.97 0.002 270);
  --fg-2:      oklch(0.78 0.005 270);
  --fg-3:      oklch(0.6 0.005 270);
  --fg-4:      oklch(0.45 0.005 270);
  --accent:    oklch(0.72 0.13 285);
  --accent-fg: oklch(0.13 0.005 270);
  --accent-2:  oklch(0.84 0.14 75); /* AI warm */
  --live:      oklch(0.78 0.16 145);
  --radius:    14px;
  --container: 1200px;
}

* { box-sizing: border-box; }

.landing-root {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  line-height: 1.5;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

/* ─── Nav ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 36px;
  background: oklch(0.155 0.005 270 / 0.7);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.nav-left { display: flex; }
.nav-mid {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-mid a {
  color: var(--fg-3);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-mid a:hover { color: var(--fg); }
.nav-right {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}
.logo-mark > span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  animation: wf-bounce 1.4s ease-in-out infinite;
}
.logo-mark > span:nth-child(1) { height: 60%; animation-delay: -0.4s; }
.logo-mark > span:nth-child(2) { height: 100%; animation-delay: -0.1s; }
.logo-mark > span:nth-child(3) { height: 40%; animation-delay: -0.7s; }
.logo-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* ─── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-lg { padding: 13px 22px; font-size: 14px; font-weight: 600; }
.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn-primary:hover {
  background: oklch(0.78 0.13 285);
}
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  background: transparent;
  color: var(--fg-2);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: oklch(1 0 0 / 0.04);
  color: var(--fg);
  border-color: oklch(1 0 0 / 0.18);
}
.btn-arrow {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.18s;
}
.btn:hover .btn-arrow { transform: translateX(2px); }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 88px 36px 96px;
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, oklch(0.72 0.13 285 / 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, oklch(0.84 0.14 75 / 0.05), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 22px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 500;
  background: oklch(1 0 0 / 0.02);
}

.h1 {
  font-family: 'Inter Tight', 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
.h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.h2 {
  font-family: 'Inter Tight', 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
.h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.035em;
}

.sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 480px;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--fg-3);
  margin-top: 6px;
}
.trust-dot { color: var(--fg-4); }

/* ─── Mode toggle ──────────────────────────────────── */
.mode-toggle {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  background: oklch(0.21 0.006 270);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}
.mt-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--fg-3);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.18s;
}
.mt-btn.mt-active { color: var(--fg); }
.mt-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: calc(50% - 4px);
  background: oklch(0.27 0.01 270);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 999px;
  transition: transform 0.28s cubic-bezier(0.4, 0.1, 0.2, 1);
  z-index: 1;
}
.mt-thumb-r { transform: translateX(100%); }
.mt-ai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
}

/* ─── Hero presence orb ────────────────────────────── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%,
      oklch(0.78 0.13 285) 0%,
      oklch(0.45 0.14 285) 55%,
      oklch(0.22 0.05 290) 100%);
  box-shadow:
    0 0 0 1px oklch(1 0 0 / 0.08),
    0 30px 80px oklch(0.72 0.13 285 / 0.25),
    inset 0 -20px 40px oklch(0 0 0 / 0.4),
    inset 0 12px 30px oklch(1 0 0 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orb-breath 5s ease-in-out infinite;
}
.hero-orb-ai {
  background:
    radial-gradient(circle at 35% 30%,
      oklch(0.86 0.14 75) 0%,
      oklch(0.55 0.13 60) 55%,
      oklch(0.25 0.06 50) 100%);
  box-shadow:
    0 0 0 1px oklch(1 0 0 / 0.08),
    0 30px 80px oklch(0.84 0.14 75 / 0.25),
    inset 0 -20px 40px oklch(0 0 0 / 0.4),
    inset 0 12px 30px oklch(1 0 0 / 0.1);
}
@keyframes orb-breath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.hero-orb-inner {
  filter: drop-shadow(0 2px 12px oklch(0 0 0 / 0.4));
}
.hero-orb-count {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: oklch(0.18 0.005 270 / 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--fg-2);
  font-weight: 500;
  white-space: nowrap;
}

/* ─── Creators strip ───────────────────────────────── */
.creators-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 36px 80px;
}
.strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 4px;
}
.strip-head-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-2);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.strip-link {
  color: var(--fg-3);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.15s;
}
.strip-link:hover { color: var(--fg); }
.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ─── Section base ─────────────────────────────────── */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 36px;
  border-top: 1px solid var(--line);
}
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ─── Steps (How it works) ─────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.step {
  background: var(--bg);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.step:hover { background: var(--bg-2); }
.step-n {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.step-t {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.step-d {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ─── Why grid ─────────────────────────────────────── */
.section-why {}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-item {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.why-bar {
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 6px;
}
.why-t {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.why-d {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ─── Earn by talking ──────────────────────────────── */
.section-earn { padding: 96px 36px; }
.earn-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.earn-left { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.earn-sub {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0;
  max-width: 460px;
  text-wrap: pretty;
}
.earn-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.earn-item {
  background: var(--bg-2);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.2s;
}
.earn-item:hover { background: var(--bg-3); }
.earn-n {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  font-weight: 600;
  padding-top: 4px;
  letter-spacing: 0.02em;
}
.earn-t {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.earn-d {
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.55;
}

/* ─── AI fallback section ──────────────────────────── */
.section-ai {
  padding: 96px 36px;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, oklch(0.84 0.14 75 / 0.06), transparent 70%);
  border-top: 1px solid var(--line);
}
.ai-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.ai-left { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.ai-eyebrow {
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ai-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
}
.ai-pill-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.ai-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent-2);
  color: oklch(0.18 0.04 60);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.ai-pill-u { font-size: 12px; font-weight: 500; opacity: 0.7; }
.ai-pill-ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--fg-3);
  font-size: 12.5px;
  font-weight: 500;
  font-family: inherit;
}
.ai-right { display: flex; align-items: center; justify-content: center; }
.ai-orb {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%,
      oklch(0.86 0.14 75) 0%,
      oklch(0.55 0.13 60) 55%,
      oklch(0.22 0.05 50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px oklch(1 0 0 / 0.08),
    0 30px 80px oklch(0.84 0.14 75 / 0.25),
    inset 0 -20px 40px oklch(0 0 0 / 0.4);
  animation: orb-breath 5s ease-in-out infinite;
}

/* ─── Footer / waitlist ────────────────────────────── */
.footer-cta {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.fc-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 36px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.fc-left { display: flex; flex-direction: column; gap: 18px; }

.waitlist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.waitlist-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin-bottom: -4px;
}
.role-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: oklch(0.21 0.006 270);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  align-self: flex-start;
}
.rt-btn {
  position: relative;
  z-index: 2;
  padding: 9px 28px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--fg-3);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.18s;
}
.rt-btn.rt-active { color: var(--fg); }
.rt-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: calc(50% - 4px);
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.28s cubic-bezier(0.4, 0.1, 0.2, 1);
  z-index: 1;
}
.rt-thumb-r { transform: translateX(100%); }
.rt-btn.rt-active { color: var(--accent-fg); }

.waitlist-label {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}
.waitlist-input-wrap {
  display: flex;
  align-items: center;
  background: oklch(0.21 0.006 270);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 4px 4px 18px;
  transition: border-color 0.15s, background 0.15s;
}
.waitlist-input-wrap:focus-within {
  border-color: var(--accent);
  background: oklch(0.22 0.008 270);
  box-shadow: 0 0 0 4px oklch(0.72 0.13 285 / 0.12);
}
.waitlist-input-wrap.err {
  border-color: oklch(0.65 0.18 25);
}
.waitlist-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 14px 0;
  font: inherit;
  font-size: 14px;
  color: var(--fg);
  min-width: 0;
}
.waitlist-input::placeholder { color: var(--fg-4); }
.waitlist-submit {
  appearance: none;
  border: 0;
  background: var(--accent);
  color: var(--accent-fg);
  font: inherit;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 18px;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s;
}
.waitlist-submit:hover:not(:disabled) {
  background: oklch(0.78 0.13 285);
}
.waitlist-submit:disabled { opacity: 0.6; cursor: default; }

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid oklch(0.13 0.005 270 / 0.3);
  border-top-color: var(--accent-fg);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.waitlist-err {
  font-size: 12.5px;
  color: oklch(0.7 0.16 25);
}
.waitlist-fine {
  font-size: 12px;
  color: var(--fg-4);
}

.waitlist-done {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 4px;
}
.wd-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: oklch(0.78 0.16 145 / 0.15);
  color: var(--live);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.wd-check svg { width: 22px; height: 22px; }
.wd-t {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.wd-d { font-size: 14px; color: var(--fg-2); line-height: 1.5; }
.wd-d strong { color: var(--fg); font-weight: 500; }

.wd-extra {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid oklch(1 0 0 / 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wd-extra-eyebrow {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}
.wd-extra-opt {
  color: var(--fg-3, oklch(0.55 0.005 270));
  font-weight: 400;
}
.wd-extra-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.wd-chips-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.wd-chips {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}
.wd-chip {
  background: oklch(0.21 0.005 270 / 0.6);
  border: 1px solid oklch(1 0 0 / 0.08);
  color: var(--fg-2);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.wd-chip:hover {
  border-color: oklch(0.72 0.13 285 / 0.35);
  color: var(--fg);
}
.wd-chip-active {
  background: oklch(0.72 0.13 285 / 0.18);
  border-color: oklch(0.72 0.13 285 / 0.6);
  color: oklch(0.92 0.04 285);
}
.wd-extra-input {
  background: oklch(0.21 0.005 270 / 0.6);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  color: var(--fg);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
}
.wd-extra-input::placeholder { color: oklch(0.5 0.005 270); }
.wd-extra-input:focus {
  border-color: oklch(0.72 0.13 285 / 0.5);
  background: oklch(0.22 0.008 270 / 0.7);
}
.wd-extra-submit {
  background: oklch(0.72 0.13 285);
  color: oklch(0.12 0.005 270);
  border: none;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  transition: opacity 0.2s;
  font-family: inherit;
  align-self: stretch;
}
.wd-extra-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.wd-extra-thanks {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid oklch(1 0 0 / 0.06);
  font-size: 13px;
  color: oklch(0.78 0.12 145);
}

@media (max-width: 600px) {
  .wd-extra-row {
    grid-template-columns: 1fr;
  }
  .wd-chips-row {
    flex-direction: column;
    align-items: stretch;
  }
  .wd-extra-submit {
    padding: 11px 16px;
  }
}

.footer-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 36px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  color: var(--fg-3);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--fg); }
.footer-fine { font-size: 12px; color: var(--fg-4); }

/* ─── Connecting overlay ───────────────────────────── */
.connecting-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0.12 0.005 270 / 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.2s ease-out;
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
.connecting-card {
  width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 30px 80px oklch(0 0 0 / 0.5);
  animation: pop-in 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pop-in {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.connecting-orb-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.connecting-orb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px oklch(1 0 0 / 0.1),
    inset 0 -16px 30px oklch(0 0 0 / 0.4),
    inset 0 10px 20px oklch(1 0 0 / 0.12);
  animation: orb-breath 2s ease-in-out infinite;
}
.connecting-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.connecting-tag {
  font-size: 12.5px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.connecting-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-2);
  padding: 8px 14px;
  background: oklch(1 0 0 / 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.connecting-spinner {
  width: 12px;
  height: 12px;
  border: 1.8px solid oklch(1 0 0 / 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.connecting-meter {
  width: 100%;
  margin-top: 4px;
  background: oklch(1 0 0 / 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cm-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.cm-label { color: var(--fg-3); }
.cm-val {
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.connecting-end {
  margin-top: 8px;
  appearance: none;
  border: 0;
  background: oklch(0.45 0.18 25);
  color: oklch(0.98 0.02 25);
  font: inherit;
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s;
}
.connecting-end:hover { background: oklch(0.5 0.19 25); }
.connecting-fine {
  font-size: 11.5px;
  color: var(--fg-4);
  margin-top: 4px;
  text-align: center;
  text-wrap: pretty;
  max-width: 240px;
  line-height: 1.5;
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto; padding: 16px 20px; }
  .nav-mid { display: none; }
  .hero { padding: 56px 20px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-orb-wrap { width: 280px; height: 280px; }
  .hero-orb { width: 180px; height: 180px; }
  .creators-strip { padding: 24px 20px 56px; }
  .creators-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .section-earn, .section-ai { padding: 64px 20px; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .earn-inner { grid-template-columns: 1fr; gap: 32px; }
  .ai-inner { grid-template-columns: 1fr; gap: 32px; }
  .fc-inner { grid-template-columns: 1fr; gap: 36px; padding: 64px 20px 40px; }
  .footer-bar { padding: 20px; }
}
