@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #060b16;
  --bg-alt: #0d1528;
  --surface: #111c33;
  --surface-soft: #172443;
  --ink: #e6eeff;
  --muted: #a3b4d9;
  --accent: #7b8dff;
  --accent2: #43d7c8;
  --line: rgba(170, 193, 255, 0.2);
  --line-soft: rgba(170, 193, 255, 0.12);
  --shadow: 0 28px 70px rgba(4, 8, 19, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(760px 480px at -5% -5%, rgba(67, 215, 200, 0.22), transparent 65%),
    radial-gradient(900px 560px at 102% 6%, rgba(123, 141, 255, 0.2), transparent 67%),
    linear-gradient(180deg, #040912, var(--bg) 30%, #050912 100%);
  line-height: 1.65;
}

a {
  color: #9bb3ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 10px;
  z-index: 9999;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(6, 11, 22, 0.85);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
}

.topbar-compact {
  position: relative;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  min-width: 260px;
}

.brand-text {
  display: flex;
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(140deg, #7b8dff, #43d7c8);
  box-shadow: 0 8px 24px rgba(67, 215, 200, 0.25);
  position: relative;
}

.brand-mark::after {
  content: "56";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: #061027;
}

.brand-link {
  color: inherit;
  text-decoration: none;
}

.brand-link:hover {
  text-decoration: none;
}

.brand-name {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-tag {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.nav a:hover {
  border-color: var(--line);
  text-decoration: none;
}

.hero {
  padding: 68px 0 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  align-items: start;
}

.hero-copy {
  order: 1;
  background: linear-gradient(160deg, rgba(23, 36, 67, 0.8), rgba(12, 22, 42, 0.92));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-card {
  order: 2;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(22, 36, 67, 0.94), rgba(9, 17, 33, 0.92));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(67, 215, 200, 0.45);
  background: rgba(67, 215, 200, 0.12);
  color: #c5fff8;
  font-size: 0.84rem;
  margin: 0 0 14px;
}

h1 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}

.hero-lede {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(170, 193, 255, 0.38);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(120deg, #6f84ff, #49c9ea);
  color: #04122b;
  font-weight: 700;
  border: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
}

.btn-block {
  width: 100%;
}

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

.bullet {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.bullet-title {
  font-weight: 700;
}

.bullet-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.3rem;
}

.quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 10px;
}

.quick-row:last-child {
  border-bottom: none;
}

.k {
  color: var(--muted);
  font-size: 0.88rem;
}

.v {
  font-weight: 600;
  text-align: right;
}

.note {
  margin-top: 16px;
  border: 1px solid rgba(123, 141, 255, 0.38);
  border-radius: 14px;
  background: rgba(123, 141, 255, 0.11);
  padding: 12px;
  color: #c5d3f8;
  font-size: 0.92rem;
}

.hero-wave {
  height: 16px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(67, 215, 200, 0.6), rgba(123, 141, 255, 0.48));
  opacity: 0.82;
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(17, 28, 51, 0.6), rgba(17, 28, 51, 0.18));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: 2rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 56ch;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(155deg, rgba(23, 36, 67, 0.8), rgba(13, 22, 42, 0.75));
  border-radius: 18px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.steps li {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #081427;
  background: linear-gradient(120deg, #7b8dff, #43d7c8);
}

.step-title {
  font-weight: 700;
}

.step-text {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}

.contact-copy {
  order: 2;
}

.form {
  order: 1;
}

.contact-box,
.form {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(20, 32, 60, 0.9), rgba(11, 20, 38, 0.86));
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-box {
  margin-top: 18px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.contact-row:last-child {
  border-bottom: none;
}

.field {
  margin-bottom: 14px;
}

label {
  display: block;
  font-weight: 600;
  margin: 0 0 6px;
}

.req {
  color: #93fff4;
  margin-left: 4px;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  padding: 12px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #8a9fcf;
}

input:focus,
textarea:focus {
  border-color: rgba(67, 215, 200, 0.65);
  box-shadow: 0 0 0 3px rgba(67, 215, 200, 0.14);
}

.hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  margin: 10px 0 12px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check input {
  width: auto;
  margin-top: 4px;
}

.status {
  margin: 10px 0 0;
  font-weight: 600;
}

.status.ok {
  color: #8cf4e8;
}

.status.bad {
  color: #ffb1b1;
}

.legal-page {
  background:
    radial-gradient(760px 480px at -5% -5%, rgba(67, 215, 200, 0.16), transparent 65%),
    radial-gradient(900px 560px at 102% 6%, rgba(123, 141, 255, 0.16), transparent 67%),
    linear-gradient(180deg, #060b16, #081020 40%, #050912);
}

.legal {
  padding: 38px 0 50px;
  background: linear-gradient(160deg, rgba(17, 28, 51, 0.84), rgba(12, 21, 40, 0.86));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-top: 20px;
  margin-bottom: 24px;
  padding-left: 26px;
  padding-right: 26px;
}

.legal h1 {
  margin-top: 0;
  font-size: 2.2rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.legal h2 {
  margin-top: 20px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.legal ul,
.muted {
  color: var(--muted);
}

.callout {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(67, 215, 200, 0.35);
  background: rgba(67, 215, 200, 0.1);
  color: #b7fff5;
}

.footer {
  border-top: 1px solid var(--line-soft);
  background: #040811;
  color: #9fb1da;
  padding: 20px 0 24px;
}

.footer-compact {
  padding: 15px 0 18px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  opacity: 0.6;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-card,
  .card,
  .steps li,
  .contact-box,
  .form {
    animation: rise 0.55s ease both;
  }

  .hero-card {
    animation-delay: 0.07s;
  }

  .card:nth-child(2) {
    animation-delay: 0.05s;
  }

  .card:nth-child(3) {
    animation-delay: 0.1s;
  }

  .card:nth-child(4) {
    animation-delay: 0.15s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-bullets,
  .steps,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card {
    order: initial;
  }

  .section-head {
    display: block;
  }

  .legal {
    padding-left: 20px;
    padding-right: 20px;
  }
}
