:root {
  --bg: #07111c;
  --bg-2: #0b1a28;
  --panel: #102536;
  --panel-2: #163044;
  --line: rgba(22, 200, 237, 0.22);
  --cyan: #16c8ed;
  --cyan-dim: #0a8fb3;
  --gold: #f5c542;
  --pink: #ff4d8d;
  --text: #eaf6fb;
  --muted: #93b0c3;
  --soft: #c5d7e4;
  --danger: #ff6b7a;
  --fill: #1a3a18;
  --fill-text: #d4f5c8;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --header: 72px;
  --font: "Figtree", "Segoe UI", system-ui, sans-serif;
  --display: "Bricolage Grotesque", "Trebuchet MS", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(22, 200, 237, 0.16), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(245, 197, 66, 0.1), transparent 50%),
    var(--bg);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #7fe8ff;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: #1a1400;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 28, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner,
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  color: var(--soft);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--bg);
  background: var(--cyan);
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.12;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.lede {
  font-size: 1.15rem;
  color: var(--soft);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(180deg, #2ad6f5, var(--cyan-dim));
  color: #04212b;
}

.btn-primary:hover {
  color: #02151c;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(16, 37, 54, 0.6);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--cyan);
}

button.btn {
  cursor: pointer;
  font: inherit;
  border-width: 1px;
}

.cabinet {
  position: relative;
  background: linear-gradient(180deg, #1a4d6e, #0d2a40 38%, #132433);
  border: 3px solid #2d6d8c;
  border-radius: 28px 28px 18px 18px;
  min-height: 360px;
  box-shadow: var(--shadow), inset 0 0 0 6px rgba(22, 200, 237, 0.15);
  overflow: hidden;
}

.cabinet-top {
  height: 42px;
  background: linear-gradient(180deg, #f5c542, #c79212);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a1d00;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.cabinet-glass {
  margin: 16px;
  height: 220px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 70%, #ff4d8d 0 14px, transparent 15px),
    radial-gradient(circle at 58% 78%, #f5c542 0 16px, transparent 17px),
    radial-gradient(circle at 78% 64%, #16c8ed 0 12px, transparent 13px),
    linear-gradient(180deg, rgba(232, 247, 255, 0.18), rgba(8, 24, 36, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.claw {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 72px;
  height: 92px;
  transform: translateX(-50%);
  animation: bob 2.8s ease-in-out infinite;
}

.claw b {
  display: block;
  width: 6px;
  height: 28px;
  margin: 0 auto;
  background: var(--gold);
  border-radius: 4px;
}

.claw i {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  background: var(--cyan);
  border-radius: 50%;
}

.claw em {
  display: block;
  height: 42px;
  margin-top: -2px;
  background:
    linear-gradient(#eaf6fb, #eaf6fb) center/6px 100% no-repeat,
    linear-gradient(115deg, transparent 42%, #eaf6fb 42% 50%, transparent 50%) left/50% 100% no-repeat,
    linear-gradient(-115deg, transparent 42%, #eaf6fb 42% 50%, transparent 50%) right/50% 100% no-repeat;
}

.cabinet-panel {
  display: flex;
  justify-content: space-between;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 56px 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 28px;
}

.muted {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.step,
.faq details,
.legal,
.placeholder-note {
  background: linear-gradient(180deg, rgba(22, 48, 68, 0.9), rgba(12, 28, 42, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.step {
  padding: 22px;
}

.card h3,
.step h3 {
  font-size: 1.15rem;
}

.num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(22, 200, 237, 0.14);
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 14px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: #06101a;
  padding: 36px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cyan);
}

.tiny {
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-page {
  padding: 36px 0 64px;
}

.legal {
  padding: 28px 28px 40px;
}

.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.legal h2 {
  margin-top: 32px;
  font-size: 1.25rem;
}

.legal p,
.legal li {
  color: var(--soft);
}

.legal ol,
.legal ul {
  padding-left: 1.2rem;
}

.placeholder {
  display: inline-block;
  background: rgba(245, 197, 66, 0.14);
  color: var(--gold);
  border: 1px dashed rgba(245, 197, 66, 0.55);
  border-radius: 6px;
  padding: 0 6px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.92em;
}

.placeholder-note {
  padding: 14px 16px;
  margin: 18px 0 8px;
  color: var(--gold);
  font-size: 0.95rem;
}

.faq details {
  padding: 4px 18px 4px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
  padding: 14px 0;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 16px;
  color: var(--soft);
}

.faq details ul {
  color: var(--soft);
  margin: 0 0 16px;
}

.notice {
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(22, 200, 237, 0.08);
  margin: 18px 0;
}

.notice.gold {
  background: rgba(245, 197, 66, 0.1);
  border-color: rgba(245, 197, 66, 0.4);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field span {
  font-weight: 700;
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0b1a28;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 16px 0 8px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.data-table th {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table td {
  color: var(--soft);
}

.table-wrap {
  overflow-x: auto;
}

@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-42%) translateY(10px);
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    background: rgba(6, 16, 26, 0.97);
    flex-direction: column;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }

  .site-nav.is-open {
    transform: none;
  }

  .site-nav a {
    font-size: 1.15rem;
    padding: 12px 14px;
  }

  .hero {
    padding-top: 36px;
  }

  .legal {
    padding: 20px;
  }
}
