:root {
  color-scheme: dark;
  --paper: #0c1117;
  --paper-soft: #111923;
  --ink: #f4f7f9;
  --ink-soft: #d7e1e6;
  --muted: #9aa8b2;
  --line: rgba(214, 226, 232, 0.12);
  --panel: rgba(17, 25, 32, 0.96);
  --night: #071013;
  --night-soft: #0d171b;
  --green: #4fd0a0;
  --green-deep: #19755d;
  --green-mid: #72dfb5;
  --green-soft: rgba(79, 208, 160, 0.12);
  --green-glow: rgba(79, 208, 160, 0.22);
  --amber: #d0a45d;
  --amber-soft: rgba(208, 164, 93, 0.13);
  --blue: #74b7d9;
  --red: #fb7185;
  --white-strong: rgba(255, 255, 255, 0.94);
  --white-soft: rgba(255, 255, 255, 0.66);
  --white-muted: rgba(255, 255, 255, 0.42);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 18px 46px rgba(0, 0, 0, 0.36);
  --shadow-lg: 0 32px 92px rgba(0, 0, 0, 0.55);
  --radius: 12px;
  --font-display: "Inter Tight", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-synthesis: none;
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

svg {
  display: block;
}

input,
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(45, 108, 223, 0.34);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1200px, calc(100% - 24px));
  min-height: 66px;
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top) + 12px) 0 10px;
  color: #fff;
  transition: background 0.2s, border-color 0.2s, width 0.2s, padding 0.2s, border-radius 0.2s;
}

.site-header.is-scrolled {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}

.brand-name {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-links {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--night);
  color: #fff;
}

.hero-canvas,
.hero-shade,
.hero-mesh,
.hero-ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-canvas {
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.46) 0%, rgba(6, 8, 12, 0.84) 58%, rgba(6, 8, 12, 0.98) 100%),
    linear-gradient(110deg, rgba(6, 8, 12, 0.96) 0%, rgba(6, 8, 12, 0.76) 52%, rgba(6, 8, 12, 0.42) 100%);
}

.hero-mesh {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 52px 52px, 52px 52px, 28px 28px;
  mask-image: linear-gradient(180deg, black 0%, transparent 86%);
  opacity: 0.8;
}

.hero-ring {
  inset: auto -170px 19% auto;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.018),
    0 0 0 158px rgba(255, 255, 255, 0.012);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
  padding: 92px 0 0;
}

.hero-copy {
  min-width: 0;
  padding-top: 8px;
}

.eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(213, 139, 34, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.46;
    transform: scale(0.7);
  }
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--amber);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 3.28rem;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.h1-outline {
  color: transparent;
  -webkit-text-stroke: 1.05px rgba(255, 255, 255, 0.84);
}

.h1-muted {
  color: rgba(148, 155, 173, 0.74);
  font-size: 1.58rem;
  line-height: 1;
}

.lead {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--white-soft);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.68;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.signal-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.signal-chip span {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--amber);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  transition: background 0.18s, transform 0.18s, border-color 0.18s;
}

.hero-cta:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.form-column {
  display: grid;
  gap: 12px;
}

.register-panel {
  width: 100%;
  padding: 22px 20px 20px;
  border: 1px solid rgba(214, 226, 232, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(19, 29, 36, 0.98), rgba(11, 17, 23, 0.98));
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(79, 208, 160, 0.06) inset;
  backdrop-filter: blur(22px);
  position: relative;
  overflow: hidden;
}

.register-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 208, 160, 0.68), rgba(116, 183, 217, 0.52), rgba(208, 164, 93, 0.36), transparent);
}

.register-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(79, 208, 160, 0.02) 100%);
}

.panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.panel-head .eyebrow {
  color: var(--green);
}

