:root {
  color-scheme: light;
  --brand-blue: #1479eb;
  --brand-blue-strong: #075fc7;
  --deep-blue: #081d49;
  --ink: #10213f;
  --muted: #60728f;
  --teal: #13b7ad;
  --teal-strong: #08776e;
  --green: #57c878;
  --warm: #c46b35;
  --page: #f6f9fc;
  --panel: #ffffff;
  --line: #d9e5f2;
  --soft-blue: #eaf4ff;
  --shadow: 0 24px 70px rgba(31, 75, 130, 0.16);
  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;
  min-width: 0;
  background: var(--page);
  color: var(--ink);
}

body.marketing-page {
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.marketing-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 12px 0;
  border: 0;
  background: transparent;
}

.marketing-header-nav-only {
  justify-content: flex-end;
}

.marketing-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--deep-blue);
  font-weight: 850;
}

.marketing-logo img {
  width: 174px;
  height: auto;
}

.marketing-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 760;
}

.marketing-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(8, 29, 73, 0.2);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.marketing-nav a:hover,
.marketing-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  outline: none;
}

.marketing-nav .login-link {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.marketing-nav .nav-cta {
  background: var(--brand-blue);
  color: #fff;
}

.marketing-nav .nav-cta:hover,
.marketing-nav .nav-cta:focus-visible {
  background: var(--brand-blue-strong);
  color: #fff;
}

.marketing-hero {
  min-height: 88svh;
  padding: 26px 0 72px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: start;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 29, 73, 0.86), rgba(8, 29, 73, 0.58) 54%, rgba(8, 29, 73, 0.24)),
    url("assets/cirrusplan-mountains.jpg") center 42% / cover no-repeat;
}

.marketing-hero::before {
  content: "";
  position: absolute;
  right: clamp(-620px, -40vw, -300px);
  bottom: clamp(-110px, -8vh, -48px);
  z-index: 0;
  width: min(72vw, 1120px);
  aspect-ratio: 3240 / 1946;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: #fff url("assets/cirrusplan-gcv2-screenshot.png?v=20260525-real-gcv2") center / contain no-repeat;
  box-shadow: 0 28px 70px rgba(8, 36, 71, 0.28);
  opacity: 0.94;
  transform: rotate(-5deg);
  transform-origin: center;
  pointer-events: none;
}

.marketing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(246, 249, 252, 0.96));
  pointer-events: none;
}

.marketing-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.hero-copy {
  width: min(940px, 100%);
  padding: 0 0 64px;
  text-shadow: 0 2px 20px rgba(4, 18, 45, 0.44);
}

.splash-brand,
.preview-gate-brand {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.splash-brand img,
.preview-gate-brand img {
  width: clamp(340px, 30vw, 460px);
  height: auto;
}

.splash-brand-rule {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 0 18px rgba(20, 121, 235, 0.5);
}

.splash-brand p,
.preview-gate-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.28;
  font-weight: 760;
}

.splash-brand p span,
.preview-gate-brand p span {
  color: var(--brand-blue);
}

.hero-intro {
  max-width: 940px;
  margin: clamp(82px, 12vh, 128px) auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(2.05rem, 2.9vw, 2.55rem);
  line-height: 1.2;
  font-weight: 680;
}

.pricing-hero h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
  font-size: clamp(4rem, 8.8vw, 7.9rem);
  font-weight: 880;
}

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

.hero-actions {
  justify-content: center;
  margin-top: 32px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 820;
  line-height: 1;
  cursor: pointer;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(20, 121, 235, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-blue-strong);
  outline: none;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  outline: none;
}

.button-dark {
  border-color: rgba(8, 29, 73, 0.14);
  background: var(--deep-blue);
  color: #fff;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #102e68;
  outline: none;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-narrow {
  width: min(960px, calc(100% - 32px));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.pricing-section h2 {
  margin: 0;
  color: var(--deep-blue);
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.pricing-section > p,
.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
  font-weight: 540;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.feature-card,
.pricing-card,
.faq-item,
.workflow-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(31, 75, 130, 0.08);
}

.feature-card {
  min-height: 170px;
  padding: 22px;
}

.feature-card svg,
.workflow-step svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--brand-blue);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.workflow-step h3,
.pricing-card h2,
.faq-item h3 {
  margin: 0;
  color: var(--deep-blue);
  font-size: 1.1rem;
  line-height: 1.24;
}

.feature-card p,
.workflow-step p,
.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: center;
}

