/* ===== Reset-ish ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #070a12;
  color: rgba(255,255,255,0.92);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

:root{
  --ink: #070a12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.12);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);

  --red: #ff2d2d;
  --blue: #2d6bff;
  --glowR: rgba(255,45,45,0.30);
  --glowB: rgba(45,107,255,0.30);

  --radius: 18px;
  --radius2: 26px;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.wrap{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus{
  left: 16px; top: 16px; width: auto; height: auto;
  background: #111827; padding: 10px 12px; border-radius: 10px;
  border: 1px solid var(--stroke);
}

/* ===== Top bar ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,10,18,0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand__mark{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(45,107,255,0.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255,45,45,0.30), transparent 60%),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  font-family: "Oklahoma", system-ui, sans-serif;
  letter-spacing: 0.5px;
}
.brand__name{
  font-family: "Oklahoma", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.brand__tag{
  font-size: 12px;
  color: var(--muted2);
}

.topnav{
  display: flex;
  gap: 18px;
  align-items: center;
}
.topnav a{
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  padding: 8px 10px;
  border-radius: 10px;
}
.topnav a:hover{
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

/* ===== Hero ===== */
.hero{
  position: relative;
  padding: 64px 0 34px;
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 940px){
  .hero__grid{ grid-template-columns: 1fr; }
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 0 0 6px rgba(255,255,255,0.03);
}

h1{
  margin: 16px 0 12px;
  font-family: "Oklahoma", system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: 0.4px;
  line-height: 1.05;
}
.lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(255,255,255,0.86);
  max-width: 62ch;
}
.muted{ color: var(--muted2); }

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
.btn:hover{ text-decoration: none; filter: brightness(1.05); }
.btn:active{ transform: translateY(1px); }

.btn--primary{
  border: 1px solid rgba(255,45,45,0.35);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,45,45,0.35), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(45,107,255,0.35), transparent 60%),
    rgba(255,255,255,0.06);
  box-shadow: 0 14px 50px rgba(0,0,0,0.35);
}
.btn--ghost{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
}
.btn--full{ width: 100%; }

.hero__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 520px){
  .hero__stats{ grid-template-columns: 1fr; }
}
.stat{
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.stat__num{
  font-family: "Oklahoma", system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: 0.5px;
}
.stat__label{
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted2);
}

.fineprint{
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.62);
}

/* ===== Preview panel ===== */
.panel{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.panel__title{
  font-weight: 750;
}
.panel__badge{
  font-size: 11px;
  letter-spacing: 0.8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
}
.panel__list{
  padding: 10px 12px 6px;
}
.item{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.22);
  margin: 10px 0;
}
.item__kicker{
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}
.item__title{
  font-weight: 750;
  margin-top: 4px;
}
.item__meta{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.58);
}
.panel__footer{
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pulse{
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(45,107,255,0.45);
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(45,107,255,0.45); }
  70%{ box-shadow: 0 0 0 12px rgba(45,107,255,0.00); }
  100%{ box-shadow: 0 0 0 0 rgba(45,107,255,0.00); }
}

/* ===== Sections ===== */
.section{
  padding: 58px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.section--alt{
  background: rgba(255,255,255,0.02);
}
h2{
  font-family: "Oklahoma", system-ui, sans-serif;
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
}
.section__sub{
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 72ch;
}

.grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  padding: 18px 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.2px;
}
.card p{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.78);
}
.card--tight{ padding: 18px; }

.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.74);
}
.bullets li{ margin: 6px 0; }

.split{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}

.callout{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,45,45,0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(45,107,255,0.18), transparent 55%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.callout__title{
  font-weight: 800;
  margin-bottom: 8px;
}

.divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 16px 0;
}

/* ===== Notify form ===== */
.notify{
  display: grid;
  gap: 18px;
}
.form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  margin-top: 8px;
}
@media (max-width: 560px){
  .form{ grid-template-columns: 1fr; }
}
input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  outline: none;
}
input:focus{
  border-color: rgba(45,107,255,0.45);
  box-shadow: 0 0 0 4px rgba(45,107,255,0.12);
}
.form__msg{
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.legal{
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.legal p{ margin: 0; color: rgba(255,255,255,0.74); }

/* ===== Footer ===== */
.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand{
  font-family: "Oklahoma", system-ui, sans-serif;
  letter-spacing: 0.2px;
}
.footer__meta{
  color: rgba(255,255,255,0.62);
  font-size: 12.5px;
  margin-top: 4px;
}
.sep{ opacity: 0.5; padding: 0 8px; }

/* ===== Background effects ===== */
.bg-noise{
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.bg-glow{
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.9;
  pointer-events: none;
}
.bg-glow--a{
  left: -120px; top: -120px;
  background: radial-gradient(circle, var(--glowB), transparent 60%);
}
.bg-glow--b{
  right: -160px; bottom: -180px;
  background: radial-gradient(circle, var(--glowR), transparent 60%);
}

.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
