:root {
  --ink: #0f172a;
  --muted: #5b677a;
  --line: #dbe4ef;
  --panel: #ffffff;
  --soft: #f5f8fc;
  --page: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.9);
  --hero-start: #f8fbff;
  --hero-end: #ffffff;
  --caption-bg: rgba(255, 255, 255, 0.9);
  --featured-plan-bg: #0f172a;
  --featured-plan-text: #ffffff;
  --featured-plan-muted: #cbd5e1;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #0f9f6e;
  --amber: #d97706;
  --red: #dc2626;
  --dark: #101827;
  --dark-panel: #172235;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

[data-theme="dark"] {
  --ink: #e5edf8;
  --muted: #a8b5c8;
  --line: #27364d;
  --panel: #111c2d;
  --soft: #0c1422;
  --page: #08111f;
  --header-bg: rgba(8, 17, 31, 0.9);
  --hero-start: #0a1424;
  --hero-end: #08111f;
  --caption-bg: rgba(12, 20, 34, 0.88);
  --featured-plan-bg: linear-gradient(135deg, #1e3a8a, #0f766e);
  --featured-plan-text: #f8fbff;
  --featured-plan-muted: #dbeafe;
  --blue: #60a5fa;
  --blue-dark: #3b82f6;
  --green: #34d399;
  --dark: #07101d;
  --dark-panel: #111c2d;
  --shadow: 0 26px 76px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(219, 228, 239, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-logo {
  width: 148px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.header-cta,
.button,
.pricing-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -4px;
  width: 9px;
  height: 9px;
  background: var(--panel);
  border-radius: 999px;
}

[data-theme="dark"] .theme-toggle-icon::after {
  top: 3px;
  right: 3px;
  width: 4px;
  height: 4px;
  background: currentColor;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: #0f172a;
  white-space: nowrap;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--panel);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(56px, 8vw, 116px) clamp(20px, 4vw, 56px) clamp(38px, 6vw, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(20, 184, 166, 0.16), transparent 32%),
    linear-gradient(180deg, var(--hero-start) 0%, var(--hero-end) 72%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.18;
}

.hero-text,
.section-heading > p,
.split p,
.story-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  background: var(--caption-bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.hero-stats dt {
  color: var(--blue);
  font-size: 28px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.carousel-shell {
  display: grid;
  align-items: center;
}

.screenshot-carousel {
  position: relative;
  width: min(940px, 100%);
  min-height: 590px;
  perspective: 1400px;
}

.screenshot-carousel::before,
.screenshot-carousel::after {
  content: "";
  position: absolute;
  inset: 42px 36px auto auto;
  width: 58%;
  height: 54%;
  background: #dfeafb;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  transform: rotate(5deg) translate(22px, 18px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.screenshot-carousel::after {
  inset: auto auto 86px 28px;
  width: 46%;
  height: 36%;
  background: #e9f7f5;
  transform: rotate(-6deg) translate(-8px, 8px);
}

.carousel-slide {
  position: absolute;
  inset: 0 0 80px;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) rotateX(4deg) rotateY(-8deg) scale(0.94);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide.twist-a {
  animation: carouselTwistA 2800ms ease-in-out both;
}

.carousel-slide.twist-b {
  animation: carouselTwistB 2800ms ease-in-out both;
}

.carousel-slide.drift-left {
  animation: carouselDriftLeft 2800ms ease-in-out both;
}

.carousel-slide.rise-tilt {
  animation: carouselRiseTilt 2800ms ease-in-out both;
}

.carousel-slide.pulse-in {
  animation: carouselPulseIn 2800ms ease-in-out both;
}

.carousel-slide.pulse-soft {
  animation: carouselPulseSoft 2800ms ease-in-out both;
}

.carousel-slide img {
  width: 100%;
  max-height: 510px;
  object-fit: contain;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.carousel-caption {
  position: absolute;
  right: 18px;
  bottom: 26px;
  left: 18px;
  z-index: 3;
  min-height: 56px;
  margin: 0 auto;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--caption-bg);
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  font-size: 15px;
  font-weight: 750;
  text-align: center;
  backdrop-filter: blur(16px);
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.carousel-dots span {
  width: 7px;
  height: 7px;
  background: #cbd5e1;
  border-radius: 999px;
  transition: width 240ms ease, background 240ms ease;
}

.carousel-dots span.is-active {
  width: 24px;
  background: var(--blue);
}

@keyframes carouselTwistA {
  0% {
    transform: translateY(22px) rotateX(7deg) rotateY(-13deg) scale(0.93);
  }
  18%,
  68% {
    transform: translateY(0) rotateX(1deg) rotateY(-4deg) rotateZ(0.6deg) scale(1);
  }
  100% {
    transform: translateY(-10px) rotateX(0deg) rotateY(5deg) rotateZ(-0.6deg) scale(1.02);
  }
}

@keyframes carouselTwistB {
  0% {
    transform: translateY(22px) rotateX(6deg) rotateY(12deg) scale(0.93);
  }
  18%,
  68% {
    transform: translateY(0) rotateX(1deg) rotateY(4deg) rotateZ(-0.6deg) scale(1);
  }
  100% {
    transform: translateY(-10px) rotateX(0deg) rotateY(-5deg) rotateZ(0.6deg) scale(1.02);
  }
}

@keyframes carouselDriftLeft {
  0% {
    transform: translate(34px, 18px) rotateX(5deg) rotateY(-4deg) rotateZ(1.6deg) scale(0.94);
  }
  20%,
  68% {
    transform: translate(0, 0) rotateX(1deg) rotateY(2deg) rotateZ(-0.5deg) scale(1);
  }
  100% {
    transform: translate(-18px, -7px) rotateX(0deg) rotateY(6deg) rotateZ(-1deg) scale(1.015);
  }
}

@keyframes carouselRiseTilt {
  0% {
    transform: translateY(36px) rotateX(9deg) rotateY(0deg) rotateZ(-1.4deg) scale(0.935);
  }
  20%,
  68% {
    transform: translateY(0) rotateX(2deg) rotateY(-2deg) rotateZ(0.4deg) scale(1);
  }
  100% {
    transform: translateY(-16px) rotateX(-1deg) rotateY(3deg) rotateZ(0.9deg) scale(1.018);
  }
}

@keyframes carouselPulseIn {
  0% {
    transform: translateY(12px) rotateX(2deg) rotateY(-2deg) scale(0.9);
  }
  18% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1.025);
  }
  42%,
  70% {
    transform: translateY(-2px) rotateX(1deg) rotateY(2deg) scale(0.995);
  }
  100% {
    transform: translateY(-6px) rotateX(0deg) rotateY(-3deg) scale(1.03);
  }
}

@keyframes carouselPulseSoft {
  0% {
    transform: translate(-12px, 16px) rotateX(4deg) rotateY(7deg) scale(0.95);
  }
  22% {
    transform: translate(0, 0) rotateX(1deg) rotateY(1deg) scale(1.012);
  }
  52%,
  72% {
    transform: translate(4px, -3px) rotateX(0deg) rotateY(-2deg) scale(0.998);
  }
  100% {
    transform: translate(12px, -8px) rotateX(0deg) rotateY(-5deg) scale(1.022);
  }
}

.hero-shot {
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.main-shot {
  width: min(900px, 100%);
}

.floating-shot {
  position: absolute;
  width: 46%;
}

.shot-skills {
  right: -3%;
  bottom: 6%;
}

.shot-risk {
  left: 2%;
  bottom: -2%;
  width: 38%;
}

.logos-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #475569;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  font-size: 13px;
  font-weight: 750;
}

.logos-strip span {
  padding: 8px 12px;
  background: var(--soft);
  border-radius: 999px;
}

.seo-topics {
  background: var(--soft);
}

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

.topic-grid article {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topic-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.video-section {
  background: var(--page);
}

.video-frame {
  max-width: 1060px;
  margin: 0 auto;
  padding: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(15, 159, 110, 0.12));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  max-height: 680px;
  background: #0f172a;
  border-radius: 12px;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.problem {
  background: var(--page);
}

.problem-grid,
.card-grid,
.use-case-grid,
.quote-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid article,
.card-grid article,
.use-case-grid article,
.feature-card,
.pricing-grid article,
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.problem-grid article,
.card-grid article,
.use-case-grid article,
.feature-card,
.pricing-grid article {
  padding: 24px;
}

.problem-grid p,
.card-grid p,
.use-case-grid p,
.feature-card p,
.pricing-grid p,
.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon,
.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--blue);
  background: #eff6ff;
  border-radius: 8px;
  font-weight: 850;
}

.mini-icon.iconify {
  padding: 8px;
  font-size: 22px;
}

.solution,
.benefits,
.pricing,
.faq {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.check-list,
.metric-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.check-list span,
.metric-list span {
  position: relative;
  padding: 13px 14px 13px 42px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.check-list span::before,
.metric-list span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 999px;
}

.image-frame,
.image-stack img {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: auto;
}

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

.features {
  background: var(--page);
}

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

.feature-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.9fr);
  gap: 22px;
  align-items: center;
  background: var(--soft);
}

.feature-card.large img {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dark {
  color: #fff;
  background:
    radial-gradient(circle at 10% 8%, rgba(37, 99, 235, 0.24), transparent 26%),
    var(--dark);
}

.dark .eyebrow {
  color: #93c5fd;
}

.dark p {
  color: #cbd5e1;
}

.dark .metric-list span {
  color: #e5edf8;
  background: var(--dark-panel);
  border-color: rgba(148, 163, 184, 0.25);
}

.image-stack {
  display: grid;
  gap: 18px;
}

.story {
  background: var(--page);
}

.story-panel {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 68px);
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a 62%, #0f766e);
  border-radius: 16px;
}

.story-panel h2 {
  max-width: 980px;
}

.story-panel p {
  max-width: 820px;
  color: #dbeafe;
}

.use-cases {
  background: var(--soft);
}

.use-case-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonials {
  background: var(--page);
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

blockquote {
  margin: 0;
  padding: 28px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
}

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

.pricing-grid article {
  display: grid;
  gap: 18px;
  align-content: start;
}

.pricing-grid .featured-plan {
  color: var(--featured-plan-text);
  background: var(--featured-plan-bg);
  border-color: rgba(96, 165, 250, 0.42);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.pricing-grid .featured-plan p {
  color: var(--featured-plan-muted);
}

.pricing-grid .featured-plan h3 {
  color: var(--featured-plan-text);
}

.pricing-grid a {
  padding: 0 16px;
  color: #fff;
  background: var(--blue);
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  padding-top: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(72px, 10vw, 124px) clamp(20px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.94)),
    url("images/memberProgress.png") center / cover;
}

.contact-copy {
  align-self: center;
}

.contact-copy .eyebrow {
  color: #93c5fd;
}

.contact-copy p {
  color: #cbd5e1;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--panel);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: #64748b;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 980px;
  margin-top: 14px;
  font-size: 13px;
}

.landing-hero {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(circle at 80% 15%, rgba(20, 184, 166, 0.14), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 75%);
}

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

.landing-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
}

.landing-content {
  background: var(--soft);
}

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

.landing-grid article {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.landing-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 118px) clamp(20px, 4vw, 56px);
}

.legal-page h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.blog-listing {
  background: var(--soft);
}

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

.blog-grid article,
.blog-post {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-grid article {
  padding: 24px;
}

.blog-grid time,
.blog-post time {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-grid h2 {
  font-size: 24px;
}

.blog-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.blog-post {
  max-width: 900px;
  margin: clamp(44px, 8vw, 84px) auto;
  padding: clamp(30px, 5vw, 62px);
}

.blog-post h1 {
  max-width: 820px;
}

.blog-post p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .split.reverse,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 480px;
  }

  .screenshot-carousel {
    min-height: 520px;
  }

  .problem-grid,
  .card-grid.nine,
  .feature-layout,
  .use-case-grid,
  .quote-grid,
  .topic-grid,
  .landing-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.large {
    grid-column: 1 / -1;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 126px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-stats,
  .problem-grid,
  .card-grid.nine,
  .feature-layout,
  .feature-card.large,
  .use-case-grid,
  .quote-grid,
  .topic-grid,
  .landing-grid,
  .blog-grid,
  .pricing-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .screenshot-carousel {
    min-height: 410px;
  }

  .screenshot-carousel::before,
  .screenshot-carousel::after {
    display: none;
  }

  .carousel-slide {
    inset: 0 0 92px;
  }

  .carousel-slide img {
    max-height: 300px;
  }

  .carousel-caption {
    right: 0;
    left: 0;
    min-height: 78px;
    font-size: 14px;
  }

  .pricing-grid .featured-plan {
    transform: none;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .carousel-slide,
  .carousel-slide.twist-a,
  .carousel-slide.twist-b,
  .carousel-slide.drift-left,
  .carousel-slide.rise-tilt,
  .carousel-slide.pulse-in,
  .carousel-slide.pulse-soft {
    animation: none;
    transition: opacity 300ms ease;
    transform: none;
  }
}
