:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #161616;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f7f7;
  --muted: #a3a3a3;
  --yellow: #fce10a;
  --yellow-2: #ffe84d;
  --green: #4ade80;
  --red: #fb7185;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(252, 225, 10, 0.12), transparent 34rem),
    linear-gradient(180deg, #090909 0%, var(--bg) 38%, #000 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 9, 9, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
}

.brand strong span {
  color: var(--yellow);
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.main-nav a,
.site-footer a {
  padding: 10px 12px;
  border-radius: 8px;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #141414;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  border-color: rgba(252, 225, 10, 0.62);
  background: var(--yellow);
  color: #090909;
}

.button:hover {
  transform: translateY(-1px);
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 72px 0 52px;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(252, 225, 10, 0.32);
  border-radius: 8px;
  background: rgba(252, 225, 10, 0.08);
  color: var(--yellow);
  padding: 8px 11px;
  font-weight: 900;
}

.hero h1,
.page-head h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p,
.page-head p {
  max-width: 690px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.stat {
  min-height: 86px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--yellow);
  font-size: 24px;
  font-weight: 950;
}

.stat span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.hero-panel,
.card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
}

.hero-visual {
  padding: 10px;
  overflow: hidden;
}

.hero-visual img,
.split-visual > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.terminal {
  min-height: 440px;
  display: grid;
  gap: 12px;
}

.signal-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0c0c;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(252, 225, 10, 0.72);
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 42px 0;
}

.section {
  padding: 74px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section h2,
.process-band h2,
.risk-panel h2 {
  margin: 16px 0 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section p,
.risk-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.two-col,
.split-visual,
.warning-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.split-visual {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.split-visual.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.split-visual.reverse > img {
  order: 2;
}

.card-list {
  display: grid;
  gap: 12px;
}

.feature,
.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0d;
}

.feature h3,
.timeline-item h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.feature p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--yellow);
  color: #080808;
  font-weight: 950;
}

.process-band {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(252, 225, 10, 0.06), rgba(255, 255, 255, 0.02)),
    #0b0b0b;
}

.process-band .terminal {
  min-height: 0;
  margin-top: 22px;
}

.bonus-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 22px;
  align-items: center;
  padding: 46px;
  border: 1px solid rgba(252, 225, 10, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(252, 225, 10, 0.16), transparent 26rem),
    linear-gradient(180deg, rgba(252, 225, 10, 0.08), rgba(255, 255, 255, 0.025)),
    #0b0b0b;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bonus-card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(252, 225, 10, 0.34);
  border-radius: 8px;
  background: #080808;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.bonus-card span,
.bonus-card strong,
.bonus-card small {
  display: block;
}

.bonus-card span {
  color: var(--muted);
  font-weight: 900;
}

.bonus-card strong {
  margin-top: 16px;
  color: var(--yellow);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
  font-weight: 950;
}

.bonus-card small {
  margin-top: 14px;
  color: #d7d7d7;
  font-weight: 800;
  line-height: 1.4;
}

.risk-panel {
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(252, 225, 10, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(252, 225, 10, 0.08), rgba(251, 113, 133, 0.06)),
    #0c0c0c;
}

.standalone-head {
  padding: 70px 0 22px;
}

.card {
  min-height: 188px;
  padding: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.55;
}

.card ul {
  padding-left: 18px;
}

.page {
  padding: 72px 0;
}

.page-head {
  margin-bottom: 24px;
}

.form-wrap {
  min-height: calc(100vh - 190px);
  display: grid;
  place-items: center;
  padding: 54px 0;
}

.form-card {
  width: min(100%, 460px);
  padding: 28px;
}

.form-card h1 {
  margin: 10px 0 8px;
  font-size: 34px;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.field label {
  color: #d8d8d8;
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070707;
  color: var(--text);
  padding: 0 14px;
}

.field textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.alert {
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(252, 225, 10, 0.34);
  border-radius: 8px;
  background: rgba(252, 225, 10, 0.08);
  color: #fff7a6;
}

.alert.error {
  border-color: rgba(251, 113, 133, 0.42);
  background: rgba(251, 113, 133, 0.08);
  color: #fecdd3;
}

.legal-page {
  max-width: 920px;
  padding: 52px 0 70px;
}

.legal-page article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0b0b;
  padding: 30px;
}

.legal-page h1 {
  margin-top: 0;
  font-size: 42px;
}

.legal-page h2 {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-page p,
.legal-page li {
  color: #d7d7d7;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 44px;
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer img {
  width: 30px;
  height: 30px;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .grid,
  .bonus-band,
  .two-col,
  .split-visual,
  .split-visual.reverse,
  .warning-layout {
    grid-template-columns: 1fr;
  }

  .split-visual.reverse > img {
    order: 0;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .section,
  .process-band {
    padding: 38px 0;
  }

  .process-band,
  .bonus-band,
  .risk-panel {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
