:root {
  --bg: #07070d;
  --bg-soft: #101014;
  --ink: #f8fafc;
  --muted: #a5adba;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(15, 16, 24, 0.82);
  --panel-strong: rgba(9, 10, 16, 0.94);
  --cyan: #25d6ff;
  --blue: #3186ff;
  --pink: #ff2f86;
  --green: #36d66b;
  --orange: #ff9a2f;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

body::selection {
  background: rgba(37, 214, 255, 0.35);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(7, 7, 13, 0.72);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.header-cta,
.header-store-badge,
.nav-links a,
.secondary-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.header-cta {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover,
.header-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-cta {
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #fff;
}

.header-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  transition: filter 180ms ease, transform 180ms ease;
}

.header-store-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.header-store-badge img {
  display: block;
  width: 132px;
  height: auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  padding: 124px 0 72px;
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 47, 134, 0.26), transparent 32%),
    radial-gradient(circle at 15% 24%, rgba(37, 214, 255, 0.2), transparent 28%),
    linear-gradient(145deg, #050508 0%, #111019 54%, #071219 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 72%, transparent);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.hero-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(49, 134, 255, 0.28);
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3.35rem, 7vw, 6.35rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-claim {
  max-width: 640px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(1.45rem, 2.7vw, 2.7rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(248, 250, 252, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.store-badge {
  display: inline-flex;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.store-badge img {
  width: 178px;
  height: auto;
}

.secondary-link {
  position: relative;
  color: #fff;
  font-weight: 800;
}

.secondary-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink));
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-product {
  position: relative;
}

.hero-product::before {
  position: absolute;
  inset: -24px -18px;
  border-radius: 44px;
  content: "";
  background: linear-gradient(135deg, rgba(37, 214, 255, 0.2), rgba(255, 47, 134, 0.18));
  filter: blur(18px);
  opacity: 0.85;
}

.calculator-shell {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.calculator-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.live-pill {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(54, 214, 107, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(54, 214, 107, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calc-form {
  display: grid;
  gap: 14px;
}

.input-row {
  display: grid;
  gap: 12px;
}

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

label,
.risk-mode {
  display: grid;
  gap: 8px;
  min-width: 0;
}

label span,
.risk-mode legend {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 760;
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(37, 214, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(37, 214, 255, 0.13);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 13px) 21px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.risk-mode {
  min-height: 72px;
  margin: 0;
  padding: 0;
  border: 0;
}

.risk-mode legend {
  margin-bottom: 8px;
}

.risk-mode {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.risk-mode legend {
  grid-column: 1 / -1;
}

.risk-mode label {
  position: relative;
  display: grid;
}

.risk-mode input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.risk-mode span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.075);
}

.risk-mode input:checked + span {
  border-color: rgba(49, 134, 255, 0.7);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), rgba(255, 47, 134, 0.8));
}

.rr-panel {
  display: grid;
  gap: 14px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.rr-panel h3 {
  margin: 0;
  text-align: center;
  font-size: 1.24rem;
  line-height: 1;
}

.rr-control {
  display: grid;
  grid-template-columns: 0.72fr 0.85fr 1.75fr 0.85fr 0.72fr;
  gap: 10px;
  align-items: center;
}

.rr-control button,
.rr-control input {
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
}

.rr-control button {
  cursor: pointer;
}

.rr-control button:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
}

.rr-control .negative {
  color: #ff4c5f;
}

.rr-control .positive {
  color: var(--green);
}

.rr-control input {
  font-size: 1.06rem;
}

.break-even {
  margin: -2px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.25;
}

.break-even strong {
  color: var(--orange);
}

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

output {
  display: flex;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(37, 214, 255, 0.18);
  border-radius: 22px;
  background: rgba(37, 214, 255, 0.08);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

output span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

output .value-line {
  display: inline-flex;
  max-width: 100%;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0;
  color: inherit;
  white-space: nowrap;
}

output strong {
  display: inline-block;
  color: var(--orange);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 0.95;
  white-space: nowrap;
}

output:nth-child(2) strong {
  color: var(--orange);
}

output:nth-child(3) strong {
  color: var(--green);
}

output:nth-child(4) strong {
  color: #ff4c5f;
}

output em {
  margin-left: 4px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

output .fit-value {
  max-width: 100%;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  letter-spacing: 0;
  transform-origin: center;
}

output .fit-value.is-long {
  font-size: clamp(1.15rem, 2.35vw, 1.85rem);
}

output .fit-value.is-very-long {
  font-size: clamp(0.95rem, 2vw, 1.6rem);
}

.section,
.screenshots,
.faq-section,
.final-cta {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: end;
  padding: 86px 0 68px;
}

.section-copy h2,
.feature-copy h2,
.screenshots-copy h2,
.faq-copy h2,
.final-inner h2 {
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4.8vw, 5rem);
  line-height: 0.95;
}

.section-copy p,
.feature-copy p,
.screenshots-copy p,
.faq-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.stats-strip div {
  min-height: 140px;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent);
}

.stats-strip strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 760;
}

.feature-band {
  padding: 64px 0 96px;
}

.feature-copy {
  max-width: 760px;
  margin-bottom: 46px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-item {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  font-weight: 950;
}

.feature-item h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.14;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.screenshots {
  padding: 88px 0 96px;
}

.screenshots-copy {
  max-width: 820px;
  margin-bottom: 32px;
}

.phone-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.86fr 1fr;
  gap: 16px;
  align-items: end;
  overflow: hidden;
  padding: 18px 10px 0;
}

.phone-stage::before {
  position: absolute;
  right: 4%;
  bottom: 14%;
  left: 4%;
  height: 44%;
  border-radius: 999px;
  content: "";
  background:
    radial-gradient(circle at 28% 50%, rgba(37, 214, 255, 0.2), transparent 36%),
    radial-gradient(circle at 66% 50%, rgba(255, 47, 134, 0.18), transparent 38%);
  filter: blur(28px);
}

.phone-shot {
  position: relative;
  z-index: 1;
  margin: 0;
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.48));
}

.phone-shot.mid {
  transform: translateY(7%);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 60px;
  padding: 84px 0;
}

.workflow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.workflow-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-list span {
  color: var(--cyan);
  font-weight: 950;
}

.workflow-list p {
  margin: 0;
  color: rgba(248, 250, 252, 0.86);
  font-size: 1.18rem;
  line-height: 1.45;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 56px;
  padding: 84px 0;
}

.guide-list {
  display: grid;
  gap: 12px;
}

.guide-link {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.guide-link:hover {
  border-color: rgba(37, 214, 255, 0.42);
  background: rgba(37, 214, 255, 0.07);
  transform: translateY(-2px);
}

.guide-link span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-link strong {
  font-size: 1.18rem;
  line-height: 1.18;
}

.guide-link em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 56px;
  padding: 84px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  padding: 64px 0 92px;
}

.final-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 28%, rgba(255, 47, 134, 0.18), transparent 32%),
    radial-gradient(circle at 10% 18%, rgba(37, 214, 255, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.final-inner > img {
  width: 88px;
  height: 88px;
  border-radius: 24px;
}

.final-inner h2 {
  margin: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 34px 20px 46px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

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

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

.content-body {
  min-height: 100%;
  background:
    radial-gradient(circle at 76% 0%, rgba(255, 47, 134, 0.2), transparent 34%),
    radial-gradient(circle at 10% 18%, rgba(37, 214, 255, 0.16), transparent 30%),
    var(--bg);
}

.content-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 72px;
}

.article-hero,
.support-hero {
  max-width: 820px;
  margin-bottom: 44px;
}

.article-hero h1,
.support-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6.6vw, 5.5rem);
  line-height: 0.94;
}

.article-hero p,
.support-hero p {
  color: rgba(248, 250, 252, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.article-body,
.support-grid {
  display: grid;
  gap: 22px;
}

.article-body section,
.support-panel,
.article-cta {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.article-body h2,
.support-panel h2,
.article-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.article-body h3 {
  margin: 24px 0 8px;
  font-size: 1.16rem;
}

.article-body p,
.article-body li,
.support-panel p,
.support-panel li,
.article-cta p {
  color: rgba(248, 250, 252, 0.76);
  line-height: 1.7;
}

.article-body a,
.support-panel a,
.article-cta a {
  color: #fff;
  font-weight: 850;
  text-decoration-color: rgba(37, 214, 255, 0.7);
  text-underline-offset: 4px;
}

.formula-box {
  margin: 18px 0;
  padding: 18px;
  border-left: 3px solid var(--cyan);
  border-radius: 16px;
  background: rgba(37, 214, 255, 0.08);
  color: #fff;
  font-weight: 850;
  line-height: 1.5;
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 47, 134, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.text-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

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

.support-panel.featured {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 214, 255, 0.13), transparent 28%),
    rgba(255, 255, 255, 0.055);
}

.support-list {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-inner,
  .intro-section,
  .workflow,
  .guide-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

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

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 48px;
  }

  .content-main {
    padding-top: 42px;
  }

  .hero-inner,
  .section,
  .screenshots,
  .faq-section,
  .content-main,
  .final-cta {
    width: min(100% - 24px, 1120px);
  }

  .hero-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(2.55rem, 12vw, 3rem);
    line-height: 0.94;
  }

  .hero-claim {
    margin-bottom: 12px;
    font-size: clamp(1.18rem, 6vw, 1.45rem);
    line-height: 1.08;
  }

  .hero-text {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-inner {
    gap: 24px;
  }

  .store-badge img {
    width: 156px;
  }

  .hero-actions,
  .hero-proof {
    align-items: flex-start;
  }

  .hero-proof {
    display: none;
  }

  .calculator-shell {
    padding: 16px;
    border-radius: 26px;
  }

  .input-row.two,
  .result-grid,
  .stats-strip,
  .feature-list,
  .phone-stage,
  .support-grid,
  .article-cta,
  .final-inner {
    grid-template-columns: 1fr;
  }

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

  .phone-stage {
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
  }

  .phone-shot.mid {
    display: none;
  }

  .phone-shot:not(:first-child) {
    margin-top: -34px;
  }

  .feature-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .workflow-list li {
    grid-template-columns: 52px 1fr;
  }

  .final-inner {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
