:root {
  --ink: #fff8e8;
  --muted: #d8bfa2;
  --charcoal: #130806;
  --panel: #20100b;
  --panel-2: #2c120a;
  --orange: #ff7518;
  --amber: #ffc341;
  --lime: #b8ff6a;
  --cyan: #25f7ff;
  --red: #b5221d;
  --line: rgba(255, 195, 65, .24);
  --glass: rgba(255, 255, 255, .08);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  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 18% 8%, rgba(255, 117, 24, .32), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(37, 247, 255, .12), transparent 22rem),
    linear-gradient(180deg, #160704 0%, #090504 45%, #130806 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 195, 65, .18);
  background: rgba(12, 5, 4, .82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(255, 117, 24, .42);
}

.brand-word {
  display: grid;
  line-height: 1;
}

.brand-word strong {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand-word span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .78rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  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);
}

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

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  color: #f7ddbd;
  font-size: .92rem;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: rgba(255, 195, 65, .42);
  background: rgba(255, 117, 24, .16);
  color: #fff;
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 195, 65, .52);
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #180806;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(255, 117, 24, .22);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.button.secondary {
  background: rgba(255, 255, 255, .07);
  color: var(--ink);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: none;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 18px 52px rgba(255, 117, 24, .32);
}

main {
  min-height: 70vh;
}

.hero {
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 42%),
    linear-gradient(180deg, rgba(52, 22, 9, .94), rgba(15, 7, 5, .96));
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "66";
  position: absolute;
  right: -42px;
  bottom: -94px;
  color: rgba(255, 117, 24, .08);
  font-size: 20rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(37, 247, 255, .28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d9feff;
  background: rgba(37, 247, 255, .08);
  font-size: .86rem;
  font-weight: 700;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

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

h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .92;
  letter-spacing: 0;
}

.gradient-text {
  background: linear-gradient(90deg, #fff8e8, #ffc341 45%, #ff7518);
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  max-width: 680px;
  color: #efd7bd;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quick-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.quick-strip div {
  min-height: 110px;
  border: 1px solid rgba(255, 195, 65, .24);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .06);
}

.quick-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 1.2rem;
}

.quick-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid rgba(255, 195, 65, .2);
  border-radius: 8px;
  background: #190806;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  width: min(280px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(9, 5, 4, .72);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .38);
}

.floating-chip strong {
  color: var(--lime);
}

.floating-chip span {
  color: #f8ddbe;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 86px auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-header p,
.page-intro p,
.legal-page p,
.card p,
.feature-copy p {
  color: #dfc5a8;
  line-height: 1.7;
}

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

.rail-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
    var(--panel);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.rail-card::before {
  content: attr(data-num);
  position: absolute;
  right: 14px;
  top: 8px;
  color: rgba(255, 195, 65, .12);
  font-size: 5.4rem;
  font-weight: 900;
}

.rail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 255, 106, .48);
  background:
    linear-gradient(180deg, rgba(184, 255, 106, .09), rgba(255, 255, 255, .03)),
    var(--panel);
}

.rail-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.rail-card p {
  position: relative;
  color: #ddc3a5;
  line-height: 1.62;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: center;
}

.feature-split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
}

.feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

.feature-copy {
  padding: clamp(18px, 3vw, 38px);
}

.signal-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signal {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 195, 65, .18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .05);
}

.signal b {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 22%, #fff, #ffb53f 36%, #ff5a12 70%);
  color: #351006;
  font-size: 1.4rem;
  box-shadow: 0 0 28px rgba(255, 117, 24, .34);
}

.signal span {
  color: #e6ceb2;
  line-height: 1.55;
}

.ticker-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 195, 65, .22);
  border-bottom: 1px solid rgba(255, 195, 65, .22);
  background: #0e0504;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: drift 28s linear infinite;
}

.ticker-track span {
  padding: 20px 30px;
  color: #ffd98e;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .56fr);
  gap: 26px;
  align-items: center;
}

.page-intro {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 117, 24, .2), transparent 45%),
    rgba(255, 255, 255, .05);
}

.page-intro h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.page-art {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-art img {
  aspect-ratio: 1 / 1;
  width: 100%;
  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,
.legal-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, .055);
}

.card h2,
.card h3 {
  margin-bottom: 12px;
}

.card ul,
.legal-page ul {
  margin: 0;
  padding-left: 20px;
  color: #dfc5a8;
  line-height: 1.75;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 46px auto 86px;
  padding: clamp(26px, 4vw, 44px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  border: 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  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: #210b05;
  background: var(--amber);
}

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

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #dfc5a8;
  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: #f7dfc4;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 195, 65, .24);
  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(37, 247, 255, .12);
}

.notice {
  border-left: 4px solid var(--lime);
  padding: 16px 18px;
  background: rgba(184, 255, 106, .08);
  color: #e7ffd3;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid rgba(255, 195, 65, .2);
  background: #0c0504;
}

.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: 170px;
  margin-bottom: 18px;
}

.footer-shell p,
.footer-shell li {
  color: #d8bfa2;
  line-height: 1.65;
}

.footer-shell ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-shell a {
  color: #f4d7b3;
  transition: color .2s ease;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 195, 65, .13);
  color: #b99c7c;
  font-size: .9rem;
}

.not-found {
  width: min(900px, calc(100% - 32px));
  margin: 70px auto 90px;
  text-align: center;
}

.not-found .code {
  color: rgba(255, 195, 65, .16);
  font-size: clamp(8rem, 24vw, 18rem);
  font-weight: 900;
  line-height: .8;
}

@media (max-width: 1040px) {
  .nav-cta {
    display: none;
  }

  .hero,
  .page-hero,
  .feature-split,
  .feature-split.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .rail-grid,
  .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(12, 5, 4, .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;
  }

  .hero-copy {
    padding: 26px 20px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .quick-strip,
  .section-header,
  .rail-grid,
  .content-grid,
  .content-grid.two,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    min-height: auto;
  }

  .section {
    margin: 60px auto;
  }

  .feature-copy {
    padding: 20px 0 0;
  }

  .feature-split.reverse .feature-copy {
    order: 2;
  }

  .feature-split.reverse .feature-media {
    order: 1;
  }

  .signal {
    grid-template-columns: 52px 1fr;
  }

  .signal b {
    width: 52px;
    height: 52px;
  }
}
