:root {
  color-scheme: dark;
  --bg: oklch(7.5% 0.006 240);
  --bg-2: oklch(10% 0.007 240);
  --surface: oklch(12.5% 0.008 240);
  --surface-2: oklch(16% 0.008 240);
  --ink: oklch(92% 0.006 80);
  --muted: oklch(72% 0.006 80);
  --dim: oklch(54% 0.006 80);
  --line: oklch(82% 0.006 80 / 0.16);
  --line-strong: oklch(88% 0.009 80 / 0.32);
  --pearl: oklch(86% 0.025 80);
  --chrome: linear-gradient(135deg, oklch(94% 0.017 83), oklch(74% 0.01 84) 30%, oklch(97% 0.01 80) 49%, oklch(53% 0.007 82) 72%, oklch(91% 0.018 84));
  --onyx: linear-gradient(145deg, oklch(18% 0.008 240), oklch(9% 0.006 240) 55%, oklch(20% 0.008 240));
  --cyan: oklch(78% 0.12 205);
  --red: oklch(67% 0.16 20);
  --max: 1360px;
  --r: 8px;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-deep: 0 34px 90px oklch(2% 0.004 240 / 0.68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 8%, oklch(78% 0.03 80 / 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, oklch(78% 0.12 205 / 0.06), transparent 22%),
    var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background:
    linear-gradient(oklch(100% 0 0 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0 0 / 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 82%, transparent);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--pearl);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% 0, oklch(90% 0.01 80 / 0.055), transparent 42rem),
    var(--bg);
}

.topbar {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  padding: 14px 18px 14px 34px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(180deg, oklch(18% 0.008 240 / 0.82), oklch(8% 0.006 240 / 0.68)),
    var(--surface);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
  transition:
    top 220ms var(--ease-out),
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.is-scrolled .topbar {
  top: 12px;
  border-color: oklch(88% 0.008 80 / 0.22);
  background:
    linear-gradient(180deg, oklch(15% 0.008 240 / 0.9), oklch(7.5% 0.006 240 / 0.78)),
    var(--surface);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.4vw, 3rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-shadow:
    0 1px 0 oklch(100% 0 0 / 0.35),
    0 14px 30px oklch(100% 0 0 / 0.11);
}

.brand img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px oklch(88% 0.012 80 / 0.14));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 54px);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-block: 12px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--pearl);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.is-active,
.footer a:hover {
  color: var(--ink);
}

.nav-cta {
  justify-self: end;
}

.metal-button,
.onyx-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 150ms var(--ease-out),
    border-color 200ms var(--ease-out),
    filter 200ms var(--ease-out),
    background 200ms var(--ease-out);
}

.metal-button {
  overflow: hidden;
  color: oklch(18% 0.009 245);
  background:
    url("./assets/cutouts/cta-pearl-pill-button-cutout.png") center / 104% 128% no-repeat,
    var(--chrome);
  text-shadow:
    0 1px 0 oklch(100% 0 0 / 0.52),
    0 0 18px oklch(18% 0.006 240 / 0.12);
  box-shadow:
    inset 0 1px 1px oklch(100% 0 0 / 0.7),
    inset 0 -10px 30px oklch(10% 0.006 240 / 0.18),
    0 12px 38px oklch(90% 0.02 80 / 0.13);
}

.metal-button::before {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 0 26%, oklch(100% 0 0 / 0.4) 34%, transparent 48%),
    repeating-linear-gradient(135deg, oklch(100% 0 0 / 0.18) 0 1px, transparent 1px 8px);
  opacity: 0.46;
  mix-blend-mode: screen;
  transform: translateX(-18%);
  transition: transform 260ms var(--ease-soft);
}

.metal-button::after {
  position: absolute;
  inset: 7px 13px;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(180deg, oklch(100% 0 0 / 0.18), oklch(18% 0.006 240 / 0.055));
  opacity: 0.58;
  mix-blend-mode: soft-light;
}

.metal-button > *,
.onyx-button > * {
  position: relative;
  z-index: 2;
}

.metal-button:hover::before {
  transform: translateX(18%);
}

.metal-button:hover,
.onyx-button:hover {
  transform: translateY(-2px);
  border-color: oklch(94% 0.01 80 / 0.46);
}

.metal-button:active,
.onyx-button:active {
  transform: scale(0.975);
}

.metal-button:focus-visible,
.onyx-button:focus-visible {
  outline: 2px solid oklch(92% 0.018 80 / 0.82);
  outline-offset: 5px;
}

.onyx-button {
  color: var(--ink);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.05), transparent),
    var(--onyx);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.09);
}

.primary-action {
  min-height: 74px;
  padding-inline: 34px 28px;
  font-size: 1rem;
}

.compact {
  min-height: 46px;
  padding-inline: 22px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: oklch(83% 0.008 80);
  background: oklch(18% 0.008 240 / 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero {
  position: relative;
  min-height: 1050px;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2)) 0;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) saturate(0.78) brightness(0.78);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, oklch(7.5% 0.006 240 / 0.98), oklch(7.5% 0.006 240 / 0.78) 34%, oklch(7.5% 0.006 240 / 0.08) 65%, oklch(7.5% 0.006 240 / 0.66)),
    linear-gradient(180deg, oklch(7.5% 0.006 240 / 0.9), transparent 24%, oklch(7.5% 0.006 240 / 0.34) 64%, var(--bg));
}

.hero-crystal {
  position: absolute;
  top: 17%;
  right: max(290px, calc((100vw - var(--max)) / 2 + 430px));
  z-index: -1;
  width: clamp(140px, 15vw, 260px);
  opacity: 0.85;
  filter: drop-shadow(0 34px 70px oklch(2% 0.004 240 / 0.72));
  transform: rotate(-8deg);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
  min-height: 760px;
}

.hero-copy-block {
  padding-top: 72px;
}

h1 {
  max-width: 660px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(5rem, 7vw, 8.6rem);
  line-height: 0.88;
  text-shadow:
    0 1px 0 oklch(100% 0 0 / 0.28),
    0 26px 70px oklch(2% 0.004 240 / 0.8);
}

.hero-lede {
  width: min(520px, 100%);
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.hero-actions {
  display: grid;
  gap: 14px;
  width: min(475px, 100%);
  margin-bottom: 16px;
}

.hero-actions .onyx-button,
.hero-actions .metal-button {
  justify-content: space-between;
}

.trust-line {
  margin: 0 0 44px;
  color: var(--dim);
  font-size: 0.9rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(590px, 100%);
  border-top: 1px solid var(--line);
}

.trust-grid article {
  padding: 22px 18px 0 0;
  border-right: 1px solid var(--line);
}

.trust-grid article + article {
  padding-left: 24px;
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid p {
  display: block;
  margin: 0;
}

.trust-grid strong {
  margin-top: 14px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid p {
  margin-top: 8px;
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.55;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, oklch(100% 0 0 / 0.16), transparent 38%),
    oklch(15% 0.008 240 / 0.74);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.09),
    0 10px 24px oklch(2% 0.004 240 / 0.28);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.line-icon::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 0;
  background: center / contain no-repeat url("./assets/icons/diamond.svg");
  filter: drop-shadow(0 0 10px oklch(90% 0.012 80 / 0.16));
}

article:hover > .line-icon,
.founder-meter:hover .line-icon,
.limited-card:hover .line-icon {
  transform: translateY(-2px);
  border-color: oklch(92% 0.01 80 / 0.3);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.14),
    0 16px 32px oklch(2% 0.004 240 / 0.38);
}

.diamond-icon::before {
  background-image: url("./assets/icons/diamond.svg");
}

.shield-icon::before {
  background-image: url("./assets/icons/shield.svg");
}

.star-icon::before {
  background-image: url("./assets/icons/loop.svg");
}

.loop-icon::before {
  background-image: url("./assets/icons/loop.svg");
}

.people-icon::before {
  background-image: url("./assets/icons/people.svg");
}

.lock-icon::before {
  background-image: url("./assets/icons/lock.svg");
}

.eye-icon::before {
  background-image: url("./assets/icons/eye.svg");
}

.check-icon::before {
  background-image: url("./assets/icons/check.svg");
}

.cube-icon::before {
  background-image: url("./assets/icons/cube.svg");
}

.hero-product {
  position: relative;
  min-height: 720px;
}

.founder-meter,
.limited-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  width: min(410px, 100%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.07), transparent),
    oklch(12% 0.008 240 / 0.72);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.founder-meter {
  position: absolute;
  top: 142px;
  right: 0;
  z-index: 5;
}

.founder-meter strong,
.limited-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-meter p,
.limited-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.founder-meter i,
.limited-card i {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: oklch(84% 0.006 80 / 0.14);
}

.founder-meter i span,
.limited-card i span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--chrome);
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid oklch(86% 0.006 80 / 0.24);
  border-radius: 42px;
  background: oklch(9% 0.006 240);
  box-shadow:
    inset 0 0 0 8px oklch(6% 0.005 240),
    inset 0 0 0 9px oklch(94% 0.006 80 / 0.16),
    0 40px 95px oklch(2% 0.004 240 / 0.78);
  transition:
    transform 260ms var(--ease-out),
    filter 260ms var(--ease-out);
}

.hero-product:hover .phone-home {
  filter: brightness(1.06);
}

.phone-home {
  right: 210px;
  bottom: 0;
  z-index: 3;
  width: 300px;
  height: 616px;
}

.phone-journal {
  right: 20px;
  bottom: 24px;
  z-index: 2;
  width: 260px;
  height: 538px;
  opacity: 0.94;
}

