:root {
  --bg: #f6f8fb;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #5f6f85;
  --soft: #e3eaf2;
  --blue: #1d4ed8;
  --cyan: #0891b2;
  --green: #15803d;
  --amber: #b45309;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 72px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: #f8fafc;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: currentColor;
  font-size: 14px;
}

.desktop-nav a {
  opacity: 0.78;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-action {
  justify-self: end;
  padding: 9px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 13px;
  opacity: 0.9;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--soft);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 10px;
  border-radius: 7px;
  background: #f8fafc;
  color: var(--ink);
  font-size: 14px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 118px 24px 56px;
  overflow: hidden;
  color: #f8fafc;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #0b1220;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  filter: saturate(0.8) contrast(0.95);
  opacity: 0.52;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 10, 18, 0.88), rgba(6, 10, 18, 0.68) 48%, rgba(6, 10, 18, 0.72)),
    linear-gradient(180deg, rgba(6, 10, 18, 0.58), rgba(6, 10, 18, 0.88));
}

.hero-content,
.container {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #4fb3ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 6.8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(248, 250, 252, 0.84);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

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

.button.primary {
  background: #ffffff;
  color: #0f172a;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 54px 0 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.hero-metric {
  position: relative;
  display: block;
  padding: 16px;
  color: #ffffff;
  background: rgba(4, 9, 18, 0.38);
  transition: background 160ms ease;
}

.hero-metric::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 0 rgba(79, 179, 255, 0);
  content: "";
  pointer-events: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.hero-metric:hover,
.hero-metric:focus-visible {
  background: rgba(18, 32, 54, 0.86);
}

.hero-metric:hover::after,
.hero-metric:focus-visible::after {
  border-color: rgba(79, 179, 255, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 0 22px rgba(79, 179, 255, 0.12);
}

.hero-metric:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.9);
  outline-offset: -4px;
}

.hero-metric strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.hero-metric span {
  display: block;
  margin-top: 4px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 13px;
}

.section {
  padding: 90px 0;
}

.intro-section {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-grid > p,
.section-heading p,
.showcase-copy p,
.delivery-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading.compact p:last-child {
  margin-top: 18px;
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 360px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--soft);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.featured-product {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 8px;
}

.product-index {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.product-copy h3,
.scenario-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.18;
}

.product-copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.product-copy ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-copy li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
}

.product-copy li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  margin-top: 22px;
  padding: 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 8%, #ffffff);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.product-link:hover {
  background: color-mix(in srgb, var(--accent) 12%, #ffffff);
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  transform: translateY(-1px);
}

.product-link span {
  font-size: 15px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.product-actions .product-link {
  margin-top: 0;
}

.product-link.ghost {
  color: #334155;
  background: #ffffff;
  border-color: var(--soft);
}

.product-link.ghost:hover {
  background: #f8fafc;
  border-color: color-mix(in srgb, var(--accent) 28%, var(--soft));
}

.accent-cyan {
  --accent: var(--cyan);
}

.accent-blue {
  --accent: var(--blue);
}

.accent-green {
  --accent: var(--green);
}

.product-shot,
.showcase-image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #eef3f8;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
}

.product-shot a {
  display: block;
  height: 100%;
  cursor: pointer;
}

.product-shot a:hover img {
  opacity: 0.92;
}

.product-shot img {
  width: 100%;
  height: 100%;
  min-height: 316px;
  object-fit: cover;
  object-position: left top;
  transition: opacity 0.2s ease;
}

.architecture-section {
  background: #ffffff;
}

.architecture-flow {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr;
  align-items: center;
  margin-top: 40px;
}

.flow-node {
  min-height: 210px;
  padding: 22px;
  background: #f8fafc;
  border: 1px solid var(--soft);
  border-radius: 8px;
}

