:root {
  --plum-900: #311759;
  --plum-800: #3f206b;
  --plum-700: #4d3277;
  --plum-500: #6d5494;
  --plum-300: #907caf;
  --plum-200: #bdafd2;
  --gold-700: #837718;
  --gold-600: #afa33f;
  --gold-400: #dace72;
  --cream: #fffad1;
  --blush: #ffd2d1;
  --green-800: #136718;
  --green-700: #318a37;
  --red-600: #af423f;
  --ink: #1b102d;
  --text: rgba(255, 250, 209, 0.94);
  --text-dark: rgba(27, 16, 45, 0.92);
  --muted: rgba(255, 250, 209, 0.74);
  --muted-dark: rgba(27, 16, 45, 0.72);
  --border-light: rgba(255, 250, 209, 0.12);
  --border-dark: rgba(49, 23, 89, 0.12);
  --shadow: 0 18px 46px rgba(17, 9, 29, 0.24);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Bodoni Moda", ui-serif, Georgia, "Times New Roman", serif;
  --font-data: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(180deg, #12091d 0%, #1b102d 45%, #140b21 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.display {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 9, 29, 0.72);
  border-bottom-color: rgba(255, 250, 209, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.32));
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.mobile-nav__links a:not(.btn) {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--gold-400);
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.14);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-light);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 209, 0.9);
  position: relative;
  display: block;
  content: "";
}

.menu-toggle span::before { top: -6px; position: absolute; left: 0; }
.menu-toggle span::after { top: 6px; position: absolute; left: 0; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 6, 17, 0.64);
  backdrop-filter: blur(10px);
  padding: 14px;
}

.mobile-nav__panel {
  margin-left: auto;
  width: min(420px, 100%);
  border-radius: 22px;
  background:
    radial-gradient(780px circle at 10% 0%, rgba(218, 206, 114, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(49, 23, 89, 0.96), rgba(27, 16, 45, 0.98));
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  padding: 16px;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 250, 209, 0.08);
}

.mobile-nav__top img {
  height: 34px;
  width: auto;
}

.mobile-nav__close {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav__links {
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.mobile-nav__links a:not(.btn) {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 250, 209, 0.08);
}

.mobile-nav__cta {
  margin-top: 8px;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px circle at 10% -10%, rgba(218, 206, 114, 0.10), transparent 52%),
    linear-gradient(180deg, rgba(18, 9, 29, 0.24) 0%, rgba(18, 9, 29, 0.44) 38%, rgba(18, 9, 29, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 9, 29, 0.90) 0%, rgba(18, 9, 29, 0.58) 42%, rgba(18, 9, 29, 0.24) 100%),
    url("../images/bullzeye/Banner_clean.jpeg");
  background-size: auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transform-origin: center center;
}

main::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(to right, rgba(218, 206, 114, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(189, 175, 210, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.90) 54%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: visible;
  isolation: isolate;
  z-index: 0;
}

.hero::after {
  content: none;
}

.hero-media {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  gap: 30px;
  align-items: center;
  padding: 104px 0 96px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 209, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 250, 209, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dark {
  border-color: rgba(49, 23, 89, 0.10);
  background: rgba(49, 23, 89, 0.06);
  color: rgba(49, 23, 89, 0.72);
}

.hero-copy .display {
  margin: 18px 0 0;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.92;
  font-weight: 700;
}

.lead {
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 250, 209, 0.80);
  font-size: 14px;
  line-height: 1.6;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(218, 206, 114, 0.12);
  position: absolute;
  left: 0;
  top: 0.7em;
}

.hero-panel {
  justify-self: center;
  width: min(520px, 100%);
}

.hero-panel__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background:
    radial-gradient(720px circle at 18% 0%, rgba(218, 206, 114, 0.14), transparent 50%),
    radial-gradient(900px circle at 100% 10%, rgba(109, 84, 148, 0.26), transparent 58%),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel__media {
  padding: 20px 20px 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-panel__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 250, 209, 0.10);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transform: scale(1);
  transform-origin: center center;
  transition: transform 320ms ease, filter 320ms ease;
  will-change: transform;
}

.hero-panel__card:hover .hero-panel__media img,
.hero-panel__card:focus-within .hero-panel__media img {
  transform: scale(1.065);
}

.hero-panel__mark {
  position: absolute;
  top: 26px;
  right: 26px;
  width: clamp(92px, 18vw, 132px);
}

.hero-panel__mark img {
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-panel__card:hover .hero-panel__mark img,
.hero-panel__card:focus-within .hero-panel__mark img {
  transform: translateY(-2px);
}

.hero-panel__body {
  padding: 18px 20px 22px;
}

.label {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 250, 209, 0.68);
}

.hero-panel__body p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 250, 209, 0.82);
}

.hero-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 250, 209, 0.52);
}

