:root {
  --ink: #0d0d0d;
  --dark: #151515;
  --panel: #202020;
  --paper: #fffdf4;
  --soft: #f4efe4;
  --warm: #e7ddcf;
  --muted: #67615a;
  --lime: #cfff24;
  --coral: #ff4f72;
  --sky: #7be7ff;
  --white: #ffffff;
  --line: rgba(13, 13, 13, 0.13);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(13, 13, 13, 0.16);
  --shadow-hard: 0 9px 0 var(--ink);
  color-scheme: light;
  font-family:
    "Bricolage Grotesque", "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, #fffaf0 52%, var(--soft) 100%);
  background-size: 92px 100%, auto;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(13, 13, 13, 0.06) calc(100% - 1px)),
    linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), rgba(13, 13, 13, 0.06) calc(100% - 1px));
  background-size: 46px 46px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, transparent 86%);
  opacity: 0.12;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 244, 0.72);
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 46px rgba(13, 13, 13, 0.08);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 50%;
  margin: 0 auto;
  max-width: 1180px;
  padding: 12px 14px 12px 16px;
  position: fixed;
  top: 14px;
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease;
  width: calc(100% - 28px);
  z-index: 20;
}

.site-header.is-elevated {
  background: rgba(255, 253, 244, 0.91);
  box-shadow: 0 16px 58px rgba(13, 13, 13, 0.14);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 24px;
  font-weight: 950;
  gap: 10px;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--lime), #9cff00);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 4px 0 var(--ink);
  display: inline-flex;
  font-size: 23px;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.nav-links {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 14px;
  font-weight: 850;
  gap: 22px;
}

.nav-links a,
.footer-links a {
  transition: color 220ms ease;
}

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

.nav-cta,
.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  min-height: 44px;
}

.nav-cta:hover,
.button:hover,
.step-card:hover,
.source-list div:hover,
details:hover {
  transform: translateY(-2px) scale(1.01);
}

.section-pad {
  margin-inline: auto;
  max-width: 1180px;
  padding: 84px 22px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  min-height: 0;
  padding-top: 118px;
  padding-bottom: 44px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.lime-text {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-family: "Arial Black", Impact, var(--font-display, sans-serif);
  font-size: clamp(3.65rem, 5vw, 5.72rem);
  line-height: 0.94;
  margin: 0;
  max-width: 720px;
}

h2 {
  font-family: "Arial Black", Impact, var(--font-display, sans-serif);
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  line-height: 0.91;
  margin: 0;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 2.3rem);
  line-height: 1.02;
  margin: 0;
}

.lead,
.section-copy p,
.center-copy p,
.final-card p {
  color: var(--muted);
  font-size: clamp(1.15rem, 1.8vw, 1.58rem);
  font-weight: 750;
  line-height: 1.34;
}

