:root {
  color-scheme: light;
  --ink: #101915;
  --muted: #63736b;
  --paper: #f4f5ee;
  --pearl: #e8eee5;
  --green: #073d2f;
  --green-2: #0f5a43;
  --leaf: #2f6f4e;
  --brass: #b8c47a;
  --cream: #fffdf6;
  --line: rgba(7, 61, 47, 0.14);
  --shadow: 0 24px 70px rgba(7, 61, 47, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 16px max(22px, 8vw);
  color: var(--ink);
  background: rgba(255, 253, 246, 0.94);
  border-bottom: 1px solid rgba(7, 61, 47, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(7, 61, 47, 0.08);
}

.brand-logo-wide {
  width: min(270px, 30vw);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 0.93rem;
  font-weight: 760;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover,
.nav a.active {
  color: var(--green);
  opacity: 1;
}

.nav-cta {
  justify-self: end;
  padding: 11px 18px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 999px;
  background: white;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--green-2);
  box-shadow: 0 16px 36px rgba(15, 90, 67, 0.34);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.42);
}

.button.light {
  color: var(--green);
  border-color: var(--line);
  background: white;
}

.page-hero {
  position: relative;
  min-height: min(820px, 88svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 34% 44%, rgba(184, 196, 122, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(3, 19, 14, 0.94), rgba(7, 61, 47, 0.72) 48%, rgba(7, 61, 47, 0.22)),
    linear-gradient(0deg, rgba(3, 19, 14, 0.84), transparent 58%);
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.contain-hero img {
  object-fit: contain;
  object-position: 78% 50%;
  padding: 104px 8vw 46px 46vw;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 253, 246, 0.28), transparent 36%),
    linear-gradient(135deg, #061b14, #103d31 58%, #061b14);
}

.hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 118px 6vw 86px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1,
.section-head h2,
.story-copy h2,
.comparison-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.7vw, 5.25rem);
  text-wrap: balance;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  width: min(1050px, calc(100% - 12vw));
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.era-nav {
  width: min(980px, calc(100% - 12vw));
  margin: 18px auto 0;
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(7, 61, 47, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.86);
  box-shadow: 0 18px 54px rgba(7, 61, 47, 0.1);
  backdrop-filter: blur(18px);
}

.product-nav {
  width: min(980px, calc(100% - 12vw));
  margin: 18px auto 0;
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(7, 61, 47, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.86);
  box-shadow: 0 18px 54px rgba(7, 61, 47, 0.1);
  backdrop-filter: blur(18px);
}

.product-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  color: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.product-nav a:hover,
.product-nav a:focus-visible {
  color: white;
  background: var(--green);
}

.era-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  color: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.era-nav a:hover,
.era-nav a:focus-visible {
  color: white;
  background: var(--green);
}

.proof-card,
.content-card,
.timeline-card,
.spec-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(7, 61, 47, 0.09);
}

.proof-card {
  min-height: 122px;
  padding: 22px;
}

.proof-card strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.section-pad {
  padding: 92px 6vw;
}

