/* ═══════════════════════════════════════════════
   USTACA ÇÖZÜM — LANDING CSS
   Design: neon/cloud atmosphere, mobile-first
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:    #03050d;
  --bg2:   #070b1a;
  --bg3:   rgba(9,12,28,.92);
  --surface:  rgba(10,14,32,.88);
  --surface2: rgba(255,255,255,.04);
  --line:  rgba(120,100,255,.13);
  --line2: rgba(100,230,255,.16);
  --text:  #eef0ff;
  --muted: #8b92b8;
  --dim:   #3d4268;
  --p:     #7c3aed;
  --pl:    #9b5dff;
  --p2:    rgba(124,58,237,.12);
  --c:     #6ef1ff;
  --c2:    rgba(110,241,255,.1);
  --g:     #a8ff47;
  --g2:    rgba(168,255,71,.1);
  --r:     #ff4d6d;
  --hf:    "Outfit", sans-serif;
  --bf:    "Manrope", sans-serif;
  --rad:   1.6rem;
  --rad-sm: .85rem;
  --glow-p: 0 0 28px rgba(124,58,237,.55);
  --glow-c: 0 0 20px rgba(110,241,255,.4);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { font-size: 16px; scroll-behavior: smooth }
body { font-family: var(--bf); color: var(--text); background: var(--bg); overflow-x: hidden; min-height: 100vh }
a { color: inherit; text-decoration: none }
button, a { transition: all .2s ease }
input, textarea { font-family: var(--bf) }
::selection { background: rgba(124,58,237,.35) }

/* ── ATMOSPHERE ── */
.atm-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 60% at -8% 0%,   rgba(124,58,237,.40) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 108% 8%,  rgba(110,241,255,.22) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 110%, rgba(168,255,71,.10)  0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 50% 45%,  rgba(6,4,28,.75)      0%, transparent 100%),
    linear-gradient(180deg, #030510 0%, #04070f 45%, #020308 100%);
}
.atm-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, rgba(0,0,0,.92), transparent 92%);
}
.orb { position: fixed; border-radius: 50%; pointer-events: none; filter: blur(120px); z-index: 0 }
.orb-a { top: -10rem; left: -5rem; width: 42rem; height: 42rem; background: rgba(124,58,237,.28); animation: oA 20s ease-in-out infinite alternate }
.orb-b { top: 10rem; right: -8rem; width: 32rem; height: 32rem; background: rgba(110,241,255,.15); animation: oB 25s ease-in-out infinite alternate }
.orb-c { bottom: -8rem; left: 22vw; width: 28rem; height: 28rem; background: rgba(168,255,71,.07); animation: oC 18s ease-in-out infinite alternate }
@keyframes oA { to { transform: translate(5rem, 7rem) scale(1.12) } }
@keyframes oB { to { transform: translate(-5rem, 4rem) scale(.88) } }
@keyframes oC { to { transform: translate(4rem, -4rem) scale(1.08) } }

