:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5c6875;
  --paper: #ffffff;
  --mist: #f4f7fa;
  --line: #d9e1e8;
  --navy: #102538;
  --navy-2: #0b1926;
  --teal: #13a6a6;
  --teal-dark: #0d777a;
  --red: #ef5b4c;
  --yellow: #f2bf3d;
  --green: #35b86b;
  --shadow: 0 22px 58px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 172px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 42px;
  padding: 0;
  background: #e8f6f6;
  border: 1px solid rgba(19, 166, 166, 0.26);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
}

.main-nav > a,
.nav-link {
  color: var(--navy);
}

.main-nav a:hover,
.main-nav a:focus,
.nav-dropdown.open .nav-link {
  color: #f36a21;
}

.nav-dropdown {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  display: grid;
  min-width: 310px;
  padding: 14px 20px;
  margin: 0;
  list-style: none;
  color: #29285c;
  background: #e8f6f6;
  border: 1px solid rgba(19, 166, 166, 0.22);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 15px 6px;
  color: #29285c;
  white-space: nowrap;
  border-bottom: 1px solid rgba(19, 166, 166, 0.24);
  font-size: 1rem;
  font-weight: 850;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(239, 91, 76, 0.24);
}

.button.secondary {
  color: #0d6f72;
  background: #e8f6f6;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 32px;
}

.card,
.panel,
.price-card,
.metric,
.directory-card,
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card,
.panel,
.price-card,
.directory-card,
.step {
  padding: 22px;
}

.card p,
.panel p,
.price-card p,
.directory-card p,
.step p {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 10px;
  color: #0e5960;
  background: #dff3f2;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 950;
}

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

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #384653;
  font-weight: 780;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.site-footer {
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 64px);
  color: #c7d8df;
  background: var(--navy-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(320px, 1.2fr) minmax(220px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.site-footer a {
  color: #dfe5ee;
  font-weight: 850;
}

.site-footer h6 {
  margin: 0 0 18px;
  color: #f5f8fb;
  font-size: 1.16rem;
  line-height: 1.2;
}

.site-footer p {
  margin-bottom: 18px;
  color: #d4d9e4;
  font-weight: 700;
}

.footer-col.first p {
  max-width: 520px;
}

.footer-link-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-link-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.footer-link-list a:hover,
.footer-link-list a:focus {
  color: #fff;
}

.footer-col.third {
  text-align: center;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-socials .fa-stack {
  width: 54px;
  height: 54px;
  line-height: 54px;
  font-size: 27px;
}

.footer-socials .fa-stack a {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  color: var(--navy-2);
}

.footer-socials .fa-circle {
  color: #fff;
  text-shadow: 1.5px 0 0 #f36a21, 0 1.5px 0 #f36a21;
}

.footer-socials .fa-stack-1x {
  color: var(--navy-2);
  transform: translateY(5px);
}

.social-copy {
  margin-bottom: 22px;
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 170px;
  padding: 0 24px;
  color: #fff;
  border: 2px solid #f36a21;
  border-radius: 999px;
}

.btn-outline-sm:hover,
.btn-outline-sm:focus {
  background: #f36a21;
  color: #fff;
}

.copyright-text {
  margin: 12px 0 0;
  font-size: 0.76rem;
  font-weight: 850;
}

.variant-hub {
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(112deg, rgba(244, 247, 250, 0.97), rgba(219, 242, 242, 0.8)),
    url("https://www.poprocket.co/images/transaction.jpg") center / cover;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.layout-shell {
  min-height: calc(100vh - 76px);
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  min-height: calc(100vh - 76px);
  background: var(--mist);
}

.rail {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 32px 22px;
  color: #dcebf0;
  background: var(--navy);
}

.rail a,
.rail span {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 850;
}

.rail .active {
  color: var(--ink);
  background: var(--yellow);
}

.dashboard-main {
  padding: clamp(34px, 5vw, 64px);
}

.dashboard-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.screen-card {
  position: relative;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.screen-card img {
  width: min(100%, 420px);
  margin: 0 auto;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.metric {
  padding: 18px;
}

.metric span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.metric strong {
  display: block;
  margin-top: 4px;
  font-size: 1.6rem;
}

.work-grid,
.module-grid,
.proof-grid,
.directory-grid,
.plan-grid {
  display: grid;
  gap: 16px;
}

.work-grid,
.module-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100vh - 76px);
}

.split-copy {
  display: grid;
  order: -1;
  align-content: center;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.split-media {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(16, 37, 56, 0.12), rgba(16, 37, 56, 0.34)),
    url("https://www.poprocket.co/images/resto1w.jpg") center / cover;
}

.floating-stack {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: clamp(18px, 5vw, 64px);
  display: grid;
  gap: 12px;
  width: min(78%, 420px);
}

.story-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  background: var(--mist);
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 80px) clamp(18px, 5vw, 64px);
  background: var(--navy);
  color: #fff;
}

.pricing-hero .eyebrow {
  color: #81e1de;
}

.pricing-hero .lede {
  color: #c7d8df;
}

.pricing-hero .feature-list li {
  color: #fff;
}

.plan-grid {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.price-card p {
  flex: 1;
}

.price-card strong {
  display: block;
  margin: 4px 0 12px;
  font-size: 2rem;
}

.price-card .button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  margin-top: auto;
  font-size: 0.88rem;
  white-space: nowrap;
}

.pricing-hero .price-card {
  color: var(--ink);
}

.directory-hero {
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 64px) 28px;
  background:
    linear-gradient(112deg, rgba(244, 247, 250, 0.98), rgba(219, 242, 242, 0.78)),
    url("https://www.poprocket.co/images/easy.jpg") center / cover;
}

.directory-hero h1 {
  max-width: 980px;
}

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

.directory-card {
  display: grid;
  gap: 14px;
  min-height: 270px;
}

.directory-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.directory-card .button {
  align-self: end;
}

.compare-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--navy);
  color: #fff;
}

