:root {
  --ink: #070b10;
  --ink-2: #101820;
  --panel: #121c27;
  --panel-2: rgba(18, 28, 39, 0.72);
  --line: rgba(232, 240, 245, 0.1);
  --text: #e8f0f5;
  --muted: #9aadb8;
  --teal: #12c8b0;
  --teal-deep: #0a8f7f;
  --saffron: #e8a838;
  --saffron-soft: #f0c56d;
  --danger: #ff7a7a;
  --ok: #6ddecb;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1180px;
  --rail: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(18, 200, 176, 0.16), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(232, 168, 56, 0.12), transparent 50%),
    linear-gradient(180deg, #05080d 0%, var(--ink) 40%, #0a1218 100%);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul,
ol {
  padding-left: 1.2rem;
}

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.shell-wide {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

.mast {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 16, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.mast.is-condensed {
  border-bottom-color: var(--line);
  background: rgba(7, 11, 16, 0.92);
}

.mast__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(18, 200, 176, 0.35);
}

.brand span {
  font-size: 1.15rem;
}

.brand em {
  font-style: normal;
  color: var(--teal);
}

.desk-nav {
  display: none;
  gap: 1.25rem;
  align-items: center;
}

.desk-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.desk-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #041512;
  box-shadow: 0 10px 30px rgba(18, 200, 176, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-saffron {
  background: linear-gradient(135deg, var(--saffron), #c4841d);
  color: #1a1204;
  box-shadow: 0 10px 28px rgba(232, 168, 56, 0.28);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-drawer {
  position: fixed;
  inset: 76px 1rem auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: var(--shadow);
  z-index: 60;
}

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

.nav-drawer a {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--muted);
}

.nav-drawer a:hover {
  background: rgba(18, 200, 176, 0.08);
  color: var(--text);
}

.vista {
  padding: 2.5rem 0 3.5rem;
  position: relative;
}

.vista__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 200, 176, 0.35);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vista h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

.vista h1 i {
  font-style: normal;
  color: var(--saffron-soft);
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 54ch;
  margin: 0 0 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.vista__visual {
  position: relative;
}

.vista__visual img {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transform: rotate(-1.5deg);
}

.float-chip {
  position: absolute;
  left: 1rem;
  bottom: 1.2rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: var(--panel-2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(18, 200, 176, 0.35);
  font-size: 0.85rem;
  font-weight: 700;
}

.band {
  padding: 3.5rem 0;
}

.band-alt {
  background: linear-gradient(180deg, rgba(18, 28, 39, 0.55), rgba(18, 28, 39, 0.15));
  border-block: 1px solid var(--line);
}

.section-kicker {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-copy {
  color: var(--muted);
  max-width: 70ch;
  margin: 0 0 1rem;
}

.glass {
  background: rgba(16, 24, 32, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.trust-rail {
  display: grid;
  gap: 1rem;
}

.trust-rail__list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-rail__list li {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.trust-rail__list li strong {
  color: var(--saffron-soft);
}

.brief-sheet {
  overflow: auto;
  margin-top: 1.5rem;
}

.brief-sheet table,
.score-board table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.brief-sheet th,
.brief-sheet td,
.score-board th,
.score-board td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.brief-sheet th,
.score-board th {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brief-sheet tr:last-child td,
.score-board tr:last-child td {
  border-bottom: 0;
}

.offer-vault {
  display: grid;
  gap: 1.5rem;
}

.offer-vault__media img,
.stage-frame img,
.pay-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.check-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.check-card {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.check-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(18, 200, 176, 0.05);
  border: 1px solid rgba(18, 200, 176, 0.15);
}

.steps li::before {
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #041512;
}

.duo {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: var(--muted);
}

.mobile-slab {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(18, 200, 176, 0.12), transparent 45%),
    linear-gradient(320deg, rgba(232, 168, 56, 0.1), transparent 40%),
    var(--panel);
  border: 1px solid var(--line);
}

.pay-notes {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pay-notes li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--muted);
}

.pay-notes li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.score-board {
  overflow: auto;
  margin-top: 1.25rem;
}

.meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 0.45rem;
}

.meter > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--saffron));
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-verdict {
  display: grid;
  gap: 1rem;
}

.split-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.split-card--plus {
  background: linear-gradient(180deg, rgba(18, 200, 176, 0.12), rgba(18, 200, 176, 0.03));
}

.split-card--minus {
  background: linear-gradient(180deg, rgba(255, 122, 122, 0.1), rgba(255, 122, 122, 0.03));
}

.split-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
}

.audience-grid {
  display: grid;
  gap: 1rem;
}

.audience-card {
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.audience-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.finale {
  padding: 1.6rem;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(232, 168, 56, 0.35);
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(232, 168, 56, 0.16), transparent 60%),
    rgba(16, 24, 32, 0.85);
}

.faq-stack {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

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

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.faq-item button i {
  font-style: normal;
  color: var(--teal);
  transition: transform 0.2s ease;
}

.faq-item.is-open button i {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.site-end {
  padding: 3rem 0 5.5rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.site-end__grid {
  display: grid;
  gap: 1.5rem;
}

.site-end p {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.site-end nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.site-end nav a {
  color: var(--muted);
}

.site-end nav a:hover {
  color: var(--teal);
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(16, 24, 32, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie.is-visible {
  display: flex;
}

.cookie p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 60ch;
}

.float-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-shown {
  opacity: 1;
  transform: none;
}

.figure-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.65rem 0 0;
}

@media (min-width: 768px) {
  .vista__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .offer-vault {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

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

  .duo--reverse > :first-child {
    order: 2;
  }

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

  .split-verdict,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-end__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .cookie {
    left: auto;
    width: min(520px, calc(100% - 2rem));
  }
}

@media (min-width: 1024px) {
  body {
    padding-left: var(--rail);
  }

  .side-rail {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--rail);
    border-right: 1px solid var(--line);
    background: rgba(7, 11, 16, 0.9);
    display: grid;
    place-items: center;
    z-index: 40;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .desk-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .trust-rail {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .mobile-slab {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (max-width: 1023px) {
  .side-rail {
    display: none;
  }
}
