/* ==========================================================================
   NAG Website - shared stylesheet
   Static marketing site with NAG Helper product screenshots.
   ========================================================================== */

:root {
  --gold: #d4a24e;
  --orange: #e8913a;
  --bg: #0a0a0d;
  --bg-deep: #101016;
  --bg-darker: #050508;
  --muted: #8a8a90;
  --body: #c8c8cc;
  --heading: #f3ede0;
  --danger: #f23f42;
  --success: #3dd68c;
  --discord: #9ca3ff;
  --border: rgba(255, 255, 255, 0.085);
  --border-strong: rgba(212, 162, 78, 0.32);
  --card: rgba(14, 15, 19, 0.78);
  --card-solid: #121217;
  --panel: rgba(8, 8, 12, 0.88);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --radius-lg: 10px;
  --font: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-v24-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-v24-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-v24-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-v24-latin-700.woff2") format("woff2");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(212, 162, 78, 0.06), transparent 320px),
    var(--bg-darker);
  color: var(--body);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h1 { font-size: 3.4rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1em; color: var(--body); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.muted { color: var(--muted); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--heading);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #120d04;
  box-shadow: 0 10px 24px rgba(212, 162, 78, 0.16);
}
.btn-gold:hover {
  color: #120d04;
  filter: brightness(1.07);
}

.btn-outline {
  background: rgba(10, 10, 13, 0.58);
  border-color: var(--border);
  color: #d1d1d6;
}
.btn-outline:hover {
  border-color: var(--border-strong);
  color: var(--gold);
}

.btn-discord {
  background: rgba(88, 101, 242, 0.14);
  border-color: rgba(88, 101, 242, 0.38);
  color: var(--discord);
}
.btn-discord:hover {
  background: rgba(88, 101, 242, 0.2);
  color: #d6d9ff;
}

.btn-sm {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.78rem;
}

.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 6, 6, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-size: 1rem;
  font-weight: 800;
}
.nav-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 162, 78, 0.18));
}
.nav-brand:hover { color: var(--heading); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 7px 0;
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  opacity: 0.7;
  transition: transform 0.18s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-account-menu] {
  position: relative;
  display: flex;
  align-items: center;
}

.account-menu { position: relative; }

.account-menu__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 40px;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(184, 136, 68, 0.46);
  border-radius: 4px;
  background: rgba(8, 8, 7, 0.88);
  color: #d7cbb7;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.account-menu__trigger:hover,
.account-menu.is-open .account-menu__trigger {
  border-color: rgba(222, 174, 93, 0.82);
  background: #17130c;
  color: #f2dfba;
}

.account-menu__trigger > .fa-chevron-down {
  font-size: 0.56rem;
  transition: transform 160ms ease;
}

.account-menu.is-open .account-menu__trigger > .fa-chevron-down { transform: rotate(180deg); }

.account-menu__initial {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(219, 169, 88, 0.6);
  border-radius: 50%;
  background: #21180d;
  color: #e7bd75;
  font-family: Georgia, serif;
}

.account-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 140;
  width: min(290px, calc(100vw - 24px));
  padding: 6px;
  border: 1px solid rgba(166, 122, 58, 0.58);
  border-radius: 4px;
  background: #080908;
  box-shadow: inset 0 0 0 2px #020302, 0 18px 44px rgba(0, 0, 0, 0.72);
}

.account-menu__panel[hidden] { display: none; }

.account-menu__identity {
  display: grid;
  gap: 2px;
  padding: 12px 12px 11px;
  border-bottom: 1px solid rgba(196, 149, 76, 0.24);
}

.account-menu__identity span {
  color: #a98043;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-menu__identity strong {
  overflow: hidden;
  color: #eee5d5;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu__item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  gap: 9px;
  padding: 9px 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0;
  background: transparent;
  color: #cfc5b4;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.account-menu__item > i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(180, 133, 64, 0.28);
  color: #c99547;
  font-size: 0.72rem;
}