.compare-strip p {
  color: #c7d8df;
}

@media (max-width: 1900px) and (min-width: 901px) {
  .pricing-hero {
    grid-template-columns: 1fr;
    align-items: start;
    overflow: hidden;
  }

  .pricing-hero .plan-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1100px) {
  .hub-grid,
  .directory-grid,
  .combined-flow .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-hero,
  .split-hero,
  .pricing-hero,
  .story-band {
    grid-template-columns: 1fr;
  }

  .split-hero {
    min-height: auto;
  }

  .split-copy {
    align-content: start;
  }

  .split-media {
    order: -1;
  }

  .rail {
    display: none;
  }

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

  .footer-col.third {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

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

  .brand {
    order: 1;
  }

  .site-header > .button {
    order: 2;
  }

  .menu-toggle {
    order: 3;
    display: grid;
  }

  .main-nav {
    order: 4;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

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

  .main-nav > a,
  .nav-link {
    width: 100%;
    min-height: 46px;
    padding: 0 8px;
    border-bottom: 1px solid rgba(16, 37, 56, 0.1);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-link {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0 14px;
    overflow: hidden;
    border-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 180ms ease, padding 180ms ease, border-width 180ms ease;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 760px;
    padding: 6px 14px;
    border-width: 1px;
  }

  .dashboard-top,
  .metrics-row,
  .work-grid,
  .module-grid,
  .proof-grid,
  .compare-strip,
  .pricing-hero .plan-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .brand img {
    width: 138px;
  }

  .site-header .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.34rem;
  }

  .hub-grid,
  .directory-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    padding-block: 44px;
  }

  .screen-card {
    display: none;
  }

  .split-media {
    display: grid;
    order: 0;
    gap: 12px;
    min-height: 0;
    margin: 18px clamp(18px, 5vw, 64px) 6px;
    background: none;
    border-radius: 0;
    overflow: visible;
  }

  .split-media::before {
    content: "";
    display: block;
    min-height: 260px;
    background:
      linear-gradient(180deg, rgba(16, 37, 56, 0.08), rgba(16, 37, 56, 0.18)),
      url("https://www.poprocket.co/images/resto1w.jpg") center / cover;
    border-radius: 8px;
  }

  .floating-stack {
    position: static;
    width: auto;
  }

  .floating-stack .panel {
    padding: 16px;
  }
}

.combined-flow .hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(680px, calc(100vh - 96px));
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 64px) clamp(30px, 4vw, 54px);
  background:
    linear-gradient(112deg, rgba(244, 247, 250, 0.97), rgba(219, 242, 242, 0.82)),
    url("https://www.poprocket.co/images/transaction.jpg") center / cover;
}

.combined-flow .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.combined-flow .proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0;
}

.combined-flow .proof-strip div {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.combined-flow .proof-strip dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.combined-flow .proof-strip dd {
  margin: 4px 0 0;
  font-weight: 950;
}

.combined-flow .metric-float {
  position: absolute;
  width: 176px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 33, 43, 0.18);
}

