/* Nayyachi. Hand coded. Dark canvas, gold findings, mint live signals, one light band. */

:root {
  --bg: #060a08;
  --band: #0a100d;
  --card: #0b110e;
  --line: rgba(234, 242, 237, 0.09);
  --lineSoft: rgba(234, 242, 237, 0.06);
  --ink: #eef2ee;
  --mut: #93a49a;
  --gold: #e2ad55;
  --goldSoft: #f0c67e;
  --goldDim: rgba(226, 173, 85, 0.34);
  --mint: #63d2ab;
  --coral: #ff7159;
  --lBg: #f4f7fa;
  --lInk: #131a1e;
  --lMut: #54656d;
  --lLine: #d9e2e7;
  --lGold: #966a12;
  --fontDisp: "Schibsted Grotesk", "Segoe UI", sans-serif;
  --fontBody: "Figtree", "Segoe UI", sans-serif;
  --fontMono: "Spline Sans Mono", "Courier New", monospace;
}

@font-face {
  font-family: "Schibsted Grotesk";
  src: url("/assets/fonts/schibsted-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("/assets/fonts/schibsted-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/figtree-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/figtree-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Spline Sans Mono";
  src: url("/assets/fonts/splinemono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Spline Sans Mono";
  src: url("/assets/fonts/splinemono-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fontBody);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(226, 173, 85, 0.35); color: #fff; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.sr {
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skipLink {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  background: var(--gold);
  color: #161006;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 3px;
  transition: top 0.2s ease;
}
.skipLink:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ---------- header ---------- */

.siteHead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 10, 8, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.siteHead.scrolled {
  border-bottom-color: var(--line);
  background: rgba(6, 10, 8, 0.92);
}
.headRow {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.mark { width: 23px; height: 23px; color: var(--ink); flex: none; }
.brandName {
  font-family: var(--fontDisp);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.siteNav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}
.siteNav a {
  font-size: 13.5px;
  color: var(--mut);
  transition: color 0.2s ease;
}
.siteNav a:hover { color: var(--gold); }
.headCta {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #171006;
  background: var(--gold);
  padding: 10px 16px;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
  transition: background 0.2s ease;
  white-space: nowrap;
}
.headCta:hover { background: var(--goldSoft); }
.headCta:focus-visible { clip-path: none; }

.progressLine {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(226, 173, 85, 0.55);
  pointer-events: none;
  will-change: transform;
}
html.glideOn { scroll-behavior: auto; }

/* ---------- shared blocks ---------- */

.goldText { color: var(--gold); }

.secTitle {
  font-family: var(--fontDisp);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-top: 20px;
  max-width: 20ch;
}
.secSub {
  margin-top: 20px;
  color: var(--mut);
  font-size: 17px;
  max-width: 58ch;
}

.darkBand { background: var(--band); }
.darkBand > .wrap { padding-top: clamp(84px, 12vh, 150px); padding-bottom: clamp(84px, 12vh, 150px); }
.lightBand { background: var(--lBg); }
.lightBand > .wrap { padding-top: clamp(84px, 12vh, 150px); padding-bottom: clamp(84px, 12vh, 150px); }
.lightBand .secTitle { color: var(--lInk); }
.lightBand .secSub { color: var(--lMut); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fontBody);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btnPrimary {
  color: #171006;
  background: var(--gold);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}
.btnPrimary:hover { background: var(--goldSoft); }
.btnPrimary:focus-visible { clip-path: none; }
.btnInk {
  color: #f4f7fa;
  background: var(--lInk);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}
.btnInk:hover { background: #24313a; }
.btnInk:focus-visible { clip-path: none; }
.btnGold {
  color: #fff;
  background: var(--lGold);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}
.btnGold:hover { background: #b37f1c; }
.btnGold:focus-visible { clip-path: none; }
.btnBig { font-size: 17px; padding: 17px 32px; }

.micro {
  font-family: var(--fontMono);
  font-size: 11.5px;
  color: var(--mut);
  margin-top: 16px;
}
.micro a { color: var(--mut); }
.micro a:hover { color: var(--gold); }

.monoDim {
  font-family: var(--fontMono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mut);
}
.monoDimDark {
  font-family: var(--fontMono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 242, 237, 0.72);
}

.liveBox {
  width: 7px;
  height: 7px;
  background: var(--mint);
  display: inline-block;
  flex: none;
}
.liveBox.mint { background: var(--mint); }

.sev {
  font-family: var(--fontMono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 2px;
  white-space: nowrap;
  align-self: start;
  justify-self: start;
  margin-right: -0.1em;
}
.sev.critical {
  color: #ff9279;
  border: 1px solid rgba(255, 113, 89, 0.4);
  background: rgba(255, 113, 89, 0.1);
}
.sev.high {
  color: var(--gold);
  border: 1px solid rgba(226, 173, 85, 0.4);
  background: rgba(226, 173, 85, 0.08);
}

/* ---------- reveal ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--d, 0) * 110ms);
}
.js [data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------- hero ---------- */

.hero { position: relative; overflow: clip; }
.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
  padding-top: clamp(44px, 7vh, 92px);
  padding-bottom: clamp(56px, 9vh, 118px);
}

.heroTitle {
  font-family: var(--fontDisp);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.3vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
}
.heroWord {
  display: block;
  will-change: transform;
}
.heroWord + .heroWord { margin-top: 0.09em; }
.heroWord.gold {
  font-size: clamp(1.6rem, 3.9vw, 3.1rem);
  color: var(--gold);
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin-top: 0.2em;
  margin-left: 0;
  text-shadow: 0 0 42px rgba(226, 173, 85, 0.32);
}

.heroSub {
  margin-top: 30px;
  color: var(--mut);
  font-size: 17.5px;
  max-width: 52ch;
}

.panelZone {
  position: relative;
}
.panelZone::before {
  content: "";
  position: absolute;
  inset: -8% -12% -6% -8%;
  background: radial-gradient(480px 420px at 66% 38%, rgba(226, 173, 85, 0.08), transparent 72%);
  pointer-events: none;
}

.auditPanel {
  position: relative;
  background: linear-gradient(180deg, #0c130f 0%, #090f0c 100%);
  border: 1px solid rgba(226, 173, 85, 0.32);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 34px 90px -34px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(226, 173, 85, 0.05);
}
.scanLine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(180deg, transparent 0%, rgba(226, 173, 85, 0.026) 55%, rgba(226, 173, 85, 0.12) 100%);
  transform: translateY(-140px);
  animation: scanSweep 6.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes scanSweep {
  0%, 10% { transform: translateY(-140px); }
  85%, 100% { transform: translateY(680px); }
}

.panelHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.panelBody { padding: 18px 18px 16px; position: relative; z-index: 1; }
.targetLine {
  font-family: var(--fontMono);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.targetText { color: var(--ink); }
.caret {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--gold);
  animation: blink 1.15s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.findingList { display: flex; flex-direction: column; }
.finding {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
}
.fLabel {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.fValue {
  font-family: var(--fontMono);
  font-size: 11.5px;
  color: var(--mut);
}
.fBar {
  grid-column: 1 / -1;
  height: 3px;
  background: rgba(234, 242, 237, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.barFill {
  display: block;
  height: 100%;
  width: calc(var(--fill, 0) * 1%);
  border-radius: 2px;
  transform-origin: left center;
}
.js .barFill { transform: scaleX(0); }
.js .auditPanel.isIn .barFill,
.js .logCard.isIn .barFill {
  transform: scaleX(1);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.finding:nth-child(1) .barFill, .finding:nth-child(2) .barFill { background: var(--coral); }
.finding:nth-child(3) .barFill, .finding:nth-child(4) .barFill { background: var(--gold); }

.scoreBlock {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.scoreTop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.scoreNum {
  font-family: var(--fontDisp);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 28px rgba(255, 113, 89, 0.35);
}
.scoreOf {
  font-family: var(--fontMono);
  font-size: 12px;
  color: var(--mut);
  margin-left: 5px;
}
.scoreBar {
  display: block;
  height: 7px;
  background: rgba(234, 242, 237, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.scoreFill {
  display: block;
  height: 100%;
  width: calc(var(--fill, 0) * 1%);
  background: linear-gradient(90deg, #d94f38, #ff8a6e);
  border-radius: 3px;
  box-shadow: 0 0 16px rgba(255, 113, 89, 0.5);
  transform-origin: left center;
}
.js .scoreFill { transform: scaleX(0); }
.js .auditPanel.isIn .scoreFill {
  transform: scaleX(1);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s;
}
.panelCaption {
  font-family: var(--fontMono);
  font-size: 10.5px;
  color: var(--mut);
  margin-top: 12px;
}

/* ---------- findings band ---------- */

.findings { border-bottom: 1px solid var(--lineSoft); }
.logCard {
  margin-top: 46px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 0;
}
.logCaveat {
  font-family: var(--fontMono);
  font-size: 11px;
  color: var(--mut);
  padding: 14px 26px 4px;
}
.logRow {
  display: grid;
  grid-template-columns: 98px 136px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 17px 26px;
}
.logRow + .logRow { border-top: 1px solid var(--lineSoft); }
.logName {
  font-family: var(--fontMono);
  font-size: 12.5px;
  color: var(--ink);
  padding-top: 1px;
  opacity: 0.85;
  text-align: right;
}
.logText { font-size: 14.5px; color: var(--mut); line-height: 1.5; }
.logArrow {
  font-family: var(--fontMono);
  color: var(--gold);
  margin-right: 18px;
  font-size: 17px;
  line-height: 1;
  vertical-align: 2px;
}
.logFix {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fontMono);
  font-size: 13px;
  color: var(--mint);
  padding: 18px 26px 20px;
  border-top: 1px solid var(--lineSoft);
}
.logAsk {
  margin-top: 26px;
  font-size: 15px;
  color: var(--mut);
}
.textLink {
  color: var(--gold);
  border-bottom: 1px solid var(--goldDim);
  transition: color 0.2s ease;
}
.textLink:hover { color: var(--goldSoft); }

/* ---------- rebuild (light) ---------- */

.rebuildGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
  margin-top: clamp(36px, 5vw, 58px);
}

.mockWrap { min-width: 0; }
.mockChrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #10171a;
  border-radius: 5px 5px 0 0;
  padding: 9px 12px 9px 16px;
}
.viewToggle {
  display: inline-flex;
  border: 1px solid rgba(234, 242, 237, 0.16);
  border-radius: 3px;
  overflow: hidden;
}
.viewBtn {
  font-family: var(--fontMono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(234, 242, 237, 0.62);
  padding: 6px 11px;
  transition: background 0.18s ease, color 0.18s ease;
}
.viewBtn:hover { color: #fff; }
.viewBtn.isOn {
  background: rgba(226, 173, 85, 0.22);
  color: var(--goldSoft);
}
.mockStage {
  background: #ffffff;
  border: 1px solid var(--lLine);
  border-top: none;
  border-radius: 0 0 5px 5px;
  padding: clamp(18px, 3vw, 30px);
  transition: padding 0.25s ease;
}
.mockStage.phone { display: flex; justify-content: center; }
.mockSite {
  min-width: 0;
  transition: width 0.25s ease;
}
.mockStage.phone .mockSite { width: 236px; }

.mockNav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockBrand {
  font-weight: 800;
  font-size: 14px;
  color: var(--lInk);
  letter-spacing: -0.01em;
  margin-right: auto;
}
.mockLinks {
  font-size: 10px;
  color: var(--lMut);
  letter-spacing: 0.02em;
}
.mockCall {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--lInk);
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.mockHero { margin-top: 26px; }
.mockEyebrow {
  font-family: var(--fontMono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa8ad;
}
.mockHeadline {
  font-family: var(--fontDisp);
  font-weight: 900;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--lInk);
  margin-top: 7px;
  max-width: 16ch;
}
.mockSub {
  font-size: 11.5px;
  color: var(--lMut);
  margin-top: 8px;
  max-width: 34ch;
}
.mockCta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--lGold);
  padding: 8px 15px;
  border-radius: 3px;
  margin-top: 14px;
}
.mockChips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.mockChip {
  font-size: 10px;
  font-weight: 600;
  color: #4a5a62;
  border: 1px solid var(--lLine);
  border-radius: 3px;
  padding: 4px 9px;
}
.mockCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px;
}
.mockCard {
  border: 1px solid var(--lLine);
  border-radius: 3px;
  padding: 11px 12px;
  min-width: 0;
}
.mcTitle { display: block; font-size: 10.5px; font-weight: 700; color: #38474e; }
.mcLine { display: block; font-size: 9.5px; color: #93a2a8; margin-top: 3px; }

.mockStage.phone .mockLinks,
.mockStage.phone .mockCards { display: none; }
.mockStage.phone .mockHero { margin-top: 18px; }
.mockStage.phone .mockHeadline { font-size: 20px; }
.mockStage.phone .mockChips { margin-top: 13px; }

.rebuildList { padding-top: 6px; }
.listHead {
  font-family: var(--fontDisp);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--lInk);
  margin-bottom: 6px;
}
.changeRow {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px;
  padding: 19px 2px;
}
.changeRow + .changeRow { border-top: 1px solid var(--lLine); }
.changeIdx {
  font-family: var(--fontMono);
  font-size: 12px;
  color: var(--lGold);
  padding-top: 3px;
}
.changeName {
  font-weight: 700;
  font-size: 17.5px;
  color: var(--lInk);
  letter-spacing: -0.01em;
}
.changeText {
  font-size: 14px;
  color: var(--lMut);
  margin-top: 3px;
  max-width: 40ch;
}

/* ---------- offer ---------- */

.offerBand { border-top: 1px solid var(--lLine); }
.offerBand .secTitle { max-width: none; }

.freeCard {
  margin-top: 44px;
  background: #ffffff;
  border: 1.5px solid rgba(150, 106, 18, 0.55);
  border-radius: 4px;
  padding: clamp(24px, 3.6vw, 40px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.freeTag {
  display: inline-block;
  font-family: var(--fontMono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
  background: var(--lGold);
  border-radius: 2px;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.freeTitle {
  font-family: var(--fontDisp);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--lInk);
  max-width: 22ch;
}
.freeList { margin-top: 16px; }
.freeList li {
  position: relative;
  font-size: 14.5px;
  color: #46555d;
  padding-left: 20px;
  margin-top: 9px;
}
.freeList li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--lGold);
  border-radius: 1px;
}
.freeBig {
  font-family: var(--fontDisp);
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--lGold);
}
.freeNote {
  font-size: 14px;
  color: var(--lMut);
  margin-top: 12px;
  max-width: 34ch;
}

.priceGrid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 26px;
}
.orTag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-family: var(--fontMono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--lGold);
  border-radius: 2px;
  padding: 5px 12px;
  box-shadow: 0 0 0 6px var(--lBg);
}
.priceCard {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--lLine);
  border-radius: 4px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.priceCard.yearly {
  border: 1.5px solid rgba(150, 106, 18, 0.75);
  box-shadow: 0 18px 44px -30px rgba(96, 66, 6, 0.35);
}
.saveTag {
  position: absolute;
  top: -11px;
  right: 20px;
  font-family: var(--fontMono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--lGold);
  border-radius: 2px;
  padding: 4px 10px;
  white-space: nowrap;
}
.priceLabel {
  font-family: var(--fontMono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lMut);
}
.priceRow {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 12px;
}
.priceNum {
  font-family: var(--fontDisp);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--lInk);
  font-variant-numeric: tabular-nums;
}
.pricePer {
  font-family: var(--fontMono);
  font-size: 12.5px;
  color: var(--lMut);
}
.priceLine {
  font-size: 14px;
  color: var(--lMut);
  margin-top: 10px;
}
.priceList { margin: 20px 0 26px; }
.priceList li {
  position: relative;
  font-size: 13.5px;
  color: #46555d;
  padding-left: 20px;
  margin-top: 8px;
}
.priceList li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--lGold);
  border-radius: 1px;
}
.priceCard .btn { width: 100%; margin-top: auto; }

/* ---------- steps ---------- */

.stepList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
}
.stepCard { padding: 6px clamp(26px, 3.4vw, 46px) 6px 0; }
.stepCard + .stepCard {
  padding-left: clamp(26px, 3.4vw, 46px);
  border-left: 1px solid var(--line);
}
.stepNum {
  font-family: var(--fontMono);
  font-size: 13px;
  color: var(--gold);
}
.stepTitle {
  font-family: var(--fontDisp);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin-top: 16px;
}
.stepText {
  font-size: 14.5px;
  color: var(--mut);
  margin-top: 10px;
  max-width: 34ch;
}

/* ---------- closer ---------- */

.closer {
  background:
    radial-gradient(640px 460px at 24% 30%, rgba(226, 173, 85, 0.07), transparent 72%),
    var(--bg);
  border-top: 1px solid var(--lineSoft);
}
.closerInner {
  padding-top: clamp(100px, 15vh, 180px);
  padding-bottom: clamp(100px, 15vh, 180px);
}
.closerTitle {
  font-family: var(--fontDisp);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.closerSub {
  margin-top: 24px;
  color: var(--mut);
  font-size: 17.5px;
  max-width: 46ch;
}
.closerCta { margin-top: 36px; }
.closerMail { margin-top: 34px; }
.mailLink {
  font-family: var(--fontMono);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--gold);
  border-bottom: 1px solid var(--goldDim);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.mailLink:hover { color: var(--goldSoft); border-color: var(--goldSoft); }

/* ---------- footer ---------- */

.siteFoot {
  background: #050807;
  border-top: 1px solid var(--line);
}
.footRow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px 48px;
  padding-top: 54px;
  padding-bottom: 46px;
}
.footBrand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 auto;
}
.footTag {
  flex: 1 1 auto;
  max-width: none;
  margin: 0 auto;
  text-align: center;
  color: var(--mut);
  font-size: 13.5px;
  padding: 0 12px;
}
.footNav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}
.footLinks {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  text-align: center;
}
.footNav a {
  font-size: 13px;
  color: var(--mut);
  transition: color 0.2s ease;
}
.footNav a:hover { color: var(--gold); }
.footCopy {
  font-family: var(--fontMono);
  font-size: 11px;
  color: #6e7d74;
  white-space: nowrap;
}
/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .heroGrid { grid-template-columns: 1fr; }
  .panelZone { max-width: 520px; }
  .heroWord { max-width: none; }
  .rebuildGrid { grid-template-columns: 1fr; }
  .stepList { gap: 26px; }
  .stepCard + .stepCard {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 26px;
  }
}

@media (max-width: 760px) {
  .headRow { gap: 14px; }
  .siteNav { display: none; }
  .secSub { font-size: 16px; }
  .freeCard { grid-template-columns: 1fr; }
  .priceGrid { grid-template-columns: 1fr; }
  .orTag {
    position: static;
    transform: none;
    justify-self: center;
    margin: 2px 0;
    box-shadow: none;
  }
  .priceCard { padding: 26px 22px; }
  .stepList { grid-template-columns: 1fr; }
  .logRow {
    grid-template-columns: max-content 1fr;
    gap: 10px 14px;
  }
  .logName { grid-column: 2; grid-row: 1; min-width: 0; }
  .logText { grid-column: 1 / -1; }
  .logRow .sev { grid-column: 1; grid-row: 1; }
  .footRow { flex-direction: column; align-items: flex-start; }
  .footTag { text-align: left; margin: 0; padding: 0; }
  .footNav { align-items: flex-start; }
  .footLinks { align-items: flex-start; text-align: left; }
}

@media (max-width: 480px) {
  .mockCards { grid-template-columns: 1fr; }
  .mockLinks { display: none; }
  .headCta { font-size: 12px; padding: 9px 12px; }
  .brandName { font-size: 18px; }
}

/* motion runs in every environment per owner spec, no reduced-motion gate */

/* ---------- custom cursor: glyph, lagging dot, click burst ---------- */

html.customCursor,
html.customCursor * { cursor: none !important; }

.curP,
.curDot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  will-change: transform;
}

html.curOn .curP,
html.curOn .curDot { opacity: 1; }

.curP {
  width: 26px;
  height: 34px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45));
}

.curBtn {
  fill: var(--gold);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.curP.hot .curBtn {
  opacity: 1;
  animation: curBtnBlink 0.5s steps(1, end) infinite;
}

@keyframes curBtnBlink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.curDot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 16px rgba(226, 173, 85, 0.55),
    0 0 3px rgba(226, 173, 85, 0.9);
}

.burstLayer {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
}

.burstWrap { position: absolute; left: 0; top: 0; }
.burstLine,
.burstSpeck { position: absolute; left: 0; top: 0; }

.burstLine span {
  display: block;
  width: 2px;
  height: 13px;
  margin: -6.5px -1px;
  border-radius: 2px;
  background: var(--gold);
  animation: burstLineGo 0.55s cubic-bezier(0.16, 0.84, 0.3, 1) forwards;
}

@keyframes burstLineGo {
  0% { transform: translateX(7px) scaleY(0.7); opacity: 1; }
  100% { transform: translateX(36px) scaleY(1); opacity: 0; }
}

.burstSpeck span {
  display: block;
  width: 3px;
  height: 3px;
  margin: -1.5px;
  border-radius: 50%;
  background: rgba(226, 173, 85, 0.85);
  animation: burstSpeckGo 0.6s cubic-bezier(0.16, 0.84, 0.3, 1) forwards;
}

@keyframes burstSpeckGo {
  0% { transform: translateX(10px) scale(1); opacity: 0.9; }
  100% { transform: translateX(46px) scale(0.6); opacity: 0; }
}
