:root {
  --bg: #050914;
  --bg2: #061732;
  --surface: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.10);
  --text: #bbe5ff;
  --muted: rgba(234,242,255,.65);
  --accent: #18a7ff;
  --accent2: #2b6cff;
  --accent-glow: rgba(24,167,255,.35);
}

* { box-sizing: border-box; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(24,167,255,.16), transparent 55%),
    radial-gradient(700px 400px at 80% 20%, rgba(43,108,255,.13), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-attachment: fixed;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}
h1 { font-size: clamp(40px, 6vw, 84px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(20px, 1.8vw, 26px); }

.logo{
	max-height: 45px;
}
/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); padding: 8px 16px;
  background: rgba(24,167,255,.08);
  border: 1px solid rgba(24,167,255,.22);
  border-radius: 100px; margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
}

/* Buttons */
.btn-c-primary {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 17px 32px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(24,167,255,.32), rgba(43,108,255,.26));
  border: 1px solid rgba(24,167,255,.45);
  color: var(--text); text-decoration: none;
  font-weight: 600; font-size: 15px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.btn-c-primary:hover {
  color: #fff; transform: translateY(-2px);
  border-color: rgba(24,167,255,.7);
  box-shadow: 0 0 0 3px rgba(24,167,255,.12), 0 12px 40px var(--accent-glow);
}
.btn-c-ghost {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 17px 32px; border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text); text-decoration: none;
  font-weight: 600; font-size: 15px;
  transition: border .2s, background .2s;
}
.btn-c-ghost:hover { color: #fff; background: var(--surface); border-color: rgba(255,255,255,.25); }

/* Glass card */
.gc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.gc:hover {
  border-color: rgba(24,167,255,.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

/* Section */
.s { padding: 120px 0; position: relative; }
@media (max-width: 768px) { .s { padding: 70px 0; } }
.s-head { max-width: 760px; margin: 0 auto 70px; text-align: center; }
.s-head p { color: var(--muted); font-size: 18px; margin-top: 20px; }

/* Header */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,9,20,.7);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.site-nav .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 20px;
  color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.brand .mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.brand .ac { color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* HERO — centered, single column */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0 100px;
  position: relative; text-align: center;
}
.hero-inner { max-width: 920px; margin: 0 auto; }
.hero h1 { margin: 0 0 28px; }
.hero h1 .grad {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px; color: var(--muted); line-height: 1.7;
  max-width: 660px; margin: 0 auto 44px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 72px; }
.hero-stats {
  display: inline-flex;
  border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; background: var(--surface);
  backdrop-filter: blur(14px);
}
.hero-stats .st {
  padding: 24px 36px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.hero-stats .st:last-child { border-right: none; }
.hero-stats .v {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px; font-weight: 700;
  color: var(--accent);
  line-height: 1; margin-bottom: 6px;
  text-shadow: 0 0 20px var(--accent-glow);
}
.hero-stats .l { font-size: 12px; color: var(--muted); }
@media (max-width: 768px) {
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stats .st { border-right: none; border-bottom: 1px solid var(--line); padding: 20px; }
  .hero-stats .st:last-child { border-bottom: none; }
}

/* Audience cards */
.aud-card { padding: 36px 30px; height: 100%; text-align: center; }
.aud-icon {
  width: 70px; height: 70px;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: rgba(24,167,255,.08);
  border: 1px solid rgba(24,167,255,.22);
  display: grid; place-items: center;
  font-size: 28px;
}
.aud-card h3 { margin-bottom: 12px; font-size: 20px; }
.aud-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* Economics */
.econ-card { padding: 40px 32px; height: 100%; }
.econ-card .lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.15em;
  margin-bottom: 28px;
}
.econ-card .big {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 6vw, 80px);
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 22px;
  text-shadow: 0 0 40px var(--accent-glow);
}
.econ-card h3 { font-size: 22px; margin-bottom: 12px; }
.econ-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* Features bento */
.feat-card { padding: 32px; height: 100%; }
.feat-card .tag {
  display: inline-flex; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.feat-card .tag::before { content: '◆'; }
.feat-card h3 { font-size: 22px; margin-bottom: 12px; }
.feat-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }
.feat-hero {
  background: linear-gradient(135deg, rgba(24,167,255,.14), rgba(43,108,255,.08));
  border-color: rgba(24,167,255,.25);
}
.feat-hero h3 { font-size: 28px; }
.feat-hero p { font-size: 15px; }

/* Support */
.sup-item { padding-top: 26px; position: relative; }
.sup-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 42px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.sup-item h3 { font-size: 20px; margin-bottom: 12px; }
.sup-item p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* Steps */
.step { padding: 40px 32px; height: 100%; }
.step .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 24px;
  text-shadow: 0 0 30px var(--accent-glow);
}
.step h3 { font-size: 20px; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* Form */
.form-card {
  padding: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(14px);
}
.form-card h3 { font-size: 24px; margin-bottom: 28px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-control, .form-select {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text); font-family: 'Manrope';
  padding: 14px 16px; font-size: 14px;
}
.form-control:focus, .form-select:focus {
  background: rgba(24,167,255,.05);
  border-color: rgba(24,167,255,.45);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(24,167,255,.1);
}
.form-control::placeholder { color: rgba(234,242,255,.3); }
.form-select option { background: var(--bg2); }
.form-perks { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.form-perk { display: flex; align-items: center; gap: 14px; color: var(--text); font-size: 15px; }
.form-perk .ck {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(24,167,255,.15);
  border: 1px solid rgba(24,167,255,.4);
  color: var(--accent); display: grid; place-items: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}

/* FAQ */
.accordion-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  background: transparent;
  color: var(--text);
  font-weight: 600; font-size: 16px;
  padding: 22px 26px;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--accent);
}
.accordion-button::after {
  background: none;
  content: '+'; font-size: 24px; font-weight: 300;
  color: var(--muted); transition: transform .3s;
  width: auto; height: auto;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg); color: var(--accent);
}
.accordion-body {
  padding: 0 26px 24px;
  color: var(--muted); font-size: 15px; line-height: 1.7;
}

/* Footer */
.footer {
  padding: 60px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(5,9,20,.5);
}
.footer h5 {
  color: #fff; font-family: 'Manrope';
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--accent); }
.footer-bot {
  border-top: 1px solid var(--line);
  margin-top: 40px; padding-top: 24px;
  font-size: 12px; color: rgba(234,242,255,.4);
}

/* Reveal */
.rv {transform: translateY(20px); transition: opacity .7s, transform .7s; }
.rv.in { opacity: 1; transform: translateY(0); }