:root {
  --bg: #080306;
  --felt: #210715;
  --felt-2: #3a0d22;
  --panel: rgba(44, 9, 27, .76);
  --panel-solid: #250817;
  --gold: #ffd36a;
  --gold-2: #f6a71a;
  --rose: #ff4f8b;
  --green: #52f06b;
  --cyan: #3df5ff;
  --ink: #fff6df;
  --soft: #e9cda6;
  --line: rgba(255, 211, 106, .24);
  --shadow: 0 28px 90px rgba(0, 0, 0, .48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 22% 4%, rgba(255, 79, 139, .22), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(255, 211, 106, .16), transparent 23rem),
    linear-gradient(180deg, #13040c 0%, #080306 46%, #180610 100%);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 211, 106, .18);
  background: rgba(8, 3, 6, .86);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1200px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 32px rgba(246, 167, 26, .35);
}
.brand-word { display: grid; line-height: 1; min-width: 0; }
.brand-word strong { font-size: 1.06rem; }
.brand-word span { margin-top: 6px; color: var(--soft); font-size: .78rem; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 13px;
  color: #f0d8b1;
  font-size: .91rem;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  border-color: rgba(255, 211, 106, .42);
  background: rgba(255, 79, 139, .13);
}
.site-nav a:hover { transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
body.menu-open .nav-toggle span { opacity: 0; }
body.menu-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 211, 106, .56);
  border-radius: 999px;
  padding: 12px 18px;
  color: #170506;
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 55%, #ff6a30);
  font-weight: 900;
  box-shadow: 0 17px 48px rgba(246, 167, 26, .22);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: none;
}
.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 20px 56px rgba(246, 167, 26, .34);
}

main { min-height: 70vh; }
.hero {
  width: min(1260px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}
.hero-copy,
.hero-stage {
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-copy {
  position: relative;
  padding: clamp(28px, 4vw, 58px);
  background:
    linear-gradient(145deg, rgba(255, 211, 106, .11), transparent 42%),
    radial-gradient(circle at 18% 88%, rgba(82, 240, 107, .12), transparent 19rem),
    rgba(28, 6, 18, .92);
}
.hero-copy::after {
  content: "A K Q";
  position: absolute;
  right: -36px;
  bottom: -48px;
  color: rgba(255, 211, 106, .08);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 950;
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(61, 245, 255, .28);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(61, 245, 255, .08);
  color: #dbfeff;
  font-size: .84rem;
  font-weight: 800;
}
.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: .92;
  letter-spacing: 0;
}
.gold-text {
  background: linear-gradient(90deg, #fff7d8, var(--gold), #ff8c2a, var(--rose));
  -webkit-background-clip: text;
  color: transparent;
}
.lead {
  max-width: 710px;
  color: #efd4ae;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.deal-lane {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}
.deal-card {
  min-height: 128px;
  border: 1px solid rgba(255, 211, 106, .22);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
}
.deal-card b { display: block; margin-bottom: 9px; color: var(--gold); font-size: 1.16rem; }
.deal-card span { color: #dfc5a3; line-height: 1.48; }
.hero-stage { position: relative; background: #12040b; }
.hero-stage img { width: 100%; height: 100%; object-fit: cover; }
.stage-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(8, 3, 6, .7);
  backdrop-filter: blur(16px);
}
.stage-note b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #220711;
}
.stage-note span { color: #f4d6ab; line-height: 1.5; }

.table-strip {
  margin-top: 30px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 211, 106, .22);
  border-bottom: 1px solid rgba(255, 211, 106, .22);
  background: #0b0307;
}
.table-track {
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
}
.table-track span {
  padding: 20px 30px;
  white-space: nowrap;
  color: #ffe3a0;
  font-weight: 950;
  text-transform: uppercase;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 84px auto;
}
.section-header {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.kicker {
  display: block;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}
.section-header p,
.card p,
.feature-copy p,
.legal-page p,
.page-intro p { color: #dfc4a0; line-height: 1.72; }

.orbit-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}
.orbit {
  min-height: 510px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(circle at center, rgba(255, 211, 106, .14), transparent 16rem),
    var(--panel);
  position: relative;
  overflow: hidden;
}
.orbit::before {
  content: "";
  position: absolute;
  inset: 58px;
  border: 2px dashed rgba(255, 211, 106, .22);
  border-radius: 50%;
}
.orbit-center {
  position: absolute;
  inset: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  background: radial-gradient(circle, #ffe9a8, #f0a318 62%, #8b163d);
  color: #180406;
  font-weight: 950;
  box-shadow: 0 0 60px rgba(246, 167, 26, .34);
}
.orbit-point {
  position: absolute;
  width: 178px;
  border: 1px solid rgba(255, 211, 106, .28);
  border-radius: 8px;
  padding: 14px;
  background: rgba(8, 3, 6, .64);
}
.orbit-point b { color: var(--gold); }
.orbit-point span { display: block; margin-top: 6px; color: #dec29d; line-height: 1.45; }
.p1 { left: 24px; top: 28px; }
.p2 { right: 24px; top: 78px; }
.p3 { left: 34px; bottom: 72px; }
.p4 { right: 38px; bottom: 30px; }
.side-stack { display: grid; gap: 14px; }
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .055);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 240, 107, .44);
  background: rgba(255, 255, 255, .08);
}
.card h3 { margin-bottom: 10px; color: #fff9df; }

.feature-split {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}
.feature-split.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); }
.feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}
.feature-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-copy { padding: clamp(16px, 3vw, 36px); }
.checks { display: grid; gap: 12px; margin-top: 24px; }
.check {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 211, 106, .2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .05);
}
.check b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #fff4cf;
  color: #181013;
  font-size: 1.3rem;
  box-shadow: inset 0 -8px 18px rgba(139, 22, 61, .16);
}
.check span { color: #dfc4a0; line-height: 1.55; }

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .56fr);
  gap: 24px;
  align-items: center;
}
.page-intro {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(140deg, rgba(255, 211, 106, .12), transparent 42%),
    rgba(255, 255, 255, .055);
}
.page-intro h1 { font-size: clamp(2.7rem, 6vw, 5.55rem); }
.page-art {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.page-art img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.content-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 58px auto 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.content-grid.two { grid-template-columns: repeat(2, 1fr); }
.card ul,
.legal-page ul {
  margin: 0;
  padding-left: 20px;
  color: #dfc4a0;
  line-height: 1.75;
}
.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 46px auto 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, .055);
}
.legal-page h2 { margin-top: 34px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.notice {
  border-left: 4px solid var(--green);
  padding: 16px 18px;
  color: #eaffdd;
  background: rgba(82, 240, 107, .08);
  line-height: 1.65;
}

.faq { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .055);
}
.faq-button {
  width: 100%;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-button::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #21070f;
  background: var(--gold);
}
.faq-item.open .faq-button::after { content: "-"; }
.faq-answer { display: none; padding: 0 20px 20px; color: #dfc4a0; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 18px;
}
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #f7ddb6; font-weight: 800; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 211, 106, .25);
  border-radius: 8px;
  padding: 14px 15px;
  background: rgba(0, 0, 0, .28);
  color: var(--ink);
  font: inherit;
  outline: none;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(61, 245, 255, .12);
}