.phone-screen {
  position: absolute;
  inset: 12px;
  overflow: hidden;
  border-radius: 31px;
  background: var(--bg);
}

.phone-sensor {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 4;
  width: 76px;
  height: 18px;
  border: 1px solid oklch(94% 0.006 80 / 0.07);
  border-radius: 999px;
  background: oklch(3% 0.004 240 / 0.82);
  transform: translateX(-50%);
}

.phone-screen > img,
.phone-layer {
  position: absolute;
  inset: 0;
}

.phone-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.phone-screen.app-screen-frame {
  inset: 10px;
  border: 1px solid oklch(88% 0.008 80 / 0.13);
  border-radius: 32px;
  background: oklch(7% 0.006 240);
}

.phone-screen.app-screen-frame > .app-screen-shot,
.app-screen-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.phone-screen.app-screen-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(115deg, oklch(100% 0 0 / 0.09), transparent 26%),
    radial-gradient(circle at 72% 12%, oklch(100% 0 0 / 0.12), transparent 28%);
  mix-blend-mode: screen;
}

.phone-layer {
  background:
    linear-gradient(180deg, oklch(2% 0.004 240 / 0.38), transparent 30%, oklch(2% 0.004 240 / 0.9)),
    radial-gradient(circle at 48% 34%, oklch(94% 0.02 80 / 0.18), transparent 38%);
}

.phone-status,
.phone-content {
  position: relative;
  z-index: 2;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 20px 18px 0;
  color: oklch(88% 0.006 80);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 42px);
  padding: 76px 20px 28px;
}

.phone-content p:first-child {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-content h2 {
  width: min(220px, 100%);
  margin-bottom: 18px;
  font-size: 1.72rem;
  line-height: 1.05;
}

.log-button,
.mock-phone-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--onyx);
}

.log-button span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 12px;
}

.phone-stats span {
  display: grid;
  gap: 2px;
  min-height: 50px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--dim);
  background: oklch(12% 0.008 240 / 0.58);
  font-size: 0.56rem;
  text-align: center;
}

.phone-stats b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 0.9;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: 8px auto 12px;
  border: 8px solid oklch(86% 0.006 80 / 0.12);
  border-top-color: var(--pearl);
  border-radius: 50%;
  background: oklch(10% 0.006 240 / 0.6);
}

.score-ring strong {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.8;
}

.score-ring span {
  color: var(--dim);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: oklch(16% 0.008 240 / 0.74);
  backdrop-filter: blur(14px);
}

.daily-plan {
  display: grid;
  gap: 7px;
  margin: 0 0 11px;
}

.daily-plan span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 25px;
  padding: 6px 9px;
  border: 1px solid oklch(82% 0.006 80 / 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: oklch(9% 0.006 240 / 0.64);
  font-size: 0.56rem;
}

.daily-plan b {
  color: var(--ink);
  font-weight: 800;
}

.mini-funnel {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-funnel span {
  position: relative;
  overflow: hidden;
  height: 18px;
  padding-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: oklch(92% 0.006 80 / 0.78);
  background: oklch(10% 0.006 240 / 0.62);
  font-size: 0.55rem;
  line-height: 16px;
}

.mini-funnel span::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: var(--w);
  content: "";
  background: linear-gradient(90deg, oklch(86% 0.025 80 / 0.18), oklch(86% 0.025 80 / 0.38));
}

.phone-tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: center;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: oklch(8% 0.006 240 / 0.82);
}

.phone-tabbar span {
  justify-self: center;
  width: 13px;
  height: 13px;
  border: 1px solid oklch(88% 0.006 80 / 0.44);
  border-radius: 50%;
}

.phone-tabbar .active {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, var(--pearl), oklch(12% 0.008 240 / 0.24) 58%);
}

.phone-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.phone-card strong,
.phone-card span {
  display: block;
}

.phone-card strong {
  font-size: 0.78rem;
}

.journal-search {
  min-height: 34px;
  margin-bottom: 12px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dim);
  background: oklch(10% 0.006 240 / 0.72);
  font-size: 0.62rem;
}

.phone-card span,
.journal-phone-copy li {
  color: var(--dim);
  font-size: 0.66rem;
}

.journal-phone-copy ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.journal-phone-copy li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: oklch(12% 0.008 240 / 0.54);
}

.journal-phone-copy li span {
  display: block;
  margin-bottom: 5px;
  color: var(--dim);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-statbar {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  left: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(280px, 1.38fr) repeat(4, minmax(120px, 1fr));
  overflow: hidden;
  min-height: 168px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--r) var(--r) 0 0;
  background:
    linear-gradient(180deg, oklch(18% 0.008 240 / 0.82), oklch(9% 0.006 240 / 0.76)),
    var(--surface);
  box-shadow: 0 -22px 80px oklch(2% 0.004 240 / 0.58);
  backdrop-filter: blur(22px);
}

.hero-statbar > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.hero-statbar > *:last-child {
  border-right: 0;
}

.hero-statbar p {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.28;
}

.hero-statbar cite,
.hero-statbar span {
  color: var(--dim);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-statbar strong {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.82;
}

.hero-statbar small {
  color: var(--dim);
  font-size: 0.78rem;
}

.section,
.tools-story {
  padding: clamp(88px, 9vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
}

.section-intro {
  width: min(760px, 100%);
  margin-bottom: 52px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.wide-left {
  width: min(880px, 100%);
}

.section-intro h2,
.final-cta h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(3.4rem, 6.2vw, 7.1rem);
  line-height: 0.9;
}

.section-intro p:not(.section-pill),
.final-cta p,
.depth-grid p,
.privacy-grid p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.problem-section {
  background:
    radial-gradient(circle at 82% 4%, oklch(86% 0.02 80 / 0.1), transparent 32%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.problem-card,
.system-cards > article,
.price-card,
.founder-note,
.ethics-list article,
.faq-grid details,
.timeline article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(160deg, oklch(100% 0 0 / 0.06), transparent 42%),
    var(--surface);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.055);
}

.problem-card {
  min-height: 500px;
  padding: 28px;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.problem-card:hover,
.system-cards > article:hover,
.price-card:hover,
.timeline article:hover {
  transform: translateY(-4px);
  border-color: oklch(90% 0.01 80 / 0.3);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.09),
    0 22px 70px oklch(2% 0.004 240 / 0.34);
}

.price-card.featured:hover {
  transform: translateY(-22px);
}

.problem-card::before,
.system-cards > article::before,
.price-card::before,
.founder-note::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: url("./assets/backgrounds/black-slate-texture.png");
  background-size: cover;
  opacity: 0.2;
  mix-blend-mode: screen;
}

.tool-phone::before,
.analytics-card::before,
.chat-window::before,
.reflection-cards article::before,
.approach-panel::before,
.faq-grid details::before,
.ethics-list article::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: url("./assets/backgrounds/brushed-graphite-texture.png");
  background-size: cover;
  opacity: 0.09;
  mix-blend-mode: screen;
}

.tool-phone,
.analytics-card,
.chat-window,
.reflection-cards article,
.approach-panel,
.faq-grid details,
.ethics-list article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.problem-card > * {
  position: relative;
  z-index: 1;
}

.problem-card img {
  width: 116px;
  height: 116px;
  margin-bottom: 22px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px oklch(2% 0.004 240 / 0.6));
}

.problem-card > span,
.tool-band > div > span,
.system-cards article > span,
.timeline span,
.price-card > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem-card h3,
.system-cards h3,
.tool-band h3,
.timeline h3,
.depth-grid h2,
.privacy-grid h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.5vw, 2.55rem);
  line-height: 1.02;
}

.problem-card p,
.system-cards p,
.timeline p,
.price-card p,
.ethics-list p,
.faq-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 90px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: oklch(9% 0.006 240 / 0.52);
}

.mini-chart i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--pearl), oklch(86% 0.006 80 / 0.16));
}

.mini-chart i:nth-child(1) { height: 78%; }
.mini-chart i:nth-child(2) { height: 52%; }
.mini-chart i:nth-child(3) { height: 38%; }
.mini-chart i:nth-child(4) { height: 18%; }

.check-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--muted);
  background: oklch(9% 0.006 240 / 0.52);
  font-size: 0.84rem;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--pearl);
}

.check-list.negative li::before {
  content: "×";
}

.quote-band,
.refund-band,
.benefit-row {
  display: grid;
  align-items: center;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.055), transparent 42%),
    oklch(12% 0.008 240 / 0.82);
}

.quote-band {
  grid-template-columns: 1fr auto;
  min-height: 118px;
  padding: 28px 36px;
  background-image:
    linear-gradient(90deg, oklch(12% 0.008 240 / 0.86), oklch(12% 0.008 240 / 0.64)),
    url("./assets/backgrounds/cave-diamond-hero-banner.png");
  background-size: cover;
  background-position: center;
}

.quote-band p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.quote-band span {
  color: var(--muted);
}

.problem-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 42px;
  align-items: end;
  margin-top: 54px;
}

.problem-bottom h3 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.cost-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cost-metrics article {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.cost-metrics article:last-child {
  border-right: 0;
}

.cost-metrics strong {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 14px;
  border: 10px solid oklch(86% 0.006 80 / 0.16);
  border-top-color: var(--pearl);
  border-radius: 50%;
  font-size: 1.45rem;
}

.cost-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
}

.approach-panel {
  min-height: 330px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(90deg, oklch(12% 0.008 240 / 0.8), oklch(12% 0.008 240 / 0.2)),
    url("./assets/backgrounds/dark-stone-orb-banner.png") center / cover;
}

