@font-face {
  font-family: 'Disket Mono';
  src: url('fonts/Disket-Mono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Disket Mono';
  src: url('fonts/Disket-Mono-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Lightbulb palette: deep navy + blue→green gradient */
  --bg: #062b46;
  --bg-deep: #04203a;
  --bg-alt: #073562;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #eaf4ff;
  --text-muted: #8fa9c4;
  --blue: #1e7ff5;
  --green: #2fd472;
  --accent-grad: linear-gradient(135deg, #1e7ff5 0%, #2fd472 100%);
  --accent-grad-soft: linear-gradient(135deg, rgba(30,127,245,0.18) 0%, rgba(47,212,114,0.18) 100%);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Subtle film grain over deep navy */
  background-image:
    radial-gradient(1200px 800px at 50% -10%, rgba(30,127,245,0.18), transparent 60%),
    radial-gradient(900px 600px at 100% 30%, rgba(47,212,114,0.10), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.muted { color: var(--text-muted); }
.small { font-size: 13px; }
.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 127, 245, 0.14);
  color: #b8dcff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(30, 127, 245, 0.25);
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 43, 70, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.brand__mark {
  display: block;
  filter: invert(1) drop-shadow(0 0 10px rgba(30, 127, 245, 0.55));
}
.brand__name {
  font-size: 15px;
  font-family: 'Disket Mono', ui-monospace, SFMono-Regular, "SF Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: white;
}

.nav__links { display: flex; gap: 22px; }
.nav__links a { color: var(--text-muted); font-size: 14px; transition: color .15s ease; }
.nav__links a:hover { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  background: var(--surface);
}
.lang__btn {
  appearance: none; background: transparent; border: 0;
  color: var(--text-muted); font: inherit; font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang__btn.is-active { background: var(--surface-2); color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn--sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn--primary {
  color: white;
  background: var(--accent-grad);
  box-shadow: 0 10px 30px rgba(30, 127, 245, 0.40), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(47, 212, 114, 0.45); }
.btn--ghost {
  color: var(--text); background: transparent; border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--surface); border-color: white; }

/* Hero */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
.hero__halo {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 1200px;
  background:
    radial-gradient(closest-side, rgba(30, 127, 245, 0.55) 0%, rgba(30, 127, 245, 0.20) 35%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.7;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__copy h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  font-weight: 700;
}
.hero__copy h1 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { color: var(--text-muted); font-size: 18px; max-width: 560px; margin: 0 0 30px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__stats {
  display: flex; gap: 28px; margin: 0; padding: 0; list-style: none; flex-wrap: wrap;
}
.hero__stats li {
  display: flex; flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid;
  border-image: var(--accent-grad) 1;
}
.hero__stats strong { font-size: 18px; font-weight: 600; }
.hero__stats span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Hero emblem */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.emblem {
  position: relative;
  width: 380px; height: 480px;
  display: grid; place-items: center;
}
.emblem__halo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 45%, rgba(30,127,245,0.70) 0%, rgba(30,127,245,0.25) 40%, rgba(47,212,114,0.12) 65%, transparent 80%);
  filter: blur(10px);
  border-radius: 50%;
  animation: halo 6s ease-in-out infinite;
}
.emblem__art {
  position: relative;
  width: 360px; height: 440px;
  object-fit: contain;
  filter: brightness(1.8) contrast(1.3) drop-shadow(0 0 18px rgba(255,255,255,0.25));
}
@keyframes halo {
  0%,100% { transform: scale(1); opacity: 0.95; }
  50%     { transform: scale(1.04); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .emblem__halo { animation: none; } }

/* Sections */
.section { padding: 96px 0; position: relative; }
.section--alt {
  background: linear-gradient(180deg, rgba(7, 53, 98, 0.45), rgba(4, 32, 58, 0.45));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section__head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section__head p { color: var(--text-muted); margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.step::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto auto;
  width: 200px; height: 200px;
  background: radial-gradient(closest-side, rgba(30,127,245,0.22), transparent 70%);
  pointer-events: none;
}
.step__num {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 13px; letter-spacing: 0.08em;
  margin-bottom: 12px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* Cards grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-grad-soft);
  border: 1px solid rgba(30, 127, 245, 0.30);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 0 24px rgba(30, 127, 245, 0.20);
}
.card__icon svg { stroke: currentColor; }
.card h3 { margin: 0 0 6px; font-size: 16px; }
.card p { margin: 0; color: var(--text-muted); font-size: 14px; }

/* Two-col */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.two-col--reverse .two-col__copy { order: 2; }
.two-col--reverse .two-col__panel { order: 1; }
.two-col__copy h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.two-col__copy > p { color: var(--text-muted); margin: 0 0 22px; }
.checks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 30px; color: var(--text); font-size: 15px; }
.checks li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 0 4px rgba(30, 127, 245, 0.15);
}
.checks li::after {
  content: "";
  position: absolute; left: 5px; top: 11px;
  width: 7px; height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.two-col__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(6px);
}
.two-col__panel::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(closest-side, rgba(47, 212, 114, 0.25), transparent 70%);
  pointer-events: none;
}
.two-col__panel h3 {
  margin: 0 0 18px; font-size: 16px;
  position: relative;
}

/* Price table */
.price { width: 100%; border-collapse: collapse; font-size: 14px; position: relative; }
.price th, .price td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
}
.price th { color: var(--text-muted); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.price tbody tr:last-child td { border-bottom: 0; }
.price td:last-child, .price th:last-child { text-align: right; font-variant-numeric: tabular-nums; }

/* Earnings list */
.earn { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; position: relative; }
.earn li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 14px;
}
.earn b {
  font-variant-numeric: tabular-nums;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* FAQ */
.faq-wrap .section__head { text-align: left; max-width: none; }
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color .15s ease, background .15s ease;
}
.faq details[open] { border-color: var(--border-strong); background: var(--surface-2); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 300; font-size: 22px; color: var(--text-muted);
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--text-muted); font-size: 15px; }

/* Contact */
.section--cta {
  position: relative;
  background: linear-gradient(180deg, rgba(7, 53, 98, 0.5), rgba(4, 32, 58, 0.7));
  border-top: 1px solid var(--border);
}
.section--cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(closest-side, rgba(30,127,245,0.25), transparent 70%);
  pointer-events: none;
}
.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact__copy h2 { font-size: clamp(28px, 3.4vw, 38px); margin: 0 0 14px; letter-spacing: -0.02em; }
.contact__copy p { color: var(--text-muted); margin: 0; }

.form {
  background: rgba(4, 32, 58, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 30px;
  display: grid; gap: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.form__row { display: flex; gap: 18px; flex-wrap: wrap; }
.form__row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: 13px; color: var(--text-muted); }
.form input, .form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit; font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(30, 127, 245, 0.06);
  box-shadow: 0 0 0 3px rgba(30, 127, 245, 0.25);
}
.form textarea { resize: vertical; }
.form__note { margin: 0; }

.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; color: var(--text); font-size: 14px; }
.radio input { accent-color: var(--blue); width: 16px; height: 16px; }

/* Footer */
.footer { padding: 36px 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; }

/* Responsive */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { order: -1; }
  .emblem { width: 280px; height: 360px; }
  .emblem__art { width: 250px; height: 300px; }
  .steps, .grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col--reverse .two-col__copy { order: 1; }
  .two-col--reverse .two-col__panel { order: 2; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 72px 0; }
}
@media (max-width: 580px) {
  .steps, .grid { grid-template-columns: 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 8px; }
  .nav__actions .btn { display: none; }
}
