:root {
  color-scheme: dark;
  --bg: #050d19;
  --panel: #0b192b;
  --line: #263a50;
  --text: #f2f6fc;
  --muted: #a6b7cb;
  --accent: #88edfa;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: var(--accent);
  text-underline-offset: 5px;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  touch-action: manipulation;
}
button,
a {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
[hidden] {
  display: none !important;
}
.shell {
  max-width: 1120px;
  margin: auto;
  padding: 0 32px;
}
.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 750;
  font-size: 22px;
  text-decoration: none;
}
.environment {
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 5px 13px;
}
nav {
  display: flex;
  gap: 32px;
  padding-top: 26px;
}
nav a {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}
nav a[aria-current="page"] {
  border-color: var(--accent);
  color: var(--text);
}
.intro {
  margin: 46px 0 30px;
}
.eyebrow {
  letter-spacing: 0.14em;
  font-weight: 650;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 9px;
}
h1 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 16px;
}
h2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
}
p {
  color: var(--muted);
  margin: 12px 0 20px;
}
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.8fr);
  gap: 54px;
  align-items: start;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.section-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.step {
  color: var(--accent);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}
.fields > div {
  min-width: 0;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 650;
  margin: 19px 0 7px;
}
input:not([type="checkbox"]) {
  width: 100%;
  min-width: 0;
  color: var(--text);
  background: #0b1018;
  border: 1px solid #39465b;
  border-radius: 9px;
  padding: 13px 14px;
  min-height: 50px;
  outline: none;
}
input::placeholder {
  color: #8390a5;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  margin: 24px 0;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 3px 0 0;
  accent-color: var(--accent);
}
.primary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 18px;
  background: var(--accent);
  color: #091422;
  font-weight: 750;
  text-decoration: none;
  min-height: 52px;
}
.hint {
  font-size: 14px;
  line-height: 1.5;
  margin: 9px 0 0;
  color: var(--muted);
}
.notice {
  background: #0b1018;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 18px;
  border-radius: 9px;
  margin: 20px 0;
}
.notice strong {
  font-size: 16px;
}
.notice p {
  margin: 9px 0 0;
  font-size: 15px;
}
.side-note {
  padding: 20px 0;
}
.side-note h2 {
  font-size: 25px;
  max-width: 230px;
}
.tv-icon {
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 25px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 30px 0;
}
.side-note a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}
.price {
  color: var(--text);
  font-weight: 800;
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 24px 0 10px;
}
.price span {
  font-size: 15px;
  font-weight: 450;
  letter-spacing: 0;
  color: var(--muted);
}
.benefits {
  padding-left: 20px;
  line-height: 2.1;
  margin: 24px 0;
}
.form-message {
  color: #ffb3b3;
  margin: 0 0 12px;
  font-size: 15px;
}
.success-mark {
  font-size: 36px;
  color: #7ee2bd;
  display: block;
  margin-bottom: 18px;
}
footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  margin: 60px 0 0;
  padding: 24px 0 36px;
}
:focus-visible {
  outline: 3px solid var(--accent) !important;
  outline-offset: 4px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--panel);
  padding: 12px;
  z-index: 2;
}
.skip:focus {
  top: 12px;
}
@media (max-width: 720px) {
  .shell {
    padding: 0 20px;
  }
  .site-header {
    height: 80px;
  }
  .intro {
    margin-top: 32px;
  }
  .layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .panel {
    padding: 23px;
  }
  .side-note {
    padding: 6px 4px;
  }
  .side-note h2 {
    max-width: none;
  }
  .tv-icon {
    display: none;
  }
  footer {
    margin-top: 32px;
  }
  .fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .price {
    font-size: 50px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  button,
  a,
  input {
    transition:
      background-color 0.15s,
      border-color 0.15s;
  }
}

/* Reflex Omni: a quiet navy canvas, cyan controls and the Reflex family mark. */
.brand img {
  border-radius: 12px;
  border: 1px solid #88edfa26;
  object-fit: contain;
}
.brand > span {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.brand b {
  display: block;
  margin-top: 5px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.site-header {
  gap: 16px;
}
.environment {
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.primary {
  background: #24d5e8;
  color: #050d19;
}
.primary:hover {
  background: #88edfa;
}