/* ── SHARED COMPONENTS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .82rem 1.65rem; border-radius: var(--rad-sm);
  font-family: var(--bf); font-weight: 700; font-size: .88rem;
  cursor: pointer; border: none; position: relative; z-index: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--p), var(--pl));
  color: #fff; box-shadow: var(--glow-p);
}
.btn-primary:hover { box-shadow: 0 0 44px rgba(124,58,237,.75); transform: translateY(-2px) }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04) }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease }
.reveal.on { opacity: 1; transform: none }

/* ── TOPBAR ── */
.topbar {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3.5rem);
  transition: background .3s, border-color .3s;
}
.topbar.stuck {
  backdrop-filter: blur(28px) saturate(140%);
  background: rgba(3,5,14,.82);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.brand { display: flex; align-items: center; gap: .82rem; flex-shrink: 0 }
.bmark {
  width: 38px; height: 38px; border-radius: .7rem;
  background: linear-gradient(135deg, var(--p), var(--c));
  display: grid; place-items: center;
  font-family: var(--hf); font-weight: 800; font-size: .82rem; color: #fff;
  box-shadow: var(--glow-p); flex-shrink: 0;
}
.bname { font-family: var(--hf); font-weight: 800; font-size: .95rem; letter-spacing: -.01em }
.bsub  { font-size: .62rem; color: var(--muted) }
.topnav { display: flex; align-items: center; gap: .2rem }
.topnav a { padding: .48rem .88rem; border-radius: .55rem; font-size: .8rem; font-weight: 600; color: var(--muted) }
.topnav a:hover { color: var(--text); background: rgba(255,255,255,.05) }
.topnav .nav-cta {
  background: linear-gradient(135deg, var(--p), var(--pl));
  color: #fff; padding: .52rem 1.1rem; border-radius: .65rem;
  font-size: .8rem; font-weight: 700; box-shadow: var(--glow-p);
}
.topnav .nav-cta:hover { box-shadow: 0 0 36px rgba(124,58,237,.72); transform: translateY(-1px) }
.ham {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: .55rem; padding: .42rem .55rem; color: var(--muted); cursor: pointer;
}
.ham svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2 }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 420px; gap: 3.5rem; align-items: center;
  max-width: 1300px; margin: 0 auto;
  padding: 4.5rem clamp(1.25rem, 4vw, 3.5rem) 5rem;
  min-height: calc(100vh - 70px);
  position: relative; z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c); background: var(--c2); border: 1px solid rgba(110,241,255,.18);
  padding: .3rem .8rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c); box-shadow: var(--glow-c);
}
.hero-h {
  font-family: var(--hf); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.04; letter-spacing: -.035em; margin-bottom: .55rem;
}
.hero-h em {
  font-style: normal;
  background: linear-gradient(118deg, var(--pl) 0%, var(--c) 55%, var(--g) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-time {
  display: inline-flex; align-items: baseline; gap: .4rem;
  font-family: var(--hf); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: #fff; letter-spacing: -.035em;
}
.hero-time sup { font-size: .55rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; font-family: var(--bf); align-self: flex-start; margin-top: .35rem }
.hero-desc { font-size: .98rem; line-height: 1.8; color: var(--muted); max-width: 500px; margin-bottom: 2.2rem }
.hero-desc strong { color: var(--text); font-weight: 600 }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem }
.hero-badges { display: flex; gap: .55rem; flex-wrap: wrap }
.hbadge {
  font-size: .68rem; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: .28rem .7rem; border-radius: 999px;
}
.hero-note { margin-top: 1.25rem; font-size: .65rem; color: var(--dim) }

/* ── HERO RIGHT — embedded login card ── */
.hero-right {
  position: relative; display: flex; justify-content: center;
  align-items: flex-start; padding-top: 1rem;
}
.login-card {
  width: 100%; max-width: 390px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--rad);
  backdrop-filter: blur(32px); overflow: hidden;
  box-shadow: 0 32px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.07), 0 0 0 1px rgba(124,58,237,.08);
  position: relative; z-index: 2;
}
.lc-top {
  padding: 1.6rem 1.75rem 1.4rem;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(110,241,255,.04));
  border-bottom: 1px solid var(--line);
}
.lc-top-tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pl); margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem;
}
.lc-top-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--pl); box-shadow: 0 0 6px var(--pl) }
.lc-h  { font-family: var(--hf); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; margin-bottom: .3rem }
.lc-sub { font-size: .78rem; color: var(--muted); line-height: 1.6 }
.lc-body { padding: 1.5rem 1.75rem }
.f-label { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem }
.phone-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,.045); border: 1.5px solid var(--line); border-radius: .8rem;
  transition: border-color .2s, background .2s; margin-bottom: 1.1rem; overflow: hidden;
}
.phone-wrap:focus-within { border-color: rgba(124,58,237,.5); background: rgba(124,58,237,.05) }
.phone-prefix {
  padding: .82rem 1rem; font-size: .85rem; font-weight: 700; color: var(--muted);
  border-right: 1px solid var(--line); flex-shrink: 0; display: flex; align-items: center; gap: .3rem;
}
.phone-prefix span { font-size: .8rem; font-weight: 700; color: var(--muted) }
.phone-inp {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: .95rem; font-weight: 600;
  padding: .82rem .8rem; letter-spacing: .02em;
}
.phone-inp::placeholder { color: var(--dim); font-weight: 400 }
.consent-row { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: 1.35rem }
.chk-box {
  width: 20px; height: 20px; border-radius: .4rem; border: 1.5px solid var(--line);
  background: rgba(255,255,255,.04); flex-shrink: 0;
  display: grid; place-items: center; cursor: pointer; margin-top: .08rem; transition: all .2s;
}
.chk-box.on { background: linear-gradient(135deg, var(--p), var(--pl)); border-color: var(--pl) }
.chk-box svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; display: none }
.chk-box.on svg { display: block }
.consent-txt { font-size: .72rem; color: var(--muted); line-height: 1.55 }
.consent-txt a { color: var(--pl) }
.lc-btn {
  width: 100%; padding: .9rem; border-radius: .85rem;
  background: linear-gradient(135deg, var(--p), var(--pl)); color: #fff;
  font-family: var(--hf); font-weight: 800; font-size: .95rem; border: none; cursor: pointer;
  box-shadow: var(--glow-p); transition: all .2s;
}
.lc-btn:hover { box-shadow: 0 0 44px rgba(124,58,237,.75); transform: translateY(-1px) }
.lc-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none }
.lc-footer { padding: .85rem 1.75rem 1.25rem; border-top: 1px solid var(--line); display: flex; justify-content: center }
.lc-footer p { font-size: .68rem; color: var(--dim); text-align: center; line-height: 1.5 }

