:root {
  --ink: #101522;
  --muted: #617086;
  --paper: #f6f8fb;
  --line: #d7e2ee;
  --panel: #ffffff;
  --navy: #08111f;
  --navy-2: #101c31;
  --blue: #2b5cff;
  --cyan: #12b7c8;
  --green: #16a05d;
  --amber: #c97900;
  --red: #d84a3a;
  --violet: #6d5dfc;
  --soft-blue: #edf3ff;
  --soft-green: #eaf8f0;
  --soft-amber: #fff3dc;
  --soft-red: #fff0ee;
  --shadow: 0 24px 70px rgba(13, 24, 45, 0.14);
  --soft-shadow: 0 14px 34px rgba(13, 24, 45, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 226, 238, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background:
    radial-gradient(circle at 20% 18%, #35d7e8, transparent 28%),
    linear-gradient(135deg, #07111f, #224be8 70%, #12b7c8);
  box-shadow: 0 12px 30px rgba(43, 92, 255, 0.25);
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  font-size: 18px;
  line-height: 1;
}

.brand-name span {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(43, 92, 255, 0.24);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.dark {
  background: var(--navy);
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 64px;
}

.section {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

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

h1 {
  margin-bottom: 0;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 34px;
  line-height: 1.08;
  margin-bottom: 0;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Home: narrative landing page */
.home-main {
  background:
    radial-gradient(circle at 14% 14%, rgba(18, 183, 200, 0.2), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(43, 92, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0, #eef4fa 42%, #f6f8fb 100%);
}

.story-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.hero-hook {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--blue);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.story-copy h1 {
  max-width: 600px;
}

.story-copy .lead {
  max-width: 620px;
}

.simple-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
}

.simple-proof div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--soft-shadow);
}

.simple-proof span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.simple-proof strong {
  font-size: 22px;
}

.leak-stage {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  min-height: 520px;
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.leak-stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(18, 183, 200, 0.22), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(109, 93, 252, 0.24), transparent 25%);
  pointer-events: none;
}

.decision-cockpit {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  min-height: auto;
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.decision-cockpit::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 18% 12%, rgba(18, 183, 200, 0.24), transparent 24%),
    radial-gradient(circle at 85% 6%, rgba(43, 92, 255, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.07), transparent 38%);
  pointer-events: none;
}

.leak-stage > * {
  position: relative;
}

.decision-cockpit > * {
  position: relative;
}

.stage-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #b8c7dc;
  font-size: 13px;
  min-width: 0;
}

.stage-top strong {
  color: #fff;
  text-align: right;
}

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

.cockpit-kpi {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.cockpit-kpi span,
.cockpit-verdict-card span,
.cockpit-checks span,
.cockpit-action span {
  color: #b8c7dc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cockpit-kpi strong {
  font-size: 26px;
  line-height: 1;
}

.cockpit-verdict-card {
  border: 1px solid rgba(253, 230, 138, 0.35);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(201, 121, 0, 0.22), rgba(255,255,255,0.08));
  padding: 20px;
  display: grid;
  gap: 9px;
}

.cockpit-verdict-card strong {
  color: #fde68a;
  font-size: 38px;
  line-height: 0.98;
}

.cockpit-verdict-card p {
  color: #e2e8f0;
  line-height: 1.42;
  margin: 0;
}

.cockpit-checks {
  display: grid;
  gap: 10px;
}

.cockpit-checks div {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.cockpit-checks strong {
  color: #8be9f3;
  text-align: right;
}

.cockpit-action {
  margin-top: auto;
  border: 1px solid rgba(187, 247, 208, 0.32);
  border-radius: 18px;
  background: rgba(22, 160, 93, 0.16);
  padding: 18px;
  display: grid;
  gap: 6px;
}

.cockpit-action strong {
  color: #bbf7d0;
  font-size: 24px;
  line-height: 1.08;
}

.money-flow {
  display: grid;
  gap: 12px;
}

.flow-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 90px;
  gap: 12px;
  align-items: center;
}

.flow-row span {
  color: #dbeafe;
  font-size: 13px;
}

.flow-row strong {
  text-align: right;
  color: #fff;
  font-size: 20px;
}

.flow-track {
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.flow-track b {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.flow-track.sales b { width: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.flow-track.costs b { width: 79%; background: linear-gradient(90deg, var(--red), var(--amber)); }
.flow-track.keep b { width: 21%; background: linear-gradient(90deg, var(--green), var(--cyan)); }

.stage-verdict {
  margin-top: auto;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.stage-verdict span {
  color: #b8c7dc;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
}

.stage-verdict strong {
  display: block;
  font-size: 30px;
}

.verdict-pill {
  border-radius: 999px;
  background: rgba(22, 160, 93, 0.16);
  color: #bbf7d0;
  border: 1px solid rgba(187, 247, 208, 0.35);
  padding: 10px 14px;
  font-weight: 900;
}

.verdict-pill.watch {
  background: rgba(201, 121, 0, 0.16);
  color: #fde68a;
  border-color: rgba(253, 230, 138, 0.36);
}

.narrative-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 22px;
  display: grid;
  gap: 24px;
}

.action-section {
  padding-top: 44px;
}

.action-section h2 {
  max-width: 760px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.section-head.solo {
  grid-template-columns: minmax(0, 760px);
}

.story-hero > *,
.calc-intro > *,
.calculator-layout > *,
.kit-grid > *,
.order-breakdown > *,
.section-head > *,
.kit-workflow > * {
  min-width: 0;
}

.section-head p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.pain-cards,
.how-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pain-card,
.how-card,
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

.faq-section {
  padding-top: 56px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.pain-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  margin-bottom: 18px;
}

.pain-card:nth-child(2)::before { background: var(--red); }
.pain-card:nth-child(3)::before { background: var(--blue); }

.pain-card p,
.how-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.order-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.28fr);
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.leak-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(430px, 1.38fr);
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.leak-breakdown > div:first-child {
  display: grid;
  gap: 16px;
}

.leak-breakdown .lead {
  margin-bottom: 0;
}

.leak-breakdown .button {
  justify-self: start;
}

.bucket-visual {
  border: 1px solid #cfe0f2;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #f8fbff, #eef7ff);
  padding: 16px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.drain-visual {
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 16%, rgba(18, 183, 200, 0.18), transparent 30%),
    linear-gradient(180deg, #08111f 0%, #111827 100%);
  color: #fff;
  padding: 22px;
  display: grid;
  gap: 16px;
  min-width: 0;
  box-shadow: 0 24px 60px rgba(8, 17, 31, 0.25);
}

.drain-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 12px;
}

.drain-head span,
.revenue-tank span,
.profit-catch span,
.drain-ledger span,
.drain-verdict span {
  color: #b8c7dc;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.drain-head strong {
  font-size: 44px;
  line-height: 1;
}

.drain-stage {
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(120px, 0.34fr) minmax(190px, 0.72fr);
  gap: 14px;
  align-items: center;
}

.revenue-tank,
.profit-catch {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 170px;
  padding: 22px;
}

.revenue-tank {
  background: linear-gradient(180deg, #f8fbff, #d9ecff);
  color: var(--ink);
  box-shadow: inset 0 -18px 0 rgba(18, 183, 200, 0.18);
}

.revenue-tank span {
  color: #40516a;
}

.revenue-tank strong {
  font-size: 58px;
  line-height: 0.95;
}

.profit-catch {
  align-self: end;
  min-height: 130px;
  background:
    linear-gradient(180deg, rgba(22, 160, 93, 0.22), rgba(22, 160, 93, 0.55)),
    #071f18;
  border: 1px solid rgba(187,247,208,0.36);
}

.profit-catch strong {
  color: #bbf7d0;
  font-size: 56px;
  line-height: 0.95;
}

.profit-catch small {
  color: #e2e8f0;
  font-weight: 900;
}

.drain-column {
  position: relative;
  min-height: 300px;
}

.drain-stream {
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 18px;
  width: 18px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #dbeafe 0%, #8be9f3 42%, #bbf7d0 100%);
  box-shadow: 0 0 30px rgba(18,183,200,0.45);
}

.loss {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 88px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 2px solid #f59e0b;
  box-shadow: 0 14px 28px rgba(0,0,0,0.24);
  padding: 8px 10px;
  text-align: center;
  font-weight: 950;
}

.loss::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 3px;
  background: #f59e0b;
}

.loss-product { top: 28px; margin-left: -58px; }
.loss-creator { top: 82px; margin-left: 58px; }
.loss-coupon { top: 136px; margin-left: -58px; }
.loss-fees { top: 190px; margin-left: 58px; }
.loss-other { top: 244px; margin-left: -58px; }

.loss-product::after,
.loss-coupon::after,
.loss-other::after {
  right: -30px;
}

.loss-creator::after,
.loss-fees::after {
  left: -30px;
}

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

.drain-ledger div {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  padding: 11px;
  display: grid;
  gap: 5px;
}

.drain-ledger strong {
  color: #fde68a;
  font-size: 18px;
}

.drain-verdict {
  border-radius: 18px;
  background: rgba(201, 121, 0, 0.18);
  border: 1px solid rgba(253, 230, 138, 0.38);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.drain-verdict span {
  color: #fde68a;
}

.drain-verdict strong {
  color: #fde68a;
  font-size: 24px;
  line-height: 1;
}

.funnel-visual {
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 6%, rgba(18, 183, 200, 0.2), transparent 28%),
    radial-gradient(circle at 84% 6%, rgba(253, 230, 138, 0.2), transparent 30%),
    linear-gradient(180deg, #08111f 0%, #111827 100%);
  color: #fff;
  padding: 22px;
  display: grid;
  gap: 16px;
  min-width: 0;
  box-shadow: 0 24px 60px rgba(8, 17, 31, 0.25);
}

.funnel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid rgba(253,230,138,0.18);
  padding-bottom: 12px;
}

.funnel-head span,
.funnel-row span,
.funnel-verdict span {
  color: #b8c7dc;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.funnel-head strong {
  font-size: 44px;
  line-height: 1;
  color: #fff7d6;
  text-shadow: 0 0 28px rgba(253, 230, 138, 0.22);
}

.funnel-stage {
  display: grid;
  justify-items: center;
  padding: 4px 0;
}

.funnel-stack {
  width: min(100%, 680px);
  display: grid;
  justify-items: center;
  gap: 7px;
}

.funnel-row {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 11px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.055));
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.funnel-row strong {
  font-size: 24px;
  color: #fff;
}

.funnel-row.revenue {
  width: 100%;
  min-height: 74px;
  background: linear-gradient(90deg, #fff7d6, #dbeafe 46%, #f8fbff);
  color: var(--ink);
  border-color: rgba(253,230,138,0.62);
  box-shadow: 0 18px 38px rgba(253, 230, 138, 0.14);
}

.funnel-row.revenue span {
  color: #40516a;
}

.funnel-row.revenue strong {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.funnel-row:nth-child(2) { width: 88%; }
.funnel-row:nth-child(3) { width: 78%; }
.funnel-row:nth-child(4) { width: 66%; }
.funnel-row:nth-child(5) { width: 54%; }
.funnel-row:nth-child(6) { width: 42%; }

.funnel-row:not(.revenue):not(.profit) strong {
  color: #fde68a;
}

.funnel-row:not(.revenue):not(.profit) {
  border-color: rgba(253,230,138,0.18);
}

.funnel-row.profit {
  width: 30%;
  min-width: 230px;
  min-height: 72px;
  background:
    radial-gradient(circle at 50% 0%, rgba(187,247,208,0.24), transparent 50%),
    linear-gradient(180deg, rgba(22, 160, 93, 0.3), rgba(22, 160, 93, 0.68));
  border-color: rgba(187,247,208,0.4);
  box-shadow: 0 18px 38px rgba(22,160,93,0.2);
}

.funnel-row.profit span {
  color: #bbf7d0;
}

.funnel-row.profit strong {
  color: #bbf7d0;
  font-size: 40px;
  line-height: 1;
}

.funnel-verdict {
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(253, 230, 138, 0.18), transparent 42%),
    rgba(201, 121, 0, 0.18);
  border: 1px solid rgba(253, 230, 138, 0.42);
  padding: 15px;
  display: grid;
  gap: 6px;
}

.funnel-verdict span {
  color: #fde68a;
}

.funnel-verdict strong {
  color: #fde68a;
  font-size: 22px;
  line-height: 1.12;
  text-shadow: 0 0 24px rgba(253, 230, 138, 0.18);
}

.funnel-verdict p {
  margin: 0;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.35;
}

.bucket-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.bucket-topline span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.bucket-topline strong {
  font-size: 36px;
  line-height: 1;
}

.bucket-stage {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.bucket {
  position: relative;
  min-height: 235px;
  border: 4px solid #17233a;
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #24324d 0%, #101827 72%);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
}

.bucket::before,
.bucket::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: -20px;
  width: 70px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18,183,200,0), rgba(18,183,200,0.92));
  box-shadow: 0 0 18px rgba(18,183,200,0.45);
}

.bucket::before {
  top: 82px;
  transform: rotate(-8deg);
}

.bucket::after {
  top: 132px;
  transform: rotate(7deg);
}

.bucket-rim {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  width: 86%;
  border-radius: 999px;
  background: var(--navy);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-1px);
}

.bucket-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 31%;
  background:
    linear-gradient(180deg, rgba(18,183,200,0.88), rgba(22,160,93,0.95));
}

.bucket-fill::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 24px;
  border-radius: 50%;
  background: rgba(139, 233, 243, 0.9);
}