.flow-node span {
  display: inline-grid;
  width: 34px;
  height: 28px;
  place-items: center;
  margin-bottom: 26px;
  background: #eaf1ff;
  border-radius: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.flow-node strong {
  display: block;
  font-size: 19px;
}

.flow-node p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.flow-line {
  height: 1px;
  background: #b8c4d2;
}

.split-showcase {
  background: #eef3f8;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 38px;
  align-items: center;
}

.showcase-image.large img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

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

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-list span {
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

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

.scenario-grid article {
  min-height: 220px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 8px;
}

.scenario-icon {
  display: inline-grid;
  height: 34px;
  min-width: 42px;
  place-items: center;
  margin-bottom: 28px;
  padding: 0 10px;
  background: #f1f5f9;
  border-radius: 7px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
}

.scenario-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.delivery-section {
  background: #0f172a;
  color: #ffffff;
}

.delivery-section h2 {
  color: #ffffff;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.delivery-grid p {
  margin-top: 20px;
  color: rgba(248, 250, 252, 0.74);
}

.delivery-points {
  display: grid;
  gap: 12px;
}

.delivery-points div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.delivery-points strong,
.delivery-points span {
  display: block;
}

.delivery-points strong {
  font-size: 17px;
}

.delivery-points span {
  margin-top: 6px;
  color: rgba(248, 250, 252, 0.7);
  font-size: 14px;
}

.contact-section {
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
  align-items: center;
}

.contact-copy {
  max-width: 760px;
}

.contact-copy p:last-of-type {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 800;
  background: #0f172a;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.contact-email:hover {
  background: #1e293b;
}

.wechat-card {
  width: 100%;
  margin: 0;
  padding: 16px 16px 14px;
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.wechat-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
}

.wechat-card figcaption {
  margin-top: 12px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.product-page {
  background: #f6f8fb;
}

.product-header {
  color: #f8fafc;
}

.product-hero {
  position: relative;
  min-height: 720px;
  padding: 132px 0 70px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 14%, rgba(59, 130, 246, 0.2), transparent 34%),
    linear-gradient(135deg, #08111f 0%, #0f172a 56%, #111827 100%);
}

.product-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(246, 248, 251, 0.98));
  content: "";
  pointer-events: none;
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.product-hero-copy {
  min-width: 0;
}

.product-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(248, 250, 252, 0.78);
  font-size: clamp(17px, 2vw, 22px);
}

.product-hero-shot {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.product-hero-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.data-theme {
  --accent: var(--cyan);
}

.agent-theme {
  --accent: var(--blue);
}

.buddy-theme {
  --accent: var(--green);
}

.data-theme .eyebrow,
.data-theme .section-kicker,
.data-theme + .product-strip strong {
  color: #67e8f9;
}

.agent-theme .eyebrow,
.agent-theme .section-kicker,
.agent-theme + .product-strip strong {
  color: #93c5fd;
}

.buddy-theme .eyebrow,
.buddy-theme .section-kicker,
.buddy-theme + .product-strip strong {
  color: #86efac;
}

.product-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.strip-grid div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--soft);
}

.strip-grid div:last-child {
  border-right: 0;
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.2;
}

.strip-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

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

.capability-grid article,
.usecase-grid article {
  min-height: 230px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 8px;
}

.capability-grid span {
  display: inline-grid;
  width: 38px;
  height: 30px;
  place-items: center;
  margin-bottom: 30px;
  background: #eef4ff;
  border-radius: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.capability-grid h3,
.usecase-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.capability-grid p,
.usecase-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.product-flow-section {
  background: #ffffff;
}

.product-flow-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 52px;
  align-items: start;
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: product-step;
}

.timeline-list li {
  position: relative;
  min-height: 88px;
  padding: 18px 18px 18px 68px;
  background: #f8fafc;
  border: 1px solid var(--soft);
  border-radius: 8px;
  counter-increment: product-step;
}

.timeline-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: #0f172a;
  border-radius: 8px;
  color: #ffffff;
  content: counter(product-step, decimal-leading-zero);
  font-size: 11px;
  font-weight: 900;
}

.timeline-list strong,
.timeline-list span {
  display: block;
}

.timeline-list strong {
  color: var(--ink);
  font-size: 17px;
}

.timeline-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.screenshot-section {
  background: #eef3f8;
}

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

.screenshot-grid figure {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

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

.screenshot-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  background: #f8fafc;
}

.screenshot-grid figcaption {
  padding: 12px 14px 14px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.usecase-section {
  background: #ffffff;
}

.site-footer {
  padding: 34px 0;
  background: #080d18;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(248, 250, 252, 0.62);
}

.site-footer a {
  color: rgba(248, 250, 252, 0.78);
}

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

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img:nth-child(2),
  .hero-media img:nth-child(3) {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .product-card,
  .featured-product,
  .showcase-grid,
  .delivery-grid,
  .contact-grid,
  .product-hero-grid,
  .product-flow-grid {
    grid-template-columns: 1fr;
  }

  .wechat-card {
    max-width: 260px;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-line {
    width: 1px;
    height: 24px;
    margin: 0 auto;
  }

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

  .product-hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

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

  .strip-grid div:nth-child(2) {
    border-right: 0;
  }

  .strip-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--soft);
  }

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

@media (max-width: 640px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .mobile-nav {
    top: 64px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 90vh;
    padding: 96px 18px 38px;
  }

  .hero-content,
  .container {
    width: min(100%, calc(100vw - 36px));
  }

  .hero h1 {
    font-size: clamp(28px, 10vw, 48px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-metrics,
  .scenario-grid,
  .strip-grid,
  .capability-grid,
  .usecase-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid div,
  .strip-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--soft);
  }

  .strip-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .product-hero {
    padding: 94px 0 64px;
  }

  .product-hero-copy h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .product-hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .product-hero-shot img {
    aspect-ratio: 4 / 3;
  }

  .product-card {
    padding: 14px;
  }

  .product-shot img {
    min-height: 220px;
  }

  .flow-node,
  .scenario-grid article,
  .capability-grid article,
  .usecase-grid article {
    min-height: auto;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