.landing-auth-form .lc-body { display: grid; gap: 1rem }
.field-block { display: grid; gap: .85rem }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.stage-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.stage-inline.is-hidden,
.phone-wrap.is-hidden,
.code-stage-shell.is-hidden,
.password-stage-shell.is-hidden,
.consent-stage-shell.is-hidden,
.inline-alert.is-hidden,
.text-btn.is-hidden,
.field-hint.is-hidden,
.legal-dialog[open="false"] {
  display: none;
}
.stage-inline-label,
.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 .85rem;
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.stage-inline-label {
  color: var(--c);
  background: rgba(110,241,255,.08);
  border: 1px solid rgba(110,241,255,.18);
}
.phone-chip {
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.entry-shell-group { position: relative }
.phone-wrap,
.code-stage-shell,
.password-stage-shell {
  min-height: 58px;
  border-radius: .9rem;
  background: rgba(255,255,255,.045);
  border: 1.5px solid var(--line);
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
.phone-wrap:focus-within,
.code-stage-shell:focus-within,
.password-stage-shell:focus-within {
  border-color: rgba(124,58,237,.42);
  background: rgba(124,58,237,.05);
  box-shadow: 0 0 0 1px rgba(124,58,237,.16);
  transform: translateY(-1px);
}
.phone-wrap.is-locked { opacity: .88 }
.phone-wrap .phone-prefix {
  min-height: 58px;
  padding: 0 1rem;
  border-right: 1px solid var(--line);
  color: var(--text);
}
.phone-wrap .phone-prefix span {
  font-size: .85rem;
  color: var(--muted);
}
.phone-wrap .phone-inp {
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.code-stage-shell,
.password-stage-shell {
  display: grid;
  align-items: center;
  padding: 0 1rem;
}
.stage-code-input,
.password-stage-input {
  width: 100%;
  min-height: 56px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--hf);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .44em;
  text-align: center;
  text-indent: .44em;
  font-variant-numeric: tabular-nums;
}
.stage-code-input::placeholder,
.password-stage-input::placeholder {
  color: var(--dim);
}
.field-hint {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.6;
}
.consent-stage-shell {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  display: grid;
  gap: .75rem;
}
.consent-card {
  padding: .85rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.consent-card-required {
  border-color: rgba(110,241,255,.18);
  box-shadow: 0 0 0 1px rgba(110,241,255,.05);
}
.consent-card-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  align-items: flex-start;
}
.consent-checkbox {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  accent-color: var(--pl);
}
.consent-label {
  display: grid;
  gap: .35rem;
  min-width: 0;
  cursor: pointer;
}
.consent-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  justify-content: space-between;
}
.consent-title {
  font-size: .8rem;
  font-weight: 800;
  color: var(--text);
}
.consent-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 .5rem;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.consent-pill-required {
  background: rgba(110,241,255,.12);
  border: 1px solid rgba(110,241,255,.2);
  color: #d9fbff;
}
.consent-pill-optional {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(238,240,255,.72);
}
.consent-copy {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.55;
}
.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .65rem;
  padding-left: 1.9rem;
}
.legal-link {
  min-height: 28px;
  padding: 0 .75rem;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,.22);
  background: rgba(124,58,237,.1);
  color: #efe5ff;
  font-size: .68rem;
  font-weight: 800;
  cursor: pointer;
}
.legal-link:hover,
.legal-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(124,58,237,.34);
  background: rgba(124,58,237,.16);
}
.consent-footnote {
  font-size: .68rem;
  color: var(--dim);
  text-align: center;
  line-height: 1.5;
}
.inline-alert {
  padding: .8rem .9rem;
  border-radius: .95rem;
  border: 1px solid transparent;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.6;
}
.inline-alert.is-error {
  color: #ffd7df;
  background: rgba(255,77,109,.12);
  border-color: rgba(255,77,109,.22);
}
.inline-alert.is-success {
  color: #defde8;
  background: rgba(168,255,71,.12);
  border-color: rgba(168,255,71,.2);
}
.inline-alert.is-info {
  color: #def7ff;
  background: rgba(110,241,255,.1);
  border-color: rgba(110,241,255,.18);
}
.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.text-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--c);
  font-family: var(--bf);
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}
.text-btn:hover,
.text-btn:focus-visible {
  transform: translateY(-1px);
}
.text-btn-muted { color: var(--muted) }
.legal-dialog {
  width: min(100vw - 24px, 860px);
  max-width: 860px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}