.account-menu__item:hover { background: rgba(193, 143, 65, 0.09); color: #f0e2ca; }

.account-menu__item-copy { display: grid; gap: 1px; min-width: 0; }
.account-menu__item-copy b { font-size: 0.74rem; }
.account-menu__item-copy small { color: #817a6e; font-size: 0.62rem; }
.account-menu__logout { border-bottom: 0; font: inherit; }

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--heading);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero {
  padding: 120px 0 90px;
}

.page-hero {
  padding: 90px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(100deg, rgba(5, 5, 8, 0.98) 18%, rgba(5, 5, 8, 0.84) 48%, rgba(5, 5, 8, 0.38)),
    var(--hero-image, none);
  background-size: cover;
  background-position: center 30%;
}

.hero-glow,
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  background: linear-gradient(90deg, rgba(212, 162, 78, 0.08), transparent 48%);
}

.hero-vignette {
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.08), #050508 100%),
    linear-gradient(90deg, rgba(212, 162, 78, 0.08), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-content .sub {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.launcher-hero {
  min-height: 720px;
  padding: 108px 0 72px;
  background: #050508;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.hero-copy { max-width: 680px; }

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 6rem;
  line-height: 0.92;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: #d8d2c6;
  font-size: 1.08rem;
}

.product-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 162, 78, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(9, 10, 14, 0.9);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-shot img,
.product-shot video {
  width: 100%;
  height: auto;
  display: block;
}

.product-shot figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-grid;
  gap: 2px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(10px);
}

.product-shot figcaption span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-shot figcaption b {
  color: #fff;
  font-size: 0.78rem;
}

.hero-shot {
  align-self: center;
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.hero-shot > img {
  aspect-ratio: 1560 / 1092;
  object-fit: cover;
}

.addon-hero-shot {
  padding: 12px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(33, 36, 29, 0.96), rgba(6, 6, 9, 0.96)),
    #07080a;
}

.addon-hero-shot::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  pointer-events: none;
}

.addon-hero-shot figcaption {
  position: static;
  max-width: none;
  margin-top: 10px;
}

.addon-demo-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.addon-demo-top,
.addon-demo-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.addon-demo-top {
  min-height: 34px;
  padding: 0 2px;
  color: #d8d2c6;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.addon-demo-top b {
  color: var(--gold);
  font-size: 0.72rem;
}

.addon-demo-stage {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 250px;
  padding: clamp(28px, 5vw, 54px) clamp(14px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(212, 162, 78, 0.28);
  border-radius: 6px;
  background-image:
    linear-gradient(180deg, rgba(7, 8, 6, 0.12), rgba(7, 8, 6, 0.54)),
    url("../img/nag-raid-table-bg.png");
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.42);
}

.addon-demo-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.addon-hero-video {
  position: relative;
  z-index: 1;
  aspect-ratio: 470 / 128;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow:
    0 26px 48px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.addon-demo-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.addon-demo-bottom span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: #d8d2c6;
  font-size: 0.72rem;
  font-weight: 800;
}

.addon-demo-bottom i {
  color: var(--gold);
}

.helper-panel {
  padding: 18px;
  border: 1px solid rgba(212, 162, 78, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 10, 14, 0.9);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.helper-tabs {
  display: flex;
  gap: 4px;
  margin: -6px -6px 14px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.26);
}

.helper-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.helper-tabs .active {
  background: rgba(212, 162, 78, 0.12);
  color: var(--gold);
}

.helper-panel-top,
.helper-status-row,
.helper-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.helper-panel h2 { font-size: 1.45rem; }

.panel-kicker,
.action-label,
.step-index,
.ops-label,
.plan-badge {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-chip {
  padding: 4px 8px;
  border: 1px solid rgba(61, 214, 140, 0.34);
  border-radius: 4px;
  background: rgba(61, 214, 140, 0.1);
  color: #bfffdc;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.helper-primary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(212, 162, 78, 0.28);
  border-radius: 6px;
  background: rgba(212, 162, 78, 0.075);
}

.helper-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 162, 78, 0.3);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--gold);
}