.system-section {
  position: relative;
  background:
    radial-gradient(circle at 74% 0, oklch(86% 0.02 80 / 0.1), transparent 30rem),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.section-bg-object {
  position: absolute;
  top: 76px;
  right: max(26px, calc((100vw - var(--max)) / 2 + 90px));
  width: clamp(160px, 20vw, 320px);
  opacity: 0.42;
  filter: drop-shadow(0 42px 70px oklch(2% 0.004 240 / 0.7));
}

.loop-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.loop-line::before {
  position: absolute;
  top: 58px;
  right: 9%;
  left: 9%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}

.loop-line li {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.loop-line img {
  width: 86px;
  height: 86px;
  margin-bottom: 12px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px oklch(2% 0.004 240 / 0.64));
}

.loop-line strong {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loop-line span {
  color: var(--muted);
  font-size: 0.88rem;
}

.system-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.system-cards > article {
  min-height: 560px;
  padding: 28px;
}

.mock-phone-panel {
  display: grid;
  gap: 14px;
  min-height: 286px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.045), transparent),
    oklch(8% 0.006 240 / 0.84);
}

.mock-phone-panel h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
}

.mock-phone-panel textarea {
  min-height: 96px;
  resize: none;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--muted);
  background: oklch(14% 0.008 240 / 0.68);
  padding: 14px;
}

.graph-panel,
.chat-panel {
  align-content: start;
}

.line-graph {
  position: relative;
  height: 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 36px 30px;
}

.line-graph i {
  position: absolute;
  inset: 14px 16px 18px;
  background: linear-gradient(90deg, var(--pearl), oklch(90% 0.012 80 / 0.8));
  clip-path: polygon(0 74%, 17% 56%, 32% 63%, 48% 38%, 64% 50%, 82% 26%, 100% 18%, 100% 27%, 82% 36%, 64% 60%, 48% 48%, 32% 73%, 17% 66%, 0 84%);
  filter: drop-shadow(0 0 16px oklch(90% 0.012 80 / 0.22));
}

.line-graph em {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 7px;
  height: 7px;
  border: 1px solid oklch(100% 0 0 / 0.7);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 14px oklch(90% 0.012 80 / 0.38);
  transform: translate(-50%, -50%);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: -3px;
  color: var(--dim);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-panel p {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: oklch(14% 0.008 240 / 0.72);
}

.system-cards footer {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.system-cards footer strong {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.9;
}

.system-cards footer small {
  color: var(--dim);
}

.tools-story {
  background: var(--bg);
}

.tools-story .section-intro {
  margin-bottom: 26px;
}

.tool-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  min-height: 520px;
  margin-inline: calc(max(24px, calc((100vw - var(--max)) / 2)) * -1);
  padding: 58px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background-size: cover;
  background-position: center;
}

.tool-band:nth-of-type(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.72fr);
}

.tracker-band {
  background-image:
    linear-gradient(90deg, var(--bg) 0 32%, oklch(7.5% 0.006 240 / 0.18) 62%, var(--bg) 100%),
    url("./assets/backgrounds/dark-stone-orb-banner.png");
}

.analytics-band {
  background-image:
    linear-gradient(90deg, var(--bg) 0 18%, oklch(7.5% 0.006 240 / 0.26) 50%, var(--bg) 100%),
    url("./assets/backgrounds/cave-diamond-hero-banner.png");
}

.coach-band {
  background-image:
    linear-gradient(90deg, var(--bg) 0 34%, oklch(7.5% 0.006 240 / 0.18) 70%, var(--bg) 100%),
    url("./assets/backgrounds/onyx-pearl-crystal-banner.png");
}

.reflections-band {
  background-image:
    linear-gradient(90deg, var(--bg) 0 20%, oklch(7.5% 0.006 240 / 0.18) 68%, var(--bg) 100%),
    url("./assets/backgrounds/dark-stone-orb-banner.png");
}

.tool-band h3 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.tool-band p {
  width: min(480px, 100%);
  color: var(--muted);
  line-height: 1.72;
}

.tool-phone,
.analytics-card,
.chat-window,
.reflection-cards article {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.06), transparent),
    oklch(10% 0.006 240 / 0.78);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(16px);
}

.tool-phone {
  justify-self: end;
  width: min(320px, 100%);
  min-height: 520px;
  padding: 34px;
  border-radius: 34px;
}

.tool-phone strong {
  display: block;
  margin-top: 24px;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.85;
  text-align: center;
}

.tool-phone > span {
  display: block;
  color: var(--dim);
  text-align: center;
  text-transform: uppercase;
}

.tool-phone ul {
  display: grid;
  gap: 12px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.tool-phone li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.analytics-card {
  min-height: 430px;
  padding: 28px;
}

.analytics-card h4 {
  margin: 0 0 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-graph.large {
  height: 220px;
}

.analytics-card strong {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin-top: 26px;
  border: 9px solid oklch(86% 0.006 80 / 0.15);
  border-top-color: var(--pearl);
  border-radius: 50%;
  font-size: 1.6rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metric-row b {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  background: oklch(12% 0.008 240 / 0.72);
}

.metric-row small {
  display: block;
  color: var(--dim);
  font-family: var(--body);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.funnel-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.funnel-bars span {
  position: relative;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  min-height: 34px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
}

.funnel-bars span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  content: "";
  background: linear-gradient(90deg, oklch(88% 0.012 80 / 0.28), transparent);
}

.funnel-bars b {
  position: relative;
  color: var(--ink);
}

.chat-window {
  display: grid;
  gap: 14px;
  width: min(360px, 100%);
  min-height: 390px;
  padding: 28px;
}

.chat-window p {
  width: 78%;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--muted);
  background: oklch(14% 0.008 240 / 0.72);
}

.chat-window p:nth-child(2) {
  justify-self: end;
  color: var(--ink);
}

.reflection-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reflection-cards article {
  min-height: 250px;
  padding: 22px;
}

.reflection-cards h4 {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.journey-section {
  background:
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  min-height: 260px;
  padding: 26px;
}

.timeline article::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, var(--pearl), transparent 58%);
  opacity: 0.28;
}

.comparison-section {
  background:
    radial-gradient(circle at 78% 8%, oklch(90% 0.02 80 / 0.08), transparent 26rem),
    var(--bg-2);
}

.depth-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(380px, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 34px;
}

.depth-grid h2,
.privacy-grid h2 {
  font-size: clamp(3.2rem, 5.8vw, 6.6rem);
  line-height: 0.9;
}

.founder-note {
  min-height: 330px;
  padding: 42px;
}

.founder-note img {
  position: absolute;
  right: 28px;
  bottom: -24px;
  width: 230px;
  opacity: 0.72;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: oklch(10% 0.006 240 / 0.84);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

.comparison-table span,
.comparison-table i,
.comparison-table b {
  display: grid;
  align-items: center;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
}

.comparison-table b {
  color: var(--ink);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.08), transparent),
    oklch(17% 0.008 240 / 0.86);
}

.comparison-table span:last-child,
.comparison-table i:last-child,
.comparison-table b:last-child {
  border-right: 0;
}

.comparison-table [role="columnheader"] {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.founders-section {
  background:
    linear-gradient(180deg, var(--bg-2), var(--bg)),
    radial-gradient(circle at 70% 0, oklch(90% 0.02 80 / 0.08), transparent 30rem);
}

.founders-hero {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(320px, 430px);
  gap: 30px;
  align-items: end;
  min-height: 310px;
  margin-bottom: 34px;
  background:
    linear-gradient(90deg, var(--bg) 0 42%, oklch(7.5% 0.006 240 / 0.28)),
    url("./assets/backgrounds/cave-diamond-hero-banner.png") center / cover;
  border-radius: var(--r);
}

.founders-hero > div:first-child {
  padding: 44px;
}

.founders-hero h2 {
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 6.2vw, 7.2rem);
  line-height: 0.88;
}

.limited-card {
  margin: 0 34px 34px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  min-height: 680px;
  padding: 34px;
}

.price-card.featured {
  color: oklch(16% 0.008 245);
  border-color: oklch(94% 0.01 80 / 0.72);
  background:
    linear-gradient(180deg, oklch(98% 0.006 80 / 0.88), oklch(72% 0.01 85 / 0.72) 52%, oklch(22% 0.008 240 / 0.62)),
    url("./assets/generated/founder-card-material.png") center / cover,
    var(--surface-2);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.58),
    inset 0 0 0 1px oklch(16% 0.006 240 / 0.15),
    0 30px 100px oklch(86% 0.02 80 / 0.18);
  transform: translateY(-18px);
}

.price-card.featured::after {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid oklch(100% 0 0 / 0.42);
  border-radius: calc(var(--r) - 8px);
  background:
    radial-gradient(circle at 50% 36%, oklch(100% 0 0 / 0.28), transparent 34%),
    linear-gradient(180deg, transparent 46%, oklch(5% 0.005 240 / 0.16));
  box-shadow: inset 0 0 74px oklch(100% 0 0 / 0.2);
}

.price-card.featured > span {
  display: inline-grid;
  place-items: center;
  width: max-content;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 0 16px;
  border: 1px solid oklch(100% 0 0 / 0.24);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(180deg, oklch(16% 0.008 240 / 0.92), oklch(7.5% 0.006 240 / 0.88));
  box-shadow: 0 12px 34px oklch(2% 0.004 240 / 0.36);
}

.price-card.featured p,
.price-card.featured ul {
  color: oklch(22% 0.007 245);
  text-shadow: 0 1px 0 oklch(100% 0 0 / 0.24);
}

