:root {
  color: #0b1020;
  background: #f4f7ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  --ink: #0b1020;
  --muted: #5c6789;
  --paper: #f7f9ff;
  --line: #d8e1f6;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --navy: #12182e;
  --cyan: #22d3ee;
  --sky: #38bdf8;
  --indigo: #818cf8;
  --violet: #c084fc;
  --lilac: #c4b5fd;
  --rose: #f0abfc;
  --accent: #22d3ee;
  --accent-2: #818cf8;
  --accent-3: #c084fc;
  --shadow: 0 24px 70px rgba(11, 16, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(192, 132, 252, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 249, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(11, 16, 32, 0.035) 0 1px, transparent 1px 88px),
    var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0.85rem max(1.25rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(216, 225, 246, 0.9);
  background: rgba(247, 249, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.site-nav,
.hero-actions,
.badge-row,
.final-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-lockup {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.brand-note {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(11, 16, 32, 0.2));
}

.site-nav {
  justify-content: center;
  gap: 1.25rem;
  min-width: 0;
  color: #313a57;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  padding: 0.35rem 0;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--accent-2);
}

.header-actions {
  gap: 0.6rem;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--ink);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.locale-select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 0 0.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.65rem 0.95rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky), var(--indigo) 58%, var(--violet));
  box-shadow: 0 16px 34px rgba(129, 140, 248, 0.26);
}

.button-secondary,
.button-quiet {
  border-color: var(--line);
  background: var(--surface);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  padding: 4.5rem max(1.25rem, calc((100vw - 1180px) / 2)) 2.25rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  width: min(1180px, 100%);
  min-height: 570px;
  display: grid;
  align-items: center;
  padding-right: min(580px, 48vw);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.eyebrow,
.kicker {
  margin: 0 0 0.85rem;
  color: var(--accent-3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.2rem;
  max-width: 100%;
  font-size: clamp(2.6rem, 5.8vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-body {
  max-width: 100%;
  margin-bottom: 1.45rem;
  color: #4b5678;
  font-size: 1.15rem;
}

.hero-actions,
.badge-row {
  flex-wrap: wrap;
  gap: 0.7rem;
}

.badge-row {
  margin-top: 1.25rem;
}

.badge-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.42rem 0.7rem;
  color: #425072;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: min(520px, 45vw);
  min-width: 0;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(129, 140, 248, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(11, 16, 32, 0.98), rgba(18, 24, 46, 0.96) 38%, rgba(38, 52, 102, 0.94)),
    var(--navy);
  padding: 1rem;
  box-shadow: var(--shadow);
  color: #ffffff;
  transform: translateY(-50%);
}

.visual-topbar,
.visual-heading,
.visual-row,
.pipeline-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.visual-topbar {
  min-height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.visual-topbar strong {
  color: #e0f2fe;
  font-size: 1.55rem;
  line-height: 1;
}

.status-dot,
.row-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 0 5px rgba(192, 132, 252, 0.18);
}

.visual-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.visual-heading p {
  margin-bottom: 0;
  font-weight: 800;
}

.visual-heading span {
  color: #e0f2fe;
  font-weight: 800;
}

.meter-track {
  height: 18px;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.meter-fill {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--indigo), var(--rose));
  box-shadow: 0 0 24px rgba(129, 140, 248, 0.34);
}

.visual-rows {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.visual-row {
  min-height: 46px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  padding: 0.7rem 0.8rem;
}

.visual-row span,
.pipeline-step span {
  color: rgba(255, 255, 255, 0.72);
}

.visual-row strong {
  overflow-wrap: anywhere;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.pipeline-step {
  min-height: 68px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0.75rem;
}

.pipeline-step span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.stats-band,
.section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.stat-card {
  min-height: 148px;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.2rem;
}

.stat-card h3,
.feature-card h3,
.feature-row h3,
.timeline-item h3 {
  font-weight: 800;
}

.stat-card p,
.feature-card p,
.feature-row p,
.timeline-item p,
.section-copy,
.final-cta p {
  color: var(--muted);
}

.section {
  padding: 5.25rem 0 0;
}

.section-alt {
  width: 100%;
  margin-top: 5.25rem;
  padding: 5.25rem max(1.25rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(224, 242, 254, 0.36), rgba(244, 247, 255, 0.82)),
    #edf3ff;
}

.section-alt .section-header,
.section-alt .feature-list {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-copy {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.section-disclaimer {
  max-width: 760px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
  font-style: italic;
}

.benchmark-disclaimer {
  margin: 1.25rem 0 0;
  max-width: min(1180px, 100%);
}

.savings-section {
  scroll-margin-top: 92px;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 1rem;
  align-items: stretch;
}

.calculator-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.calculator-field {
  display: grid;
  gap: 0.45rem;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0.9rem;
}

.calculator-field span {
  color: #425072;
  font-size: 0.88rem;
  font-weight: 800;
}

.calculator-field input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cad7f0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.55rem 0.65rem;
}

.calculator-field input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.16);
  outline: none;
}

.contact-section {
  scroll-margin-top: 92px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.82);
  padding: 1rem;
  box-shadow: 0 16px 42px rgba(11, 16, 32, 0.08);
}

.contact-field,
.contact-consent {
  display: grid;
  gap: 0.45rem;
}

.contact-field-full,
.contact-form-footer,
.contact-status {
  grid-column: 1 / -1;
}

.contact-field span,
.contact-consent span {
  color: #425072;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #cad7f0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 0.75rem 0.8rem;
}

.contact-field input {
  min-height: 46px;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.16);
  outline: none;
}

.contact-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.85rem;
}

.contact-consent input {
  margin-top: 0.2rem;
}

.contact-form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.contact-protection,
.contact-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-protection {
  max-width: 620px;
}

.calculator-result {
  display: grid;
  align-content: stretch;
  gap: 1rem;
  min-height: 100%;
  border-radius: 8px;
  background: linear-gradient(150deg, #0b1020, #12182e 52%, #202b56);
  color: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.result-main {
  display: grid;
  align-content: end;
  min-height: 190px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(192, 132, 252, 0.14)),
    rgba(255, 255, 255, 0.07);
  padding: 1rem;
}

.result-main span,
.result-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.result-main strong {
  margin-top: 0.35rem;
  color: #e0f2fe;
  font-size: 3.4rem;
  line-height: 1;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.result-grid div {
  display: grid;
  gap: 0.35rem;
  min-height: 96px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  padding: 0.85rem;
}

.result-grid strong {
  overflow-wrap: anywhere;
  font-size: 1.15rem;
}

.benchmark-section {
  scroll-margin-top: 92px;
}

.benchmark-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.benchmark-stats article {
  display: grid;
  place-items: center;
  gap: 0.25rem;
  min-height: 118px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
  text-align: center;
}

.benchmark-stats strong {
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.benchmark-stats article:last-child strong {
  color: var(--accent-2);
}

.benchmark-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.benchmark-chart {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 1rem;
}

.benchmark-chart h3 {
  margin-bottom: 0.85rem;
  font-size: 1.18rem;
}

.bar-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: end;
  min-height: 250px;
  padding-top: 1.7rem;
  border-top: 1px solid #e3e9f7;
  background:
    linear-gradient(to top, rgba(11, 16, 32, 0.08) 1px, transparent 1px) 0 100% / 100% 33.33%;
}

.bar-column {
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: end;
  min-width: 0;
  height: 100%;
}

.bar-value {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.bar-fill {
  width: min(46px, 72%);
  min-height: 8px;
  border-radius: 6px 6px 0 0;
  background: var(--sky);
}

.bar-fill.mode-1 {
  background: var(--indigo);
}

.bar-fill.mode-2 {
  background: var(--violet);
}

.bar-fill.mode-3 {
  background: var(--rose);
}

.bar-label {
  margin-top: 0.55rem;
  color: #536180;
  font-size: 0.8rem;
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.2rem;
}

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

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  min-height: 160px;
  border: 1px solid #dbe3f6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 1.1rem;
}

.feature-row:nth-child(2n) .row-icon {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.15);
}

.feature-row:nth-child(3n) .row-icon {
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(129, 140, 248, 0.15);
}

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

.timeline-item {
  min-height: 230px;
  border-top: 3px solid var(--accent-2);
  background: rgba(255, 255, 255, 0.66);
  padding: 1rem 0 0;
}

.timeline-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #202b56);
  color: #ffffff;
  font-weight: 900;
}

.context-levels-section {
  scroll-margin-top: 92px;
}

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

.level-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 247, 242, 0.78)),
    #ffffff;
  padding: 1rem;
}

