:root {
  --bg: #09040f;
  --bg-soft: #13081f;
  --panel: rgba(31, 13, 45, .78);
  --panel-solid: #1b0c2a;
  --gold: #f4c45f;
  --gold-strong: #ffd978;
  --violet: #865dff;
  --cyan: #2ef0ff;
  --ruby: #ff3d92;
  --green: #58ff9b;
  --text: #fff7e8;
  --muted: #c7b8d7;
  --line: rgba(244, 196, 95, .28);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 17% 12%, rgba(134, 93, 255, .28), transparent 28rem),
    radial-gradient(circle at 84% 8%, rgba(244, 196, 95, .18), transparent 24rem),
    linear-gradient(180deg, #09040f 0%, #12071e 48%, #07040b 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 70%);
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(244, 196, 95, .18);
  background: rgba(9, 4, 15, .82);
  backdrop-filter: blur(16px);
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  border-radius: var(--radius);
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-nav a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(244, 196, 95, .12);
  box-shadow: inset 0 0 0 1px rgba(244, 196, 95, .18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
  border-radius: 999px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 680px;
  font-size: 18px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f8d779, #b66b1f);
  color: #201008;
  border-color: rgba(255, 231, 145, .8);
  box-shadow: 0 12px 34px rgba(244, 196, 95, .22);
}

.btn-secondary {
  background: rgba(134, 93, 255, .14);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 240, 255, .72);
  box-shadow: 0 16px 38px rgba(46, 240, 255, .12);
}

.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(244, 196, 95, .24);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,4,15,.5), transparent 38%, rgba(46,240,255,.06));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  padding: 18px;
  background: rgba(20, 8, 31, .88);
}

.stat strong {
  display: block;
  color: var(--gold-strong);
  font-size: 24px;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 64px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 32px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 196, 95, .22);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.info-card,
.note-card,
.faq-item,
.contact-card {
  border: 1px solid rgba(244, 196, 95, .2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(40, 15, 58, .82), rgba(17, 7, 28, .92));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .26);
}

.info-card {
  min-height: 235px;
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 240, 255, .55);
  background: linear-gradient(180deg, rgba(54, 22, 75, .9), rgba(18, 8, 30, .95));
}

.chip-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 196, 95, .42);
  border-radius: 50%;
  color: #190824;
  background: radial-gradient(circle, #fff0a6 0, #f0b94e 52%, #8f4b17 100%);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 20px 20px 20px 76px;
  border: 1px solid rgba(244, 196, 95, .18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 240, 255, .14);
  color: var(--cyan);
  font-weight: 900;
}

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

.note-card,
.contact-card {
  padding: 24px;
}

.colour-row {
  display: flex;
  gap: 10px;
  margin: 18px 0 0;
}

.swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.38);
  box-shadow: 0 0 22px rgba(255,255,255,.14);
}

.swatch.violet { background: #8b5cff; }
.swatch.gold { background: #f4c45f; }
.swatch.cyan { background: #2ef0ff; }
.swatch.ruby { background: #ff3d92; }

.page-hero {
  padding: 62px 0 28px;
}

.page-hero .lead {
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--gold);
}

.prose {
  max-width: 860px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.prose li + li {
  margin-top: 9px;
}

.banner {
  margin: 34px 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 196, 95, .22);
}

.banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  width: 100%;
  padding: 18px 48px 18px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
  color: var(--gold);
  font-size: 24px;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  background: rgba(244, 196, 95, .1);
  border-radius: var(--radius);
}

.site-footer {
  margin-top: 54px;
  border-top: 1px solid rgba(244, 196, 95, .18);
  background: #07030c;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) 1.4fr;
  gap: 32px;
  padding: 42px 0;
}

.footer-logo {
  width: 210px;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
}

.footer-links a {
  padding: 7px 0;
}

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

.fine-print {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 28px;
  color: #a99ab9;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .card-grid,
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

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

  .brand img {
    width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 5, 22, .98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: auto;
  }

  .lead {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

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

  .card-grid,
  .note-grid,
  .stats-strip,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 46px 0;
  }
}