.price-card.featured h3 {
  color: oklch(11% 0.007 245);
  text-shadow:
    0 1px 0 oklch(100% 0 0 / 0.36),
    0 14px 40px oklch(100% 0 0 / 0.18);
}

.price-card.featured h3 small {
  color: oklch(20% 0.006 245);
}

.price-card.featured li::before {
  color: oklch(17% 0.007 245);
}

.price-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.82;
}

.price-card h3 small {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
}

.price-card > img {
  position: relative;
  z-index: 1;
  width: 210px;
  height: 180px;
  margin: 24px auto 26px;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px oklch(2% 0.004 240 / 0.62));
}

.price-card .metal-button,
.price-card .onyx-button {
  width: 100%;
  margin-bottom: 24px;
}

.price-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--pearl);
}

.refund-band {
  grid-template-columns: 90px 1fr 1fr;
  gap: 28px;
  padding: 24px 32px;
}

.refund-band img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.refund-band p {
  margin: 0;
  color: var(--muted);
}

.privacy-section {
  background:
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.ethics-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.ethics-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 18px;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.ethics-list article:last-child {
  border-bottom: 0;
}

.ethics-list .line-icon {
  grid-row: 1 / 3;
}

.ethics-list b,
.ethics-list p {
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.faq-grid details {
  padding: 0;
}

.faq-grid summary {
  min-height: 62px;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.faq-grid summary::marker {
  color: var(--dim);
}

.faq-grid details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-grid p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  position: relative;
  min-height: 1010px;
  padding: clamp(90px, 9vw, 140px) max(24px, calc((100vw - var(--max)) / 2));
  isolation: isolate;
}

.cta-bg,
.cta-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04) brightness(0.8);
}

.cta-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, var(--bg), oklch(7.5% 0.006 240 / 0.84) 34%, oklch(7.5% 0.006 240 / 0.2) 68%, oklch(7.5% 0.006 240 / 0.88)),
    linear-gradient(180deg, var(--bg), transparent 18%, oklch(7.5% 0.006 240 / 0.32) 64%, var(--bg));
}

.cta-content {
  width: min(550px, 100%);
}

.cta-quote {
  position: absolute;
  top: clamp(110px, 9vw, 155px);
  right: max(44px, calc((100vw - var(--max)) / 2 + 38px));
  width: min(330px, 28vw);
  color: var(--ink);
  text-shadow: 0 1px 28px oklch(2% 0.004 240);
}

.cta-quote p {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.3vw, 2.5rem);
  line-height: 0.98;
}

.cta-quote span {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.final-cta h2 {
  max-width: 660px;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  width: min(430px, 100%);
  margin-top: 34px;
}

.waitlist-form label {
  display: grid;
}

.waitlist-form .honeypot,
.newsletter-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.waitlist-form input,
.waitlist-form select {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.035), transparent),
    oklch(13% 0.008 240 / 0.72);
  outline: 0;
}

.waitlist-form input::placeholder {
  color: var(--dim);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: oklch(94% 0.01 80 / 0.5);
  box-shadow: 0 0 0 4px oklch(86% 0.02 80 / 0.1);
}

.waitlist-form button:disabled,
.newsletter-form button:disabled,
.waitlist-form input:disabled,
.newsletter-form input:disabled,
.waitlist-form select:disabled {
  cursor: wait;
  opacity: 0.68;
}

.waitlist-form.is-sent .form-note {
  color: oklch(82% 0.07 155);
}

.waitlist-form.has-error .form-note,
.form-note[data-state="error"] {
  color: oklch(78% 0.11 32);
}

.form-note[data-state="setup"] {
  color: oklch(84% 0.1 76);
}

.form-note[data-state="success"] {
  color: oklch(82% 0.07 155);
}

.form-secondary {
  border: 0;
}

.form-note {
  min-height: 24px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.benefit-row {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 74px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.benefit-row article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.benefit-row article:last-child {
  border-right: 0;
}

.benefit-row .line-icon {
  grid-row: 1 / 3;
}

.benefit-row b,
.benefit-row p {
  margin: 0;
}

.benefit-row p {
  color: var(--dim);
  font-size: 0.84rem;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 46px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer p {
  margin: 0;
  color: var(--dim);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px 30px;
  color: var(--muted);
  font-size: 0.82rem;
}

.journal-shell,
.article-shell {
  background:
    radial-gradient(circle at 24% 8%, oklch(88% 0.014 80 / 0.07), transparent 34rem),
    radial-gradient(circle at 84% 20%, oklch(72% 0.035 220 / 0.08), transparent 36rem),
    var(--bg);
}

.journal-main,
.article-main {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.journal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 40px;
  min-height: 680px;
  padding-top: 150px;
}

.journal-hero-bg {
  position: absolute;
  top: 82px;
  left: -5vw;
  z-index: 0;
  width: min(770px, 62vw);
  height: 620px;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.78) contrast(1.14);
  mask-image: linear-gradient(90deg, black 0%, black 56%, transparent 100%);
}

.journal-hero-copy,
.journal-feature-card,
.article-library,
.journal-cta,
.article-layout {
  position: relative;
  z-index: 1;
}

.journal-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding-left: 18px;
}

.journal-hero h1,
.article-hero h1 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 8.6rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.journal-hero-copy > p:not(.section-pill),
.article-hero > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  line-height: 1.65;
}

.journal-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 720px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.journal-trust-row article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px 14px;
  align-items: start;
}

.journal-trust-row .line-icon {
  grid-row: 1 / 3;
}

.journal-trust-row b,
.journal-trust-row p {
  margin: 0;
}

.journal-trust-row b {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-trust-row p {
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.45;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 0.72fr) auto;
  gap: 14px;
  align-items: center;
  max-width: 730px;
  margin-top: 42px;
  padding: 18px 18px 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(145deg, oklch(17% 0.008 240 / 0.82), oklch(8% 0.006 240 / 0.76)),
    url("./assets/backgrounds/black-slate-texture.png") center / cover;
  box-shadow: var(--shadow-deep);
}

.newsletter-card div,
.newsletter-card label {
  min-width: 0;
}

.newsletter-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.newsletter-card span {
  display: block;
  color: var(--dim);
  font-size: 0.78rem;
}

.newsletter-card label > span,
.sort-select span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-card input,
.sort-select select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: oklch(13% 0.008 240 / 0.82);
}

.newsletter-card input {
  padding: 0 18px;
}

.newsletter-card input::placeholder {
  color: var(--dim);
}

.newsletter-card .form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--dim);
  font-size: 0.76rem;
}

.journal-feature-card {
  align-self: end;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow-deep);
}

.journal-feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(130deg, oklch(5% 0.006 240 / 0.76) 0%, oklch(7% 0.006 240 / 0.44) 48%, transparent 100%),
    radial-gradient(circle at 82% 22%, oklch(100% 0 0 / 0.16), transparent 30%);
}

.journal-feature-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.82) contrast(1.1);
}

.journal-feature-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 500px;
  padding: 38px;
}

.journal-feature-card h2 {
  max-width: 430px;
  margin: 28px 0 14px;
  font-family: var(--display);
  font-size: clamp(3rem, 4vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.journal-feature-card p:not(.section-pill) {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.journal-feature-card footer {
  display: flex;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-library {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(180deg, oklch(13% 0.008 240 / 0.9), oklch(8% 0.006 240 / 0.82)),
    url("./assets/backgrounds/brushed-graphite-texture.png") center / cover;
  box-shadow: var(--shadow-deep);
}

.library-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.library-toolbar h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-chips button,
.article-tags span {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background:
    linear-gradient(180deg, oklch(17% 0.008 240 / 0.9), oklch(10% 0.006 240 / 0.84));
  font-size: 0.78rem;
  cursor: pointer;
}

.filter-chips button.active,
.filter-chips button:hover,
.article-tags span {
  color: oklch(18% 0.009 245);
  background:
    url("./assets/cutouts/cta-pearl-pill-button-cutout.png") center / 104% 130% no-repeat,
    var(--chrome);
}

.sort-select {
  display: block;
  width: 190px;
}

.sort-select select {
  padding: 0 18px;
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(118px, 0.46fr) 1fr;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(145deg, oklch(15% 0.008 240 / 0.88), oklch(8% 0.006 240 / 0.88)),
    url("./assets/backgrounds/black-slate-texture.png") center / cover;
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: oklch(90% 0.012 80 / 0.28);
  box-shadow: 0 28px 64px oklch(2% 0.004 240 / 0.48);
}

.article-card > img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  padding: 10px;
  filter: saturate(0.78) contrast(1.1);
}

.article-card:nth-child(2) > img,
.article-card:nth-child(3) > img,
.article-card:nth-child(4) > img,
.article-card:nth-child(5) > img {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 45%, oklch(100% 0 0 / 0.1), transparent 44%),
    oklch(9% 0.006 240 / 0.82);
}

.article-card > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 22px;
}

.article-card span {
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: clamp(1.48rem, 1.65vw, 2.08rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.article-card footer {
  display: flex;
  gap: 12px;
  margin-top: auto;
  color: var(--dim);
}

.article-card a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: oklch(14% 0.008 240 / 0.86);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 28px 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
}

.pagination a.active,
.pagination a:hover {
  color: var(--ink);
  background: oklch(18% 0.008 240 / 0.8);
}

.journal-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  margin: 62px 0 0;
  overflow: hidden;
  padding: 34px 54px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow-deep);
}

