/* ── Reset & Variables ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:     #060d1f;
  --navy2:    #0c1830;
  --navy3:    #111f3a;
  --green:    #00c07f;
  --green2:   #00e693;
  --teal:     #00b4d8;
  --gold:     #f5a623;
  --white:    #ffffff;
  --off:      #f7fafc;
  --muted:    #7a8fa6;
  --border:   rgba(255,255,255,0.08);
  --card-bg:  rgba(255,255,255,0.04);
  --radius:   16px;
  --radius-sm:10px;
  --font-head:"Bricolage Grotesque", sans-serif;
  --font-body:"DM Sans", sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, .btn { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* ── Utility ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,192,127,0.12); border: 1px solid rgba(0,192,127,0.25);
  color: var(--green2); border-radius: 100px;
  font-size: 13px; font-weight: 600; padding: 6px 14px; letter-spacing: 0.3px;
}
.tag .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; transition: var(--transition);
}
.btn-primary { background: var(--green); color: var(--navy); }
.btn-primary:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,192,127,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn svg { width: 18px; height: 18px; }
.gradient-text {
  background: linear-gradient(135deg, var(--green2), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.glow { box-shadow: 0 0 60px rgba(0,192,127,0.2); }

/* ── Noise overlay ────────────────────────────────────────────── */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── Navbar ───────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(6,13,31,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--navy);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; overflow: hidden; position: relative;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.18;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--green); top: -100px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--teal); bottom: 0; left: -100px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-left h1 {
  font-family: var(--font-head); font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.07; letter-spacing: -1.5px;
}
.hero-left p { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 8px; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat .val { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--green2); }
.hero-stat .lbl { font-size: 12px; color: var(--muted); font-weight: 500; }
.hero-right { position: relative; display: flex; justify-content: center; }
.phone-mockup-wrap {
  position: relative; display: flex; justify-content: center; align-items: flex-start;
}
.phone-main {
  width: 270px; background: linear-gradient(160deg, var(--navy3), #0a1520);
  border-radius: 36px; border: 1.5px solid rgba(255,255,255,0.1);
  padding: 16px 14px; box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  position: relative; z-index: 2; animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.phone-notch { width: 80px; height: 24px; background: var(--navy); border-radius: 100px; margin: 0 auto 16px; }
.phone-screen { border-radius: 24px; overflow: hidden; background: var(--navy2); }
.phone-header {
  background: linear-gradient(135deg, #0d2e1f, #0a1e30);
  padding: 20px 16px 16px; display: flex; flex-direction: column; gap: 4px;
}
.phone-header .lbl { font-size: 10px; color: var(--muted); }
.phone-header .balance { font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.phone-header .sub { font-size: 11px; color: var(--green2); }
.phone-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
.p-card {
  background: rgba(255,255,255,0.05); border-radius: 12px; padding: 12px 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.p-card .icon { font-size: 20px; margin-bottom: 2px; }
.p-card .name { font-size: 9px; font-weight: 600; color: var(--muted); }
.p-card .rate { font-size: 12px; font-weight: 700; color: var(--green2); }
.phone-rate-bar {
  margin: 0 12px 12px; background: rgba(0,192,127,0.12); border-radius: 10px; padding: 12px;
}
.phone-rate-bar .rate-label { font-size: 9px; color: var(--muted); margin-bottom: 6px; }
.rate-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.rate-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--teal)); border-radius: 3px; width: 78%; animation: fill 3s ease-in-out infinite alternate; }
@keyframes fill { from{width:60%} to{width:88%} }
.phone-btn { margin: 0 12px 14px; background: var(--green); border-radius: 10px; padding: 10px; text-align: center; font-size: 11px; font-weight: 700; color: var(--navy); }

.floating-card {
  position: absolute; background: rgba(12,24,48,0.95);
  border: 1px solid rgba(0,192,127,0.2); border-radius: 14px; padding: 12px 16px;
  backdrop-filter: blur(20px); box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  animation: float2 4s ease-in-out infinite;
}
.floating-card.fc1 { bottom: 60px; left: -50px; min-width: 160px; animation-delay: 0.5s; }
.floating-card.fc2 { top: 40px; right: -40px; min-width: 140px; animation-delay: 1.2s; }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-top { font-size: 10px; color: var(--muted); margin-bottom: 4px; }
.fc-main { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--green2); }
.fc-sub { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.fc-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: var(--green2); margin-top: 4px; }
.fc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ── Marquee / Reviews ────────────────────────────────────────── */
#reviews { padding: 72px 0; overflow: hidden; }
#reviews h2 { text-align: center; font-family: var(--font-head); font-size: clamp(26px,3.5vw,38px); font-weight: 700; margin-bottom: 12px; }
#reviews .sub { text-align: center; color: var(--muted); font-size: 16px; margin-bottom: 48px; }
.marquee-outer { overflow: hidden; position: relative; }
.marquee-outer::before, .marquee-outer::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.marquee-outer::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.marquee-outer::after  { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.marquee-track { display: flex; gap: 20px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track.rev { animation-direction: reverse; animation-duration: 35s; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.rev-card {
  width: 300px; flex-shrink: 0; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.rev-card .quote { font-size: 24px; color: var(--green); margin-bottom: 12px; }
.rev-card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.rev-card .author { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.rev-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.rev-card .name { font-size: 13px; font-weight: 600; }
.rev-card .platform { font-size: 11px; color: var(--muted); }
.stars { color: var(--gold); font-size: 12px; margin-top: 2px; }

/* ── Rating badges ────────────────────────────────────────────── */
#ratings { padding: 0 0 80px; }
.ratings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rating-badge {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: var(--transition);
}
.rating-badge:hover { border-color: rgba(0,192,127,0.3); transform: translateY(-4px); }
.rating-badge .num { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--green2); }
.rating-badge .stars { font-size: 16px; }
.rating-badge .src { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── Press ────────────────────────────────────────────────────── */
#press { padding: 40px 0 80px; }
.press-label { text-align: center; font-size: 12px; letter-spacing: 2px; font-weight: 600; color: var(--muted); text-transform: uppercase; margin-bottom: 32px; }
.press-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 48px; opacity: 0.55; }
.press-logos span { font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: -0.5px; }

/* ── Features ─────────────────────────────────────────────────── */
#features { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-top { text-align: center; margin-bottom: 64px; }
.features-top h2 { font-family: var(--font-head); font-size: clamp(30px,4vw,46px); font-weight: 800; margin-bottom: 14px; line-height: 1.1; }
.features-top p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: var(--transition);
}
.feature-card:hover { border-color: rgba(0,192,127,0.25); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,192,127,0.12); border: 1px solid rgba(0,192,127,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── Modes ────────────────────────────────────────────────────── */
#modes { padding: 96px 0; }
.modes-top { text-align: center; margin-bottom: 20px; }
.modes-top small { font-size: 12px; letter-spacing: 2px; color: var(--green2); font-weight: 600; text-transform: uppercase; }
.modes-top h2 { font-family: var(--font-head); font-size: clamp(30px,4vw,46px); font-weight: 800; margin-top: 12px; }
.modes-tabs { display: flex; justify-content: center; gap: 8px; margin: 32px 0 48px; }
.mode-tab {
  padding: 10px 24px; border-radius: 100px; font-size: 14px; font-weight: 600;
  background: var(--card-bg); border: 1px solid var(--border); color: var(--muted);
  transition: var(--transition); cursor: pointer;
}
.mode-tab.active { background: var(--green); border-color: var(--green); color: var(--navy); }
.mode-pane { display: none; }
.mode-pane.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mode-text { display: flex; flex-direction: column; gap: 24px; }
.mode-text h3 { font-family: var(--font-head); font-size: clamp(28px,3vw,38px); font-weight: 800; line-height: 1.1; }
.mode-text p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; }
.mode-checks { display: flex; flex-direction: column; gap: 12px; }
.mode-check { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.mode-check::before { content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,192,127,0.15); color: var(--green2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.mode-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mode-visual { display: flex; justify-content: center; position: relative; }
.mode-mockup {
  width: 280px; background: linear-gradient(160deg, var(--navy3), #0a1520);
  border-radius: 32px; border: 1.5px solid rgba(255,255,255,0.08);
  padding: 20px 16px; box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}
.mode-mockup.delay { animation-delay: 1s; }
.mock-badge {
  background: rgba(0,192,127,0.12); border: 1px solid rgba(0,192,127,0.2);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.mock-badge .mb-icon { font-size: 22px; }
.mock-badge .mb-text .mb-top { font-size: 10px; color: var(--muted); }
.mock-badge .mb-text .mb-val { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--green2); }
.mock-items { display: flex; flex-direction: column; gap: 8px; }
.mock-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 12px;
}
.mock-item .mi-left { display: flex; align-items: center; gap: 8px; }
.mock-item .mi-icon { font-size: 18px; }
.mock-item .mi-name { font-size: 11px; font-weight: 600; }
.mock-item .mi-rate { font-size: 11px; font-weight: 700; color: var(--green2); }
.mock-action {
  margin-top: 16px; background: var(--green); border-radius: 10px; padding: 12px;
  text-align: center; font-size: 12px; font-weight: 700; color: var(--navy); cursor: pointer;
}

/* ── How it works ─────────────────────────────────────────────── */
#how { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-top { text-align: center; margin-bottom: 64px; }
.how-top h2 { font-family: var(--font-head); font-size: clamp(30px,4vw,46px); font-weight: 800; margin-bottom: 14px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: ""; position: absolute; top: 48px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--green), var(--teal));
  opacity: 0.3; z-index: 0;
}
.step {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--navy);
  flex-shrink: 0;
}
.step h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────────── */
#faq .faq-top { text-align: center; margin-bottom: 56px; }
#faq .faq-top h2 { font-family: var(--font-head); font-size: clamp(28px,3.5vw,42px); font-weight: 800; margin-bottom: 12px; }
#faq .faq-top p { color: var(--muted); font-size: 16px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(0,192,127,0.2); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 22px 24px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q .faq-arrow {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(0,192,127,0.15); color: var(--green2); }
.faq-a { display: none; padding: 0 24px 22px; font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── Newsletter ───────────────────────────────────────────────── */
#newsletter {
  background: linear-gradient(135deg, rgba(0,192,127,0.08), rgba(0,180,216,0.08));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.nl-inner { max-width: 600px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 20px; align-items: center; }
.nl-inner h2 { font-family: var(--font-head); font-size: clamp(26px,3.5vw,38px); font-weight: 800; }
.nl-inner p { color: var(--muted); font-size: 16px; }
.nl-form { display: flex; gap: 10px; width: 100%; max-width: 480px; }
.nl-form input {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  border-radius: 100px; padding: 14px 20px; color: var(--white);
  font-family: var(--font-body); font-size: 14px; outline: none; transition: var(--transition);
}
.nl-form input:focus { border-color: var(--green); background: rgba(255,255,255,0.09); }
.nl-form input::placeholder { color: var(--muted); }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--navy2); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 14px 0 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--card-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: var(--transition);
}
.social-link:hover { border-color: var(--green); background: rgba(0,192,127,0.1); }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 18px; color: var(--white); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.app-badges { display: flex; gap: 10px; }
.app-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 14px; font-size: 12px; font-weight: 500;
  transition: var(--transition);
}
.app-badge:hover { border-color: rgba(0,192,127,0.3); }
.app-badge .ab-icon { font-size: 18px; }

/* ── Auth pages ───────────────────────────────────────────────── */
.auth-section {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 80px; position: relative; overflow: hidden;
}
.auth-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 40px 36px; backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.auth-card h1 {
  font-family: var(--font-head); font-size: clamp(28px,3.4vw,36px);
  font-weight: 800; line-height: 1.15; margin-bottom: 8px;
}
.auth-card .sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 12px; padding: 13px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 15px; outline: none;
  transition: var(--transition); width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green); background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(0,192,127,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { width: 100%; margin-top: 8px; padding: 14px; }
.auth-meta { margin-top: 24px; text-align: center; font-size: 14px; color: var(--muted); }
.auth-meta a { color: var(--green2); font-weight: 600; }
.auth-meta a:hover { text-decoration: underline; }

.alert {
  border-radius: 12px; padding: 12px 16px; font-size: 14px; margin-bottom: 18px;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert-error   { background: rgba(255,82,82,0.10); border: 1px solid rgba(255,82,82,0.30); color: #ff8c8c; }
.alert-success { background: rgba(0,192,127,0.10); border: 1px solid rgba(0,192,127,0.30); color: var(--green2); }

/* ── Page header (for sub-pages like About / Contact / Dashboard) ── */
.page-head {
  padding: 160px 0 64px; position: relative; overflow: hidden;
  text-align: center;
}
.page-head .blob {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  filter: blur(120px); opacity: 0.18; background: var(--green);
  top: -120px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.page-head h1 {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: clamp(38px,5vw,60px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1px;
}
.page-head p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.7); font-size: 17px; margin: 14px auto 0;
  max-width: 620px; line-height: 1.7;
}

/* ── About ────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid h2 { font-family: var(--font-head); font-size: clamp(28px,3.4vw,40px); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.about-grid p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.8; margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 20px; }
.about-stat {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px;
}
.about-stat .num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--green2); }
.about-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }
.about-image {
  background: linear-gradient(160deg, rgba(0,192,127,0.15), rgba(0,180,216,0.10));
  border: 1px solid var(--border); border-radius: 24px;
  height: 420px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 90px; font-weight: 800;
  color: rgba(255,255,255,0.08); position: relative; overflow: hidden;
}
@media(max-width:900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { height: 260px; font-size: 64px; }
}

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 16px; }
@media(max-width:900px) { .values-grid { grid-template-columns: 1fr; } }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
@media(max-width:900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info .item {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start;
}
.contact-info .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,192,127,0.12); border: 1px solid rgba(0,192,127,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-info .item h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-info .item p, .contact-info .item a { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact-form-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px;
}

/* ── Dashboard ────────────────────────────────────────────────── */
.dash-wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.dash-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; margin-bottom: 18px;
}
.dash-card h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.dash-card .muted { color: var(--muted); font-size: 14px; }
.dash-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 24px; }
@media(max-width:780px) { .dash-grid { grid-template-columns: 1fr; } }
.dash-tile {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px;
}
.dash-tile .lbl { font-size: 12px; color: var(--muted); }
.dash-tile .val { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--green2); margin-top: 4px; }

/* ── Mobile ───────────────────────────────────────────────────── */
@media(max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-left { align-items: center; }
  .hero-right { display: none; }
  .ratings-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .mode-pane.active { grid-template-columns: 1fr; }
  .mode-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nl-form { flex-direction: column; }
  .nl-form .btn { width: 100%; }
}
@media(max-width: 600px) {
  .section { padding: 64px 0; }
  .ratings-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Scroll animations ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Mobile nav ───────────────────────────────────────────────── */
#mobile-nav {
  position: fixed; inset: 0; background: rgba(6,13,31,0.98);
  backdrop-filter: blur(20px); z-index: 998; display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#mobile-nav.open { opacity: 1; pointer-events: all; }
#mobile-nav a { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--white); }
#mobile-nav a:hover { color: var(--green2); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 28px; background: none; border: none; color: var(--white); cursor: pointer; }
