:root {
  color-scheme: dark;
  --bg: #080b10;
  --panel: rgba(15, 20, 28, 0.88);
  --panel-strong: #121821;
  --text: #f5f1e8;
  --muted: #b9c2cd;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #f1c45a;
  --ember: #d05d35;
  --blue: #68b7ff;
  --green: #40d690;
  --red: #ff706b;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 22% 12%, rgba(104, 183, 255, 0.16), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(208, 93, 53, 0.14), transparent 30%),
    linear-gradient(135deg, #080b10 0%, #101620 52%, #0a0d13 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

.shell {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 30px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.brand {
  color: var(--text);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

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

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

a {
  color: var(--blue);
}

nav a,
.ghost-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

nav a:hover,
.ghost-link:hover {
  border-color: rgba(241, 196, 90, 0.55);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 28px;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.94) 0%, rgba(8, 11, 16, 0.76) 48%, rgba(8, 11, 16, 0.4) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 700'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%231b2a3c'/%3E%3Cstop offset='1' stop-color='%23241824'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='700' fill='url(%23sky)'/%3E%3Cpath d='M0 520 L145 350 L280 520 L420 285 L595 520 L760 310 L930 520 L1065 390 L1200 520 V700 H0Z' fill='%230b0f16'/%3E%3Cpath d='M110 506 L420 230 L720 506Z' fill='%23121b27'/%3E%3Cpath d='M790 500 L960 220 L1135 500Z' fill='%2316202d'/%3E%3Ccircle cx='916' cy='166' r='70' fill='%23f1c45a' opacity='.82'/%3E%3Cpath d='M210 585 C390 520 500 650 700 578 C870 518 980 575 1200 530 V700 H0 V620 C70 610 130 605 210 585Z' fill='%23111720'/%3E%3Cpath d='M545 220 L590 320 L698 332 L616 400 L640 508 L545 452 L450 508 L474 400 L392 332 L500 320Z' fill='%23f1c45a' opacity='.22'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button-link,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold), #f08b3f);
  color: #14100a;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
  text-decoration: none;
  cursor: pointer;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 24px;
}

.wide-card {
  margin-top: 16px;
}

.form-card {
  width: min(620px, 100%);
  margin: 0 auto;
}

.card p,
.steps,
.small {
  color: var(--muted);
  line-height: 1.65;
}

form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(5, 8, 12, 0.82);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(104, 183, 255, 0.34);
  border-color: var(--blue);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.info-grid div {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  padding: 13px;
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 6px 0 0;
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.steps {
  margin: 18px 0 0;
  padding-left: 22px;
}

.notice {
  margin-top: 16px;
  padding: 12px 13px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

.success {
  border: 1px solid rgba(64, 214, 144, 0.45);
  color: var(--green);
}

.error {
  border: 1px solid rgba(255, 112, 107, 0.45);
  color: var(--red);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
  }

  nav a {
    flex: 1;
  }

  .hero {
    min-height: 520px;
    padding: 32px 22px;
  }

  .section-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}