.journal-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.journal-cta > div,
.journal-cta > a {
  position: relative;
  z-index: 1;
}

.journal-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.journal-cta p {
  margin: 8px 0 0;
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 54px;
  padding-top: 150px;
}

.article-content {
  min-width: 0;
}

.article-hero {
  max-width: 820px;
}

.back-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-hero h1 {
  font-size: clamp(4rem, 7vw, 6.8rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-meta img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: oklch(14% 0.008 240 / 0.82);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding-inline: 14px;
  font-size: 0.68rem;
}

.article-cover {
  width: 100%;
  height: min(460px, 52vw);
  min-height: 290px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  object-fit: cover;
  filter: saturate(0.78) contrast(1.1);
}

.article-prose {
  max-width: 820px;
  padding-bottom: 70px;
}

.article-prose p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-prose .lead-drop {
  margin-top: 32px;
}

.lead-drop::first-letter {
  float: left;
  margin: 0.1em 0.15em 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 5.8rem;
  line-height: 0.75;
}

.article-prose h2 {
  margin: 42px 0 12px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.article-quote,
.daily-focus,
.toc-card,
.founder-ad,
.side-article-card,
.reading-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(145deg, oklch(15% 0.008 240 / 0.88), oklch(8% 0.006 240 / 0.88)),
    url("./assets/backgrounds/black-slate-texture.png") center / cover;
  box-shadow: var(--shadow-deep);
}

.article-quote {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  margin: 34px 0;
  padding: 24px;
}

.article-quote img {
  grid-row: 1 / 3;
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.article-quote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1.03;
}

.article-quote span {
  color: var(--dim);
  font-size: 0.9rem;
}

.daily-focus {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
  padding: 24px;
}

.daily-focus div {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.daily-focus p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.article-aside {
  position: sticky;
  top: 122px;
  align-self: start;
  display: grid;
  gap: 22px;
}

.reading-card,
.toc-card,
.founder-ad,
.side-article-card {
  padding: 24px;
}

.reading-card {
  display: grid;
  gap: 14px;
}

.reading-card div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.reading-card i {
  display: block;
  height: 3px;
  overflow: hidden;
  background: oklch(100% 0 0 / 0.12);
}

.reading-card i span {
  display: block;
  height: 100%;
  background: var(--chrome);
}

.toc-card h2,
.side-article-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.toc-card a {
  display: block;
  padding-block: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.toc-card a:hover,
.back-link:hover,
.side-article-card a:hover {
  color: var(--ink);
}

.founder-ad img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}

.founder-ad h2,
.side-article-card h3 {
  margin: 14px 0;
  font-family: var(--display);
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.founder-ad p:not(.section-pill),
.side-article-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.side-article-card img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    radial-gradient(circle at 50% 48%, oklch(100% 0 0 / 0.1), transparent 44%),
    oklch(8% 0.006 240);
}

.side-article-card a {
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  animation: rise-in 820ms var(--ease-soft) forwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}

.motion-ready .motion-item {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 720ms var(--ease-soft),
    transform 720ms var(--ease-soft),
    filter 720ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes mineral-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--float-rotate, -8deg));
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(calc(var(--float-rotate, -8deg) + 1.4deg));
  }
}