.lead {
  margin: 28px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button.primary {
  background: linear-gradient(135deg, var(--lime), #a7ff00);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
  color: var(--ink);
}

.button.primary:hover {
  box-shadow: 0 6px 0 var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid var(--line);
  color: var(--ink);
}

.trust-row {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.pill-row span,
.mini-grid span {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
}

.progress-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  max-width: 580px;
  width: 100%;
}

.progress-strip span,
.progress-strip i {
  border-radius: 999px;
  display: block;
  flex: 1 1 0;
  height: 9px;
  min-width: 0;
}

.progress-strip span {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(207, 255, 36, 0.54);
}

.progress-strip i {
  background: #cec6b8;
}

.hero-art {
  position: relative;
}

.hero-art img,
.showcase-card,
.feature-art,
.phone-tilt,
.pricing-card,
.final-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-art img {
  border: 1px solid rgba(13, 13, 13, 0.12);
  margin-inline: auto;
  max-height: 76vh;
  object-fit: cover;
  object-position: center top;
  transform: rotate(-1deg);
}

.float-chip {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 244, 0.82);
  border: 1px solid rgba(207, 255, 36, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(13, 13, 13, 0.16);
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  position: absolute;
  z-index: 2;
}

.float-chip strong {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.9;
}

.float-chip span {
  color: var(--muted);
  font-weight: 900;
}

.chip-days {
  left: -26px;
  top: 15%;
}

.chip-money {
  bottom: 12%;
  right: -16px;
}

.proof-band {
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--paper);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 30px;
  max-width: 1180px;
  overflow: hidden;
}

.proof-band div {
  background: linear-gradient(180deg, #191919, #101010);
  min-height: 128px;
  padding: 28px;
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  color: var(--lime);
  font-size: 1.35rem;
  line-height: 1.06;
}

.proof-band span {
  color: #d8d8d8;
  font-weight: 750;
  margin-top: 8px;
}

.split,
.feature,
.source-section,
.stand-section {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.dark-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(207, 255, 36, 0.18), transparent 22rem),
    linear-gradient(180deg, #060606, #111);
  border-radius: var(--radius);
  color: var(--paper);
  margin-top: 80px;
  max-width: 1224px;
}

.dark-section .section-copy p {
  color: #bdbdbd;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.check-list li {
  align-items: center;
  color: #d9d9d9;
  display: flex;
  font-size: 1.1rem;
  font-weight: 850;
  gap: 14px;
}

.check-list li::before {
  align-items: center;
  background: var(--lime);
  border-radius: 8px;
  color: var(--ink);
  content: "OK";
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 12px;
  font-weight: 950;
  height: 34px;
  justify-content: center;
}

.showcase-card,
.feature-art,
.phone-tilt {
  background: var(--ink);
  border: 1px solid rgba(207, 255, 36, 0.28);
  margin: 0;
  overflow: hidden;
  transition: transform 300ms ease;
}

.showcase-card:hover,
.feature-art:hover,
.phone-tilt:hover {
  transform: translateY(-4px) scale(1.01);
}

.center-copy {
  margin: 0 auto 42px;
  max-width: 860px;
  text-align: center;
}

.center-copy p {
  margin-inline: auto;
  max-width: 680px;
}

.step-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 260px;
  padding: 26px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.step-card:hover {
  box-shadow: var(--shadow);
}

.step-num {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--lime);
  display: inline-flex;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  margin-bottom: 42px;
  width: 58px;
}

.step-card p,
.deliverables small,
details p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.feature {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.feature-art {
  background: transparent;
}

.mini-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.mini-grid span {
  align-items: center;
  border-radius: var(--radius);
  display: flex;
  font-size: 1.05rem;
  font-weight: 900;
  justify-content: center;
  min-height: 76px;
}

.source-section {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
}

.source-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.source-list div {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  min-height: 86px;
  padding: 18px 20px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.source-list div::after {
  align-items: center;
  background: var(--lime);
  border-radius: 999px;
  content: "OK";
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  height: 36px;
  justify-content: center;
  margin-left: 14px;
  width: 48px;
}

.source-list strong,
.source-list span {
  display: block;
}

.source-list span {
  color: var(--muted);
  font-weight: 750;
  margin-top: 5px;
}

.phone-tilt {
  transform: rotate(2deg);
}

.packet-section {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--paper);
  max-width: 1224px;
}

.packet-section .center-copy p {
  color: #cfcfcf;
}

.pricing-card {
  background:
    radial-gradient(circle at 18% 12%, rgba(207, 255, 36, 0.16), transparent 26rem),
    linear-gradient(135deg, #070707, #171717);
  border: 1px solid rgba(207, 255, 36, 0.28);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  padding: 36px;
}

.price {
  color: var(--lime);
  display: block;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.9;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.pill-row span {
  background: rgba(207, 255, 36, 0.08);
  border-color: rgba(207, 255, 36, 0.6);
  color: var(--paper);
  font-weight: 900;
}

.price-side img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  max-height: 560px;
  object-fit: cover;
  object-position: top;
}

.deliverables {
  align-self: center;
  display: grid;
  gap: 14px;
}

.deliverables div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
}

.deliverables span {
  color: var(--paper);
  display: block;
  font-size: 1.25rem;
  font-weight: 950;
}

.deliverables small {
  color: #cfcfcf;
  display: block;
  margin-top: 6px;
}

.stat-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.stat-row div {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--paper);
  padding: 18px;
}

.stat-row strong {
  color: var(--lime);
  display: block;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.4rem;
  line-height: 0.95;
}

.stat-row span {
  color: #d5d5d5;
  display: block;
  font-weight: 850;
  margin-top: 7px;
}

.paper-card {
  background: var(--paper);
  border-color: var(--line);
}

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

details {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 950;
}

.device-stage {
  isolation: isolate;
  min-height: 560px;
  position: relative;
}

.phone-cutout,
.phone-crop {
  filter: drop-shadow(0 28px 34px rgba(13, 13, 13, 0.18));
  height: auto;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.phone-cutout {
  max-height: 78vh;
  max-width: min(100%, 440px);
}

.phone-crop {
  border-radius: 34px;
  max-height: 760px;
  max-width: min(100%, 390px);
  object-fit: contain;
}

.hero-stage {
  align-items: center;
  display: grid;
  justify-items: center;
}

.stage-word {
  color: rgba(13, 13, 13, 0.045);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(15rem, 28vw, 27rem);
  inset: 50% auto auto 50%;
  line-height: 0.78;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-phone {
  transform: rotate(-2.5deg);
}

.metric-chip {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 244, 0.82);
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 42px rgba(13, 13, 13, 0.13);
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  position: absolute;
  z-index: 3;
}

.metric-chip strong {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.86;
}

.metric-chip span {
  color: var(--muted);
  font-weight: 950;
}

.chip-days {
  left: 5%;
  top: 18%;
}

.chip-money {
  bottom: 12%;
  right: 2%;
}

.trust-strip {
  border-block: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  font-size: 0.92rem;
  font-weight: 950;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.trust-strip span {
  padding: 22px;
}

.dark-story,
.proof-section,
.source-section,
.stand-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.dark-story {
  background: linear-gradient(180deg, #070707, #111);
  color: var(--paper);
  margin-top: 72px;
  max-width: none;
  overflow: hidden;
}

.dark-story .section-copy {
  justify-self: end;
  max-width: 550px;
}

.dark-story .section-copy p {
  color: #bdbdbd;
}

.dark-device {
  align-items: center;
  display: grid;
  justify-items: center;
}

.dark-word {
  color: rgba(207, 255, 36, 0.08);
  inset: 55% auto auto 44%;
}

.dark-phone {
  box-shadow: none;
  transform: rotate(1.5deg);
}

.signal-list,
.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.signal-list span,
.inline-tags span {
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 950;
  padding: 9px 13px;
}

.signal-list span {
  color: var(--lime);
}

.rail-steps {
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.rail-step {
  border-right: 1px solid var(--line);
  padding: 28px 28px 10px 0;
}

.rail-step:last-child {
  border-right: 0;
}

.rail-step span {
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 4px 0 var(--ink);
  display: inline-flex;
  font-weight: 950;
  margin-bottom: 34px;
  padding: 10px 16px;
}

.rail-step p {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.proof-section {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.proof-device {
  align-items: center;
  display: grid;
  justify-items: center;
}

.proof-device::before {
  background:
    radial-gradient(circle at 52% 50%, rgba(207, 255, 36, 0.26), transparent 42%),
    radial-gradient(circle at 52% 50%, rgba(13, 13, 13, 0.22), transparent 68%);
  content: "";
  filter: blur(20px);
  height: 82%;
  left: 8%;
  opacity: 0.9;
  position: absolute;
  top: 8%;
  width: 84%;
  z-index: 0;
}

.source-rows {
  border-top: 2px solid var(--ink);
}

.source-rows div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(160px, 0.6fr) 1fr;
  padding: 22px 0;
}

.source-rows strong {
  font-size: 1.12rem;
  font-weight: 950;
}

.source-rows span {
  color: var(--muted);
  font-weight: 800;
}

.source-rows div::after {
  background: var(--lime);
  border-radius: 999px;
  content: "OK";
  font-size: 0.78rem;
  font-weight: 950;
  justify-self: end;
  padding: 7px 11px;
}

.moments-section {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
}

.moments-copy {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
}

.moments-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.moments-copy h2 {
  font-size: clamp(2.85rem, 5.15vw, 5.55rem);
  max-width: 820px;
}

.moments-copy p {
  align-self: end;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 800;
  line-height: 1.38;
  margin: 0;
}

.moments-copy small {
  background: rgba(255, 255, 255, 0.58);
  border-left: 3px solid var(--lime);
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 760;
  grid-column: 1 / -1;
  line-height: 1.45;
  max-width: 820px;
  padding: 12px 14px;
}

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

.moment-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(13, 13, 13, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(13, 13, 13, 0.08);
  display: grid;
  grid-column: span 2;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.moment-card:first-child,
.moment-card:nth-child(5) {
  grid-column: span 3;
}

.moment-card img {
  aspect-ratio: 1 / 1.02;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.moment-card div {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 20px;
}

.moment-card p {
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 850;
  line-height: 1.32;
  margin: 0 0 24px;
}

.moment-card strong {
  color: var(--ink);
  display: block;
  font-size: 1.05rem;
  font-weight: 950;
  margin-top: auto;
}

.moment-card span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.28;
  margin-top: 5px;
}

.moment-card::after {
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 999px;
  content: "";
  height: 13px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 13px;
}

.packet-section {
  background:
    radial-gradient(circle at 72% 18%, rgba(207, 255, 36, 0.15), transparent 28rem),
    linear-gradient(135deg, #050505 0%, #101010 48%, #171717 100%);
  color: var(--paper);
  display: grid;
  gap: clamp(30px, 5vw, 60px);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  max-width: none;
  overflow: hidden;
}

.packet-copy {
  align-self: center;
  justify-self: end;
  max-width: 720px;
}

.packet-copy h2,
.proof-section h2,
.source-section h2,
.stand-section h2 {
  font-size: clamp(2.85rem, 5.15vw, 5.55rem);
}

.packet-copy p {
  color: #cfcfcf;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 750;
  line-height: 1.36;
}

.price-line {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.price-line strong {
  color: var(--lime);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.82;
}

.price-line span {
  color: #d8d8d8;
  font-weight: 950;
  margin-bottom: 12px;
}

.packet-visual {
  align-content: center;
  display: grid;
  gap: 18px;
  min-height: 620px;
  position: relative;
}

.packet-phone-ui {
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(140deg, #111, #767676 42%, #050505 70%, #b9b9b9) border-box;
  border: 10px solid transparent;
  border-radius: 42px;
  box-shadow:
    0 42px 88px rgba(0, 0, 0, 0.42),
    0 0 46px rgba(207, 255, 36, 0.16);
  color: var(--ink);
  justify-self: end;
  max-width: 330px;
  min-height: 640px;
  overflow: hidden;
  padding: 22px 22px 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(2deg);
  width: min(62%, 330px);
  z-index: 1;
}

.packet-phone-ui::after {
  background: #050505;
  border-radius: 999px;
  content: "";
  height: 25px;
  left: 50%;
  position: absolute;
  top: 14px;
  transform: translateX(-50%);
  width: 88px;
}

.phone-ui-top,
.phone-ui-brand,
.phone-ui-progress {
  align-items: center;
  display: flex;
}

.phone-ui-top {
  font-size: 0.8rem;
  font-weight: 950;
  justify-content: space-between;
  margin: 3px 0 22px;
}

.phone-ui-top i {
  background: var(--ink);
  border-radius: 3px;
  display: block;
  height: 8px;
  opacity: 0.8;
  width: 28px;
}

.phone-ui-brand {
  gap: 9px;
  margin-bottom: 18px;
}

.phone-ui-brand b {
  align-items: center;
  background: var(--ink);
  border-radius: 7px;
  color: var(--lime);
  display: inline-flex;
  font-size: 1rem;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.phone-ui-brand strong {
  font-size: 1.08rem;
  font-weight: 950;
}

.phone-ui-brand span {
  border: 1px solid rgba(13, 13, 13, 0.16);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 950;
  margin-left: auto;
  padding: 8px 10px;
}

.phone-ui-progress {
  gap: 5px;
  margin-bottom: 12px;
}

.phone-ui-progress span,
.phone-ui-progress i {
  border-radius: 999px;
  display: block;
  flex: 1;
  height: 6px;
}

.phone-ui-progress span {
  background: var(--lime);
  box-shadow: 0 0 12px rgba(207, 255, 36, 0.42);
}

.phone-ui-progress i {
  background: #d3cbbc;
}

.packet-phone-ui small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.packet-phone-ui h3 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.02rem;
  line-height: 0.92;
  margin: 0 0 10px;
}

.packet-phone-ui p {
  color: #46413b;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.25;
  margin: 0 0 16px;
}

.phone-ui-panel {
  background: linear-gradient(135deg, #080808, #171717);
  border-radius: 10px;
  display: grid;
  gap: 9px;
  padding: 13px;
}

.phone-ui-panel div {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(207, 255, 36, 0.22);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  font-size: 0.8rem;
  font-weight: 950;
  grid-template-columns: 1fr auto;
  padding: 12px;
}

.phone-ui-panel i {
  background: var(--lime);
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.7rem;
  font-style: normal;
  padding: 7px 8px;
}

.packet-phone-ui button {
  background: linear-gradient(135deg, var(--lime), #a7ff00);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 5px 0 var(--ink);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 950;
  margin-top: 18px;
  min-height: 46px;
  width: 100%;
}

.case-file-card,
.case-checklist,
.case-total {
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
}

.case-file-card {
  background: linear-gradient(180deg, rgba(255, 253, 244, 0.98), rgba(244, 239, 228, 0.98));
  border: 2px solid rgba(207, 255, 36, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 28px 80px rgba(0, 0, 0, 0.38);
  color: var(--ink);
  display: grid;
  gap: 24px;
  max-width: 520px;
  min-height: 278px;
  overflow: hidden;
  padding: 30px;
  transform: translateX(-54px);
  width: min(82%, 520px);
}

.case-file-card::after {
  background: linear-gradient(135deg, var(--lime), #9dff00);
  border-bottom-left-radius: 8px;
  content: "";
  height: 72px;
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
}

.case-file-top span,
.case-file-badge {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-file-top strong {
  display: block;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 0.88;
  margin-top: 10px;
  max-width: 360px;
  text-transform: uppercase;
}

.case-file-lines {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.case-file-lines span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 10px;
}

.case-file-lines span:nth-child(2),
.case-file-lines span:nth-child(3) {
  background: #d7cfc1;
}

.case-file-lines span:nth-child(2) {
  width: 76%;
}

.case-file-lines span:nth-child(3) {
  width: 54%;
}

.case-file-badge {
  align-self: end;
  border: 1px solid rgba(13, 13, 13, 0.16);
  color: var(--ink);
  justify-self: start;
  padding: 9px 12px;
}

.case-checklist {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  margin-left: 0;
  max-width: 500px;
  padding: 14px;
  transform: translateX(-18px);
  width: min(78%, 500px);
}

.case-checklist div {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(207, 255, 36, 0.05));
  border: 1px solid rgba(207, 255, 36, 0.2);
  border-radius: var(--radius);
  display: grid;
  gap: 4px 16px;
  grid-template-columns: 1fr auto;
  padding: 15px 16px;
}

.case-checklist strong,
.case-checklist span {
  display: block;
}

.case-checklist strong {
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 950;
}

.case-checklist span {
  color: #cfcfcf;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.28;
}

.case-checklist i {
  background: var(--lime);
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 8px 10px;
}

.case-total {
  align-items: center;
  background: linear-gradient(135deg, rgba(207, 255, 36, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(207, 255, 36, 0.48);
  display: grid;
  gap: 4px 20px;
  grid-template-columns: 1fr auto;
  margin-left: 0;
  max-width: 500px;
  padding: 20px 22px;
  transform: translateX(14px);
  width: min(84%, 500px);
}

.case-total span {
  color: #d8d8d8;
  font-weight: 950;
}

.case-total strong {
  color: var(--lime);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  grid-row: 1 / span 2;
  line-height: 0.9;
}

.case-total small {
  color: #bfbfbf;
  font-weight: 750;
  line-height: 1.32;
}

.deliverable-rows {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.deliverable-rows div {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px 22px 0 0;
}

.deliverable-rows div:last-child {
  border-right: 0;
}

.deliverable-rows span {
  color: var(--paper);
  display: block;
  font-weight: 950;
}

.deliverable-rows small {
  color: #cfcfcf;
  display: block;
  font-weight: 750;
  line-height: 1.42;
  margin-top: 7px;
}

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

.big-metrics div {
  border-left: 2px solid var(--ink);
  padding: 12px 24px;
}

.big-metrics strong {
  display: block;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
}

.big-metrics span {
  color: var(--muted);
  display: block;
  font-weight: 950;
  margin-top: 10px;
}

.final-card {
  align-items: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(207, 255, 36, 0.3), transparent 20rem),
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 980px;
  padding: clamp(32px, 7vw, 78px);
  text-align: center;
}

.final-card p {
  color: #d0d0d0;
  max-width: 720px;
}

.final-card small {
  color: #bdbdbd;
  display: block;
  font-weight: 750;
  line-height: 1.45;
  margin-top: 18px;
  max-width: 620px;
}

.site-footer {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1180px;
  padding: 38px 22px 54px;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.48;
  margin: 0;
}

.footer-links {
  display: flex;
  font-weight: 900;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .feature,
  .dark-story,
  .proof-section,
  .source-section,
  .stand-section,
  .pricing-card,
  .packet-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 116px;
  }

  .hero-art {
    max-width: 720px;
    margin-inline: auto;
  }

  .device-stage {
    min-height: 0;
  }

  .dark-story .section-copy,
  .packet-copy {
    justify-self: auto;
  }

  .proof-band,
  .step-grid,
  .faq-grid,
  .rail-steps,
  .deliverable-rows,
  .moments-grid {
    grid-template-columns: 1fr 1fr;
  }

  .moments-copy {
    grid-template-columns: 1fr;
  }

  .moment-card,
  .moment-card:first-child,
  .moment-card:nth-child(5) {
    grid-column: auto;
  }

  .packet-visual {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    border-radius: 0;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .section-pad {
    padding: 62px 16px;
  }

  .hero {
    gap: 34px;
    padding-top: 96px;
  }

  .hero-stage {
    margin-top: -10px;
    min-height: 520px;
  }

  .phone-cutout {
    max-height: 520px;
  }

  .stage-word {
    font-size: clamp(12rem, 46vw, 19rem);
  }

  .progress-strip {
    margin-bottom: 26px;
  }

  .lead {
    margin-top: 22px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    margin-top: 20px;
  }

  .hero .trust-row {
    display: none;
  }

  h1 {
    font-size: clamp(3.1rem, 13.5vw, 4.25rem);
  }

  .metric-chip {
    padding: 11px 13px;
  }

  .chip-days {
    left: 0;
    top: 18%;
  }

  .chip-money {
    bottom: 7%;
    right: 0;
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .proof-band,
  .trust-strip,
  .step-grid,
  .rail-steps,
  .faq-grid,
  .mini-grid,
  .stat-row,
  .source-rows div,
  .deliverable-rows,
  .big-metrics,
  .moments-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    padding: 16px;
  }

  .dark-story,
  .packet-section {
    padding-inline: 16px;
  }

  .rail-step,
  .deliverable-rows div {
    border-right: 0;
  }

  .proof-device::before {
    height: 74%;
    left: 0;
    top: 13%;
    width: 100%;
  }

  .source-rows div::after {
    justify-self: start;
  }

  .packet-visual {
    min-height: auto;
  }

  .packet-copy h2,
  .proof-section h2,
  .source-section h2,
  .stand-section h2,
  .moments-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .moment-card div {
    min-height: auto;
    padding: 18px;
  }

  .moment-card img {
    aspect-ratio: 1.12 / 1;
  }

  .case-file-card {
    min-height: 230px;
    padding: 22px;
    transform: none;
    width: 100%;
  }

  .case-file-top strong {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .case-checklist,
  .case-total {
    margin-left: 0;
    transform: none;
    width: 100%;
  }

  .packet-phone-ui {
    border-width: 8px;
    justify-self: center;
    margin-bottom: 18px;
    max-width: 310px;
    min-height: 560px;
    padding: 20px 18px 22px;
    position: relative;
    right: auto;
    top: auto;
    transform: rotate(1deg);
    width: min(100%, 310px);
  }

  .case-total {
    grid-template-columns: 1fr;
  }

  .case-total strong {
    grid-row: auto;
  }

  .proof-band {
    border-radius: 0;
    margin-inline: 0;
  }

  .dark-section,
  .packet-section {
    border-radius: 0;
  }

  .float-chip {
    position: static;
    width: fit-content;
  }

  .hero-art {
    display: grid;
    gap: 12px;
  }

  .pricing-card {
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
