:root {
  --bg-top: #090c18;
  --bg-mid: #120f2c;
  --bg-bottom: #090811;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f8f4ed;
  --muted: rgba(248, 244, 237, 0.74);
  --gold: #f2c35c;
  --gold-strong: #ff9f3f;
  --emerald: #5ade9b;
  --danger: #ff6f6f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 164, 79, 0.22), transparent 32%),
    radial-gradient(circle at 20% 10%, rgba(91, 91, 255, 0.14), transparent 26%),
    linear-gradient(180deg, var(--bg-top), var(--bg-mid) 42%, var(--bg-bottom));
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.topnav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.topnav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 26px;
  align-items: stretch;
  padding: 30px 0 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.98;
  max-width: 11ch;
}

.hero-text {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
  margin: 18px 0 0;
}

.hero-actions,
.footer-links,
.status-strip,
.metric-grid,
.three-up,
.investor-grid,
.showcase-grid,
.timeline {
  display: grid;
  gap: 16px;
}

.hero-actions {
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #241104;
  background: linear-gradient(180deg, #ffca63, #ff9148);
  box-shadow: 0 18px 40px rgba(255, 145, 72, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-accent {
  color: var(--text);
  background: linear-gradient(180deg, rgba(113, 171, 255, 0.95), rgba(43, 103, 255, 0.88));
  box-shadow: 0 18px 40px rgba(43, 103, 255, 0.22);
}

.status-strip {
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.status-strip li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: var(--muted);
}

.glow-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card,
.feature-card,
.info-card,
.investor-card,
.timeline-step,
.cta-banner,
.accordion-list details {
  padding: 22px;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.metric {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
  color: var(--gold);
}

.metric-grid small,
.feature-card p,
.info-card p,
.investor-card p,
.timeline-step p,
.detail-body,
.cta-banner p,
.footer p {
  color: var(--muted);
  line-height: 1.6;
}

.showcase-grid,
.three-up,
.investor-grid,
.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-section {
  padding: 34px 0 16px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.timeline-step,
.info-card,
.investor-card,
.feature-card {
  min-height: 100%;
}

.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 159, 63, 0.14);
  color: var(--gold);
  font-weight: 800;
}

.cta-banner {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-banner {
  margin-bottom: 18px;
}

.request-form-card {
  margin-top: 18px;
  padding: 22px;
}

.request-form__intro {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.request-form__intro h3 {
  margin: 0;
  font-size: 1.6rem;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.request-form__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.request-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 800;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(7, 10, 22, 0.76);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(242, 195, 92, 0.45);
  outline-offset: 1px;
  border-color: rgba(242, 195, 92, 0.58);
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.request-form__footer {
  display: grid;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.request-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  color: var(--muted);
  font-weight: 700;
}

.form-status[data-state="pending"] {
  color: var(--gold);
}

.form-status[data-state="success"] {
  color: var(--emerald);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.document-intro {
  margin-bottom: 16px;
  padding: 20px 22px;
}

.accordion-list details summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
}

.accordion-list details summary::-webkit-details-marker { display: none; }
.accordion-list details summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.2rem;
}
.accordion-list details[open] summary::after { content: "−"; }
.detail-body { margin-top: 16px; }
.detail-body h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.detail-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.detail-body p + p,
.detail-body p + h3,
.detail-body ul + h3,
.detail-body ul + p {
  margin-top: 14px;
}
.detail-body ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.detail-body li + li { margin-top: 8px; }
.document-meta {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.document-contact a {
  color: var(--gold);
}

.footer {
  margin-top: 34px;
  padding: 22px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
}

.footer-links {
  grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
}

.footer-meta {
  color: rgba(248, 244, 237, 0.52);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 28px));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: var(--radius-lg);
  background: rgba(9, 12, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__copy {
  display: grid;
  gap: 8px;
}

.cookie-banner__copy strong {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 72ch;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__actions .button {
  min-width: 140px;
}

@media (max-width: 960px) {
  .hero,
  .showcase-grid,
  .three-up,
  .investor-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .request-form__grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    width: min(100% - 20px, 100%);
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner__actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 12px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-card,
  .feature-card,
  .info-card,
  .investor-card,
  .timeline-step,
  .cta-banner,
  .accordion-list details,
  .request-form-card {
    padding: 18px;
  }

  .hero h1 {
    max-width: none;
  }

  .status-strip,
  .hero-actions,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions .button {
    width: 100%;
  }
}