@keyframes pearl-breathe {
  0%,
  100% {
    filter: drop-shadow(0 28px 38px oklch(2% 0.004 240 / 0.62));
  }
  50% {
    filter:
      drop-shadow(0 34px 44px oklch(2% 0.004 240 / 0.58))
      drop-shadow(0 0 26px oklch(92% 0.018 80 / 0.24));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-crystal {
    --float-rotate: -8deg;
    animation: mineral-float 9s var(--ease-soft) infinite;
    will-change: transform;
  }

  .section-bg-object {
    --float-rotate: 12deg;
    animation: mineral-float 11s var(--ease-soft) infinite;
    will-change: transform;
  }

  .price-card.featured > img {
    animation: pearl-breathe 7s var(--ease-soft) infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-product {
    width: min(620px, 100%);
    min-height: 660px;
    margin-inline: auto;
  }

  .founder-meter {
    top: 30px;
  }

  .hero-statbar {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    border-bottom: 1px solid var(--line);
    border-radius: var(--r);
  }

  .hero-statbar blockquote {
    grid-column: 1 / -1;
  }

  .problem-grid,
  .system-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid,
  .tool-band,
  .tool-band:nth-of-type(even),
  .privacy-grid,
  .depth-grid,
  .founders-hero {
    grid-template-columns: 1fr;
  }

  .tool-band {
    margin-inline: 0;
    padding-inline: 34px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    margin-bottom: 18px;
  }

  .price-card.featured {
    transform: none;
  }

  .benefit-row {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 58px;
  }

  .journal-hero,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .journal-hero {
    min-height: auto;
    padding-top: 130px;
  }

  .journal-hero-copy {
    min-height: auto;
    padding: 60px 0 0;
  }

  .journal-feature-card {
    align-self: auto;
  }

  .article-aside {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reading-card {
    grid-column: 1 / -1;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 10px 12px 10px 16px;
  }

  .brand {
    font-size: 1.75rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.7rem;
  }

  .hero,
  .section,
  .tools-story,
  .final-cta,
  .journal-main,
  .article-main {
    padding-inline: 18px;
  }

  .section,
  .tools-story {
    padding-block: 64px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-copy-block {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(3.55rem, 13vw, 4.85rem);
    line-height: 0.9;
  }

  .section-intro h2,
  .final-cta h2,
  .depth-grid h2,
  .privacy-grid h2,
  .founders-hero h2 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .hero-actions {
    width: 100%;
  }

  .primary-action {
    min-height: 62px;
    padding-inline: 20px;
    white-space: normal;
    text-align: left;
  }

  .problem-bottom,
  .loop-line,
  .faq-grid,
  .refund-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .system-cards,
  .timeline,
  .trust-grid,
  .cost-metrics,
  .pricing-grid,
  .benefit-row {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    padding: 0 18px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .problem-grid::-webkit-scrollbar,
  .system-cards::-webkit-scrollbar,
  .timeline::-webkit-scrollbar,
  .trust-grid::-webkit-scrollbar,
  .cost-metrics::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .benefit-row::-webkit-scrollbar {
    display: none;
  }

  .problem-grid > article,
  .system-cards > article,
  .timeline > article,
  .trust-grid > article,
  .cost-metrics > article,
  .pricing-grid > article,
  .benefit-row > article {
    flex: 0 0 min(326px, 84vw);
    scroll-snap-align: start;
  }

  .price-card.featured {
    order: -1;
  }

  .system-cards footer {
    position: static;
    margin-top: 18px;
  }

  .trust-grid article,
  .trust-grid article + article,
  .cost-metrics article,
  .benefit-row article {
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child,
  .benefit-row article:last-child {
    border-bottom: 0;
  }

  .hero-product {
    min-height: 620px;
  }

  .founder-meter {
    position: relative;
    top: auto;
    right: auto;
    z-index: 5;
    margin-left: auto;
  }

  .phone-home {
    right: auto;
    left: 50%;
    width: min(286px, 78vw);
    height: 586px;
    transform: translateX(-60%);
  }

  .phone-journal {
    right: 0;
    width: min(236px, 58vw);
    opacity: 0.62;
  }

  .hero-crystal,
  .section-bg-object {
    display: none;
  }

  .hero-statbar > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-statbar > *:last-child {
    border-bottom: 0;
  }

  .quote-band {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px;
  }

  .tool-band,
  .tool-band:nth-of-type(even) {
    min-height: auto;
    padding: 30px 22px;
  }

  .reflection-cards {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table > div {
    min-width: 760px;
  }

  .limited-card {
    margin: 0 22px 22px;
  }

  .founders-hero > div:first-child,
  .founder-note,
  .approach-panel {
    padding: 28px;
  }

  .final-cta {
    min-height: auto;
  }

  .cta-quote {
    position: static;
    width: 100%;
    margin-top: 34px;
  }

  .footer {
    align-items: start;
  }

  .footer nav {
    grid-template-columns: repeat(2, max-content);
  }

  .journal-main,
  .article-main {
    width: 100%;
  }

  .journal-hero {
    gap: 24px;
    padding-top: 104px;
  }

  .journal-hero-bg {
    top: 70px;
    left: -30vw;
    width: 110vw;
    height: 560px;
    opacity: 0.44;
  }

  .journal-hero h1,
  .article-hero h1 {
    font-size: clamp(3.7rem, 16vw, 5.6rem);
  }

  .journal-trust-row,
  .newsletter-card,
  .library-toolbar,
  .journal-cta,
  .article-aside,
  .daily-focus {
    grid-template-columns: 1fr;
  }

  .journal-trust-row {
    gap: 18px;
  }

  .newsletter-card {
    padding: 18px;
  }

  .journal-feature-card,
  .journal-feature-card > div {
    min-height: 430px;
  }

  .journal-feature-card > div {
    padding: 28px;
  }

  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-chips button {
    flex: 0 0 auto;
  }

  .sort-select {
    width: 100%;
  }

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

  .journal-cta {
    padding: 28px;
  }

  .journal-cta .metal-button {
    width: 100%;
  }

  .article-layout {
    gap: 36px;
    padding-top: 112px;
  }

  .article-cover {
    height: 330px;
  }

  .article-quote {
    grid-template-columns: 64px 1fr;
    padding: 20px;
  }

  .article-quote img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 460px) {
  .nav-cta {
    max-width: 142px;
  }

  h1 {
    max-width: 20rem;
    font-size: clamp(2.8rem, 11.5vw, 3.18rem);
    line-height: 0.92;
    text-wrap: balance;
  }

  .hero-lede,
  .section-intro p:not(.section-pill),
  .final-cta p {
    font-size: 0.95rem;
  }

  .phone-journal {
    display: none;
  }

  .hero-copy-block,
  .hero-actions,
  .hero-lede,
  .trust-line {
    width: min(342px, 100%);
    max-width: min(342px, 100%);
  }

  .hero-actions .metal-button,
  .hero-actions .onyx-button {
    width: 100%;
    min-width: 0;
  }

  .phone-home {
    left: 50%;
    width: min(272px, 86vw);
    height: 570px;
    transform: translateX(-50%);
  }

  .phone-content {
    padding-inline: 16px;
  }

  .phone-content h2 {
    font-size: 1.54rem;
  }

  .daily-plan span {
    min-height: 22px;
    padding: 5px 8px;
    font-size: 0.5rem;
  }

  .founder-meter {
    width: 100%;
  }

  .hero-product {
    min-height: 622px;
  }

  .problem-card,
  .system-cards > article,
  .price-card {
    min-height: auto;
    padding: 22px;
  }

  .section-intro {
    margin-bottom: 32px;
  }

  .problem-card img {
    width: 92px;
    height: 92px;
    margin-bottom: 20px;
  }

  .mock-phone-panel {
    gap: 10px;
    min-height: auto;
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .mock-phone-panel textarea {
    min-height: 72px;
  }

  .line-graph {
    height: 78px;
  }

  .line-graph.large {
    height: 140px;
  }

  .tool-phone,
  .analytics-card,
  .chat-window,
  .reflection-cards article {
    min-height: auto;
    padding: 22px;
  }

  .tool-phone strong {
    margin-top: 12px;
    font-size: 4rem;
  }

  .tool-phone ul {
    margin-top: 24px;
  }

  .timeline article {
    min-height: 220px;
  }

  .price-card > img {
    width: 164px;
    height: 136px;
    margin-block: 14px 18px;
  }

  .loop-line::before {
    display: none;
  }

  .benefit-row article,
  .ethics-list article {
    grid-template-columns: 50px 1fr;
    padding: 20px;
  }

  .journal-hero-copy {
    padding-top: 28px;
  }

  .journal-feature-card,
  .journal-feature-card > div {
    min-height: 390px;
  }

  .journal-feature-card h2 {
    font-size: 2.75rem;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-card > img {
    height: 190px;
    min-height: 190px;
  }

  .article-card > div {
    padding: 22px;
  }

  .pagination {
    gap: 8px;
  }

  .article-cover {
    min-height: 230px;
    height: 245px;
  }

  .article-meta {
    gap: 9px;
  }

  .lead-drop::first-letter {
    font-size: 4.6rem;
  }

  .article-quote {
    grid-template-columns: 1fr;
  }

  .article-quote img {
    grid-row: auto;
  }
}

@media (min-width: 600px) and (max-width: 820px) {
  .hero-actions {
    width: min(540px, 100%);
  }

  .trust-grid,
  .cost-metrics,
  .problem-grid,
  .system-cards,
  .timeline,
  .benefit-row {
    display: grid;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cost-metrics,
  .benefit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid,
  .system-cards,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid > article,
  .cost-metrics > article,
  .problem-grid > article,
  .system-cards > article,
  .timeline > article,
  .benefit-row > article {
    flex: initial;
  }

  .pricing-grid {
    display: grid;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    grid-template-columns: 1fr;
  }

  .pricing-grid > article {
    flex: initial;
  }
}

/* ============================================================
   MUSEUM PLAQUE — Header rebuild + eyebrow + ghost CTA.
   Append-only; overrides earlier rules via cascade order.
   ============================================================ */

.topbar {
  top: 18px;
  grid-template-columns: auto 1fr auto;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  padding: 10px 14px 10px 22px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, oklch(14% 0.008 240 / 0.72), oklch(8% 0.006 240 / 0.6)),
    var(--surface);
  box-shadow:
    0 1px 0 oklch(100% 0 0 / 0.04) inset,
    0 22px 60px oklch(2% 0.004 240 / 0.55);
}

.is-scrolled .topbar {
  top: 10px;
  border-color: oklch(88% 0.008 80 / 0.18);
  background:
    linear-gradient(180deg, oklch(11% 0.007 240 / 0.92), oklch(6% 0.005 240 / 0.85)),
    var(--surface);
}

.brand {
  gap: 10px;
  text-shadow: none;
}

.brand img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px oklch(88% 0.014 80 / 0.22));
}

.brand-wordmark {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
}

.topbar .nav-links {
  justify-content: center;
  gap: clamp(14px, 1.9vw, 30px);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: oklch(80% 0.006 80 / 0.82);
}

.topbar .nav-links a {
  padding-block: 10px;
  white-space: nowrap;
}

/* Pearl CTA in header — sized down vs hero CTA so it doesn't dominate.
   Inherits the marble/chrome background from .metal-button automatically. */
.metal-button.nav-cta {
  min-height: 42px;
  padding: 0 22px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.metal-button.nav-cta span:last-child {
  font-size: 1rem;
}

.topbar .nav-links a::after {
  background: oklch(88% 0.012 80);
}

.ghost-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid oklch(88% 0.008 80 / 0.34);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.ghost-cta:hover {
  border-color: oklch(92% 0.012 80 / 0.62);
  background: oklch(18% 0.008 240 / 0.34);
  transform: translateY(-1px);
}

.ghost-cta span:last-child {
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: transform 220ms var(--ease-out);
}

.ghost-cta:hover span:last-child {
  transform: translateX(3px);
}

/* ----- Eyebrow (replaces old .section-pill on the hero) ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: oklch(78% 0.006 80 / 0.86);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, oklch(86% 0.025 80), oklch(86% 0.025 80 / 0));
}

/* ============================================================
   SYSTEM SECTION — 4 editorial pillars, asymmetric grid.
   ============================================================ */

.system-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px);
  margin-top: clamp(48px, 5vw, 88px);
}

.system-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(26px, 2.4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.025), transparent 45%),
    oklch(10% 0.007 240 / 0.78);
  box-shadow:
    0 1px 0 oklch(100% 0 0 / 0.04) inset,
    var(--shadow-deep);
  isolation: isolate;
}

.system-pillar.pillar-log { grid-column: span 7; }
.system-pillar.pillar-reflect { grid-column: span 5; }
.system-pillar.pillar-patterns { grid-column: span 5; }
.system-pillar.pillar-coach { grid-column: span 7; }

.system-pillar header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: baseline;
}

.pillar-index {
  font-family: var(--display);
  font-size: clamp(2.2rem, 2.4vw, 2.9rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  color: oklch(88% 0.018 80);
  font-feature-settings: "lnum";
}

.system-pillar header h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
}

.system-pillar header p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.system-pillar footer {
  position: static;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.system-pillar footer strong {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.system-pillar footer small {
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ----- Pillar artifacts (mini app surfaces) ----- */
.pillar-artifact {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 0%, oklch(100% 0 0 / 0.04), transparent 40%),
    linear-gradient(180deg, oklch(12% 0.008 240 / 0.92), oklch(8% 0.006 240 / 0.96));
  overflow: hidden;
}

.pillar-artifact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, oklch(86% 0.025 80 / 0.05), transparent 60%);
}

.artifact-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.artifact-toolbar .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: oklch(40% 0.006 240);
  display: inline-block;
  margin-right: 4px;
}

.artifact-toolbar .dot:first-child { background: oklch(60% 0.12 30); }
.artifact-toolbar .dot:nth-child(2) { background: oklch(78% 0.08 80); }
.artifact-toolbar .dot:nth-child(3) { background: oklch(70% 0.1 145); }

.artifact-time {
  margin-left: auto;
  font-size: 0.66rem;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artifact-pill {
  padding: 3px 9px;
  border: 1px solid oklch(78% 0.12 205 / 0.35);
  border-radius: 999px;
  color: oklch(82% 0.1 205);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artifact-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.artifact-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.artifact-body h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.3vw, 1.4rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: oklch(14% 0.008 240 / 0.6);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.chip.is-on {
  border-color: oklch(88% 0.012 80 / 0.5);
  background: linear-gradient(180deg, oklch(28% 0.012 240), oklch(14% 0.008 240));
  color: var(--ink);
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.06) inset;
}

.rep-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 4px 0;
}

.rep-scale span {
  height: 8px;
  border-radius: 2px;
  background: oklch(18% 0.008 240);
  border: 1px solid var(--line);
}

.rep-scale span.is-on {
  background: linear-gradient(180deg, var(--pearl), oklch(72% 0.018 80));
  border-color: oklch(92% 0.012 80 / 0.5);
  box-shadow: 0 0 18px oklch(86% 0.025 80 / 0.35);
}

.artifact-cta {
  margin-top: 6px;
  padding: 10px 14px;
  border: 1px solid oklch(88% 0.012 80 / 0.32);
  border-radius: 6px;
  background: linear-gradient(180deg, oklch(20% 0.01 240), oklch(11% 0.007 240));
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
}

.reflect-text {
  padding: 14px;
  border-radius: 6px;
  border-left: 0;
  background:
    linear-gradient(180deg, oklch(15% 0.008 240 / 0.8), oklch(10% 0.007 240 / 0.6));
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}

.reflect-meta {
  display: flex;
  gap: 14px;
  font-size: 0.66rem;
  color: var(--dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artifact-score {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.artifact-score small {
  margin-left: 4px;
  font-size: 0.9rem;
  color: var(--dim);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.artifact-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coach-thread {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.msg-coach {
  align-self: flex-start;
  background: oklch(16% 0.008 240 / 0.9);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.msg-user {
  align-self: flex-end;
  background: linear-gradient(180deg, oklch(78% 0.022 80), oklch(64% 0.018 80));
  color: oklch(14% 0.008 240);
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

.msg.is-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
  padding: 10px 14px;
  max-width: max-content;
}

.msg.is-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(70% 0.006 80);
  animation: dot-pulse 1.4s var(--ease-soft) infinite;
}

.msg.is-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg.is-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
  0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* ============================================================
   TOOLS SECTION — fixed tracker numbers, real SVG charts.
   ============================================================ */

.tool-band .band-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
  max-width: 520px;
}

.tool-band .band-copy .pillar-index {
  font-size: 2.8rem;
  line-height: 0.9;
  color: oklch(82% 0.018 80);
}

.tool-band .band-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 4.6vw, 4.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.015em;
}

.tool-band .band-copy p {
  margin: 0;
  width: 100%;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.tool-band .band-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.tool-band .band-stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tool-band .band-stats b {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.tool-band .band-stats b small {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

.tool-band .band-stats span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ----- Tracker phone (the one with the broken numbers) ----- */
.tool-phone.tracker-phone,
.tool-phone.coach-phone,
.tool-phone.app-screen-phone {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  width: min(360px, 100%);
}

.tool-phone.app-screen-phone {
  justify-self: center;
}

.analytics-phone {
  justify-self: start;
}

.reflection-phone {
  justify-self: end;
}

.phone-bezel {
  border-radius: 32px;
  padding: 14px;
  background: linear-gradient(180deg, oklch(20% 0.008 240), oklch(8% 0.006 240));
  border: 1px solid oklch(88% 0.008 80 / 0.24);
  box-shadow:
    0 1px 0 oklch(100% 0 0 / 0.05) inset,
    var(--shadow-deep);
  position: relative;
}

.phone-bezel::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 22px;
  border-radius: 999px;
  background: oklch(4% 0.004 240);
  box-shadow: inset 0 0 0 1px oklch(0% 0 0 / 0.6);
  z-index: 2;
}

.phone-bezel.app-shot-bezel {
  overflow: hidden;
  padding: 10px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, oklch(22% 0.008 240), oklch(6% 0.006 240));
}

.phone-bezel.app-shot-bezel::before {
  display: none;
}

.phone-bezel.app-shot-bezel .app-screen-shot {
  aspect-ratio: 1290 / 2796;
  height: auto;
  border: 1px solid oklch(88% 0.008 80 / 0.12);
  border-radius: 28px;
  box-shadow:
    inset 0 0 0 1px oklch(100% 0 0 / 0.04),
    0 22px 52px oklch(2% 0.004 240 / 0.42);
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px 18px;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.phone-statusbar span:nth-child(2) {
  visibility: hidden;
}

.phone-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, oklch(86% 0.025 80 / 0.06), transparent 38%),
    linear-gradient(180deg, oklch(13% 0.008 240), oklch(8% 0.006 240));
  min-height: 480px;
}

.phone-eyebrow {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.score-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.score-value {
  font-family: var(--display);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.2;
}

.score-meta b {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.score-meta small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(78% 0.08 145);
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-list li {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
}

.pillar-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pillar-bar {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 2px;
  background: oklch(18% 0.008 240);
  overflow: hidden;
}

.pillar-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 0%);
  background: linear-gradient(90deg, oklch(72% 0.018 80), var(--pearl));
  border-radius: 2px;
  box-shadow: 0 0 18px oklch(86% 0.025 80 / 0.35);
}

.pillar-num {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: right;
  min-width: 38px;
}

.phone-cta {
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid oklch(88% 0.012 80 / 0.3);
  border-radius: 8px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: linear-gradient(180deg, oklch(20% 0.01 240), oklch(11% 0.007 240));
}

/* ----- Coach phone ----- */
.coach-phone .phone-inner {
  gap: 10px;
}

.coach-thread .msg {
  max-width: 86%;
}

/* ----- Analytics card (real SVG chart) ----- */
.analytics-card {
  align-self: center;
  min-height: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, oklch(13% 0.008 240 / 0.96), oklch(8% 0.006 240 / 0.96));
  box-shadow: var(--shadow-deep);
}

.analytics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.analytics-head h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}

.analytics-pill {
  padding: 4px 11px;
  border: 1px solid oklch(78% 0.12 205 / 0.35);
  border-radius: 999px;
  color: oklch(82% 0.1 205);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mettle-chart {
  width: 100%;
  height: 90px;
  display: block;
}

.mettle-chart.large {
  height: 180px;
}

.analytics-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.funnel-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.funnel-bars > span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 6px;
  background: oklch(15% 0.008 240 / 0.6);
  overflow: hidden;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.funnel-bars > span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 0%);
  background: linear-gradient(90deg, oklch(28% 0.01 240) 0%, oklch(48% 0.012 80) 100%);
  z-index: 0;
}

.funnel-bars > span > b,
.funnel-bars > span > i {
  position: relative;
  z-index: 1;
}

.funnel-bars > span > b {
  font-weight: 600;
}

.funnel-bars > span > i {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ----- Reflections stack ----- */
.reflection-stack {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: center;
  width: min(420px, 100%);
}

.reflection-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, oklch(86% 0.025 80 / 0.04), transparent 36%),
    linear-gradient(180deg, oklch(13% 0.008 240 / 0.96), oklch(8% 0.006 240 / 0.96));
  box-shadow: 0 14px 30px oklch(2% 0.004 240 / 0.5);
  transform-origin: top right;
}

.reflection-card.r-1 { transform: rotate(-1.2deg); }
.reflection-card.r-2 { transform: rotate(0.6deg); margin-left: 22px; }
.reflection-card.r-3 { transform: rotate(-0.4deg); margin-left: 8px; }

.reflection-card span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.reflection-card h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.reflection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.reflection-card small {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(78% 0.08 145 / 0.7);
}

/* ============================================================
   PROMISE / TRUST SECTION (new).
   ============================================================ */

.promise-section {
  background:
    radial-gradient(circle at 14% 12%, oklch(86% 0.025 80 / 0.06), transparent 40%),
    linear-gradient(180deg, oklch(7.5% 0.006 240), oklch(8.5% 0.007 240));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-section .section-intro h2 {
  max-width: 22ch;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 30px);
  margin-top: clamp(40px, 4vw, 64px);
}

.promise-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 2.6vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.02), transparent 35%),
    oklch(11% 0.007 240 / 0.85);
  box-shadow: 0 18px 42px oklch(2% 0.004 240 / 0.55);
}

