/* =========================
   ROOT VARIABLES
========================= */

:root {
    --navy: #061d33;
    --navy2: #031526;
    --gold: #c99a34;
    --gold2: #f0c75d;
    --ink: #0b1b2c;
    --muted: #5b6773;
    --line: #e6e2d8;
    --paper: #f8f6f1;
    --white: #fff;
    --shadow: 0 24px 70px rgba(0, 0, 0, .22);
    --radius: 24px;
    --max: 1180px;
}

/* =========================
   GLOBAL
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.wrap {
    max-width: var(--max);
    margin: auto;
    padding: 0 24px;
}

/* =========================
   NAVIGATION
========================= */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 21, 38, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    height: 46px;
    width: auto;
}

.menu {
    display: flex;
    gap: 22px;
    align-items: center;
}

.menu a {
    font-size: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, .82);
}

.menu a:hover {
    color: var(--gold2);
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #07192b;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 10px 25px rgba(201, 154, 52, .23);
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow: none;
}

.btn.light {
    color: var(--ink);
    border-color: var(--line);
}

/* =========================
   HERO
========================= */

.hero {
    background:
        radial-gradient(circle at 70% 10%, rgba(201, 154, 52, .18), transparent 28%),
        linear-gradient(135deg, var(--navy2), var(--navy));
    color: #fff;
    padding: 98px 0 76px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.eyebrow,
.kicker {
    color: var(--gold2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .17em;
    font-size: 12px;
}

.h1 {
    font-family: Georgia, serif;
    font-size: clamp(46px, 7vw, 82px);
    line-height: .96;
    margin: 16px 0 22px;
    letter-spacing: -.04em;
}

.h2 {
    font-family: Georgia, serif;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    margin: 10px 0 16px;
    letter-spacing: -.025em;
}

.lead {
    font-size: 20px;
    color: rgba(255, 255, 255, .78);
    max-width: 720px;
}

.gold {
    color: var(--gold2);
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.logo-panel {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.logo-panel img {
    margin: auto;
    max-height: 420px;
    object-fit: contain;
}

/* =========================
   STATS
========================= */

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.stat {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    border-radius: 18px;
    padding: 18px;
    color: rgba(255, 255, 255, .74);
}

.stat strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 86px 0 120px;
}


.section.deep {
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    color: #fff;
}

.section.white {
    padding-bottom: 120px;
    background: #fff;
}

.section-title {
    max-width: 780px;
    margin-bottom: 36px;
}

.section-title.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title p {
    font-size: 18px;
    color: var(--muted);
}

.deep .section-title p,
.deep p {
    color: rgba(255, 255, 255, .73);
}

/* =========================
   GRIDS
========================= */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

/* =========================
   CARDS
========================= */

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 12px 34px rgba(6, 29, 51, .07);
}

.deep .card {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
}

.card h3 {
    font-size: 22px;
    line-height: 1.15;
    margin: 10px 0;
}

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

.deep .card p {
    color: rgba(255, 255, 255, .72);
}

/* =========================
   LEGAL PAGES
========================= */

.legal {
    background: #fff;
}

.legal .wrap {
    max-width: 900px;
}

.legal h1 {
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 1.05;
}

.legal h2 {
    margin-top: 34px;
}

/* =========================
   FORMS
========================= */

.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.form label {
    display: block;
    font-weight: 800;
    margin-top: 14px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-top: 6px;
    font: inherit;
}

.form button {
    margin-top: 18px;
    border: 0;
    cursor: pointer;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #03111f;
    color: rgba(255, 255, 255, .72);
    padding: 44px 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
}

.footer a {
    display: block;
    text-decoration: none;
    margin: 7px 0;
    color: rgba(255, 255, 255, .72);
}

.footer a:hover {
    color: var(--gold2);
}

/* =========================
   COOKIE NOTICE
========================= */

.cookie {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 100;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 18px;
    display: none;
    max-width: 760px;
    margin: auto;
}

.cookie.show {
    display: block;
}

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

.cookie button {
    border: 0;
    cursor: pointer;
}

.cookie .decline {
    background: #eef0f2;
    color: var(--ink);
    box-shadow: none;
}

/* =========================
   EARLY ACCESS PAGE
========================= */

.interest-panel {
    background: linear-gradient(135deg, #071b33 0%, #0b2a4f 100%);
    color: #fff;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 24px 70px rgba(7, 27, 51, 0.18);
    position: relative;
    overflow: hidden;
}

.interest-panel::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(196, 154, 69, 0.35);
    right: -80px;
    bottom: -90px;
    transform: rotate(25deg);
}

.interest-panel h3 {
    color: #fff;
    margin-bottom: 16px;
}

.interest-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.interest-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    display: grid;
    gap: 14px;
}

.interest-list li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
}

.interest-list li strong {
    color: #c49a45;
}

.interest-note {
    border-left: 3px solid #c49a45;
    padding-left: 18px;
    margin-top: 24px;
    font-size: 0.98rem;
}

.register-copy {
    max-width: 640px;
}

.register-copy .highlight-box {
    margin-top: 26px;
    padding: 24px;
    border-radius: 20px;
    background: #f7f4ed;
    border: 1px solid rgba(11, 35, 65, 0.1);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px) {

    .menu {
        display: none;
    }

    .hero-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .split,
    .seal-block,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 72px 0 58px;
    }

    .section {
        padding: 62px 0;
    }

    .h1 {
        font-size: 46px;
    }

    .nav-inner {
        min-height: 68px;
    }

    .brand img {
        height: 38px;
    }

    .cta img {
        max-width: 300px;
    }
}

@media(max-width:520px) {

    .wrap {
        padding: 0 18px;
    }

    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .dash-grid {
        grid-template-columns: 1fr;
    }

    .h1 {
        font-size: 40px;
    }

    .h2 {
        font-size: 32px;
    }
}

.journey {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 32px;
}

.journey-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212,175,55,0.14);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.dash-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px;
}

.dash-box small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.dash-box strong {
  font-size: 1.15rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.step-no {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #08111f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.step-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  margin: 0;
}

@media (max-width: 900px) {

  .journey-top,
  .step {
    grid-template-columns: 1fr;
    display: grid;
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }

  .step-label {
    justify-self: start;
  }
}



.form-wrap {
  max-width: 860px;
}

.lead-form {
  max-width: 760px;
  margin-top: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.field label {
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.consent {
  margin: 8px 0 22px;
}

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

.ls-form-message {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.ls-form-message.is-visible {
  display: block;
}

.ls-form-message.is-success {
  background: rgba(40, 167, 69, .12);
  color: #1f7a36;
}

.ls-form-message.is-error {
  background: rgba(220, 53, 69, .12);
  color: #b42318;
}

@media(max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.site-credit {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.site-credit a {
  display: inline;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.site-credit a:hover {
  color: var(--sky);
}