.bucket-profit {
  position: absolute;
  z-index: 5;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(187,247,208,0.4);
  background: rgba(8,17,31,0.72);
  color: #fff;
  padding: 14px;
  display: grid;
  gap: 4px;
}

.bucket-profit span {
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bucket-profit strong {
  color: #bbf7d0;
  font-size: 38px;
  line-height: 1;
}

.bucket-profit small {
  color: #e2e8f0;
  font-weight: 900;
}

.leak-list {
  display: grid;
  gap: 8px;
}

.leak-item {
  position: relative;
  border: 1px solid #d7e2ee;
  border-radius: 14px;
  background: #fff;
  padding: 10px 12px 10px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(13, 24, 45, 0.06);
}

.leak-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 5px;
  border-radius: 999px;
}

.leak-item.product::before { background: var(--blue); }
.leak-item.creator::before { background: var(--red); }
.leak-item.coupon::before { background: var(--amber); }
.leak-item.fees::before { background: var(--violet); }
.leak-item.other::before { background: var(--cyan); }

.leak-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.leak-item strong {
  font-size: 22px;
}

.leak-verdict {
  border: 1px solid #f8d38b;
  border-radius: 18px;
  background: var(--soft-amber);
  padding: 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.leak-verdict span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.leak-verdict strong {
  display: block;
  font-size: 26px;
}

.leak-verdict p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.order-bars {
  display: grid;
  gap: 14px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--muted);
}

