:root {
  color-scheme: dark;
  --bg: #050b18;
  --surface: rgba(12, 29, 58, 0.72);
  --line: rgba(147, 197, 253, 0.16);
  --text: #f8fafc;
  --muted: #9fb0c9;
  --blue: #3b82f6;
  --blue-light: #93c5fd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, .24), transparent 28rem),
    radial-gradient(circle at 15% 80%, rgba(30, 58, 138, .18), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(96, 165, 250, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(96, 165, 250, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a { color: inherit; text-decoration: none; }
.shell, footer { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-shield { width: 38px; height: 43px; filter: drop-shadow(0 8px 16px rgba(37, 99, 235, .38)); }
.brand strong { font-size: 1.25rem; letter-spacing: -.04em; }
.brand strong span { color: var(--blue); }
.krsr-link { color: var(--muted); font-size: .86rem; font-weight: 700; }
.krsr-link:hover { color: var(--text); }

.hero { display: grid; grid-template-columns: 1.08fr .82fr; gap: 70px; align-items: center; min-height: 680px; padding: 72px 0 100px; }
.eyebrow { margin: 0 0 18px; color: var(--blue-light); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 6px rgba(52, 211, 153, .1); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(3rem, 7vw, 5.8rem); line-height: .94; letter-spacing: -.075em; }
h1 em { color: var(--blue-light); font-style: normal; }
.lead { max-width: 670px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.24rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.primary, .secondary { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border-radius: 14px; padding: 0 20px; font-weight: 800; }
.primary { background: var(--blue); box-shadow: 0 15px 35px rgba(37, 99, 235, .28); }
.primary:hover { background: #2563eb; }
.secondary { border: 1px solid var(--line); background: rgba(15, 35, 68, .5); }
.secondary:hover { border-color: rgba(147, 197, 253, .38); }

.process-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(150deg, rgba(18, 47, 92, .8), rgba(7, 18, 38, .92)); padding: 26px; box-shadow: 0 30px 80px rgba(0, 0, 0, .36); }
.process-card::after { position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; border-radius: 50%; background: rgba(59, 130, 246, .17); content: ""; filter: blur(4px); }
.card-heading { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.card-heading > span { color: var(--blue-light); font-size: .73rem; font-weight: 900; letter-spacing: .15em; }
.card-heading b { border: 1px solid rgba(52, 211, 153, .18); border-radius: 999px; background: rgba(52, 211, 153, .09); padding: 7px 10px; color: #6ee7b7; font-size: .68rem; text-transform: uppercase; }
.process-card ol { position: relative; z-index: 1; display: grid; gap: 10px; margin: 18px 0; padding: 0; list-style: none; }
.process-card li { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: center; border: 1px solid rgba(147, 197, 253, .1); border-radius: 17px; background: rgba(4, 12, 27, .42); padding: 15px; }
.process-card li > span { color: var(--blue-light); font: 800 .75rem/1 monospace; }
.process-card strong, .process-card small { display: block; }
.process-card strong { margin-bottom: 5px; font-size: .93rem; }
.process-card small { color: var(--muted); line-height: 1.45; }
.card-status { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .78rem; }
.card-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(59, 130, 246, .12); }

.features { padding: 40px 0 110px; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.02; letter-spacing: -.055em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article { border: 1px solid var(--line); border-radius: 22px; background: var(--surface); padding: 25px; }
.feature-grid article > span { display: inline-grid; width: 36px; height: 36px; place-items: center; margin-bottom: 32px; border-radius: 11px; background: rgba(59, 130, 246, .14); color: var(--blue-light); font: 800 .75rem/1 monospace; }
.feature-grid h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-grid p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.notice { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(135deg, rgba(30, 64, 175, .17), rgba(12, 29, 58, .55)); padding: 34px; }
.notice h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
.notice > p { margin-bottom: 4px; color: var(--muted); line-height: 1.7; }
footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; border-top: 1px solid var(--line); padding: 26px 0 38px; color: var(--muted); font-size: .84rem; }
footer p { margin: 0; }
footer a { color: var(--blue-light); font-weight: 700; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-links span { color: rgba(159, 176, 201, .5); }
.email-reveal {
  border: 0;
  border-bottom: 1px dashed currentColor;
  background: transparent;
  color: var(--blue-light);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
}
.email-reveal:hover, .email-reveal:focus-visible { color: var(--text); }
.email-reveal:focus-visible { border-radius: 3px; outline: 3px solid rgba(59, 130, 246, .22); outline-offset: 3px; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; gap: 42px; min-height: 0; padding: 58px 0 90px; }
  .feature-grid { grid-template-columns: 1fr; }
  .notice { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .shell, footer { width: min(100% - 24px, 1160px); }
  .topbar { padding: 16px 0; }
  .krsr-link { font-size: 0; }
  .krsr-link span { font-size: 1rem; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); }
  .hero-actions a { width: 100%; }
  .process-card { border-radius: 22px; padding: 18px; }
  .card-heading { align-items: flex-start; flex-direction: column; }
  .notice { padding: 24px; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
