:root {
  color-scheme: dark;
  --bg: #070707;
  --bg-deep: #020202;
  --surface: #101010;
  --surface-raised: #181818;
  --ink: #f7f7f7;
  --muted: #aaa;
  --soft: #747474;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --white: #fff;
  --white-soft: #dedede;
  --graphite: #969696;
  --accent-gradient: linear-gradient(135deg, var(--white) 0%, var(--white-soft) 54%, var(--graphite) 100%);
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 26px 72px rgba(0, 0, 0, 0.56), 0 62px 130px rgba(0, 0, 0, 0.3);
  --radius: 20px;
  --page-pad: 20px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

p:last-child,
figure:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  font-size: clamp(52px, 15.5vw, 74px);
}

h2 {
  font-size: clamp(40px, 11vw, 62px);
}

h3 {
  font-size: clamp(27px, 7vw, 38px);
  line-height: 1.04;
}

p {
  color: var(--muted);
  font-size: clamp(17px, 4.5vw, 19px);
  line-height: 1.62;
}

strong {
  color: var(--ink);
}

.progress-line {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.progress-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent-gradient);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.site-head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: max(12px, env(safe-area-inset-top)) var(--page-pad) 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.94), rgba(4, 4, 4, 0.62));
  backdrop-filter: blur(18px);
}

.site-head,
.site-head a {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-head > span {
  overflow: hidden;
  color: var(--soft);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wordmark {
  flex: 0 0 auto;
}

.slide {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: clip;
  padding: calc(88px + env(safe-area-inset-top)) var(--page-pad) calc(58px + env(safe-area-inset-bottom));
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.045), transparent 28%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}

.slide:nth-of-type(even) {
  background:
    radial-gradient(circle at 8% 86%, rgba(255, 255, 255, 0.035), transparent 25%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
}

.slide::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  opacity: 0.025;
  pointer-events: none;
  content: "";
}

.slide-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}

.wide-inner {
  max-width: 1160px;
}

.eyebrow,
.card-label,
.title-copy > span,
.terminal header,
.phone-state,
.baseline-block > span,
.baseline-block > small,
.proof-number-label,
.end-mark {
  color: var(--soft);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

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

.section-intro h2 + p {
  margin-top: 22px;
}

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

.slide.hero {
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 8% 74%, rgba(255, 255, 255, 0.035), transparent 24%),
    linear-gradient(180deg, #0a0a0a 0%, #030303 100%);
}

.hero-grid {
  display: grid;
  gap: 46px;
}

.hero-note {
  max-width: 34ch;
  margin: 24px 0 0;
}

.hero-frame,
.title-reference {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-frame img,
.title-reference img,
.media-frame img,
.proof-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-frame::after,
.title-reference::after,
.media-frame::after,
.proof-image::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  content: "";
}

.hero-frame figcaption,
.title-reference figcaption {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #050505;
  background: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
}

.scroll-cue {
  position: absolute;
  inset: auto auto max(28px, env(safe-area-inset-bottom)) 50%;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(3, 3, 3, 0.82);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.15em;
  transform: translateX(-50%);
}

.economics h2 {
  max-width: 12ch;
  margin-bottom: 36px;
}

.economics-grid {
  display: grid;
  gap: 14px;
}

.economics-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(29, 29, 29, 0.96), rgba(10, 10, 10, 0.98));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
}

.economics-card::after {
  position: absolute;
  inset: auto -24px -56px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  content: "";
}