.helper-primary strong {
  display: block;
  margin: 4px 0;
  color: var(--heading);
  font-size: 1.3rem;
  line-height: 1.1;
}
.helper-primary small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.helper-status-list {
  display: grid;
  gap: 8px;
}

.helper-status-row {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: #d8d8dc;
  font-size: 0.86rem;
}
.helper-status-row.is-active {
  border-color: rgba(212, 162, 78, 0.34);
  background: rgba(212, 162, 78, 0.08);
}
.helper-status-row b {
  color: var(--gold);
  font-size: 0.74rem;
  text-transform: uppercase;
  text-align: right;
}

.helper-note {
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: var(--muted);
  font-size: 0.74rem;
}

.helper-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.helper-note i {
  color: var(--gold);
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }

.section-alt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(18, 18, 22, 0.58), rgba(8, 8, 11, 0.38)),
    #08080b;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}
.section-head p {
  max-width: 680px;
  color: var(--muted);
}

.raid-flow,
.companion-section {
  background: #050508;
}

/* ---------- Generic cards and grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card,
.flow-step,
.ops-card,
.launcher-window,
.stat-box,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    var(--card);
}

.card {
  padding: 24px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.card .icon,
.feature-row .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(212, 162, 78, 0.12);
}
.card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 6px;
  font-size: 1.05rem;
}
.card h3 { margin-bottom: 8px; }
.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.card .link-row {
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 700;
}
.card.locked { opacity: 0.72; }
.card.locked .icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ---------- Home product sections ---------- */
.flow-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

.flow-grid { grid-template-columns: repeat(3, 1fr); }

.flow-step {
  min-height: 220px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.step-index,
.ops-label,
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(212, 162, 78, 0.28);
  border-radius: 4px;
  background: rgba(212, 162, 78, 0.08);
  color: var(--gold);
  margin-bottom: 18px;
}

.flow-step h3,
.ops-card h3 {
  font-size: 1.08rem;
}

.flow-step p,
.ops-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.ops-card { padding: 18px; }

.launcher-window {
  overflow: hidden;
  background: rgba(8, 8, 12, 0.9);
}

.launcher-tabs {
  display: flex;
  gap: 4px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  overflow-x: auto;
}

.launcher-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.launcher-tabs .active {
  color: var(--gold);
  background: rgba(212, 162, 78, 0.11);
}

.launcher-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.launcher-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}
.launcher-row span {
  color: var(--muted);
  font-size: 0.84rem;
}
.launcher-row b {
  color: var(--gold);
  font-size: 0.8rem;
  text-align: right;
}

/* ---------- Panel and CTA ---------- */
.panel {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(212, 162, 78, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 12, 0.86);
}
.panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.panel-grid img {
  border-radius: 8px !important;
}