.order-total strong {
  color: var(--ink);
  font-size: 34px;
}

.stacked-sale {
  height: 84px;
  display: flex;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.stacked-sale span {
  display: grid;
  place-items: center;
  min-width: 62px;
  overflow-wrap: anywhere;
  text-align: center;
}

.profit { background: var(--green); }
.cogs { background: var(--blue); }
.creator { background: var(--red); }
.fees { background: var(--amber); }
.other { background: var(--cyan); }

.order-keep {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  align-items: baseline;
}

.order-keep strong {
  color: var(--green);
  font-size: 30px;
}

.home-cta {
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 30px;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.home-cta h2 {
  max-width: 820px;
}

.home-cta .eyebrow {
  color: #8be9f3;
}

.kit-support {
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.6fr);
  gap: 24px;
  align-items: center;
}

.kit-support-copy {
  display: grid;
  gap: 16px;
}

.kit-support-copy h2 {
  font-size: 48px;
  line-height: 0.98;
}

.kit-support-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 0;
}

.kit-support-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.24);
}

.support-row,
.support-decision {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 13px;
}

.support-row span,
.support-decision span {
  color: #b8c7dc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.support-row strong {
  color: #8be9f3;
}

.support-decision {
  display: grid;
  gap: 6px;
  background: rgba(201, 121, 0, 0.16);
  border-color: rgba(253, 230, 138, 0.32);
}