.section-head {
  width: min(900px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2,
.story-copy h2,
.comparison-copy h2,
.cta-panel h2 {
  color: var(--green);
  font-size: clamp(2.15rem, 3.75vw, 3.85rem);
  text-wrap: balance;
}

.section-head p,
.story-copy p,
.comparison-copy p,
.content-card p,
.timeline-card p,
.faq p {
  color: var(--muted);
}

.feature-grid,
.spec-grid,
.story-grid,
.comparison-grid,
.timeline-grid,
.gallery-grid,
.faq {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.story-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.comparison-grid {
  grid-template-columns: minmax(380px, 1fr) minmax(0, 1fr);
}

.story-copy,
.comparison-copy {
  min-width: 0;
}

.story-copy p,
.comparison-copy p {
  max-width: 680px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.story-copy p + p,
.comparison-copy p + p {
  margin-top: 18px;
}

.museum-note {
  margin-top: 26px;
  padding: 18px 20px;
  color: var(--green);
  border: 1px solid rgba(7, 61, 47, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(184, 196, 122, 0.18), transparent),
    rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.premium-showcase {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

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

.showcase-copy h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 520;
  line-height: 0.98;
  text-wrap: balance;
}

.showcase-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.showcase-copy p + p {
  margin-top: 18px;
}

.product-stage {
  position: relative;
  min-height: clamp(520px, 54vw, 680px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.18) 36%, transparent 58%),
    linear-gradient(145deg, #0b3328 0%, #173f33 38%, #f8f4e8 100%);
  box-shadow: 0 38px 110px rgba(7, 61, 47, 0.22);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: calc(var(--radius) - 2px);
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: min(620px, 82%);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.3));
}

.floating-badge {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 14px 16px;
  color: var(--green);
  border: 1px solid rgba(7, 61, 47, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.9);
  box-shadow: 0 18px 52px rgba(7, 61, 47, 0.16);
  backdrop-filter: blur(14px);
  font-weight: 850;
}

.floating-badge.one {
  left: 22px;
  top: 24px;
}

.floating-badge.two {
  right: 22px;
  bottom: 24px;
}

.workflow-strip {
  width: min(1100px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.workflow-step {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(7, 61, 47, 0.08);
}

.workflow-step strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

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

.upgrade-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.upgrade-card {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(76px, 0.18fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.upgrade-card span {
  margin: 0;
}

.feature-grid,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.content-card,
.spec-card {
  min-height: 230px;
  padding: 26px;
}

.content-card span,
.spec-card span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 28px;
  padding: 0 12px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.content-card h3,
.spec-card h3,
.timeline-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.7vw, 1.78rem);
  line-height: 1.08;
  text-wrap: balance;
}

.image-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 42%, rgba(184, 196, 122, 0.24), transparent 38%),
    linear-gradient(135deg, #08261d, #0f5a43);
  box-shadow: var(--shadow);
}

.image-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) - 2px);
}

.image-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-stage.contain img {
  object-fit: contain;
  padding: 34px;
  filter: drop-shadow(0 32px 52px rgba(0, 0, 0, 0.3));
}

.image-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: min(420px, calc(100% - 44px));
  padding: 14px 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 61, 47, 0.62);
  backdrop-filter: blur(14px);
  font-weight: 820;
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(232, 238, 229, 0.74), rgba(244, 245, 238, 0)),
    var(--paper);
}

.dark-band {
  color: white;
  background:
    radial-gradient(circle at 78% 20%, rgba(184, 196, 122, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(7, 61, 47, 0.98), rgba(15, 90, 67, 0.92)),
    var(--green);
}

.dark-band .section-head h2,
.dark-band .story-copy h2,
.dark-band .timeline-card h3,
.dark-band .content-card h3 {
  color: white;
}

.dark-band .section-head p,
.dark-band .story-copy p,
.dark-band .timeline-card p,
.dark-band .content-card p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-band .content-card,
.dark-band .timeline-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.demo-impact-grid {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.demo-impact-grid .content-card {
  min-height: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.demo-impact-grid .content-card span {
  margin-bottom: 0;
}

.demo-impact-grid .content-card h3 {
  margin-top: 2px;
}

.demo-impact-grid .content-card p {
  margin: 0;
}

.timeline-grid {
  display: grid;
  gap: 22px;
  position: relative;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(7, 61, 47, 0.32), transparent);
}

.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 34px;
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 7px rgba(184, 196, 122, 0.18);
}

.timeline-card::after {
  content: attr(data-era);
  position: absolute;
  right: 24px;
  bottom: -18px;
  z-index: 0;
  color: rgba(7, 61, 47, 0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.5rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 196, 122, 0.62);
  box-shadow: 0 28px 74px rgba(7, 61, 47, 0.16);
}

.timeline-card:nth-child(even) img {
  grid-column: 2;
}

.timeline-card:nth-child(even) .timeline-body {
  grid-column: 1;
  grid-row: 1;
}

.timeline-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.timeline-body {
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-year {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: white;
  border-radius: 999px;
  background: var(--green);
  font-weight: 900;
}

.timeline-card.featured {
  grid-template-columns: minmax(0, 1fr);
  background:
    radial-gradient(circle at 74% 14%, rgba(184, 196, 122, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.9);
}

.timeline-card.featured img {
  max-height: 560px;
}

.timeline-card.featured .timeline-body {
  max-width: 820px;
}

.timeline-card.featured::after {
  color: rgba(7, 61, 47, 0.08);
  font-size: clamp(7rem, 18vw, 15rem);
}

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

.gallery-item {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: white;
  border-radius: 999px;
  background: rgba(7, 61, 47, 0.72);
  backdrop-filter: blur(12px);
  font-weight: 850;
}

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

.spec-card {
  min-height: 190px;
}

.price-panel,
.cta-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 238, 229, 0.8)),
    white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.price {
  margin: 12px 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  line-height: 1;
}

.check-list {
  width: min(620px, 100%);
  margin: 24px auto;
  display: grid;
  gap: 10px;
  color: var(--muted);
  text-align: left;
}

.check-list div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

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

.faq details {
  overflow: hidden;
  color: var(--ink);
}

.faq summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 0;
  padding: 0 24px 22px;
}