.promise-card.promise-featured {
  border-color: oklch(88% 0.012 80 / 0.34);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.04), transparent 45%),
    linear-gradient(180deg, oklch(15% 0.009 240 / 0.9), oklch(10% 0.007 240 / 0.95));
  box-shadow:
    0 1px 0 oklch(100% 0 0 / 0.06) inset,
    0 26px 60px oklch(2% 0.004 240 / 0.66);
}

.promise-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.promise-index {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  color: oklch(82% 0.018 80);
  letter-spacing: 0;
}

.promise-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 1.7vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.promise-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.promise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 1px;
  background: oklch(86% 0.025 80);
}

.promise-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.promise-meta.promise-emphasis strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.promise-meta.promise-emphasis span {
  color: oklch(78% 0.08 145);
}

.promise-pledges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(40px, 4vw, 64px);
  padding-top: clamp(32px, 3vw, 48px);
  border-top: 1px solid var(--line);
}

.promise-pledges > span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.promise-pledges > span > b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ============================================================
   CTA — bg visibility fix + cleanup after removing benefit-row.
   ============================================================ */

.final-cta {
  min-height: 0;
  padding-bottom: clamp(120px, 11vw, 180px);
}

.final-cta .cta-content {
  width: min(720px, 100%);
}

.final-cta h2 {
  max-width: 100%;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 0.96;
  text-wrap: balance;
}

.cta-bg {
  filter: saturate(0.96) contrast(1.06) brightness(0.92);
  opacity: 0.85;
}

.cta-shade {
  background:
    linear-gradient(90deg,
      oklch(7.5% 0.006 240 / 0.92) 0%,
      oklch(7.5% 0.006 240 / 0.62) 28%,
      oklch(7.5% 0.006 240 / 0.18) 56%,
      oklch(7.5% 0.006 240 / 0.78) 100%),
    linear-gradient(180deg, oklch(7.5% 0.006 240 / 0.4), transparent 22%, transparent 78%, oklch(7.5% 0.006 240 / 0.92));
}

/* ============================================================
   FOOTER — multi-column.
   ============================================================ */

.footer {
  grid-template-columns: 1.4fr 2fr;
  grid-template-areas:
    "brand   nav"
    "meta    meta";
  gap: 40px;
  align-items: start;
}

.footer-brand-block { grid-area: brand; }
.footer-nav { grid-area: nav; }
.footer-meta { grid-area: meta; padding-top: 22px; border-top: 1px solid var(--line); }

.footer-brand-block .brand-wordmark {
  font-size: 1.3rem;
}

.footer-brand-block p {
  max-width: 32ch;
  margin: 16px 0 0;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav h4 {
  margin: 0 0 4px;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--ink);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-meta p {
  margin: 0;
  font-size: 0.74rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--dim);
}