.panel-head h2 {
  margin: 4px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(79, 208, 160, 0.22);
  border-radius: var(--radius);
  background: rgba(79, 208, 160, 0.1);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.form-alert {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin: -5px 0 18px;
  padding: 13px 14px;
  border: 1px solid rgba(208, 164, 93, 0.24);
  border-radius: var(--radius);
  background: rgba(208, 164, 93, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.form-alert strong {
  color: rgba(237, 182, 91, 0.96);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.form-alert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.52;
}

.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}

.field-wrap {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.field-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
}

.field-optional {
  color: rgba(92, 105, 99, 0.62);
  font-weight: 400;
}

.field-hint {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.77rem;
  font-weight: 400;
  line-height: 1.45;
}

.same-contact-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.same-contact-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.same-contact-mark {
  position: relative;
  width: 24px;
  height: 14px;
  flex: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transition: background 0.16s, border-color 0.16s;
}

.same-contact-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  transition: transform 0.16s, background 0.16s;
}

.same-contact-toggle input:checked ~ .same-contact-mark {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.18);
}

.same-contact-toggle input:checked ~ .same-contact-mark::after {
  background: var(--green);
  transform: translate(9px, -50%);
}

.same-contact-toggle input:focus-visible ~ .same-contact-mark {
  box-shadow: 0 0 0 3px rgba(45, 108, 223, 0.2);
}

.input-wrap {
  position: relative;
  display: block;
}

.input-wrap input {
  padding-right: 46px;
}

.toggle-pass {
  position: absolute;
  top: 50%;
  right: 5px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  transition: background 0.15s, color 0.15s;
}

.toggle-pass:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

input[type="text"],
input[type="tel"],
input[type="password"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  padding: 0 14px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s, transform 0.15s;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="password"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

input[type="text"]:hover,
input[type="tel"]:hover,
input[type="password"]:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px var(--green-glow);
}

input[readonly].is-mirrored {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.08);
  color: var(--green-mid);
}

.wide {
  grid-column: 1 / -1;
}

.terms-accept {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.05);
}

.check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  user-select: none;
}

.check-wrap input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkmark {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.checkmark::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0) translate(-1px, -1px);
  transition: transform 0.15s;
}

.check-wrap input[type="checkbox"]:checked ~ .checkmark {
  border-color: var(--green);
  background: var(--green);
}

.check-wrap input[type="checkbox"]:checked ~ .checkmark::after {
  transform: rotate(45deg) scale(1) translate(-1px, -1px);
}

.check-wrap input[type="checkbox"]:focus-visible ~ .checkmark {
  box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.18);
}

.check-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
}

.terms-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 17px;
}

.message {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.35;
}

.message.success {
  color: var(--green);
}

.message.error {
  color: var(--red);
}

#submitButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #78ddb7 0%, #42b9c5 56%, #1d7b62 100%);
  color: #03100d;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 16px 38px rgba(79, 208, 160, 0.22);
  transition: transform 0.14s, box-shadow 0.18s, filter 0.18s;
}

#submitButton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 82%);
  transform: translateX(-110%);
  transition: transform 0.5s;
}

#submitButton:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(66, 185, 197, 0.23);
}

#submitButton:hover::after {
  transform: translateX(110%);
}

#submitButton:active {
  transform: translateY(0);
}

#submitButton:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

.button-text,
.button-arrow,
.loader {
  position: relative;
  z-index: 1;
}

.button-arrow {
  transition: transform 0.2s;
}

#submitButton:hover .button-arrow {
  transform: translateX(3px);
}

#submitButton.loading .button-arrow {
  display: none;
}

.loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.68s linear infinite;
}

#submitButton.loading .loader {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-footnote {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.stats-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: grid;
  gap: 3px;
  justify-items: center;
  min-width: 0;
  padding: 0 8px;
  text-align: center;
}

.stat-num {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.08;
}

