:root {
  --bg: #f7f9ff;
  --white: #ffffff;
  --ink: #060d4f;
  --ink-soft: #283565;
  --muted: #66708f;
  --line: #dfe6f3;
  --mint: #eef6ff;
  --mint-strong: #d9edff;
  --teal: #12aef4;
  --teal-dark: #1769e8;
  --navy: #060d4f;
  --navy-2: #10186a;
  --gold: #ff9f12;
  --coral: #ff4b78;
  --violet: #8b35ef;
  --cyan: #11bdf8;
  --brand-gradient: linear-gradient(135deg, #12baf8 0%, #2469f0 30%, #8b35ef 55%, #ff4b78 74%, #ff9f12 100%);
  --brand: #1769e8;
  --text: var(--ink-soft);
  --text-strong: var(--ink);
  --shadow: 0 24px 70px rgba(6, 13, 79, 0.14);
  --shadow-soft: 0 14px 38px rgba(6, 13, 79, 0.08);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 255, 0.92);
  border-bottom: 1px solid rgba(6, 13, 79, 0.08);
  backdrop-filter: blur(18px);
}

.nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.brand-logo-svg {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

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

.brand-logo-svg .logo-badge,
.brand-logo-svg .logo-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: #465374;
  font-size: 14px;
  font-weight: 750;
  padding: 12px 14px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: #eef4ff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: #d4def0;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 750;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 159, 18, 0.16), transparent 34%),
    radial-gradient(circle at 18% 4%, rgba(18, 186, 248, 0.16), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(6, 13, 79, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 13, 79, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 58px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-tagline {
  display: block;
  max-width: 640px;
  margin-top: 22px;
  color: var(--teal-dark);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.22;
  font-weight: 850;
}

.hero-copy p,
.page-hero p,
.lead {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.55;
}

.hero-note {
  margin-top: 18px !important;
  color: #66708f !important;
  font-size: 15px !important;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-product {
  position: relative;
}

.product-shell {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 13, 79, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-shell img {
  width: 100%;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  object-position: top center;
}

.product-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  color: #465374;
  background: #fff;
  border-bottom: 1px solid #e4ebf6;
  font-size: 13px;
  font-weight: 800;
}

.layer-strip {
  position: relative;
  z-index: 2;
  margin-top: -22px;
  padding-bottom: 34px;
}

.layer-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe6f3;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.layer-strip article {
  padding: 24px 26px;
  border-right: 1px solid #e4ebf6;
}

.layer-strip article:last-child {
  border-right: 0;
}

.layer-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.layer-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.feature-band h2,
.cta-band h2,
.split-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.feature-band p,
.cta-band p,
.split-section p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.section-kicker,
.eyebrow {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-icon {
  display: none;
}

.intro-band {
  padding: 38px 44px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 159, 18, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(18, 186, 248, 0.24), transparent 45%),
    var(--navy);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.intro-band p {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
  letter-spacing: 0;
}

.audience-section {
  padding-top: 64px;
  background: #fff;
}

.category-definition {
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.audience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(18, 186, 248, 0.12), transparent 44%),
    #f7f9ff;
  border: 1px solid #dfe6f3;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.audience-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(139, 53, 239, 0.1);
  border-radius: 42px;
  transform: rotate(12deg);
}

.audience-grid small {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-grid h3 {
  position: relative;
  max-width: 560px;
  margin: 48px 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
  z-index: 1;
}

.audience-grid p {
  position: relative;
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
  z-index: 1;
}

.audience-grid a {
  position: relative;
  display: inline-flex;
  margin-top: 28px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  border-bottom: 2px solid rgba(23, 105, 232, 0.35);
  padding-bottom: 5px;
  z-index: 1;
}

.grid-2,
.grid-3,
.tech-grid,
.platform-grid,
.layer-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.panel,
.quote,
.contact-card,
.tech-card,
.layer-card,
.product-row article {
  background: #fff;
  border: 1px solid #dfe6f3;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.layer-card {
  min-height: 344px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.layer-card:hover {
  transform: translateY(-4px);
  border-color: #bfd7ff;
  box-shadow: 0 18px 46px rgba(6, 13, 79, 0.11);
}

.layer-card span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.card h3,
.panel h3,
.contact-card h3,
.tech-card h3,
.layer-card h3,
.product-row h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
}

.card p,
.panel p,
.quote p,
.contact-card p,
.tech-card p,
.layer-card p,
.layer-card li,
.product-row p,
.bullet-list li {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.layer-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 19px;
}

.product-family {
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 159, 18, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(18, 186, 248, 0.22), transparent 42%),
    linear-gradient(180deg, var(--navy) 0%, #03072f 100%);
}

.product-family h2,
.product-family .section-heading p {
  color: #fff;
}

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

.product-row article {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.product-row small {
  display: block;
  margin-bottom: 24px;
  color: #92d7ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-row h3,
.product-row p {
  color: #fff;
}

.product-preview {
  background: #fff;
}

.workflow-section {
  background:
    linear-gradient(180deg, #f7f9ff 0%, #edf5ff 100%);
}

.moment-ribbon {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  margin: -10px 0 28px;
  background: var(--navy);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.moment-ribbon span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 16px 12px;
  color: #f4f8ff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.moment-ribbon span:last-child {
  border-right: 0;
}

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

.workflow-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid #dfe6f3;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.workflow-grid span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.workflow-grid h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.1;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.workflow-screens {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.workflow-screens img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  border: 1px solid #dfe6f3;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.status-strip-image {
  display: block;
  width: 100%;
  max-width: 1120px;
  max-height: 86px;
  margin: 0 auto 28px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #dfe6f3;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe6f3;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.screenshot-card--wide {
  grid-column: 1 / -1;
}

.screenshot-card img,
.screenshot-card video {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: top center;
  background: var(--mint);
}

.screenshot-card video {
  display: block;
}

.screenshot-card figcaption {
  display: grid;
  gap: 6px;
  padding: 22px 24px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.screenshot-card figcaption strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.use-case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.use-case-list span {
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
}

.cta-band {
  padding: 58px;
  text-align: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 159, 18, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(18, 186, 248, 0.24), transparent 42%),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  max-width: 720px;
  margin: 18px auto 28px;
}

.page-hero {
  padding: 88px 0 52px;
  background:
    radial-gradient(circle at 84% 4%, rgba(255, 159, 18, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.platform-hero {
  padding-bottom: 78px;
}

.feature-band {
  padding: 42px;
  background: #fff;
  border: 1px solid #dfe6f3;
  border-radius: 24px;
}

.feature-band h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.06;
}

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

.trust-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 159, 18, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(18, 186, 248, 0.2), transparent 42%),
    var(--navy);
}

.trust-section h2,
.trust-section .section-heading p {
  color: #fff;
}

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

.trust-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}

.trust-grid p {
  margin: 0;
  color: rgba(244, 248, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.section-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.section-links a {
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 850;
  border-bottom: 2px solid rgba(23, 105, 232, 0.25);
  padding-bottom: 4px;
}

.section-links--dark a {
  color: #f4f8ff;
  border-bottom-color: rgba(146, 215, 255, 0.42);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--brand-blue);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 22px;
}

.content-panel {
  padding: 30px;
  border: 1px solid #dfe8f6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(2, 8, 62, 0.08);
}

.content-panel h2,
.content-panel h3 {
  margin-top: 0;
}

.content-panel p:last-child,
.content-panel ul:last-child {
  margin-bottom: 0;
}

.content-panel li + li {
  margin-top: 10px;
}

.side-card {
  position: sticky;
  top: 98px;
  padding: 24px;
  border: 1px solid #dfe8f6;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 18px 45px rgba(2, 8, 62, 0.08);
}

.side-card h2 {
  margin-top: 0;
  font-size: 22px;
}

.side-card .button {
  width: 100%;
  margin-top: 12px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid #dfe8f6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(2, 8, 62, 0.07);
}

.article-card h3 {
  margin-top: 0;
}

.article-card a {
  color: var(--brand-blue);
  font-weight: 850;
}

.faq-item {
  padding-top: 18px;
  border-top: 1px solid #e4ebf6;
}

.faq-item:first-of-type {
  margin-top: 8px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-link {
  color: var(--teal-dark);
  font-size: 19px;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid #e4ebf6;
  padding: 38px 0;
  background: #fff;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 6px;
}

.footer-copy {
  max-width: 420px;
}

.footer-copy span,
.footer-links {
  color: var(--muted);
  font-size: 15px;
}

.footer-copy .footer-legal {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-section,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

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

  .layer-strip article:nth-child(2) {
    border-right: 0;
  }

  .layer-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid #e4ebf6;
  }
}

@media (max-width: 940px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 12px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-row {
    flex-wrap: wrap;
    min-height: 76px;
    padding: 10px 0;
  }

  .header-cta {
    order: 3;
  }

  .brand-logo {
    width: auto;
    height: 56px;
    max-width: 240px;
  }

  .hero {
    padding: 62px 0 66px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .hero-copy p,
  .page-hero p,
  .lead,
  .section-heading p,
  .split-section p,
  .cta-band p {
    font-size: 18px;
  }

  .grid-2,
  .grid-3,
  .tech-grid,
  .platform-grid,
  .layer-grid,
  .layer-strip-grid,
  .audience-grid,
  .platform-feature-grid,
  .trust-grid,
  .product-row,
  .workflow-grid,
  .workflow-screens,
  .screenshot-grid,
  .article-card-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .layer-strip {
    margin-top: 0;
    padding: 18px 0 10px;
  }

  .layer-strip article {
    border-right: 0;
    border-bottom: 1px solid #e4ebf6;
  }

  .layer-strip article:last-child {
    border-bottom: 0;
  }

  .workflow-screens img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

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

  .moment-ribbon span:nth-child(2n) {
    border-right: 0;
  }

  .moment-ribbon span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .screenshot-card--wide {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .intro-band,
  .cta-band {
    padding: 32px 24px;
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: none;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(40px, 11.8vw, 54px);
  }

  .screenshot-card img,
  .screenshot-card video,
  .product-shell img {
    aspect-ratio: 4 / 3;
  }

  .footer-links {
    gap: 12px 18px;
  }
}