.footer {
  padding: 42px 24px 34px;
  color: rgba(255, 255, 255, 0.76);
  background: #0b3328;
}

.footer-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.footer-brand span {
  font-size: 0.84rem;
  opacity: 0.72;
}

.footer-links,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links {
  font-size: 0.84rem;
  font-weight: 760;
}

.footer-link {
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--brass);
}

.footer-sep {
  opacity: 0.42;
}

.footer-legal {
  font-size: 0.74rem;
  line-height: 1.6;
  opacity: 0.62;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.slide-left {
  transform: translateX(-34px);
}

.reveal.slide-right {
  transform: translateX(34px);
}

.reveal.zoom-in {
  transform: translateY(18px) scale(0.96);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

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

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

  .nav {
    display: none;
  }

  .hero-proof,
  .feature-grid,
  .spec-grid,
  .gallery-grid,
  .workflow-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid,
  .comparison-grid,
  .timeline-card,
  .premium-showcase {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 540px;
  }

  .workflow-strip {
    width: min(760px, 100%);
  }

  .timeline-card:nth-child(even) img,
  .timeline-card:nth-child(even) .timeline-body {
    grid-column: auto;
    grid-row: auto;
  }

  .page-hero.contain-hero img {
    object-position: center top;
    padding: 130px 7vw 40px;
    opacity: 0.78;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px 10px;
    gap: 8px;
  }

  .brand-logo-wide {
    width: min(172px, 49vw);
    height: 44px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .page-hero {
    min-height: 88svh;
  }

  .hero-content {
    padding: 104px 18px 72px;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
  }

  .hero-proof,
  .feature-grid,
  .spec-grid,
  .gallery-grid,
  .workflow-strip {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }

  .era-nav,
  .product-nav {
    width: calc(100% - 36px);
    border-radius: var(--radius);
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .section-head {
    text-align: left;
    margin-bottom: 26px;
  }

  .section-head h2,
  .story-copy h2,
  .comparison-copy h2,
  .showcase-copy h2,
  .cta-panel h2 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .product-stage {
    min-height: 430px;
  }

  .product-stage img {
    width: 90%;
  }

  .floating-badge {
    max-width: calc(100% - 36px);
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .floating-badge.one {
    left: 14px;
    top: 14px;
  }

  .floating-badge.two {
    right: 14px;
    bottom: 14px;
  }

  .upgrade-card,
  .demo-impact-grid .content-card {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: auto;
  }

  .price-panel,
  .cta-panel {
    text-align: left;
  }

  .price-panel .hero-actions,
  .cta-panel .hero-actions {
    justify-content: flex-start !important;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .reveal.slide-left,
  .reveal.slide-right {
    transform: translateY(18px);
  }

  .image-stage,
  .image-stage img {
    min-height: 380px;
  }

  .timeline-card img {
    min-height: 240px;
  }
}