main > section:not(.hero) {
  position: relative;
  z-index: 4;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background:
    radial-gradient(900px circle at 0% 0%, rgba(109, 84, 148, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 250, 209, 0.98), rgba(255, 255, 255, 0.96));
}

.intro-band {
  position: relative;
  z-index: 4;
  margin-top: -34svh;
  min-height: 134svh;
  padding-top: calc(34svh + 72px);
  padding-bottom: 88px;
  background:
    radial-gradient(760px circle at 20% 0%, rgba(218, 206, 114, 0.16), transparent 60%),
    linear-gradient(
      180deg,
      rgba(247, 242, 214, 0.90) 0%,
      rgba(255, 250, 209, 0.97) 28%,
      rgba(255, 255, 255, 0.99) 100%
    );
  border-top: 1px solid rgba(255, 250, 209, 0.08);
  border-bottom: 1px solid rgba(49, 23, 89, 0.08);
  box-shadow: 0 -18px 64px rgba(20, 11, 33, 0.12);
}

.intro-band__grid,
.split,
.access-card {
  display: grid;
  gap: 28px;
  align-items: center;
}

.section-head {
  max-width: 780px;
}

.section-title {
  margin: 16px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  font-weight: 700;
  max-width: 14ch;
}

.section-title.dark {
  color: var(--ink);
}

.section-copy {
  margin: 16px 0 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.section-copy.dark {
  color: var(--muted-dark);
}

.feature-grid,
.principles-grid {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.feature-card,
.principle {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(218, 206, 114, 0.06) inset;
  padding: 22px;
}

.feature-kicker {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(218, 206, 114, 0.82);
}

.feature-card h3,
.principle h3,
.step h3 {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text);
}

.feature-card p,
.principle p,
.step p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 250, 209, 0.72);
}

.split-copy {
  color: var(--ink);
}

.steps {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  background: rgba(49, 23, 89, 0.05);
  padding: 18px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--plum-900);
  color: var(--cream);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step h3,
.step p {
  color: var(--ink);
}

.step p {
  color: rgba(27, 16, 45, 0.72);
}

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  background:
    radial-gradient(720px circle at 20% 0%, rgba(218, 206, 114, 0.18), transparent 54%),
    radial-gradient(620px circle at 100% 0%, rgba(109, 84, 148, 0.16), transparent 56%),
    linear-gradient(180deg, rgba(49, 23, 89, 0.10), rgba(255, 255, 255, 0.86));
  box-shadow: 0 20px 50px rgba(49, 23, 89, 0.12);
  min-height: 100%;
  padding: 26px;
}

.media-panel__glow {
  position: absolute;
  inset: auto auto 8% -10%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(218, 206, 114, 0.30), rgba(218, 206, 114, 0.0) 70%);
  pointer-events: none;
}

.media-panel img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
}

.access {
  padding-top: 36px;
}

.access-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background:
    radial-gradient(720px circle at 12% 0%, rgba(218, 206, 114, 0.14), transparent 58%),
    linear-gradient(135deg, rgba(49, 23, 89, 0.92), rgba(27, 16, 45, 0.96));
  box-shadow: var(--shadow);
  padding: 32px;
}

.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 250, 209, 0.08);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer__inner img {
  height: 40px;
  width: auto;
}

.site-footer__meta {
  text-align: right;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 250, 209, 0.56);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .menu-toggle, .mobile-nav { display: none !important; }
  .hero-layout,
  .split,
  .access-card,
  .intro-band__grid { grid-template-columns: 1.02fr 0.98fr; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 899px) {
  .nav-actions .btn { display: none; }
  .hero-layout {
    padding-top: 94px;
    padding-bottom: 78px;
  }
  .hero-panel__mark { width: 96px; top: 22px; right: 22px; }
  .intro-band {
    margin-top: -28svh;
    min-height: 118svh;
    padding-top: calc(28svh + 66px);
    padding-bottom: 74px;
  }
}

@media (max-width: 640px) {
  .container { width: min(1200px, calc(100% - 28px)); }
  .nav { min-height: 74px; }
  .brand img { height: 34px; }
  .section { padding: 66px 0; }
  .hero-copy .display { font-size: 42px; }
  .section-title { font-size: 34px; }
  .lead, .section-copy { font-size: 15px; }
  .hero-actions, .access-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-panel__media { padding: 16px 16px 0; }
  .hero-panel__body { padding: 16px; }
  .feature-card, .principle, .step, .access-card, .media-panel { padding: 18px; }
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__meta {
    text-align: left;
  }
  .hero-layout {
    padding-top: 88px;
    padding-bottom: 54px;
  }
  .intro-band {
    margin-top: -22svh;
    min-height: 106svh;
    padding-top: calc(22svh + 54px);
    padding-bottom: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel__media img,
  .hero-panel__mark img,
  .site-header {
    transition: none !important;
  }
}