.legal-dialog::backdrop {
  background: rgba(3,5,14,.82);
  backdrop-filter: blur(10px);
}
.legal-dialog-shell {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(124,58,237,.24);
  background: rgba(7,11,26,.96);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.legal-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.legal-dialog-kicker {
  margin-bottom: .35rem;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pl);
}
.legal-dialog-header h2 {
  font-family: var(--hf);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.legal-dialog-close,
.legal-dialog-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 .9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-size: .76rem;
  font-weight: 800;
}
.legal-dialog-frame {
  width: 100%;
  min-height: min(72vh, 720px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  background: rgba(10,14,32,.9);
}
.legal-dialog-actions {
  display: flex;
  justify-content: flex-end;
}
.firebase-anchor {
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* OTP step */
.otp-info { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6 }
.otp-boxes { display: flex; gap: .55rem; justify-content: center; margin-bottom: 1.25rem }
.otp-box {
  width: 44px; height: 52px; border-radius: .7rem;
  background: rgba(255,255,255,.05); border: 1.5px solid var(--line);
  color: var(--text); font-family: var(--hf); font-weight: 700;
  font-size: 1.4rem; text-align: center; outline: none; transition: border-color .2s;
}
.otp-box:focus { border-color: rgba(124,58,237,.55); background: rgba(124,58,237,.07) }
.otp-resend { text-align: center; font-size: .72rem; color: var(--muted); margin-bottom: 1.25rem }
.otp-resend a { color: var(--pl); font-weight: 700 }

/* Float badge */
.hfloat {
  position: absolute; bottom: -1rem; left: -1rem; z-index: 3;
  background: var(--bg3); border: 1px solid var(--line2); backdrop-filter: blur(20px);
  border-radius: 1rem; padding: .65rem 1rem;
  display: flex; align-items: center; gap: .6rem; box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.hfloat-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--g); box-shadow: 0 0 8px var(--g); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 6px var(--g) } 50% { box-shadow: 0 0 18px var(--g) } }
.hfloat-text { font-size: .72rem; font-weight: 700 }
.hfloat-sub  { font-size: .6rem; color: var(--muted); display: block; margin-top: .05rem }

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(3,5,14,.5); backdrop-filter: blur(12px);
  position: relative; z-index: 1;
}
.stats-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 3.5rem);
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem;
}
.stat-item { text-align: center }
.stat-v {
  font-family: var(--hf); font-weight: 800; font-size: 1.55rem; letter-spacing: -.02em;
  background: linear-gradient(120deg, var(--pl), var(--c));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-v sup { font-size: .5em; -webkit-text-fill-color: var(--muted); color: var(--muted) }
.stat-l { font-size: .65rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: .1rem }

/* ── SECTIONS ── */
.sec { max-width: 1300px; margin: 0 auto; padding: 5rem clamp(1.25rem, 4vw, 3.5rem); position: relative; z-index: 1 }
.sec-head { text-align: center; margin-bottom: 3.5rem }
.sec-tag {
  display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pl); background: var(--p2); border: 1px solid rgba(124,58,237,.22);
  padding: .28rem .72rem; border-radius: 999px; margin-bottom: 1rem;
}
.sec-h {
  font-family: var(--hf); font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem); letter-spacing: -.03em; line-height: 1.15; margin-bottom: .8rem;
}
.sec-h em {
  font-style: normal;
  background: linear-gradient(120deg, var(--pl), var(--c));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sec-p { font-size: .9rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.75 }
.sec-footnote { text-align: center; margin-top: 2rem; font-size: .65rem; color: var(--dim) }

/* ── FEATURES GRID ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem }
.feat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--rad);
  padding: 1.75rem; backdrop-filter: blur(20px);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(124,58,237,.07), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover::before { opacity: 1 }
.feat-card:hover { border-color: rgba(124,58,237,.28); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(124,58,237,.1) }
.feat-ico { width: 44px; height: 44px; border-radius: .85rem; display: grid; place-items: center; margin-bottom: 1.2rem }
.feat-ico svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75 }
.ico-p { background: rgba(124,58,237,.18); color: var(--pl) }
.ico-c { background: rgba(110,241,255,.1); color: var(--c) }
.ico-g { background: rgba(168,255,71,.1); color: var(--g) }
.feat-card h3 { font-family: var(--hf); font-weight: 700; font-size: .98rem; margin-bottom: .5rem }
.feat-card p  { font-size: .8rem; color: var(--muted); line-height: 1.7 }

/* ── HOW IT WORKS ── */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 21px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--p) 20%, var(--c) 80%, transparent); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1 }
.step-n {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--p), var(--pl));
  display: grid; place-items: center;
  font-family: var(--hf); font-weight: 800; font-size: .85rem; color: #fff;
  box-shadow: var(--glow-p);
}
.step h4 { font-family: var(--hf); font-weight: 700; font-size: .92rem; margin-bottom: .38rem }
.step p   { font-size: .77rem; color: var(--muted); line-height: 1.65 }

