:root {
  --ink: #0d1219;
  --ink-2: #121a23;
  --ink-3: #1a242f;
  --line: #26313d;
  --paper: #ece9e3;
  --slate: #8a93a1;
  --slate-dim: #5c6673;
  --brass: #c8a44d;
  --brass-dim: #8a7134;
  --gutter: 72px;
  --maxw: 1080px;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- ambient ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      900px 500px at 12% -5%,
      rgba(200, 164, 77, 0.055),
      transparent 70%
    ),
    radial-gradient(
      700px 600px at 100% 40%,
      rgba(38, 49, 61, 0.5),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 18, 25, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mark {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.mark i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}

.nav-cta {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--brass);
  padding: 9px 16px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.18s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #dbb65e;
}

/* ---------- rail system ---------- */
.band {
  display: grid;
  grid-template-columns: var(--gutter) minmax(0, 1fr);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.rail {
  position: relative;
}

.rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  margin-left: -0.5px;
  background: var(--brass-dim);
  opacity: 0.55;
}

.band.no-rail .rail::before {
  display: none;
}

.node {
  position: absolute;
  left: 50%;
  top: var(--node-top, 86px);
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  background: var(--brass);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px var(--ink);
}

.body-col {
  padding: 74px 0 74px 40px;
  min-width: 0;
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}

h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

p {
  margin: 0 0 17px;
  color: #c6c8cc;
  max-width: 60ch;
}

p.lead {
  font-size: 19px;
  color: var(--paper);
}

strong {
  color: var(--paper);
  font-weight: 600;
}

a {
  color: var(--brass);
}

/* ---------- hero ---------- */
.hero .body-col {
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(38px, 6.4vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
  max-width: 16ch;
}

.hero h1 .b {
  color: var(--brass);
  position: relative;
  white-space: nowrap;
}

.hero h1 .b::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 2px;
  background: var(--brass);
  transform-origin: left;
  animation: draw 1.1s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes draw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.hero p {
  font-size: 19px;
  max-width: 56ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  padding: 15px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    background 0.16s ease;
}

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

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--ink-2);
  border-color: var(--brass-dim);
}

.guar-note {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 20px;
  letter-spacing: 0.01em;
}

.stack-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--slate-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ---------- fray ---------- */
.fray {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -36px;
  width: 72px;
  height: 100%;
}

.fray path {
  fill: none;
  stroke: var(--slate-dim);
  stroke-width: 1;
  opacity: 0.75;
}

.fray path.core {
  stroke: var(--brass-dim);
  opacity: 0.55;
}

/* ---------- symptoms ---------- */
.lint {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 8px 0;
  margin-top: 8px;
}

.lint-row {
  display: flex;
  gap: 14px;
  padding: 11px 20px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.5;
  color: #bfc3c9;
  border-bottom: 1px solid rgba(38, 49, 61, 0.5);
}

.lint-row:last-child {
  border-bottom: none;
}

.lint-row .w {
  color: var(--brass);
  flex-shrink: 0;
  font-weight: 500;
}

.quiet {
  margin-top: 32px;
  padding: 22px 24px;
  border-left: 2px solid var(--brass-dim);
  background: rgba(200, 164, 77, 0.045);
}

.quiet p {
  margin: 0 0 12px;
  color: var(--slate);
  font-style: italic;
}

.quiet p:last-child {
  margin: 0;
  color: var(--paper);
  font-style: normal;
}

/* ---------- deliverables ---------- */
.stack {
  border-top: 1px solid var(--line);
  margin-top: 26px;
}

.item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.item h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 5px;
  letter-spacing: -0.01em;
}

.item p {
  margin: 0;
  font-size: 15px;
  color: var(--slate);
  max-width: 52ch;
}

.val {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--slate-dim);
  white-space: nowrap;
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.total .l {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

.total .v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-dim);
  text-decoration: line-through;
}

.price {
  background: var(--ink-2);
  border: 1px solid var(--brass-dim);
  border-radius: 6px;
  padding: 26px 28px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.price .amt {
  font-family: var(--display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--brass);
}

.price .sub {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ---------- tiers ---------- */
.tiers {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.tier {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 28px;
  transition: border-color 0.18s ease;
}

.tier:hover {
  border-color: var(--brass-dim);
}

.tier.feat {
  border-color: var(--brass-dim);
  background: rgba(200, 164, 77, 0.05);
}

.tier-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tier .amt {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--brass);
  white-space: nowrap;
  font-weight: 500;
}

.tier p {
  margin: 0;
  font-size: 15.5px;
  color: var(--slate);
}

.tier .tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass-dim);
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 12px;
}

/* ---------- guarantee ---------- */
.guarantee {
  border: 1px solid var(--brass-dim);
  border-radius: 6px;
  padding: 34px 34px;
  background: rgba(200, 164, 77, 0.05);
  margin-top: 8px;
}

.guarantee h3 {
  font-size: clamp(21px, 2.6vw, 27px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.guarantee p {
  margin: 0;
  color: #cdcfd3;
}

/* ---------- objections ---------- */
.obj {
  border-top: 1px solid var(--line);
}

.obj > div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.obj h3 {
  color: var(--paper);
  font-size: 18px;
  margin-bottom: 7px;
}

.obj p {
  margin: 0;
  font-size: 15.5px;
  color: var(--slate);
}

/* ---------- fit ---------- */
.fit {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.fit > div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink-2);
}

.fit h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.fit ul {
  margin: 0;
  padding-left: 19px;
  color: var(--slate);
  font-size: 15.5px;
}

.fit li {
  margin-bottom: 7px;
}

.fit .yes h3 {
  color: var(--brass);
}

.fit .no h3 {
  color: var(--slate-dim);
}

/* ---------- free options ---------- */
.free {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.fc {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 28px;
  background: var(--ink-2);
  transition: border-color 0.18s ease;
}

.fc:hover {
  border-color: var(--brass-dim);
}

.fc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 9px;
}

.fc .free-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.fc p {
  margin: 0 0 16px;
  font-size: 15.5px;
  color: var(--slate);
}

.fc .btn {
  font-size: 15px;
  padding: 11px 20px;
}

.cap {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--slate-dim);
  margin-top: 14px;
  display: block;
}

/* ---------- bio ---------- */
.bio {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 8px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 5px;
  flex-shrink: 0;
  background: var(--ink-3);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  color: var(--brass-dim);
}

.bio-body {
  flex: 1;
  min-width: 260px;
}

/* ---------- final ---------- */
.final {
  text-align: left;
  padding-bottom: 20px;
}

.final h2 {
  max-width: 18ch;
}

.avail {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--slate);
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
}

.foot-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--slate-dim);
}

.foot-in a {
  color: var(--slate);
  text-decoration: none;
}

.foot-in a:hover {
  color: var(--brass);
}

/* ---------- reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (max-width: 760px) {
  :root {
    --gutter: 30px;
  }

  body {
    font-size: 16px;
  }

  .body-col {
    padding: 52px 0 52px 20px;
  }

  .hero .body-col {
    padding-top: 60px;
    padding-bottom: 66px;
  }

  .fray {
    margin-left: -15px;
    width: 30px;
  }

  .item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price .amt {
    font-size: 36px;
  }

  .lint-row {
    font-size: 12.5px;
    padding: 10px 14px;
    gap: 10px;
  }

  .guarantee {
    padding: 26px 22px;
  }

  .nav-cta {
    padding: 8px 13px;
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::after,
  *::before {
    animation: none !important;
    transition: none !important;
  }

  .rv {
    opacity: 1;
    transform: none;
  }
}