.support-decision strong {
  color: #fde68a;
  font-size: 22px;
}

/* Calculator cockpit */
.calc-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 70px;
}

.calc-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
}

.calc-intro h1 {
  max-width: none;
  font-size: clamp(44px, 5.6vw, 56px);
  line-height: 0.98;
}

.calc-intro .lead {
  margin-top: 12px;
}

.quick-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.quick-steps span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.calculator-layout.stacked {
  grid-template-columns: 1fr;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  padding: 20px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.panel-head h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.panel-head p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.35;
  font-size: 13px;
}

.entry-label {
  background: var(--soft-blue);
  color: var(--blue);
  border: 1px solid #bed0ff;
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

form {
  padding: 18px 20px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.input-group {
  border: 1px solid #d7e2ee;
  border-radius: 14px;
  overflow: hidden;
  background: #fbfdff;
}

.input-group-head {
  padding: 14px 16px;
  background: #f1f6fc;
  border-bottom: 1px solid #d7e2ee;
  display: grid;
  gap: 4px;
}

.input-group-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.input-group-head strong {
  font-size: 16px;
}

.field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e8eef5;
  margin: 0 16px;
}

.field:last-child {
  border-bottom: 0;
}

label {
  display: grid;
  gap: 4px;
}

.label-title {
  font-weight: 900;
  font-size: 14px;
}

.label-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

input {
  width: 100%;
  border: 1px solid #c4d2e1;
  border-radius: 9px;
  padding: 11px 10px;
  text-align: right;
  background: #fbfdff;
}

input:focus {
  outline: 3px solid rgba(43, 92, 255, 0.18);
  border-color: var(--blue);
}

.results {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 86px;
}

.verdict {
  padding: 22px;
  display: grid;
  gap: 18px;
  border-top: 7px solid var(--green);
}

.verdict-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.headline-result h2 {
  font-size: 25px;
  margin-bottom: 6px;
}

.headline-result p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.4;
}