.economics-card > strong {
  display: block;
  margin-top: 18px;
  background: var(--accent-gradient);
  background-clip: text;
  font-size: clamp(84px, 25vw, 130px);
  font-weight: 850;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.065em;
  line-height: 0.96;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.economics-card p {
  margin: 17px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.economics-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.paid-card {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(42, 42, 42, 0.98), rgba(11, 11, 11, 0.99));
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.review-strip > div {
  min-width: 0;
  padding: 18px 10px;
  background: #0d0d0d;
  text-align: center;
}

.review-strip strong,
.review-strip span {
  display: block;
}

.review-strip strong {
  font-size: clamp(24px, 7vw, 36px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.review-strip span {
  margin-top: 7px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.25;
}

.economics-argument {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--white-soft);
}

.finding h2 {
  max-width: 12ch;
}

.finding-copy {
  margin-top: 34px;
}

.finding-copy p {
  margin-bottom: 18px;
}

.finding-copy .finding-line {
  margin-top: 28px;
  color: var(--ink);
  font-size: clamp(24px, 6.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.evidence-pair {
  display: grid;
  gap: 18px;
}

.media-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(28, 28, 28, 0.96), rgba(9, 9, 9, 0.99));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.media-frame,
.proof-image {
  position: relative;
  overflow: hidden;
  background: #030303;
}

.metric-pill {
  position: absolute;
  inset: 12px 12px auto auto;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #050505;
  background: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.media-copy {
  padding: 22px;
}

.media-copy h3 {
  font-size: clamp(24px, 6.6vw, 31px);
  line-height: 1.08;
}

.media-copy p {
  margin: 15px 0 0;
}

.recycled-card {
  border-color: rgba(255, 255, 255, 0.2);
}

.image-callout {
  position: absolute;
  z-index: 3;
  inset: 10px auto auto 10px;
  max-width: calc(100% - 104px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.46);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.annotated-frame::before {
  position: absolute;
  z-index: 3;
  inset: 51px 15px auto auto;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.42);
  content: "";
}

.proof-intro-grid {
  display: grid;
  gap: 38px;
}

.proof-intro h2 {
  max-width: 15ch;
}

.baseline-block {
  align-self: center;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(31, 31, 31, 0.95), rgba(9, 9, 9, 0.98));
}

.baseline-block > strong,
.baseline-block > small,
.baseline-block > span {
  display: block;
}

.baseline-block > strong {
  margin: 18px 0 5px;
  font-size: clamp(58px, 15vw, 90px);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.proof-item-grid {
  display: grid;
  gap: 32px;
}

.proof-image {
  overflow: hidden;
  margin-inline: calc(var(--page-pad) * -0.3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-annotation {
  position: absolute;
  z-index: 3;
  inset: auto 12px 12px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #050505;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
}

.proof-copy {
  min-width: 0;
}

.proof-number {
  display: inline-block;
  background: var(--accent-gradient);
  background-clip: text;
  font-size: clamp(86px, 24vw, 132px);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.75;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proof-number-label {
  display: inline-block;
  margin-left: 10px;
}

.proof-copy h3 {
  margin-top: 30px;
}

.proof-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
}

.honesty-note {
  padding: 18px;
  border-left: 2px solid var(--line-strong);
  color: var(--white-soft);
  background: rgba(255, 255, 255, 0.035);
}

.title-intro-grid {
  display: grid;
  gap: 30px;
}

.title-intro h2 {
  max-width: 11ch;
}

.title-intro-grid > p {
  max-width: 31ch;
  align-self: end;
  color: var(--white-soft);
  font-size: clamp(23px, 6.4vw, 33px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.title-layout {
  display: grid;
  gap: 30px;
}

.title-copy > span {
  display: block;
  margin-bottom: 18px;
}

.title-copy h3 {
  font-size: clamp(34px, 9vw, 54px);
  line-height: 1.02;
}

.title-copy p {
  margin: 22px 0 0;
}

.thumb-rule-grid {
  display: grid;
  gap: 26px;
}

.rule-orb {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #050505;
  background: var(--accent-gradient);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  font-size: 34px;
  font-weight: 900;
}

.thumb-rule h2 {
  max-width: 13ch;
}

.thumb-rule h2 + p {
  margin-top: 24px;
}

.thumb-rule-side {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.thumb-rule-side p {
  color: var(--white-soft);
}

.thumb-rule-side p + p {
  margin-top: 20px;
}

.bar-chart {
  display: grid;
  gap: 24px;
}

.bar-label {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.bar-label span {
  max-width: 43ch;
  color: var(--white-soft);
  font-size: 16px;
  line-height: 1.4;
}

.bar-label strong {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
}

.bar-track {
  height: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0c0c0c;
}

.bar-track i {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: var(--accent-gradient);
}

.muted-bar .bar-track i {
  background: #555;
}

.muted-bar .bar-label span,
.muted-bar .bar-label strong {
  color: var(--soft);
}

.terminal-grid {
  display: grid;
  gap: 18px;
}

.terminal {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080808;
  box-shadow: var(--shadow);
}

.terminal header {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: #111;
}

.terminal header span {
  margin-right: auto;
}

.terminal header i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #474747;
}

.terminal-lines {
  padding: 18px;
}

.terminal-lines p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  margin-bottom: 15px;
  overflow-wrap: anywhere;
  color: #cfcfcf;
  font-family: Consolas, "Courier New", monospace;
  font-size: 15px;
  line-height: 1.48;
}

.terminal-lines p b {
  color: #666;
  font-weight: 500;
}

.missing-slot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 24px;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  color: #666;
  font-family: Consolas, "Courier New", monospace;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.missing-slot strong {
  color: var(--ink);
  letter-spacing: 0.08em;
}

.rebuilt-terminal {
  border-color: rgba(255, 255, 255, 0.28);
}

.rebuilt-terminal .terminal-lines p:first-child {
  color: var(--ink);
  font-weight: 700;
}

.terminal-note,
.profile-note,
.account-close {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
}

.profile-compare {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.ig-phone {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  padding: 18px 16px 46px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  color: #efefef;
  background: #0d0d0d;
  box-shadow: var(--shadow);
}

.rebuilt-phone {
  border-color: rgba(255, 255, 255, 0.4);
}

.ig-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 17px;
  font-weight: 750;
}

.ig-menu {
  letter-spacing: 0.16em;
}

.ig-profile-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.ig-avatar {
  width: 86px;
  height: 86px;
  overflow: hidden;
  padding: 3px;
  border: 2px solid #d6d6d6;
  border-radius: 50%;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 78% 33%;
}

.ig-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  text-align: center;
}

.ig-stats strong,
.ig-stats span {
  display: block;
}

.ig-stats strong {
  font-size: 20px;
  line-height: 1.1;
}

.ig-stats span {
  margin-top: 3px;
  color: #bcbcbc;
  font-size: 15px;
}

.ig-identity {
  margin-top: 18px;
}

.ig-identity strong,
.ig-identity span {
  display: block;
  font-size: 15px;
  line-height: 1.4;
}

.ig-identity span {
  color: #929292;
}

.ig-bio {
  min-height: 124px;
  margin-top: 11px;
}

.ig-bio p {
  margin: 0 0 3px;
  color: #efefef;
  font-size: 15px;
  line-height: 1.38;
}

.current-bio p {
  color: #dfdfdf;
}

.flag {
  display: inline;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
}

.ig-link {
  min-height: 48px;
  overflow-wrap: anywhere;
  color: #d8d8d8;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.ig-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.ig-actions span {
  display: grid;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #1d1d1d;
  font-size: 15px;
  font-weight: 700;
}

.ig-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 8px;
  margin: 20px 0;
}

.ig-highlights > span {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.ig-highlights i {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid #454545;
  border-radius: 50%;
  background: linear-gradient(145deg, #282828, #111);
}

.ig-highlights b {
  display: block;
  max-width: 100%;
  color: #d8d8d8;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.rebuilt-bio .changed-line,
.ig-link.changed-line {
  margin-right: -7px;
  margin-left: -7px;
  padding: 5px 7px;
  border-left: 2px solid #fff;
  border-radius: 0 7px 7px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rebuilt-bio .changed-line {
  margin-bottom: 4px;
}

.ig-link.changed-line {
  min-height: 0;
  margin-top: 8px;
}

.ig-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 12px 35px;
  border-top: 1px solid var(--line);
}

.ig-tabs i {
  display: block;
  height: 12px;
  border: 1px solid #777;
  border-radius: 2px;
}

.ig-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-inline: -16px;
}

.ig-posts i {
  display: block;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 60% 30%, #343434, transparent 34%),
    linear-gradient(135deg, #252525, #090909);
}

.phone-state {
  position: absolute;
  inset: auto 16px 14px;
  text-align: center;
}

.profile-change,
.flow-mark {
  display: grid;
  place-items: center;
  color: var(--soft);
  text-align: center;
}

.profile-change span,
.flow-mark span {
  color: var(--ink);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
}

.profile-change small,
.flow-mark small {
  margin-top: 7px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.account-flow {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.account-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
}

.account-card > span {
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.account-card h3 {
  margin-top: 18px;
}

.account-card > strong {
  display: block;
  margin-top: 18px;
  font-size: 17px;
  letter-spacing: 0.03em;
}

.account-card p {
  margin: 16px 0 0;
}

.receipts-card {
  border-color: rgba(255, 255, 255, 0.28);
}

.vsl-intro,
.vsl-step,
.diagnostics {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.075), transparent 24%),
    linear-gradient(180deg, #0b0b0b 0%, #030303 100%);
}

.vsl-intro-grid {
  display: grid;
  gap: 36px;
}

.vsl-intro h2 {
  max-width: 12ch;
}

.vsl-intro-copy p {
  color: var(--white-soft);
}

.vsl-intro-copy .framework-proof {
  margin: 24px 0;
  padding: 21px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.framework-proof strong {
  font-size: 1.25em;
}

.vsl-layout {
  display: grid;
  gap: 24px;
}

.step-number {
  color: #292929;
  font-size: clamp(72px, 23vw, 130px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.step-copy h2 {
  max-width: 15ch;
}

.step-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
}

blockquote {
  position: relative;
  max-width: 820px;
  margin: 34px 0 0;
  padding: 50px 22px 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(145deg, rgba(34, 34, 34, 0.96), rgba(10, 10, 10, 0.98));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

blockquote > span {
  position: absolute;
  inset: 16px auto auto 22px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.beat-grid,
.objection-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.beat-grid article,
.objection-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.beat-grid strong,
.objection-grid strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.beat-grid p,
.objection-grid p {
  margin: 11px 0 0;
  font-size: 16px;
}

.motive-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.motive-stack p {
  margin: 0;
  padding: 22px;
  color: var(--white-soft);
  background: #0d0d0d;
}

.fill-field {
  display: inline;
  padding: 2px 6px;
  border-bottom: 2px solid #fff;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82em;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.suggested-price {
  display: inline;
  padding: 2px 5px;
  color: #050505;
  background: #f4f4f4;
  box-decoration-break: clone;
  font-weight: 900;
  -webkit-box-decoration-break: clone;
}

.delivery-note {
  padding-left: 16px;
  border-left: 2px solid var(--line-strong);
}

.price-math {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.price-math article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(33, 33, 33, 0.98), rgba(8, 8, 8, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow);
}

.price-math article > span,
.price-math article > strong,
.price-math article > b {
  display: block;
}

.price-math article > span {
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.price-math article > strong {
  margin-top: 13px;
  font-size: clamp(25px, 6.6vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.price-math article > b {
  margin-top: 11px;
  color: var(--white-soft);
  font-size: clamp(20px, 5.4vw, 28px);
  line-height: 1.15;
}

.math-mark {
  display: grid;
  min-height: 44px;
  place-items: center;
  color: var(--soft);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-conclusion {
  max-width: 760px;
  margin-top: 28px;
  color: var(--ink);
  font-size: clamp(21px, 5.7vw, 30px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.diagnostic-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}

.diagnostic-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  padding: 18px;
  background: #0c0c0c;
}

.diagnostic-list span {
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.diagnostic-list p {
  margin: 0;
  font-size: 16px;
}

.horizon {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.07), transparent 31%),
    #030303;
}

.horizon-inner {
  max-width: 850px;
  text-align: center;
}

.horizon h2 {
  margin-inline: auto;
}

.horizon h2 + p {
  margin-top: 30px;
}

.horizon p {
  color: var(--white-soft);
}

.horizon p + p {
  margin-top: 20px;
}

.end-mark {
  display: block;
  margin-top: 58px;
}

/* V3 content layout. The visual system above stays unchanged. */

.hero-copy > p:not(.eyebrow) {
  max-width: 45ch;
  margin: 22px 0 0;
}

.hero-copy .hero-thesis {
  color: var(--ink);
  font-size: clamp(25px, 6.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.action-grid,
.form-grid {
  display: grid;
  gap: 28px;
}

.action-copy {
  min-width: 0;
}

.action-copy p {
  margin-bottom: 18px;
}

.narrow-copy {
  max-width: 820px;
}

.block-stack {
  max-width: 850px;
}

.block-label {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action-terminal .terminal-lines p {
  grid-template-columns: 28px minmax(0, 1fr);
}

.terminal-lines span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bio-terminals {
  margin-top: 32px;
}

.bio-terminals > div {
  min-width: 0;
}

.after-card,
.highlight-plan,
.formula-stack,
.thumbnail-text {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(31, 31, 31, 0.96), rgba(9, 9, 9, 0.98));
  box-shadow: var(--shadow);
}

.after-card {
  max-width: 850px;
}

.after-card > p:not(.block-label) {
  color: var(--white-soft);
}

.after-card > p + p {
  margin-top: 18px;
}

.wide-card {
  max-width: 920px;
  margin-inline: auto;
}

.highlight-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 850px;
  margin: 30px 0;
}

.highlight-wall span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white-soft);
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.highlight-plan {
  display: grid;
  gap: 20px;
  max-width: 850px;
}

.highlight-plan p {
  margin: 0;
}

/* Section 2: Instagram profile comparison. */

.bio-slide .profile-compare {
  display: grid;
  width: 100%;
  max-width: 1040px;
  justify-items: center;
  gap: 24px;
  margin: 40px auto 0;
}

.bio-slide .profile-panel {
  width: min(100%, 430px);
  min-width: 0;
}

.profile-panel-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.profile-panel-label span {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #242424;
}

.rebuilt-profile-panel .profile-panel-label {
  color: var(--ink);
}

.rebuilt-profile-panel .profile-panel-label span {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}

.bio-slide .ig-phone {
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  padding: 12px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  outline: 6px solid #151515;
  outline-offset: -1px;
  color: #f2f2f2;
  background:
    radial-gradient(circle at 86% -6%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(155deg, #151515 0%, #080808 47%, #030303 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 2px 0 #242424,
    0 30px 80px rgba(0, 0, 0, 0.62),
    0 72px 130px rgba(0, 0, 0, 0.28);
}

.bio-slide .ig-phone::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.055), transparent 27%, transparent 72%, rgba(255, 255, 255, 0.025));
  pointer-events: none;
  content: "";
}

.bio-slide .ig-phone > * {
  position: relative;
  z-index: 1;
}

.bio-slide .rebuilt-phone {
  border-color: rgba(255, 255, 255, 0.48);
  outline-color: #202020;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 2px 0 #323232,
    0 34px 90px rgba(0, 0, 0, 0.68),
    0 0 42px rgba(255, 255, 255, 0.07);
}

.phone-status {
  display: grid;
  min-height: 26px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 7px;
  color: #f7f7f7;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
}

.phone-island {
  width: 54px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.phone-status-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.phone-status-icons i {
  display: block;
  width: 13px;
  height: 9px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.phone-status-icons i:nth-child(1) {
  width: 12px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 2px;
  transform: skewY(-18deg);
}

.phone-status-icons i:nth-child(2) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.phone-status-icons i:nth-child(3) {
  background: #e8e8e8;
  box-shadow: inset -3px 0 #0b0b0b;
}

.bio-slide .ig-toolbar {
  min-height: 40px;
  margin: 8px 0 17px;
  padding: 0 3px;
}

.ig-handle {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ig-toolbar-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ig-toolbar-icons i {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
}

.ig-toolbar-icons i:first-child {
  border: 2px solid #eee;
  border-radius: 6px;
}

.ig-toolbar-icons i:first-child::before,
.ig-toolbar-icons i:first-child::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 9px;
  height: 2px;
  background: #eee;
  transform: translate(-50%, -50%);
  content: "";
}

.ig-toolbar-icons i:first-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ig-toolbar-icons i:last-child {
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.ig-toolbar-icons i:last-child::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  border-top: 2px solid #eee;
  content: "";
}

.bio-slide .ig-profile-row {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
}

.bio-slide .ig-avatar {
  width: 76px;
  height: 76px;
  padding: 2px;
  border-color: #c8c8c8;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

.bio-slide .ig-avatar img {
  object-position: 78% 30%;
  transform: scale(1.38);
}

.bio-slide .ig-stats {
  gap: 2px;
}

.bio-slide .ig-stats strong {
  font-size: 19px;
  letter-spacing: -0.02em;
}

.bio-slide .ig-stats span {
  font-size: 15px;
  line-height: 1.15;
}

.bio-slide .ig-identity {
  margin-top: 14px;
}

.bio-slide .ig-identity strong {
  font-size: 16px;
  font-weight: 750;
}

.bio-slide .ig-bio {
  min-height: 146px;
  margin-top: 7px;
}

.bio-slide .ig-bio p {
  margin: 0 0 4px;
  color: #ededed;
  font-size: 15px;
  line-height: 1.42;
}

.bio-slide .current-bio .bio-defect {
  margin: 3px -5px 4px;
  padding: 4px 7px;
  border-left: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 0 7px 7px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.bio-slide .rebuilt-bio .changed-line {
  margin: 3px -6px 5px;
  padding: 6px 8px 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid #fff;
  border-radius: 0 8px 8px 0;
  color: #fff;
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.045) 76%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 7px 18px rgba(0, 0, 0, 0.18);
}

.bio-slide .ig-actions {
  gap: 7px;
  margin-top: 10px;
}

.bio-slide .ig-actions span {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #202020;
}

.bio-slide .profile-highlight-rail {
  display: flex;
  gap: 10px;
  margin: 17px -2px 14px;
  padding: 0 2px 4px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.bio-slide .profile-highlight-rail::-webkit-scrollbar {
  display: none;
}

.bio-slide .profile-highlight-rail > span {
  flex: 0 0 66px;
}

.bio-slide .profile-highlight-rail i {
  width: 48px;
  height: 48px;
  border-color: #535353;
  background: radial-gradient(circle at 42% 35%, #3b3b3b 0 14%, #1b1b1b 15% 50%, #0c0c0c 51%);
  box-shadow: inset 0 0 0 3px #0c0c0c, 0 8px 18px rgba(0, 0, 0, 0.3);
}

.bio-slide .profile-highlight-rail b {
  font-size: 15px;
}

.bio-slide .ig-tabs {
  margin-top: 4px;
  margin-inline: -14px;
  padding: 12px 42px;
}

.bio-slide .rebuilt-tabs {
  margin-top: 27px;
}

.bio-slide .ig-posts {
  margin-inline: -14px;
}

.bio-slide .ig-posts i {
  min-height: 74px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 48%),
    radial-gradient(circle at 60% 30%, #343434, transparent 34%),
    linear-gradient(135deg, #252525, #090909);
}

.bio-slide .profile-change {
  position: relative;
  width: 86px;
  min-height: 72px;
  gap: 7px;
}

.bio-slide .profile-change > span {
  position: relative;
  display: block;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), #fff);
}

.bio-slide .profile-change > span::after {
  position: absolute;
  right: -4px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  content: "";
}

.bio-slide .profile-change small {
  margin: 0;
  color: var(--white-soft);
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Section 3: compact Instagram highlight rails. */

.highlights-slide .highlight-plan {
  margin-top: 28px;
}

.highlight-rail-compare {
  display: grid;
  width: 100%;
  max-width: 1000px;
  gap: 14px;
  margin-top: 30px;
}

.highlight-rail-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.98), rgba(6, 6, 6, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 22px 56px rgba(0, 0, 0, 0.36);
}

.highlight-rail-card header {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.highlight-rail-card header span {
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.highlight-rail-card header strong {
  color: #b6b6b6;
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.story-rail {
  display: grid;
  align-items: start;
  justify-content: center;
  gap: 18px 8px;
}

.current-story-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rebuilt-story-rail {
  grid-template-columns: repeat(3, minmax(0, 84px));
}

.story-rail > span {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.story-rail i {
  display: block;
  width: 54px;
  height: 54px;
  border: 2px solid #414141;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.13) 0 10%, transparent 11%),
    linear-gradient(145deg, #252525, #0b0b0b);
  box-shadow: inset 0 0 0 3px #090909, 0 9px 20px rgba(0, 0, 0, 0.32);
}

.story-rail b {
  display: block;
  max-width: 100%;
  color: #bdbdbd;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.current-rail-card {
  border-color: rgba(255, 255, 255, 0.12);
}

.rebuilt-rail-card {
  border-color: rgba(255, 255, 255, 0.48);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(31, 31, 31, 0.99), rgba(5, 5, 5, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 26px 66px rgba(0, 0, 0, 0.46), 0 0 32px rgba(255, 255, 255, 0.055);
}

.rebuilt-rail-card header span,
.rebuilt-rail-card header strong,
.rebuilt-story-rail b {
  color: #fff;
}

.rebuilt-story-rail i {
  border-color: #d8d8d8;
  background:
    radial-gradient(circle at 38% 32%, #efefef 0 8%, transparent 9%),
    linear-gradient(145deg, #3f3f3f, #111);
  box-shadow: inset 0 0 0 3px #080808, 0 11px 26px rgba(0, 0, 0, 0.4), 0 0 22px rgba(255, 255, 255, 0.12);
}

.rail-change {
  display: grid;
  min-height: 46px;
  place-items: center;
}

.rail-change span {
  position: relative;
  display: block;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), #fff);
}

.rail-change span::after {
  position: absolute;
  right: -4px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  content: "";
}

@media (min-width: 760px) {
  .bio-slide .profile-compare {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    align-items: stretch;
    justify-content: center;
    gap: 18px;
  }

  .bio-slide .profile-panel {
    width: 100%;
  }

  .bio-slide .profile-change {
    width: 72px;
    min-height: 0;
    align-self: center;
  }

  .bio-slide .profile-change > span {
    width: 46px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), #fff);
  }

  .bio-slide .profile-change > span::after {
    right: 0;
    bottom: -4px;
    transform: rotate(-45deg);
  }

  .bio-slide .profile-change small {
    max-width: 72px;
    text-align: center;
  }
}

@media (min-width: 1000px) {
  .highlight-rail-compare {
    grid-template-columns: minmax(0, 1.55fr) 54px minmax(280px, 0.7fr);
    align-items: stretch;
    gap: 18px;
  }

  .current-story-rail {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .rail-change {
    min-height: 0;
  }

  .rail-change span {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), #fff);
  }

  .rail-change span::after {
    right: 0;
    bottom: -4px;
    transform: rotate(-45deg);
  }
}

.form-number-card {
  display: grid;
  width: min(100%, 360px);
  min-height: 240px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(42, 42, 42, 0.98), rgba(9, 9, 9, 0.99));
  box-shadow: var(--shadow);
}

.form-number-card strong {
  background: var(--accent-gradient);
  background-clip: text;
  font-size: clamp(132px, 42vw, 230px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.point-line {
  color: var(--ink);
  font-size: clamp(23px, 6.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.packaging-intro h2 {
  max-width: 13ch;
}

.packaging-proof .proof-copy {
  text-align: left;
}

.formula-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  max-width: 920px;
  padding: 0;
  background: var(--line);
}

.formula-stack p {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 20px;
  color: var(--white-soft);
  background: #0c0c0c;
  font-family: Consolas, "Courier New", monospace;
  font-size: 15px;
  line-height: 1.5;
}

.formula-stack b {
  color: var(--soft);
}

.formula-stack span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.formula-after {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--white-soft);
}

.title-intro-grid > .titles-direction {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 4.5vw, 19px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.62;
}

.text-title-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}

.text-title-layout h3 {
  max-width: 17ch;
  font-size: clamp(38px, 10.2vw, 64px);
  line-height: 1.02;
}

.thumbnail-text {
  display: grid;
  gap: 12px;
  margin: 0;
}

.thumbnail-text span,
.thumbnail-text strong,
.thumbnail-text i {
  display: block;
}

.thumbnail-text span {
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.thumbnail-text strong {
  color: var(--ink);
  font-size: clamp(22px, 6vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.thumbnail-text i {
  color: var(--soft);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}

.close-slide {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.085), transparent 30%),
    #030303;
}

.close-inner {
  max-width: 1000px;
}

.close-inner > p {
  max-width: 800px;
  margin: 26px 0 0;
  color: var(--white-soft);
}

.close-proof {
  position: relative;
  overflow: hidden;
  margin: 34px 0 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #f3f5f7;
  box-shadow: var(--shadow);
}

.close-proof img {
  width: 100%;
}

.proof-tile img {
  aspect-ratio: 5.86 / 1;
  object-fit: contain;
}

.proof-mobile {
  display: none;
}

.portal-sample {
  aspect-ratio: 2 / 1;
}

.portal-sample img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.primary-cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  padding: 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #050505;
  background: var(--accent-gradient);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.44), 0 0 28px rgba(255, 255, 255, 0.1);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none;
}

.primary-cta:hover {
  filter: brightness(1.08);
}

.economics-card,
.media-card,
.baseline-block,
.proof-image,
.title-reference,
.terminal,
.ig-phone,
.account-card,
blockquote,
.price-math article,
.diagnostic-list,
.after-card,
.highlight-plan,
.formula-stack,
.thumbnail-text,
.form-number-card,
.close-proof {
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), var(--shadow);
}

.motion-ready [data-reveal] > .slide-inner,
.motion-ready [data-reveal] > .scroll-cue {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.motion-ready [data-reveal].is-active > .slide-inner,
.motion-ready [data-reveal].is-active > .scroll-cue {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .hero.is-active > .scroll-cue {
  transform: translateX(-50%) translateY(0);
}

.motion-ready .hero:not(.is-active) > .scroll-cue {
  transform: translateX(-50%) translateY(16px);
}

.motion-ready [data-reveal] [data-stage] {
  will-change: opacity, filter, translate, scale;
}

.motion-ready [data-reveal] [data-stage="image"] {
  opacity: 0.08;
  filter: brightness(0.72) saturate(0.82);
  translate: 0 14px;
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms cubic-bezier(0.22, 1, 0.36, 1), translate 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal] [data-stage="annotation"] {
  opacity: 0.03;
  scale: 0.94;
  translate: 0 8px;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), scale 520ms cubic-bezier(0.22, 1, 0.36, 1), translate 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal] [data-stage="copy"] {
  opacity: 0.04;
  translate: 0 11px;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), translate 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal].is-active [data-stage="image"] {
  opacity: 1;
  filter: none;
  translate: 0 0;
  transition-delay: 70ms;
}

.motion-ready [data-reveal].is-active [data-stage="annotation"] {
  opacity: 1;
  scale: 1;
  translate: 0 0;
  transition-delay: 290ms;
}

.motion-ready [data-reveal].is-active [data-stage="copy"] {
  opacity: 1;
  translate: 0 0;
  transition-delay: 470ms;
}

.motion-ready [data-reveal] .pop-number {
  opacity: 0.18;
  scale: 0.82;
  transform-origin: left center;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), scale 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, scale;
}

.motion-ready [data-reveal].is-active .pop-number {
  opacity: 1;
  scale: 1;
  transition-delay: 360ms;
}

:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

@media (min-width: 760px) {
  :root {
    --page-pad: 44px;
  }

  .slide {
    padding-top: 110px;
    padding-bottom: 76px;
  }

  .hero-grid,
  .finding-grid,
  .proof-intro-grid,
  .title-intro-grid,
  .vsl-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-copy {
    padding-right: 24px;
  }

  .hero-frame {
    transform: rotate(1.2deg);
  }

  .economics-grid,
  .evidence-pair,
  .terminal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .economics-card {
    padding: 30px;
  }

  .review-strip {
    max-width: 760px;
  }

  .finding-copy {
    margin-top: 0;
  }

  .proof-item-grid,
  .title-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    align-items: center;
    gap: 56px;
  }

  .proof-item:nth-of-type(even) .proof-image,
  .title-slide:nth-of-type(even) .title-reference {
    order: 2;
  }

  .proof-image {
    margin-inline: 0;
  }

  .thumb-rule-grid {
    grid-template-columns: 88px minmax(0, 1.3fr) minmax(260px, 0.7fr);
    align-items: start;
    gap: 30px;
  }

  .bar-label span {
    font-size: 17px;
  }

  .profile-compare {
    grid-template-columns: minmax(0, 344px) 100px minmax(0, 344px);
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .account-flow {
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
    align-items: center;
  }

  .vsl-layout {
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: start;
    gap: 46px;
  }

  .step-number {
    position: sticky;
    top: 110px;
  }

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

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

  .price-math {
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    align-items: stretch;
  }

  .action-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    column-gap: 54px;
  }

  .action-grid > .section-intro {
    grid-column: 1;
  }

  .action-grid > .action-copy {
    grid-column: 2;
  }

  .action-grid > .block-stack,
  .action-grid > .after-card {
    grid-column: 1 / -1;
  }

  .form-grid > .section-intro {
    grid-column: 1 / -1;
  }

  .form-grid > .form-number-card {
    grid-column: 1;
  }

  .form-grid > .action-copy {
    grid-column: 2;
  }

  .highlight-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .text-title-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 58px;
  }

  .title-intro-grid > .titles-direction {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1120px) {
  .site-head {
    padding-inline: 34px;
  }

  .slide {
    padding-inline: 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 72px;
  }

  .economics-card > strong {
    font-size: 142px;
  }

  .proof-item-grid {
    gap: 74px;
  }
}

@media (max-width: 430px) {
  .site-head > span {
    max-width: 57vw;
  }

  .hero-frame figcaption,
.title-reference figcaption {
    inset: auto 8px 8px;
    padding: 8px 10px;
  }

  .proof-image {
    margin-inline: 0;
  }

  .bar-label {
    align-items: flex-start;
  }

  .terminal-note,
  .profile-note,
  .account-close {
    text-align: left;
  }

  .proof-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: #eef1f4;
  }

  .proof-mobile span {
    display: block;
    aspect-ratio: 2.35 / 1;
    overflow: hidden;
    border: 1px solid rgba(8, 15, 28, 0.12);
    border-radius: 10px;
    background-image: url("assets/nick-proof-tile.png");
    background-repeat: no-repeat;
    background-position-y: 100%;
    background-size: 586% auto;
  }

  .proof-mobile span:nth-child(1) {
    background-position-x: 19%;
  }

  .proof-mobile span:nth-child(2) {
    background-position-x: 50%;
  }

  .proof-mobile span:nth-child(3) {
    background-position-x: 73%;
  }

  .proof-mobile span:nth-child(4) {
    background-position-x: 96%;
  }
}

/* Founder-directed density and Instagram fidelity pass, 2026-08-16. */

.bio-slide {
  min-height: auto;
  padding-top: calc(96px + env(safe-area-inset-top));
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

.bio-copy-grid {
  display: grid;
  gap: 48px;
  max-width: 920px;
}

.bio-copy-block {
  min-width: 0;
}

.highlights-copy-block {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.highlights-copy-block .highlight-plan {
  gap: 15px;
  margin-top: 25px;
  padding: 19px;
}

.bio-slide .profile-compare {
  display: grid;
  width: 100%;
  max-width: 860px;
  justify-items: center;
  gap: 22px;
  margin: 54px auto 0;
}

.bio-slide .profile-panel {
  width: min(100%, 340px);
  min-width: 0;
}

.bio-slide .profile-panel-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.bio-slide .profile-panel-label span {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #242424;
}

.bio-slide .rebuilt-profile-panel .profile-panel-label {
  color: var(--ink);
}

.bio-slide .rebuilt-profile-panel .profile-panel-label span {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}

.bio-slide .ig-phone {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 680px;
  aspect-ratio: 390 / 844;
  overflow: visible;
  padding: 7px;
  border: 1px solid #363636;
  border-radius: 47px;
  outline: 1px solid rgba(255, 255, 255, 0.17);
  color: #f5f5f5;
  background: linear-gradient(145deg, #292929 0%, #0c0c0c 45%, #242424 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.13),
    0 3px 0 #050505,
    0 34px 88px rgba(0, 0, 0, 0.68);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.bio-slide .rebuilt-phone {
  border-color: #666;
  outline-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 3px 0 #060606,
    0 38px 96px rgba(0, 0, 0, 0.7),
    0 0 38px rgba(255, 255, 255, 0.07);
}

.bio-slide .ig-screen {
  height: 100%;
  overflow: hidden;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.bio-slide .ig-phone > .ig-screen {
  position: relative;
  z-index: 2;
}

.phone-buttons,
.phone-button-right {
  position: absolute;
  z-index: -1;
  display: block;
  width: 4px;
}

.phone-buttons-left {
  top: 88px;
  left: -4px;
  height: 160px;
}

.bio-slide .ig-phone > .phone-buttons,
.bio-slide .ig-phone > .phone-button-right {
  position: absolute;
  z-index: 1;
}

.phone-buttons-left i {
  position: absolute;
  right: 0;
  display: block;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(90deg, #080808, #3b3b3b);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
}

.phone-buttons-left i:nth-child(1) {
  top: 0;
  height: 25px;
}

.phone-buttons-left i:nth-child(2) {
  top: 42px;
  height: 49px;
}

.phone-buttons-left i:nth-child(3) {
  top: 103px;
  height: 49px;
}

.phone-button-right {
  top: 154px;
  right: -4px;
  height: 78px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, #3b3b3b, #080808);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
}

.bio-slide .phone-status {
  display: grid;
  min-height: 35px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.bio-slide .phone-island {
  width: 84px;
  height: 24px;
  border: 1px solid #060606;
  border-radius: 999px;
  background: #050505;
  box-shadow: inset 0 0 0 1px #0d0d0d, 0 1px 2px rgba(255, 255, 255, 0.03);
}

.bio-slide .phone-status-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.bio-slide .phone-status-icons i {
  position: relative;
  display: block;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bio-slide .phone-status-icons .status-cell {
  width: 17px;
  height: 12px;
  background: linear-gradient(to right, #fff 0 18%, transparent 18% 27%, #fff 27% 47%, transparent 47% 56%, #fff 56% 76%, transparent 76% 84%, #fff 84% 100%);
  clip-path: polygon(0 100%, 0 72%, 18% 72%, 18% 52%, 42% 52%, 42% 32%, 67% 32%, 67% 10%, 100% 10%, 100% 100%);
}

.bio-slide .phone-status-icons .status-wifi {
  width: 15px;
  height: 11px;
  border-top: 2px solid #fff;
  border-radius: 50% 50% 0 0;
}

.bio-slide .phone-status-icons .status-wifi::before,
.bio-slide .phone-status-icons .status-wifi::after {
  position: absolute;
  left: 50%;
  border-top: 2px solid #fff;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  content: "";
}

.bio-slide .phone-status-icons .status-wifi::before {
  top: 3px;
  width: 10px;
  height: 7px;
}

.bio-slide .phone-status-icons .status-wifi::after {
  top: 7px;
  width: 4px;
  height: 3px;
}

.bio-slide .phone-status-icons .status-battery {
  width: 20px;
  height: 10px;
  border: 1.5px solid #fff;
  border-radius: 3px;
  box-shadow: inset -4px 0 #000, inset 0 0 0 5px #fff;
}

.bio-slide .phone-status-icons .status-battery::after {
  position: absolute;
  top: 2px;
  right: -3px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: #fff;
  content: "";
}

.bio-slide .ig-toolbar {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0 2px;
}

.bio-slide .ig-handle {
  color: #f5f5f5;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.bio-slide .ig-hamburger {
  display: grid;
  width: 24px;
  gap: 4px;
  padding: 4px 0;
}

.bio-slide .ig-hamburger i {
  display: block;
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: #f3f3f3;
}

.bio-slide .ig-profile-row {
  display: grid;
  min-height: 84px;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 5px 2px 0;
}

.bio-slide .ig-avatar {
  width: 76px;
  height: 76px;
  overflow: hidden;
  padding: 3px;
  border: 0;
  border-radius: 50%;
  background: conic-gradient(#d300c5, #ff3040 30%, #ffdc80 58%, #ff3040 78%, #d300c5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.bio-slide .ig-avatar img {
  width: 100%;
  height: 100%;
  border: 3px solid #000;
  border-radius: 50%;
  object-fit: cover;
  object-position: 78% 30%;
  transform: scale(1.08);
}

.bio-slide .ig-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  text-align: center;
}

.bio-slide .ig-stats strong,
.bio-slide .ig-stats span {
  display: block;
}

.bio-slide .ig-stats strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bio-slide .ig-stats span {
  margin-top: 3px;
  color: #f0f0f0;
  font-size: 15px;
  line-height: 1.12;
}

.bio-slide .ig-identity {
  margin: 9px 3px 0;
}

.bio-slide .ig-identity strong {
  display: block;
  color: #f5f5f5;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.bio-slide .ig-bio {
  min-height: 109px;
  margin: 3px 3px 0;
}

.bio-slide .ig-bio p {
  margin: 0 0 2px;
  color: #f1f1f1;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.28;
}

.bio-slide .current-bio .bio-defect {
  margin: 2px -3px;
  padding: 3px 6px;
  border-left: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 0 6px 6px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
}

.bio-slide .rebuilt-bio .changed-line {
  margin: 2px -4px;
  padding: 4px 6px 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-left: 3px solid #fff;
  border-radius: 0 7px 7px 0;
  color: #fff;
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035) 78%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.bio-slide .ig-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 7px 3px 0;
}

.bio-slide .ig-actions span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #f7f7f7;
  background: #262626;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
}

.bio-slide .profile-highlight-rail {
  display: flex;
  gap: 8px;
  margin: 12px -12px 6px;
  padding: 0 12px 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.bio-slide .profile-highlight-rail::-webkit-scrollbar {
  display: none;
}

.bio-slide .profile-highlight-rail > span {
  display: grid;
  flex: 0 0 61px;
  min-width: 0;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.bio-slide .profile-highlight-rail i {
  display: block;
  width: 49px;
  height: 49px;
  border: 1px solid #4b4b4b;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.15) 0 10%, transparent 11%),
    linear-gradient(145deg, #303030, #111);
  box-shadow: inset 0 0 0 3px #000;
}

.bio-slide .rebuilt-highlight-rail i {
  border-color: #656565;
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.23) 0 10%, transparent 11%),
    linear-gradient(145deg, #434343, #151515);
}

.bio-slide .profile-highlight-rail b {
  display: block;
  max-width: 100%;
  color: #f1f1f1;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.bio-slide .ig-tabs {
  display: grid;
  min-height: 43px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  place-items: center;
  gap: 0;
  margin: 0 -12px;
  padding: 0;
  border-top: 1px solid #262626;
}

.bio-slide .ig-tabs > span {
  position: relative;
  display: grid;
  width: 100%;
  height: 43px;
  place-items: center;
}

.bio-slide .ig-tabs > span:first-child {
  border-top: 1px solid #f4f4f4;
}

.bio-slide .tab-grid::before {
  width: 20px;
  height: 20px;
  border: 1.5px solid #f4f4f4;
  background:
    linear-gradient(90deg, transparent 30%, #f4f4f4 30% 36%, transparent 36% 64%, #f4f4f4 64% 70%, transparent 70%),
    linear-gradient(transparent 30%, #f4f4f4 30% 36%, transparent 36% 64%, #f4f4f4 64% 70%, transparent 70%);
  content: "";
}

.bio-slide .tab-reels::before {
  width: 21px;
  height: 18px;
  border: 1.5px solid #777;
  border-radius: 3px;
  background: linear-gradient(145deg, transparent 35%, #777 36% 42%, transparent 43% 58%, #777 59% 65%, transparent 66%) 0 -6px / 100% 12px no-repeat;
  content: "";
}

.bio-slide .tab-reels::after {
  position: absolute;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #777;
  content: "";
}

.bio-slide .tab-tagged::before {
  width: 20px;
  height: 20px;
  border: 1.5px solid #777;
  border-radius: 4px;
  content: "";
}

.bio-slide .tab-tagged::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1.5px solid #777;
  border-radius: 50% 50% 42% 42%;
  content: "";
}

.bio-slide .ig-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin: 0 -12px;
}

.bio-slide .ig-posts img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.8);
}

/* Screenshot-matched Instagram profile chrome, 2026-08-16. */

.bio-slide .profile-panel {
  width: min(100%, 356px);
}

.bio-slide .ig-phone {
  min-height: 0;
  aspect-ratio: 390 / 844;
}

.bio-slide .rebuilt-phone {
  border-color: #363636;
  outline-color: rgba(255, 255, 255, 0.17);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.13),
    0 3px 0 #050505,
    0 34px 88px rgba(0, 0, 0, 0.68);
}

.bio-slide .ig-screen {
  padding: 0 11px;
}

.bio-slide .phone-status {
  min-height: 36px;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 7px;
  font-size: 14px;
}

.bio-slide .status-time {
  justify-self: start;
  letter-spacing: -0.02em;
}

.bio-slide .island-cluster {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bio-slide .phone-island {
  width: 80px;
  height: 24px;
  border: 0;
  background: #050505;
  box-shadow: inset 0 0 0 1px #0c0c0c;
}

.bio-slide .recording-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff9f0a;
  box-shadow: 0 0 5px rgba(255, 159, 10, 0.28);
}

.bio-slide .phone-status-icons {
  gap: 5px;
}

.bio-slide .phone-status-icons .status-cell {
  width: 17px;
  height: 11px;
}

.bio-slide .phone-status-icons .status-wifi {
  width: 15px;
  height: 10px;
}

.bio-slide .phone-status-icons .status-battery {
  position: relative;
  display: grid;
  width: 28px;
  height: 14px;
  overflow: hidden;
  place-items: center;
  border: 0;
  border-radius: 5px;
  background: #48484a;
  box-shadow: none;
}

.bio-slide .phone-status-icons .status-battery::after {
  content: none;
}

.bio-slide .phone-status-icons .status-battery i {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  width: 49%;
  height: 100%;
  border-radius: 5px 0 0 5px;
  background: #34c759;
}

.bio-slide .phone-status-icons .status-battery b {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55);
}

.bio-slide .ig-toolbar {
  display: grid;
  min-height: 46px;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 0;
}

.bio-slide .ig-back,
.bio-slide .ig-bell,
.bio-slide .ig-more {
  display: grid;
  place-items: center;
}

.bio-slide .ig-back svg,
.bio-slide .ig-bell svg,
.bio-slide .ig-more svg {
  display: block;
  width: 24px;
  height: 24px;
  overflow: visible;
}

.bio-slide .ig-back path,
.bio-slide .ig-bell path {
  fill: none;
  stroke: #f5f5f5;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bio-slide .ig-more circle {
  fill: #f5f5f5;
}

.bio-slide .ig-account-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.bio-slide .ig-handle {
  overflow: hidden;
  color: #f5f5f5;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bio-slide .verified-badge {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  place-items: center;
}

.bio-slide .verified-badge svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bio-slide .verified-badge circle {
  fill: #0095f6;
  stroke: #0095f6;
  stroke-width: 2;
  stroke-dasharray: 1 1;
}

.bio-slide .verified-badge path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bio-slide .ig-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.bio-slide .ig-more svg {
  width: 22px;
}

.bio-slide .ig-profile-row {
  min-height: 91px;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 5px 1px 2px;
}

.bio-slide .ig-avatar {
  width: 82px;
  height: 82px;
  padding: 2px;
  border: 1px solid #606060;
  background: #111;
  box-shadow: none;
}

.bio-slide .ig-avatar img {
  border: 0;
  object-position: 78% 30%;
  transform: scale(1.06);
}

.bio-slide .ig-profile-main {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 13px;
}

.bio-slide .ig-identity {
  margin: 0;
}

.bio-slide .ig-identity strong {
  overflow: hidden;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bio-slide .ig-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.bio-slide .ig-stats strong {
  font-size: 17px;
  font-weight: 750;
  line-height: 1;
}

.bio-slide .ig-stats span {
  margin-top: 3px;
  color: #a8a8a8;
  font-size: 13px;
  line-height: 1;
}

.bio-slide .ig-bio {
  min-height: 80px;
  margin: 5px 2px 0;
}

.bio-slide .ig-bio p {
  margin: 0;
  color: #f5f5f5;
  font-size: 15px;
  line-height: 1.3;
}

.bio-slide .ig-blue {
  color: #e0f1ff;
}

.bio-slide .flag-svg {
  display: inline-block;
  width: 18px;
  height: 11px;
  margin-left: 2px;
  overflow: hidden;
  border-radius: 1px;
  vertical-align: -1px;
}

.bio-slide .flag-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bio-slide .rebuilt-bio .changed-line {
  margin: 1px -3px;
  padding: 2px 5px 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid #fff;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035));
}

.bio-slide .ig-social-proof {
  display: grid;
  min-height: 41px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 2px 2px 0;
}

.bio-slide .proof-avatars {
  display: flex;
  align-items: center;
  padding-left: 2px;
}

.bio-slide .proof-avatars img {
  width: 25px;
  height: 25px;
  overflow: hidden;
  border: 1.5px solid #000;
  border-radius: 50%;
  object-fit: cover;
}

.bio-slide .proof-avatars img + img {
  margin-left: -8px;
}

.bio-slide .ig-social-proof p {
  margin: 0;
  color: #a8a8a8;
  font-size: 12.5px;
  line-height: 1.2;
}

.bio-slide .ig-social-proof strong {
  color: #f5f5f5;
  font-weight: 700;
}

.bio-slide .ig-actions {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 38px;
  gap: 6px;
  margin: 5px 2px 0;
}

.bio-slide .ig-actions span {
  min-height: 34px;
  border-radius: 7px;
  background: #252525;
  font-size: 14px;
  font-weight: 650;
}

.bio-slide .ig-actions span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.bio-slide .action-chevron {
  width: 10px;
  height: 7px;
}

.bio-slide .action-chevron path,
.bio-slide .add-person path,
.bio-slide .add-person circle {
  fill: none;
  stroke: #f5f5f5;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bio-slide .add-person svg {
  width: 21px;
  height: 21px;
}

.bio-slide .profile-highlight-rail {
  gap: 9px;
  margin: 10px -11px 3px;
  padding: 0 11px 5px;
}

.bio-slide .profile-highlight-rail > .highlight-item {
  display: grid;
  flex: 0 0 62px;
  justify-items: center;
  gap: 5px;
}

.bio-slide .profile-highlight-rail .highlight-cover {
  display: block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid #545454;
  border-radius: 50%;
  background: #171717;
  box-shadow: inset 0 0 0 2px #000;
}

.bio-slide .profile-highlight-rail .highlight-cover svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bio-slide .rebuilt-highlight-rail .highlight-cover {
  border-color: #696969;
}

.bio-slide .profile-highlight-rail b {
  color: #f1f1f1;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.05;
  overflow-wrap: normal;
  white-space: nowrap;
}

.bio-slide .ig-tabs {
  min-height: 44px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 -11px;
  border-top: 1px solid #262626;
}

.bio-slide .ig-tabs > span {
  height: 44px;
}

.bio-slide .ig-tabs > span:first-child {
  border-top: 1px solid #f4f4f4;
}

.bio-slide .ig-tabs > span::before,
.bio-slide .ig-tabs > span::after {
  content: none;
}

.bio-slide .ig-tabs svg {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
}

.bio-slide .ig-tabs path,
.bio-slide .ig-tabs rect,
.bio-slide .ig-tabs circle {
  fill: none;
  stroke: #8e8e8e;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bio-slide .ig-tabs .tab-grid path {
  stroke: #f5f5f5;
}

.bio-slide .ig-tabs .tab-reels path {
  fill: none;
}

.bio-slide .ig-posts {
  margin: 0 -11px;
}

.bio-slide .profile-change {
  position: relative;
  display: grid;
  width: 126px;
  min-height: 76px;
  place-items: center;
  gap: 8px;
  color: var(--soft);
  text-align: center;
}

.bio-slide .profile-change > span {
  position: relative;
  display: block;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), #fff);
}

.bio-slide .profile-change > span::after {
  position: absolute;
  right: -4px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  content: "";
}

.bio-slide .profile-change small {
  max-width: 126px;
  margin: 0;
  color: var(--white-soft);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.bio-slide .after-card {
  margin-top: 42px;
}

.packaging-intro,
.videos-slide,
.close-slide {
  min-height: auto;
}

.packaging-inner,
.videos-inner {
  max-width: 980px;
}

.packaging-grid {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
}

.packaging-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(29, 29, 29, 0.98), rgba(8, 8, 8, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 48px rgba(0, 0, 0, 0.35);
}

.packaging-card .proof-image {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.packaging-metric {
  display: flex;
  min-height: 58px;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px 12px;
}

.packaging-metric strong {
  display: inline-block;
  color: #fff;
  font-size: 36px;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.packaging-metric span {
  color: var(--soft);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.packaging-inner > .after-card {
  margin-top: 18px;
}

.videos-slide .title-intro-grid {
  gap: 22px;
}

.videos-slide .title-intro-grid > p,
.videos-slide .title-intro-grid > .titles-direction {
  max-width: 780px;
  align-self: auto;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
}

.video-idea-list {
  display: grid;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #0a0a0a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 58px rgba(0, 0, 0, 0.38);
}

.video-idea-row {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.035), transparent 48%);
}

.video-idea-row:last-child {
  border-bottom: 0;
}

.video-idea-row h3 {
  max-width: none;
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.18;
  text-wrap: pretty;
}

.video-idea-row .thumbnail-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.video-idea-row .thumbnail-text span,
.video-idea-row .thumbnail-text strong,
.video-idea-row .thumbnail-text i {
  display: inline;
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.video-idea-row .thumbnail-text span {
  flex: 1 0 100%;
}

.video-idea-row .thumbnail-text strong {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.videos-inner > .after-card {
  margin-top: 20px;
}

.close-slide {
  padding-top: calc(96px + env(safe-area-inset-top));
  padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

.close-inner {
  max-width: 760px;
}

.close-inner .section-intro {
  margin-bottom: 22px;
}

.close-inner > p {
  margin-top: 18px;
}

.close-proof {
  width: min(100%, 580px);
  margin: 22px 0 0;
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

.close-proof img {
  width: 100%;
  aspect-ratio: 5.86 / 1;
  object-fit: contain;
}

.close-slide .primary-cta {
  margin-top: 26px;
}

@media (min-width: 760px) {
  .bio-copy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 48px;
  }

  .highlights-copy-block {
    padding-top: 0;
    padding-left: 48px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .bio-slide .profile-compare {
    grid-template-columns: minmax(0, 356px) 74px minmax(0, 356px);
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .bio-slide .profile-change {
    width: 74px;
    min-height: 0;
  }

  .bio-slide .profile-change > span {
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), #fff);
  }

  .bio-slide .profile-change > span::after {
    right: 0;
    bottom: -4px;
    transform: rotate(-45deg);
  }

  .bio-slide .profile-change small {
    max-width: 74px;
  }

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

  .packaging-metric strong {
    font-size: 40px;
  }

  .video-idea-row {
    grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
    align-items: center;
    gap: 24px;
    padding: 17px 20px;
  }

  .video-idea-row .thumbnail-text span {
    flex-basis: 100%;
  }
}

@media (max-width: 360px) {
  .bio-slide .profile-panel {
    width: min(100%, 300px);
  }

  .bio-slide .ig-phone {
    min-height: 680px;
  }
}

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

  .motion-ready [data-reveal] > .slide-inner,
  .motion-ready [data-reveal] > .scroll-cue {
    opacity: 1 !important;
    transform: none !important;
  }

  .motion-ready .hero [data-reveal] > .scroll-cue,
  .motion-ready .hero > .scroll-cue {
    transform: translateX(-50%) !important;
  }

  .motion-ready [data-reveal] [data-stage],
  .motion-ready [data-reveal] .pop-number {
    opacity: 1 !important;
    filter: none !important;
    scale: 1 !important;
    translate: none !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  body {
    background: #050505;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .site-head,
  .progress-line,
  .scroll-cue {
    display: none !important;
  }

  .slide {
    min-height: 297mm;
    padding: 18mm 14mm;
    break-after: page;
    page-break-after: always;
  }

  .slide:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .motion-ready [data-reveal] > .slide-inner {
    opacity: 1 !important;
    transform: none !important;
  }

  .motion-ready [data-reveal] [data-stage],
  .motion-ready [data-reveal] .pop-number {
    opacity: 1 !important;
    filter: none !important;
    scale: 1 !important;
    translate: none !important;
  }
}