.level-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #202b56);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.level-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.12rem;
}

.level-card strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--accent-2);
  font-size: 0.9rem;
  line-height: 1.35;
}

.level-card p,
.context-level-note {
  color: var(--muted);
}

.context-level-note {
  max-width: 820px;
  margin: 1rem 0 0;
  border-left: 4px solid var(--accent-3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.9rem 1rem;
  font-weight: 700;
}

.compact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: start;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advantage-list li {
  min-height: 72px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.9rem 1rem;
  color: #313a57;
  font-weight: 700;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 5.25rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 1.35rem;
  box-shadow: 0 16px 42px rgba(11, 16, 32, 0.08);
}

.final-cta h2 {
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
}

.final-cta p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  min-height: 92px;
  margin-top: 2rem;
  color: #5c6789;
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    row-gap: 0.7rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
  }

  .header-actions {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    padding-top: 0;
  }

  .header-actions .button {
    display: none;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
    padding: 0.6rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-inner,
  .compact-section,
  .calculator-shell,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    gap: 2rem;
    padding-right: 0;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 560px);
    transform: none;
    opacity: 1;
  }

  h1 {
    font-size: 3.1rem;
  }

  .stats-band,
  .benchmark-stats,
  .card-grid.three,
  .calculator-controls,
  .contact-form,
  .feature-list,
  .timeline {
    grid-template-columns: 1fr;
  }

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

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

  .timeline-item,
  .feature-card,
  .level-card {
    min-height: auto;
  }

  .final-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    grid-template-columns: 1fr auto auto;
    padding: 0.7rem 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .locale-select {
    display: block;
    width: auto;
  }

  .button {
    min-height: 40px;
    padding-inline: 0.78rem;
  }

  .hero,
  .section-alt {
    padding-inline: 1rem;
  }

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

  .hero-visual {
    width: 100%;
  }

  .stats-band,
  .section,
  .final-cta,
  .site-footer {
    width: calc(100% - 2rem);
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-body {
    font-size: 1rem;
  }

  .pipeline,
  .advantage-list,
  .level-grid,
  .benchmark-stats,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .bar-stage {
    gap: 0.55rem;
  }

  .result-main strong {
    font-size: 2.5rem;
  }

  .visual-topbar,
  .visual-heading,
  .visual-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
}