/* ── PRICING ── */
.price-center { display: flex; justify-content: center }
.price-card {
  background: var(--surface); border: 1px solid rgba(124,58,237,.4); border-radius: var(--rad);
  padding: 2.25rem; max-width: 420px; width: 100%;
  position: relative; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(124,58,237,.15), 0 32px 80px rgba(0,0,0,.45), 0 0 60px rgba(124,58,237,.1);
}
.price-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,.1), transparent 65%);
  pointer-events: none;
}
.p-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--g); background: var(--g2); border: 1px solid rgba(168,255,71,.22);
  padding: .25rem .68rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.p-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--g); box-shadow: 0 0 6px var(--g) }
.p-name { font-family: var(--hf); font-weight: 800; font-size: 1.1rem; margin-bottom: .25rem }
.p-desc { font-size: .78rem; color: var(--muted); margin-bottom: 1.65rem; line-height: 1.6 }
.p-amount { display: flex; align-items: flex-end; gap: .5rem; margin-bottom: .4rem }
.p-old  { font-family: var(--hf); font-weight: 700; font-size: 1.15rem; color: var(--dim); text-decoration: line-through }
.p-new  { font-family: var(--hf); font-weight: 900; font-size: 2.8rem; letter-spacing: -.04em; background: linear-gradient(120deg, var(--pl), var(--c)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.p-cur  { font-size: .85rem; color: var(--muted); margin-bottom: .3rem }
.p-note { font-size: .7rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.55 }
.p-features { list-style: none; margin-bottom: 2rem }
.p-features li { display: flex; align-items: center; gap: .65rem; font-size: .8rem; color: var(--muted); padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.04) }
.p-features li:last-child { border-bottom: none }
.pchk { width: 18px; height: 18px; border-radius: .35rem; flex-shrink: 0; background: var(--g2); display: grid; place-items: center }
.pchk svg { width: 10px; height: 10px; stroke: var(--g); fill: none; stroke-width: 2.5 }
.p-time-note { text-align: center; font-size: .68rem; color: var(--dim); margin-top: .75rem }
.p-time-note strong { color: var(--c) }

/* ── FOOTER ── */
.land-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem clamp(1.25rem, 4vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.land-footer p { font-size: .7rem; color: var(--dim) }
.land-footer-links { display: flex; gap: 1.25rem }
.land-footer-links a { font-size: .7rem; color: var(--muted) }
.land-footer-links a:hover { color: var(--text) }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 360px; gap: 2.5rem }
  .feat-grid { grid-template-columns: 1fr 1fr }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem }
  .steps::before { display: none }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding-top: 3rem }
  .hero-right { justify-content: flex-start }
  .login-card { max-width: 440px }
  .hfloat { display: none }
}
@media (max-width: 768px) {
  .topnav { display: none }
  .ham { display: block }
}
@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr }
  .steps { grid-template-columns: 1fr 1fr }
  .consent-links { padding-left: 0 }
  .action-row { flex-direction: column; align-items: flex-start }
  .text-btn { min-height: 28px }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr }
  .steps::before { display: none }
  .land-footer { flex-direction: column; align-items: flex-start; gap: 1rem }
  .lc-top,
  .lc-body,
  .lc-footer { padding-left: 1.15rem; padding-right: 1.15rem }
  .stage-code-input,
  .password-stage-input { font-size: 1.25rem; letter-spacing: .34em; text-indent: .34em }
  .legal-dialog-shell { padding: .9rem }
  .legal-dialog-frame { min-height: min(62vh, 560px) }
}