/* ============================================================
   MOTION POLISH — small adjustments now that base state works.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .motion-ready .motion-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .msg.is-typing span,
  .hero-crystal,
  .section-bg-object,
  .price-card.featured > img {
    animation: none !important;
  }
}

/* ============================================================
   MOBILE PASS — system pillars, promise grid, footer, tools.
   ============================================================ */

@media (max-width: 1100px) and (min-width: 821px) {
  .system-pillar.pillar-log,
  .system-pillar.pillar-reflect,
  .system-pillar.pillar-patterns,
  .system-pillar.pillar-coach {
    grid-column: span 6;
  }

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

  .promise-grid .promise-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .promise-pledges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .system-pillar.pillar-log,
  .system-pillar.pillar-reflect,
  .system-pillar.pillar-patterns,
  .system-pillar.pillar-coach {
    grid-column: span 12;
  }

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

  .promise-pledges {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card {
    min-height: auto;
  }

  .founder-note img {
    display: none;
  }

  .founder-note {
    min-height: auto;
    padding: 26px;
  }

  .comparison-table {
    margin-inline: -8px;
  }

  .comparison-table > div {
    grid-template-columns: 1.6fr repeat(4, 0.85fr);
    min-height: 56px;
  }

  .comparison-table > div > span,
  .comparison-table > div > i,
  .comparison-table > div > b {
    padding: 12px 8px;
    font-size: 0.72rem;
  }

  .topbar {
    grid-template-columns: auto 1fr;
    padding: 8px 12px 8px 18px;
  }

  .topbar .nav-links {
    display: none;
  }

  .ghost-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.66rem;
  }

  .system-pillar header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pillar-index {
    font-size: 1.6rem;
  }

  .tool-band {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .tool-band .band-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reflection-card.r-2,
  .reflection-card.r-3 {
    margin-left: 0;
  }

  .reflection-card.r-1,
  .reflection-card.r-2,
  .reflection-card.r-3 {
    transform: none;
  }

  .footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "meta";
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .promise-pledges {
    grid-template-columns: 1fr;
  }

  .pillar-list li {
    grid-template-columns: 80px 1fr 36px;
  }
}

@media (max-width: 520px) {
  .brand-wordmark {
    font-size: 0.95rem;
    letter-spacing: 0.26em;
  }

  .brand img {
    width: 22px;
    height: 22px;
  }

  .metal-button.nav-cta span:first-child {
    display: none;
  }

  .metal-button.nav-cta {
    min-width: 44px;
    padding: 0 14px;
  }

  .ghost-cta span:first-child {
    display: none;
  }

  .ghost-cta {
    padding: 0 12px;
  }

  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
  }

  .pillar-artifact {
    padding: 16px;
  }

  .score-value {
    font-size: 3.2rem;
  }

  .mettle-chart {
    height: 70px;
  }

  .mettle-chart.large {
    height: 130px;
  }

  .analytics-card {
    padding: 22px;
  }

  .comparison-table {
    overflow-x: auto;
  }
}

/* ============================================================
   FOCUS STATES — visible keyboard focus for every interactive
   element. Pearl outline that matches the brand instead of the
   browser's blue ring.
   ============================================================ */

.ghost-cta:focus-visible,
.metal-button:focus-visible,
.onyx-button:focus-visible,
.nav-links a:focus-visible,
.footer-nav a:focus-visible,
.artifact-cta:focus-visible,
.phone-cta:focus-visible,
.faq-grid summary:focus-visible {
  outline: 2px solid var(--pearl);
  outline-offset: 4px;
  border-radius: 6px;
}

.waitlist-form input:focus-visible,
.waitlist-form select:focus-visible {
  outline: 0;
  border-color: oklch(94% 0.012 80 / 0.6);
  box-shadow:
    0 0 0 4px oklch(86% 0.02 80 / 0.18),
    0 0 0 1px oklch(94% 0.012 80 / 0.4);
}

/* ============================================================
   HOVER POLISH — purposeful micro-interactions, not decoration.
   ============================================================ */

.metal-button,
.onyx-button {
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.metal-button:hover,
.onyx-button:hover {
  transform: translateY(-1px);
}

.metal-button:active,
.onyx-button:active {
  transform: translateY(0);
  transition-duration: 90ms;
}

.system-pillar {
  transition:
    border-color 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out),
    background 320ms var(--ease-out);
}

.system-pillar:hover {
  border-color: oklch(88% 0.012 80 / 0.28);
  box-shadow:
    0 1px 0 oklch(100% 0 0 / 0.05) inset,
    0 30px 70px oklch(2% 0.004 240 / 0.7);
}

.promise-card {
  transition:
    border-color 320ms var(--ease-out),
    transform 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}

.promise-card:hover {
  transform: translateY(-2px);
  border-color: oklch(88% 0.012 80 / 0.34);
  box-shadow: 0 26px 56px oklch(2% 0.004 240 / 0.65);
}

.footer-nav a {
  transition: color 180ms var(--ease-out);
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--pearl);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
  opacity: 0.6;
}

.footer-nav a:hover::after {
  transform: scaleX(0.4);
}

/* ============================================================
   COMPARISON TABLE — fact-checked rewrite with partial marks,
   inline scope notes, and footnotes.
   ============================================================ */

.comparison-table > div {
  grid-template-columns: 1.8fr repeat(4, 1fr);
  align-items: stretch;
  min-height: 76px;
}

.comparison-head {
  background: oklch(15% 0.008 240 / 0.55);
}

.comparison-head [role="columnheader"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.comparison-head [role="columnheader"]:first-child {
  color: var(--dim);
  font-weight: 600;
}

.comparison-head [role="columnheader"]:last-child {
  border-right: 0;
}

.comparison-head [role="columnheader"] small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.comparison-head [role="columnheader"] sup {
  color: var(--dim);
  font-size: 0.55em;
  margin-left: 1px;
}

.comparison-head .is-self {
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.04), transparent 70%),
    oklch(22% 0.012 240 / 0.55);
  color: var(--ink);
}

.comparison-table > div:not(.comparison-head) {
  border-top: 1px solid var(--line);
}

.comparison-table > div > span:first-child {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.4;
}

.mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  text-align: center;
}

.comparison-table > div > .mark:last-child {
  border-right: 0;
}

.mark small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dim);
  text-transform: none;
  line-height: 1.3;
  max-width: 14ch;
}

.mark-yes {
  color: var(--ink);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.03), transparent 70%),
    oklch(22% 0.012 240 / 0.4);
}

.mark-yes::before {
  content: "✓";
  display: block;
  margin-bottom: 2px;
  color: var(--pearl);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}

.mark-no {
  color: var(--dim);
  font-weight: 600;
}

.mark-no::before {
  content: "·";
  display: block;
  color: oklch(45% 0.006 240);
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 0.5;
  margin-bottom: 6px;
}

.mark-partial {
  color: oklch(82% 0.04 80);
  font-weight: 700;
}

.mark-partial::before {
  content: "◐";
  display: block;
  margin-bottom: 2px;
  color: oklch(78% 0.06 80);
  font-size: 1.05rem;
  line-height: 1;
}

.mark-na {
  color: var(--dim);
  font-weight: 600;
}

.mark-na::before {
  content: "—";
  display: block;
  margin-bottom: 6px;
  color: oklch(45% 0.006 240);
  font-size: 1rem;
  line-height: 1;
}

/* The "Mettle" column gets a subtle vertical highlight band so the eye
   anchors to the conclusion column without screaming for attention. */
.comparison-table > div > .mark:last-child.mark-yes {
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.05), transparent 60%),
    oklch(24% 0.014 240 / 0.55);
}

.comparison-footnotes {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--dim);
  font-size: 0.74rem;
  line-height: 1.6;
}

.comparison-footnotes li {
  padding-left: 18px;
  text-indent: -18px;
}

.comparison-footnotes sup {
  color: var(--muted);
  font-weight: 700;
  margin-right: 2px;
}

@media (max-width: 820px) {
  .comparison-table > div {
    grid-template-columns: 1.5fr repeat(4, 0.8fr);
  }
  .comparison-head [role="columnheader"] {
    padding: 10px 8px;
    font-size: 0.7rem;
  }
  .comparison-head [role="columnheader"] small {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }
  .comparison-table > div > span:first-child {
    padding: 12px 12px;
    font-size: 0.84rem;
  }
  .mark {
    padding: 10px 4px;
    font-size: 0.72rem;
  }
  .mark small {
    font-size: 0.56rem;
    max-width: 10ch;
  }
  .mark-yes::before {
    font-size: 1.15rem;
  }
}

/* ============================================================
   FOUNDER METER — small remaining-line + tighter typography.
   ============================================================ */

[data-mettle-meter] [data-spots-remaining-line] {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}

[data-mettle-meter] p b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.limited-card {
  width: min(440px, 100%);
}

/* The progress bar element is an <i> with a single nested span. Restore the
   sizing the old code expected via inline style="width: 37%" — we now drive
   width via [data-spots-progress] from JS. */
[data-mettle-meter] i {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 6px;
  border-radius: 2px;
  background: oklch(18% 0.008 240);
  overflow: hidden;
}

[data-mettle-meter] i > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, oklch(72% 0.018 80), var(--pearl));
  box-shadow: 0 0 18px oklch(86% 0.025 80 / 0.35);
  border-radius: 2px;
  transition: width 600ms var(--ease-soft);
}

/* ============================================================
   HERO STATBAR — restore the small detail rendering so it
   doesn't collide with the new founding meter styles.
   ============================================================ */
.hero-statbar > div {
  gap: 4px;
}