.showcase-copy {
  display: grid;
  gap: 18px;
}

.showcase-copy h2 {
  margin: 0;
  color: var(--deep-blue);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.64;
}

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

.showcase-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #233c66;
  font-weight: 680;
  line-height: 1.45;
}

.showcase-points svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--teal-strong);
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-shot {
  overflow: hidden;
  border: 1px solid #cfe0f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-shot + .product-shot {
  margin-top: 22px;
}

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

.workflow-step {
  padding: 24px;
}

.cta-band {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(8, 29, 73, 0.92), rgba(20, 121, 235, 0.72)),
    url("assets/cirrusplan-mountains.jpg") center 42% / cover no-repeat;
  color: #fff;
}

.cta-band-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.cta-band p {
  margin: 14px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.62;
}

.marketing-footer {
  padding: 36px 0;
  background: #071d35;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 620;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
}

.pricing-hero {
  padding: 148px 0 68px;
  background:
    linear-gradient(90deg, rgba(8, 29, 73, 0.86), rgba(20, 121, 235, 0.62)),
    url("assets/cirrusplan-mountains.jpg") center 42% / cover no-repeat;
  color: #fff;
}

.pricing-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.pricing-hero p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.58;
}

.pricing-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 86px;
}

.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 28px;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 75, 130, 0.08);
}

.billing-toggle button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #455b7d;
  cursor: pointer;
  padding: 0 14px;
  font: inherit;
  font-weight: 820;
}

.billing-toggle button[aria-pressed="true"] {
  background: var(--brand-blue);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 510px;
  padding: 22px;
}

.pricing-card.is-featured {
  border-color: rgba(20, 121, 235, 0.48);
  box-shadow: 0 22px 58px rgba(20, 121, 235, 0.16);
}

.plan-label {
  min-height: 26px;
  color: var(--teal-strong);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 4px;
  color: var(--deep-blue);
}

.price strong {
  min-width: 0;
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.price span {
  flex: 1 1 4.5rem;
  min-width: 3.6rem;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.price-note {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.plan-features {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  gap: 9px;
  color: #2c4266;
  font-size: 0.92rem;
  line-height: 1.42;
  font-weight: 650;
}

.plan-features svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal-strong);
  stroke: currentColor;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-seat-control {
  display: grid;
  gap: 7px;
  margin: auto 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.pricing-seat-control span {
  color: var(--muted);
}

.pricing-seat-control input {
  box-sizing: border-box;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(8, 29, 73, 0.14);
  border-radius: 6px;
  background: #fff;
  color: var(--deep-blue);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 760;
  padding: 0 12px;
}

.pricing-seat-control input:focus {
  border-color: var(--brand-blue);
  outline: 3px solid rgba(20, 121, 235, 0.18);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-seat-control + .button {
  margin-top: 0;
}

.pricing-card .button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.pricing-checkout-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(20, 121, 235, 0.24);
  border-radius: 8px;
  background: rgba(20, 121, 235, 0.08);
  color: var(--deep-blue);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.pricing-checkout-status[data-tone="error"] {
  border-color: rgba(188, 47, 47, 0.28);
  background: rgba(188, 47, 47, 0.08);
  color: #7f1d1d;
}

.pricing-checkout-status[data-tone="success"] {
  border-color: rgba(12, 126, 112, 0.28);
  background: rgba(12, 126, 112, 0.09);
  color: #075e54;
}

.stripe-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 600;
}

.pricing-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.preview-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: start center;
  padding: 26px clamp(18px, 6vw, 96px) clamp(24px, 6vh, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 250, 255, 0.2), rgba(245, 250, 255, 0.48)),
    url("assets/cirrusplan-mountains.jpg") center 42% / cover no-repeat;
  color: var(--deep-blue);
}

.preview-gate::before {
  content: "";
  position: absolute;
  right: clamp(-560px, -38vw, -240px);
  bottom: clamp(-110px, -8vh, -48px);
  z-index: 0;
  width: min(72vw, 1120px);
  aspect-ratio: 3240 / 1946;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: #fff url("assets/cirrusplan-gcv2-screenshot.png?v=20260525-real-gcv2") center / contain no-repeat;
  box-shadow: 0 28px 70px rgba(8, 36, 71, 0.24);
  opacity: 0.98;
  transform: rotate(-5deg);
  pointer-events: none;
}

.preview-gate::after {
  content: none;
}

.preview-gate-brand {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100vw - 36px));
  text-align: center;
  text-shadow: 0 2px 18px rgba(4, 18, 45, 0.22);
}