.combined-flow .metric-float span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.combined-flow .metric-float strong {
  display: block;
  margin-top: 5px;
  font-size: 1.55rem;
}

.combined-flow .metric-float.top {
  top: -24px;
  left: -12px;
}

.combined-flow .metric-float.bottom {
  right: -12px;
  bottom: -24px;
}

.combined-flow .dashboard-section {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  background: var(--mist);
}

.combined-flow .dashboard-main {
  padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 64px);
}

.combined-flow .dashboard-top,
.combined-flow .split-row,
.combined-flow .demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.combined-flow .story-media {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(16, 37, 56, 0.1), rgba(16, 37, 56, 0.36)),
    url("https://www.poprocket.co/images/resto1w.jpg") center / cover;
  border-radius: 8px;
}

.combined-flow .workflow-band {
  background: var(--mist);
}

.combined-flow .pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--navy);
  color: #fff;
}

.combined-flow .pricing-section .section-kicker {
  color: #81e1de;
}

.combined-flow .pricing-section .lede,
.combined-flow .pricing-section .feature-list li {
  color: #c7d8df;
}

.combined-flow .pricing-section .plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.combined-flow .full-suite-section {
  background: var(--paper);
}

.combined-flow .directory-section {
  background:
    linear-gradient(112deg, rgba(244, 247, 250, 0.98), rgba(219, 242, 242, 0.78)),
    url("https://www.poprocket.co/images/easy.jpg") center / cover;
}

.combined-flow .directory-section .compare-strip {
  margin-bottom: 28px;
}

.combined-flow .directory-section .compare-strip .panel {
  color: #fff;
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.18);
}

.combined-flow .demo-section {
  background: var(--mist);
}

.combined-flow .demo-form {
  display: grid;
  gap: 16px;
}

.combined-flow .form-grid {
  display: grid;
  gap: 16px;
}

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

.combined-flow .captcha-box {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding: 14px;
  background: #f4f7fa;
  border: 1px solid #c8d2dc;
  border-radius: 6px;
}

.combined-flow .captcha-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.combined-flow .captcha-box a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.form-message {
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 850;
}

.form-message.success {
  color: #0b4f2e;
  background: rgba(53, 184, 107, 0.16);
  border: 1px solid rgba(53, 184, 107, 0.28);
}

.form-message.error {
  color: #7a221b;
  background: rgba(239, 91, 76, 0.16);
  border: 1px solid rgba(239, 91, 76, 0.28);
}

.combined-flow label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.combined-flow input,
.combined-flow select,
.combined-flow textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8d2dc;
  border-radius: 6px;
  font: inherit;
}

.combined-flow textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

@media (max-width: 1180px) {
  .combined-flow .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .combined-flow .hero,
  .combined-flow .dashboard-section,
  .combined-flow .dashboard-top,
  .combined-flow .split-row,
  .combined-flow .pricing-section,
  .combined-flow .demo-section {
    grid-template-columns: 1fr;
  }

  .combined-flow .rail {
    display: none;
  }

  .combined-flow .metrics-row,
  .combined-flow .module-grid,
  .combined-flow .work-grid,
  .combined-flow .proof-grid,
  .combined-flow .compare-strip,
  .combined-flow .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  .combined-flow .screen-card,
  .combined-flow .story-media {
    display: none;
  }

  .combined-flow .story-section .split-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .combined-flow .story-section .story-media {
    display: grid;
    order: 2;
    gap: 12px;
    min-height: 0;
    background: none;
  }

  .combined-flow .story-section .story-media::before {
    content: "";
    display: block;
    min-height: 260px;
    background:
      linear-gradient(180deg, rgba(16, 37, 56, 0.1), rgba(16, 37, 56, 0.28)),
      url("https://www.poprocket.co/images/resto1w.jpg") center / cover;
    border-radius: 8px;
  }

  .combined-flow .story-section .floating-stack {
    position: static;
    order: 2;
    width: auto;
  }

  .combined-flow .story-section .floating-stack .panel {
    padding: 16px;
  }

  .combined-flow .story-section .split-row > div:not(.story-media) {
    order: 1;
  }

  .combined-flow .proof-strip,
  .combined-flow .metrics-row,
  .combined-flow .module-grid,
  .combined-flow .work-grid,
  .combined-flow .proof-grid,
  .combined-flow .compare-strip,
  .combined-flow .plan-grid,
  .combined-flow .directory-grid,
  .combined-flow .form-grid.two,
  .combined-flow .form-grid.captcha-row {
    grid-template-columns: 1fr;
  }
}