.flag {
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  border: 1px solid transparent;
}

.flag.healthy { background: var(--soft-green); color: var(--green); border-color: #b8efce; }
.flag.watchlist { background: var(--soft-amber); color: var(--amber); border-color: #f8d38b; }
.flag.unprofitable { background: var(--soft-red); color: var(--red); border-color: #f6bbb3; }

.shopledger-analysis {
  border: 1px solid #bed0ff;
  border-left: 6px solid var(--blue);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #edf3ff);
  padding: 16px 18px;
  display: grid;
  gap: 8px;
}

.shopledger-analysis span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shopledger-analysis strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.shopledger-analysis p {
  color: var(--muted);
  line-height: 1.42;
  margin-bottom: 0;
}

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

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

.metric,
.insight,
.cost-stack-card {
  border: 1px solid #cfe0f2;
  background: #f8fbff;
  border-radius: 14px;
  padding: 14px;
}

.cost-detail {
  border: 1px solid #cfe0f2;
  background: #f8fbff;
  border-radius: 14px;
  overflow: hidden;
}

.cost-detail summary {
  min-height: 56px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.cost-detail summary::-webkit-details-marker {
  display: none;
}

.cost-detail summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 950;
  flex: 0 0 auto;
}

.cost-detail[open] summary::after {
  content: "-";
}

.cost-detail summary span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cost-detail summary strong {
  color: var(--ink);
  margin-left: auto;
}

.cost-detail .cost-stack-card {
  border: 0;
  border-top: 1px solid #cfe0f2;
  border-radius: 0;
  box-shadow: none;
}

.calc-funnel {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.calc-funnel-row {
  width: 92%;
  min-height: 40px;
  border: 1px solid #d7e2ee;
  border-radius: 10px;
  background: #fff;
  padding: 9px 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  box-shadow: 0 8px 18px rgba(13, 24, 45, 0.05);
}

.calc-funnel-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc-funnel-row strong {
  color: var(--ink);
  font-size: 15px;
  text-align: right;
}

.calc-funnel-row.revenue {
  width: 100%;
  min-height: 48px;
  background: linear-gradient(90deg, #fff7d6, #dbeafe 52%, #f8fbff);
  border-color: #f8d38b;
}

.calc-funnel-row.revenue strong {
  font-size: 22px;
}

.calc-funnel-row:nth-child(2) { width: 88%; }
.calc-funnel-row:nth-child(3) { width: 78%; }
.calc-funnel-row:nth-child(4) { width: 66%; }
.calc-funnel-row:nth-child(5) { width: 56%; }

.calc-funnel-row:not(.revenue):not(.profit) strong {
  color: var(--amber);
}

.calc-funnel-row.profit {
  width: 42%;
  min-width: 210px;
  background: var(--soft-green);
  border-color: #a7f3d0;
}

.calc-funnel-row.profit span,
.calc-funnel-row.profit strong {
  color: var(--green);
}

.metric {
  display: grid;
  grid-template-rows: 34px auto;
  align-content: start;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.2;
}

.metric strong {
  font-size: 24px;
  line-height: 1.05;
}

.bar-wrap {
  display: grid;
  gap: 8px;
}

.bar-label,
.stack-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.bar {
  height: 18px;
  border-radius: 999px;
  background: #dfe5ec;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.cost-stack-card {
  display: grid;
  gap: 11px;
}

.result-section-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.economics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

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

.target-callout {
  border: 1px solid #f8d38b;
  border-radius: 14px;
  background: var(--soft-amber);
  padding: 14px;
  display: grid;
  gap: 5px;
}

.target-callout span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.target-callout strong {
  color: var(--ink);
  font-size: 20px;
}

.cost-stack {
  display: flex;
  height: 26px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe5ec;
}

.cost-stack span {
  min-width: 1.5%;
}

.stack-profit { background: var(--green); }
.stack-cogs { background: var(--blue); }
.stack-creator { background: var(--red); }
.stack-fees { background: var(--amber); }
.stack-other { background: var(--cyan); }

.stack-legend {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.stack-legend span {
  display: grid;
  gap: 4px;
}

.stack-legend strong {
  color: var(--ink);
}

.profit-gauge {
  border-top: 1px solid #d7e2ee;
  padding-top: 12px;
  display: grid;
  gap: 8px;
}

.unit-gauge {
  border: 1px solid #cfe0f2;
  background: #f8fbff;
  border-radius: 14px;
  padding: 14px;
}

.gauge-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.gauge-head span {
  font-weight: 900;
  text-transform: uppercase;
}

.gauge-head strong {
  color: var(--ink);
}

.gauge-track {
  height: 18px;
  border-radius: 999px;
  background: #dfe5ec;
  overflow: hidden;
  border: 1px solid #cfe0f2;
}

.gauge-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--cyan), var(--green));
  transition: width 160ms ease;
}

.gauge-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.homepage-gauge {
  margin-top: 2px;
}

.leak-stage .homepage-gauge {
  border-top-color: rgba(255,255,255,0.14);
}

.leak-stage .gauge-head,
.leak-stage .gauge-scale {
  color: #b8c7dc;
}

.leak-stage .gauge-head strong {
  color: #fff;
}

.leak-stage .gauge-track {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.12);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.dot.profit { background: var(--green); }
.dot.cogs { background: var(--blue); }
.dot.creator { background: var(--red); }
.dot.fees { background: var(--amber); }
.dot.other { background: var(--cyan); }

.mini-callout {
  border: 1px solid #a7f3d0;
  background: linear-gradient(180deg, #f0fdf4, #ecfeff);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 5px;
}

.mini-callout strong {
  color: var(--green);
}

.mini-callout span,
.insight p {
  color: var(--muted);
  line-height: 1.4;
  font-size: 13px;
}

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

.insight h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.breakdown {
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 11px 0;
  border-bottom: 1px solid #e8eef5;
  text-align: right;
}

th:first-child,
td:first-child {
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.net-profit-row td,
.target-delta-row td {
  font-weight: 900;
}

.net-profit-row td {
  border-top: 2px solid #d7e2ee;
  color: var(--ink);
}

.target-delta-row td:last-child {
  color: var(--amber);
}

.cta-panel {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.cta-panel.high-intent {
  border-top: 7px solid var(--blue);
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.calculator-kit-cta {
  margin-top: 22px;
}

.cta-panel h2 {
  font-size: 23px;
  margin-bottom: 6px;
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.42;
  margin-bottom: 0;
}

.footnote {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

/* Beta page */
.kit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 22px;
  align-items: stretch;
}

.price-box {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.price-box h1 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.price-box .lead {
  margin-bottom: 26px;
}

.price-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--red));
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 20px 0 16px;
}

.price strong {
  font-size: 44px;
  line-height: 1;
}

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

.kit-preview-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-sheet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 12px;
}

.preview-sheet.large { grid-row: span 2; }
.preview-sheet.wide { grid-column: span 2; }

.sheet-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.sheet-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sheet-top strong {
  border: 1px solid #b8efce;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green);
  padding: 6px 9px;
  font-size: 12px;
}

.sheet-top strong.status-watch {
  border-color: #f8d38b;
  background: var(--soft-amber);
  color: var(--amber);
}

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

.sheet-kpis div,
.mini-table div {
  border: 1px solid #d7e2ee;
  border-radius: 10px;
  background: #f8fbff;
  padding: 10px;
}

.sheet-kpis span,
.mini-table span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 4px;
}

.sheet-kpis strong,
.mini-table strong {
  font-size: 18px;
}

.sheet-bar {
  height: 18px;
  background: #dfe5ec;
  border-radius: 999px;
  overflow: hidden;
}

.sheet-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.sheet-bar.watch span {
  background: linear-gradient(90deg, var(--red), var(--amber), var(--cyan));
}

.dashboard-proof {
  display: grid;
  gap: 8px;
}

.dashboard-proof div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e8eef5;
  padding: 7px 0;
}

.dashboard-proof span {
  color: var(--muted);
  font-size: 12px;
}

.preview-sheet p {
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 0;
}

.mini-table {
  display: grid;
  gap: 7px;
}

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

.decision {
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-weight: 900;
}

.decision.scale { background: var(--soft-green); color: var(--green); }
.decision.revise { background: var(--soft-amber); color: var(--amber); }
.decision.stop { background: var(--soft-red); color: var(--red); }

.kit-workflow {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: center;
}

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

.kit-flow span {
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--soft-shadow);
}

/* Disclaimer */
.disclaimer-page {
  max-width: 900px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.disclaimer-page p,
.disclaimer-page li {
  color: var(--muted);
  line-height: 1.55;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.disclaimer-grid div {
  border: 1px solid var(--line);
  background: #f8fbff;
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.disclaimer-grid span {
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 980px) {
  h1 { font-size: 42px; }
  .story-hero,
  .calc-intro,
  .calculator-layout,
  form,
  .economics-grid,
  .kit-grid,
  .order-breakdown,
  .leak-breakdown,
  .bucket-stage,
  .section-head,
  .kit-workflow,
  .kit-support {
    grid-template-columns: 1fr;
  }
  .story-hero { min-height: auto; }
  .results {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav {
    display: grid;
    align-items: stretch;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .nav-links {
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .nav .button {
    width: 100%;
  }
  .page,
  .calc-shell,
  .story-hero,
  .narrative-section {
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 {
    font-size: 29px;
    line-height: 1.05;
    max-width: none;
    overflow-wrap: anywhere;
  }
  .story-copy h1,
  .story-copy .lead {
    max-width: 100%;
  }
  .eyebrow {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  h2 {
    font-size: 27px;
  }
  .lead {
    font-size: 16px;
    overflow-wrap: break-word;
  }
  .hero-hook {
    font-size: 17px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  .hero-actions,
  .inline-actions,
  .home-cta {
    display: grid;
    align-items: stretch;
  }
  .kit-support {
    display: grid;
    align-items: stretch;
    padding: 20px;
  }
  .leak-breakdown {
    padding: 20px;
  }
  .bucket-topline strong {
    font-size: 30px;
  }
  .bucket {
    min-height: 235px;
  }
  .drain-visual {
    padding: 18px;
  }
  .drain-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .drain-column {
    min-height: 110px;
  }
  .drain-stream {
    left: 0;
    right: 0;
    top: 46px;
    bottom: auto;
    width: auto;
    height: 16px;
    transform: none;
  }
  .loss {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
    display: inline-block;
    min-width: 0;
  }
  .loss::after {
    display: none;
  }
  .drain-column {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  .drain-ledger {
    grid-template-columns: 1fr;
  }
  .drain-verdict {
    display: grid;
  }
  .funnel-visual {
    padding: 18px;
  }
  .funnel-head strong {
    font-size: 34px;
  }
  .funnel-row,
  .funnel-row:nth-child(n),
  .funnel-row.profit {
    width: 100%;
    min-width: 0;
  }
  .funnel-row {
    display: grid;
    gap: 5px;
  }
  .funnel-verdict {
    grid-template-columns: 1fr;
  }
  .leak-verdict {
    grid-template-columns: 1fr;
  }
  .kit-support-copy h2 {
    font-size: 34px;
  }
  .button {
    width: 100%;
  }
  .simple-proof,
  .pain-cards,
  .how-grid,
  .faq-grid,
  .metric-grid,
  .insight-grid,
  .stack-legend,
  .kit-preview-board,
  .sheet-kpis,
  .decision-row,
  .kit-flow,
  .disclaimer-grid {
    grid-template-columns: 1fr;
  }
  .leak-stage,
  .decision-cockpit,
  .price-box,
  .disclaimer-page {
    padding: 18px;
  }
  .flow-row {
    grid-template-columns: 1fr;
  }
  .stage-top {
    display: grid;
  }
  .cockpit-kpis,
  .cockpit-checks {
    grid-template-columns: 1fr;
  }
  .cockpit-checks div {
    display: grid;
  }
  .cockpit-checks strong {
    text-align: left;
  }
  .cockpit-verdict-card strong {
    font-size: 30px;
  }
  .flow-row strong {
    text-align: left;
  }
  .stage-top strong {
    text-align: left;
  }
  .stage-verdict,
  .cta-panel,
  .verdict-top,
  .panel-head {
    grid-template-columns: 1fr;
    display: grid;
  }
  .field {
    grid-template-columns: 1fr;
  }
  input {
    text-align: left;
  }
  .stacked-sale {
    height: auto;
    display: grid;
  }
  .stacked-sale span {
    width: 100% !important;
    min-height: 42px;
  }
  .preview-sheet.large,
  .preview-sheet.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .story-copy,
  .leak-stage,
  .decision-cockpit,
  .calc-intro,
  .calculator-layout,
  .kit-grid,
  .section-head,
  .order-breakdown,
  .leak-breakdown,
  .kit-workflow,
  .home-cta,
  .kit-support,
  .panel,
  .price-box,
  .disclaimer-page {
    width: 100%;
    max-width: none;
  }
}