.preview-gate-panel {
  position: relative;
  z-index: 2;
  width: min(410px, calc(100vw - 36px));
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(44, 117, 206, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(31, 75, 130, 0.16);
  backdrop-filter: blur(16px);
}

.preview-gate-kicker {
  margin: 0 0 6px;
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-gate-panel h1 {
  margin: 0 0 14px;
  color: var(--deep-blue);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0;
}

.preview-gate-copy {
  margin: 0 0 16px;
  color: #455b7d;
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 620;
}

.preview-gate-field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #334a6c;
  font-size: 0.82rem;
  font-weight: 760;
}

.preview-gate-field input {
  min-height: 40px;
  width: 100%;
  border: 1px solid rgba(22, 105, 210, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep-blue);
  font: inherit;
  padding: 0 12px;
}

.preview-gate-field input:focus {
  border-color: var(--brand-blue);
  outline: 3px solid rgba(20, 121, 235, 0.24);
}

.preview-gate-error {
  margin: 0 0 14px;
  padding: 9px 10px;
  border: 1px solid rgba(180, 68, 68, 0.28);
  border-radius: 6px;
  background: rgba(255, 241, 241, 0.88);
  color: #8b2d2d;
  font-size: 0.82rem;
  font-weight: 750;
}

.preview-gate-submit {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--brand-blue);
  border-radius: 6px;
  background: var(--brand-blue);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 820;
}

.preview-gate-submit:hover,
.preview-gate-submit:focus-visible {
  border-color: var(--brand-blue-strong);
  background: var(--brand-blue-strong);
  outline: none;
}

.preview-gate-login {
  display: block;
  margin-top: 12px;
  color: var(--deep-blue);
  font-size: 0.86rem;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
}

.has-preview-gate {
  overflow: hidden;
}

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

.faq-item {
  padding: 22px;
}

@media (max-width: 1080px) {
  .marketing-hero-inner,
  .showcase-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 721px) and (max-height: 780px) {
  .marketing-hero {
    padding-top: 26px;
  }

  .preview-gate {
    padding-top: 26px;
  }

  .splash-brand {
    gap: 10px;
  }

  .preview-gate-brand {
    gap: 10px;
  }

  .splash-brand img,
  .preview-gate-brand img {
    width: 330px;
  }

  .splash-brand-rule {
    width: 62px;
    height: 2px;
  }

  .splash-brand p,
  .preview-gate-brand p {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .preview-gate-panel {
    margin-top: 12px;
    padding: 18px;
  }

  .preview-gate-panel h1 {
    margin-bottom: 10px;
    font-size: 1.55rem;
  }

  .preview-gate-copy {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .preview-gate-field {
    margin-bottom: 9px;
  }

  .preview-gate-field input,
  .preview-gate-submit {
    min-height: 36px;
  }
}

@media (max-width: 720px) {
  .marketing-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 20px, 520px);
    margin-top: 10px;
  }

  .marketing-logo img {
    width: 154px;
  }

  .marketing-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .marketing-nav a {
    background: rgba(8, 29, 73, 0.18);
  }

  .marketing-nav a {
    flex: 0 0 auto;
  }

  .marketing-hero,
  .pricing-hero {
    padding-top: 150px;
  }

  .pricing-hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .marketing-hero-inner,
  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .splash-brand img {
    width: min(350px, 84vw);
  }

  .preview-gate-brand img {
    width: min(350px, 84vw);
  }

  .splash-brand p,
  .preview-gate-brand p {
    font-size: clamp(1.12rem, 5vw, 1.45rem);
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .hero-actions {
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .feature-strip,
  .workflow-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-inner,
  .footer-inner,
  .pricing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-card {
    min-height: 0;
  }

  .preview-gate {
    padding-top: 150px;
  }
}