.cta-banner {
  padding: 48px 40px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(212, 162, 78, 0.16), rgba(232, 145, 58, 0.06)),
    rgba(8, 8, 12, 0.92);
  text-align: center;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  justify-content: center;
  margin-top: 24px;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-box {
  padding: 24px 16px;
  text-align: center;
}
.stat-box .num {
  display: block;
  color: var(--gold);
  font-size: 1.75rem;
  font-weight: 800;
}
.stat-box .label {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
thead th {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--body);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

/* ---------- FAQ / Accordion ---------- */
.faq-item {
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--heading);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\f078";
  color: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-size: 0.8rem;
  font-weight: 900;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Positioning IS / IS NOT ---------- */
.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.position-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.position-card.is {
  background: rgba(61, 214, 140, 0.06);
  border-color: rgba(61, 214, 140, 0.28);
}
.position-card.isnot {
  background: rgba(242, 63, 66, 0.06);
  border-color: rgba(242, 63, 66, 0.26);
}
.position-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.position-card.is h3 { color: var(--success); }
.position-card.isnot h3 { color: var(--danger); }
.position-card ul {
  margin: 0;
  padding-left: 20px;
}
.position-card li {
  margin-bottom: 10px;
  color: var(--body);
  font-size: 0.94rem;
}

/* ---------- Feature list rows ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-row .icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}
.feature-row h4 {
  margin: 0 0 4px;
  color: var(--heading);
  font-size: 1rem;
}
.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  margin-top: 2.2em;
  font-size: 1.35rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content .updated {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 0.85rem;
}

#coaching,
#partner-program {
  scroll-margin-top: 96px;
}

.card#coaching:target,
#partner-program:target .panel {
  border-color: rgba(231, 173, 64, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(231, 173, 64, 0.12),
    0 0 30px rgba(231, 173, 64, 0.09);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--bg-darker);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--heading);
  font-weight: 800;
}
.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.footer-col h4 {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}
.footer-col p {
  max-width: 420px;
  font-size: 0.9rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col a {
  color: var(--body);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-col .footer-helper-link {
  display: grid;
  width: fit-content;
  gap: 2px;
}

.footer-helper-link small {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-helper-link:hover small,
.footer-helper-link:focus-visible small {
  color: color-mix(in srgb, var(--gold) 72%, var(--muted));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  color: var(--muted);
  font-size: 1.05rem;
}
.footer-social a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .hero-copy h1 { font-size: 5rem; }
  .hero-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-shot {
    max-width: 760px;
    transform: none;
  }
  .addon-demo-stage {
    min-height: 220px;
  }
  .helper-panel { max-width: 620px; }
}

@media (max-width: 980px) {
  .flow-grid { grid-template-columns: 1fr; }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .launcher-hero {
    min-height: auto;
    padding: 88px 0 56px;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 58px;
    padding: 14px 0;
  }
  .nav-brand span {
    display: none;
  }
  .nav-brand img {
    width: 32px;
    height: 32px;
  }
  .nav-cta {
    gap: 10px;
  }
  .nav-cta .btn-sm {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.74rem;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
  }
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
  .nav-links.open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-darker);
  }
  .panel-grid,
  .position-grid {
    grid-template-columns: 1fr;
  }
  .panel { padding: 32px 24px; }
}

@media (max-width: 760px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.85rem; }
  .hero-copy h1 { font-size: 4rem; }
  .footer-grid,
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .container { padding: 0 18px; }
  .nav {
    min-height: 64px;
  }
  .nav-brand img {
    width: 34px;
    height: 34px;
  }
  .nav-cta .btn-sm {
    display: none;
  }
  .account-menu__trigger {
    width: 40px;
    min-width: 40px;
    height: 38px;
    min-height: 38px;
    padding: 0;
  }
  .account-menu__trigger > span:not(.account-menu__initial),
  .account-menu__trigger > .fa-chevron-down { display: none; }
  .account-menu__initial { width: 24px; height: 24px; }
  .account-menu__panel { right: -92px; }
  section { padding: 58px 0; }
  .hero { padding: 82px 0 56px; }
  .hero-copy h1 { font-size: 3.35rem; }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
  .helper-status-row,
  .launcher-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 10px 12px;
  }
  .helper-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .addon-hero-shot {
    padding: 10px;
  }
  .addon-demo-stage {
    min-height: 170px;
    padding: 24px 12px;
  }
  .addon-demo-bottom {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 32px 22px;
  }
}

@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .helper-panel { padding: 14px; }
  .helper-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-shot figcaption {
    position: static;
    max-width: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-radius: 0;
  }
}

@media (max-width: 420px) {
  .nav-brand span { display: none; }
  .hero-copy h1 { font-size: 2.85rem; }
  .helper-primary strong { font-size: 1.1rem; }
}

/* ---------- Utility reveal animation ---------- */
.reveal,
.reveal.in {
  opacity: 1;
  transform: none;
}