.site-footer {
  border-top: 1px solid rgba(255, 211, 106, .2);
  background: #080306;
}
.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}
.footer-logo { width: 210px; margin-bottom: 18px; }
.footer-shell p,
.footer-shell li { color: #d9bd95; line-height: 1.65; }
.footer-shell ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-shell a { color: #f2d5ac; transition: color .2s ease; }
.footer-shell a:hover { color: var(--green); }
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 211, 106, .14);
  color: #b99a74;
  font-size: .9rem;
}
.not-found {
  width: min(900px, calc(100% - 32px));
  margin: 70px auto 90px;
  text-align: center;
}
.not-found .code {
  color: rgba(255, 211, 106, .16);
  font-size: clamp(8rem, 24vw, 18rem);
  font-weight: 950;
  line-height: .8;
}

@media (max-width: 1060px) {
  .nav-cta { display: none; }
  .hero,
  .page-hero,
  .feature-split,
  .feature-split.reverse,
  .orbit-grid,
  .contact-panel { grid-template-columns: 1fr; }
  .hero-copy,
  .hero-stage { min-height: auto; }
  .hero-stage img { aspect-ratio: 16 / 10; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-shell { min-height: 66px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 3, 6, .98);
  }
  body.menu-open .site-nav { display: flex; }
  .site-nav a { border-radius: 8px; padding: 14px 16px; }
  .brand-word span { display: none; }
  .hero { margin-top: 16px; grid-template-columns: 1fr; }
  .hero-copy { padding: 26px 20px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4.4rem); }
  .deal-lane,
  .section-header,
  .content-grid,
  .content-grid.two,
  .footer-shell { grid-template-columns: 1fr; }
  .deal-card { min-height: auto; }
  .section { margin: 60px auto; }
  .orbit { min-height: auto; display: grid; gap: 12px; }
  .orbit::before,
  .orbit-center { display: none; }
  .orbit-point { position: static; width: auto; }
  .feature-copy { padding: 20px 0 0; }
  .feature-split.reverse .feature-copy { order: 2; }
  .feature-split.reverse .feature-media { order: 1; }
  .check { grid-template-columns: 52px 1fr; }
  .check b { width: 52px; height: 52px; }
  .stage-note { grid-template-columns: 1fr; }
  .stage-note b { width: 42px; height: 42px; }
}