.stat-label {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.stat-divider {
  display: none;
}

.process-section,
.terms-inner,
.ready-inner,
.site-footer {
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
}

.process-section {
  position: relative;
  padding: 58px 0 68px;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-intro {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
}

.process-flow {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(79, 208, 160, 0.035) 58%, rgba(116, 183, 217, 0.035)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 37px;
  z-index: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(79, 208, 160, 0.5), rgba(116, 183, 217, 0.24), rgba(208, 164, 93, 0.18));
  pointer-events: none;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  min-height: 160px;
  padding: 20px 16px;
  background: transparent;
}

.process-step + .process-step {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-top: 1px solid rgba(79, 208, 160, 0.1);
  border-right: 1px solid rgba(116, 183, 217, 0.08);
  opacity: 0.85;
  pointer-events: none;
}

.step-index {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(79, 208, 160, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(79, 208, 160, 0.18), rgba(116, 183, 217, 0.08));
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-copy {
  min-width: 0;
}

.step-label {
  margin: 0 0 6px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.step-copy h3 {
  margin: 0 0 7px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.step-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.62;
}

.terms-section {
  position: relative;
  padding: 64px 0 72px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.terms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, black 0%, transparent 86%);
}

.terms-inner {
  position: relative;
  z-index: 1;
}

.terms-header {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.terms-header .section-title {
  color: #fff;
}

.terms-intro {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
}

.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.term-block {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: background 0.2s, border-color 0.2s;
}

.term-block[open] {
  background: rgba(255, 255, 255, 0.055);
}

.term-block summary {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 60px;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.term-block summary::-webkit-details-marker {
  display: none;
}

.term-num {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: var(--radius);
  background: rgba(213, 139, 34, 0.15);
  color: #edb65b;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
}

.term-title {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.term-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.term-toggle::before,
.term-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.term-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.15s;
}

.term-block[open] .term-toggle::after {
  opacity: 0;
}

.term-block p {
  margin: 0;
  padding: 0 16px 18px 57px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.91rem;
  font-weight: 400;
  line-height: 1.72;
}

.term-block strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.terms-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(213, 139, 34, 0.24);
  border-radius: var(--radius);
  background: rgba(213, 139, 34, 0.07);
  color: rgba(237, 182, 91, 0.95);
}

.terms-footer-note svg {
  flex: 0 0 18px;
  margin-top: 2px;
}

.terms-footer-note p {
  margin: 0;
  color: rgba(237, 182, 91, 0.86);
  font-size: 0.84rem;
  line-height: 1.6;
}

.ready-section {
  padding: 50px 0 58px;
  background: var(--paper);
}

.ready-inner {
  display: grid;
  gap: 18px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.ready-header h2 {
  max-width: 440px;
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.ready-list {
  display: grid;
  gap: 10px;
}

.ready-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(214, 226, 232, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(79, 208, 160, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.ready-index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(79, 208, 160, 0.18);
  border-radius: 10px;
  background: rgba(79, 208, 160, 0.1);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
}

.ready-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.ready-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 0 calc(env(safe-area-inset-bottom) + 28px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.mobile-action-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom) + 12px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(4, 12, 9, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 0.2s, transform 0.2s;
}

.mobile-action-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.site-footer .brand-name {
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  font-size: 0.8rem;
  font-weight: 400;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.72rem;
  }

  .h1-muted {
    font-size: 1.2rem;
  }

  .register-panel {
    padding: 18px 16px;
  }
}

@media (max-width: 659px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    gap: 22px;
    width: min(100% - 24px, 430px);
    padding-top: 84px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow-wrap {
    margin-bottom: 14px;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  h1 {
    max-width: 340px;
    margin-bottom: 16px;
    font-size: clamp(2.58rem, 12vw, 2.95rem);
    line-height: 0.95;
  }

  .h1-outline {
    color: rgba(244, 247, 249, 0.9);
    font-size: clamp(2.18rem, 10vw, 2.52rem);
    font-weight: 700;
    -webkit-text-stroke-width: 0;
  }

  .h1-muted {
    max-width: 300px;
    margin-top: 4px;
    font-size: clamp(1.1rem, 5vw, 1.28rem);
  }

  .lead {
    max-width: 350px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .signal-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    width: min(100%, 300px);
    margin-top: 2px;
    padding: 10px 0 10px 13px;
    border-left: 1px solid rgba(79, 208, 160, 0.22);
  }

  .signal-chip {
    min-height: auto;
    width: fit-content;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(244, 247, 249, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: none;
  }

  .signal-chip:first-child {
    color: rgba(244, 247, 249, 0.9);
  }

  .signal-chip span {
    width: 5px;
    height: 5px;
    flex-basis: 5px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(79, 208, 160, 0.08);
  }

  .hero-cta {
    min-height: 40px;
    margin-top: 14px;
    padding: 0 14px;
    font-size: 0.8rem;
  }
}

@media (min-width: 660px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    width: min(720px, calc(100% - 40px));
  }
}

@media (min-width: 860px) {
  .mobile-action-bar {
    display: none;
  }

  .hero-cta {
    display: none;
  }

  .site-header {
    width: min(1200px, calc(100% - 40px));
    min-height: 70px;
    padding-top: calc(env(safe-area-inset-top) + 14px);
  }

  .site-header.is-scrolled {
    width: min(1200px, calc(100% - 40px));
    padding-right: 16px;
    padding-left: 16px;
    background: rgba(10, 10, 15, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
  }

  .header-links {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(20px);
  }

  .header-links a {
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
  }

  .header-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
    align-items: center;
    gap: 64px;
    width: min(1200px, calc(100% - 40px));
    min-height: calc(100vh - 104px);
    padding: 112px 0 42px;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: 6.45rem;
    line-height: 0.88;
  }

  .h1-outline {
    -webkit-text-stroke-width: 2px;
  }

  .h1-muted {
    margin-top: 2px;
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.06rem;
  }

  .register-panel {
    padding: 27px;
  }

  .stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1200px, calc(100% - 40px));
    padding: 20px 0 30px;
  }

  .stat-item {
    padding: 0 48px;
  }

  .stat-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
  }

  .process-section {
    padding: 86px 0 92px;
  }

  .section-header {
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: baseline;
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 2.7rem;
  }

  .section-intro {
    margin-top: 14px;
    font-size: 1rem;
  }

  .process-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .process-flow::before {
    top: 78px;
    right: 54px;
    bottom: auto;
    left: 54px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.4), rgba(245, 158, 11, 0.15), rgba(16, 185, 129, 0.1));
  }

  .process-step {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 24px;
    min-height: 248px;
    padding: 30px 28px;
    transition: background 0.18s, transform 0.18s;
  }

  .process-step + .process-step {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .process-step:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
  }

  .process-step::after {
    top: 26px;
    right: 24px;
    width: 66px;
    height: 66px;
  }

  .step-index {
    width: 48px;
    height: 48px;
    font-size: 0.82rem;
  }

  .step-copy h3 {
    font-size: 1.34rem;
  }

  .step-copy p:last-child {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .terms-section {
    padding: 90px 0 96px;
  }

  .terms-header {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: start;
    margin-bottom: 36px;
  }

  .terms-intro {
    grid-column: 2;
    margin-top: 12px;
  }

  .terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
  }

  .term-block {
    border-radius: 0;
  }

  .term-block:nth-child(1) {
    border-radius: var(--radius) 0 0 0;
  }

  .term-block:nth-child(2) {
    border-radius: 0 var(--radius) 0 0;
  }

  .term-block:nth-child(5) {
    border-radius: 0 0 0 var(--radius);
  }

  .term-block:nth-child(6) {
    border-radius: 0 0 var(--radius) 0;
  }

  .term-block summary {
    min-height: 74px;
    padding: 22px 24px;
  }

  .term-block p {
    padding: 0 24px 26px 67px;
  }

  .terms-footer-note {
    padding: 18px 22px;
  }

  .ready-section {
    padding: 76px 0;
  }

  .ready-inner {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 48px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
  }

  .ready-header h2 {
    font-size: 2.05rem;
  }

  .ready-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .ready-item {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 150px;
    padding: 18px;
  }

  .ready-item p {
    font-size: 0.94rem;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
