:root {
  color-scheme: dark;
  --bg: #0f1115;
  --bg-2: #17191f;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.105);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.075);
  --text: #f7f8fb;
  --muted: #bec5d2;
  --subtle: #8f98a8;
  --blue: #2b8cff;
  --cyan: #25d5f2;
  --green: #62e56f;
  --purple: #8d63ff;
  --orange: #ff7b38;
  --yellow: #f4d947;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --page-pad: clamp(18px, 5vw, 76px);
  font-family: "Segoe UI", "Segoe UI Variable", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 10%, rgba(43, 140, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 15% 18%, rgba(37, 213, 242, 0.14), transparent 26rem),
    radial-gradient(circle at 72% 78%, rgba(98, 229, 111, 0.11), transparent 28rem),
    var(--bg);
  font-size: 15px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

#liquid-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 var(--page-pad);
  background: rgba(15, 17, 21, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 118px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.admin-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.admin-link:hover,
.site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a.active {
  font-weight: 700;
}

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

main {
  padding: 0;
}

.hero-premium,
.statement-band,
.capability-section,
.process-section,
.cta-panel,
.section-block,
.page-hero {
  width: 100%;
  margin: 0;
}

.hero-premium {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: 62px var(--page-pad) 78px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe8ff;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 22px rgba(37, 213, 242, 0.8);
}

.eyebrow {
  margin: 0 0 14px;
  color: #9feefa;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7.7vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 4.6vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.06rem;
  line-height: 1.35;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-content p:not(.hero-kicker) {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #071012;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--yellow));
  box-shadow: 0 18px 42px rgba(37, 213, 242, 0.18);
}

.button.secondary,
.admin-link {
  border-color: var(--line);
  color: #eef4ff;
  background: rgba(255, 255, 255, 0.055);
}

.button.compact {
  min-height: 38px;
  padding: 0 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.hero-product,
.statement-band,
.capability-card,
.process-lanes,
.cta-panel,
.app-card,
.platform-table,
.stack-list,
.code-card,
.lead-form,
.contact-card,
.chat-panel,
.site-footer {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-product {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: -30% -18% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 213, 242, 0.38), transparent 68%);
}

.product-topline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #69717f;
}

.product-topline small {
  color: #9ff7b0;
}

.product-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 520px;
}

.product-sidebar {
  padding: 18px;
  border-right: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.16);
}

.product-sidebar img {
  width: 96px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 24px;
}

.product-sidebar nav {
  display: grid;
  gap: 8px;
}

.product-sidebar button {
  width: 100%;
  border: 0;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.product-sidebar button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.product-sidebar button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.product-main {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
}

.product-main.is-swapping .product-hero-card,
.product-main.is-swapping .product-cards article {
  animation: studioSwap 260ms ease both;
}

.product-hero-card {
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 42%, rgba(98, 229, 111, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.product-hero-card small,
.product-hero-card span {
  display: block;
  color: var(--muted);
}

.product-hero-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
}

.pulse-orbit {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(37, 213, 242, 0.9), transparent 13%),
    radial-gradient(circle, rgba(98, 229, 111, 0.18), transparent 58%);
}

.pulse-orbit span {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.pulse-orbit span:nth-child(2) {
  inset: 28%;
}

.pulse-orbit span:nth-child(3) {
  inset: 42%;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-cards article {
  min-height: 122px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.15);
}

@keyframes studioSwap {
  0% {
    opacity: 0.65;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-cards svg {
  color: #9feefa;
  margin-bottom: 16px;
}

.product-cards strong,
.product-cards span {
  display: block;
}

.product-cards span {
  margin-top: 5px;
  color: var(--subtle);
}

.statement-band {
  margin-top: 0;
  padding: clamp(34px, 6vw, 70px) var(--page-pad);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(43, 140, 255, 0.18), rgba(98, 229, 111, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.statement-band p {
  margin-bottom: 10px;
  color: #9feefa;
  font-weight: 800;
}

.statement-band h2 {
  max-width: 1020px;
  margin-bottom: 0;
}

.case-section {
  width: 100%;
  margin: 0;
  padding: 28px var(--page-pad) 0;
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: 440px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 28%, rgba(141, 99, 255, 0.22), transparent 34%),
    radial-gradient(circle at 68% 74%, rgba(37, 213, 242, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.case-panel h2 {
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.case-panel p {
  max-width: 650px;
}

.case-visual {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.case-visual span {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 24px 60px rgba(37, 213, 242, 0.16);
}

.case-visual span:nth-child(1) {
  left: 12%;
  top: 18%;
  width: 58%;
  height: 26%;
}

.case-visual span:nth-child(2) {
  right: 12%;
  top: 44%;
  width: 52%;
  height: 22%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.case-visual span:nth-child(3) {
  left: 18%;
  bottom: 14%;
  width: 66%;
  height: 18%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.capability-section,
.process-section,
.section-block {
  padding: 96px var(--page-pad) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 28px;
}

.section-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #9feefa;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
}

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

.capability-card,
.app-card {
  min-height: 242px;
  padding: 22px;
  border-radius: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.capability-card:hover,
.app-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.capability-card.wide {
  grid-column: span 2;
}

.capability-card.dark {
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 80% 18%, rgba(141, 99, 255, 0.22), transparent 34%),
    rgba(4, 5, 8, 0.45);
}

.capability-card.dark a {
  color: #9feefa;
  font-weight: 800;
}

.fluent-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 15px;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.fluent-icon svg {
  width: 25px;
  height: 25px;
}

.fluent-icon.blue { background: linear-gradient(135deg, #20c5f5, #2256d9); }
.fluent-icon.green { background: linear-gradient(135deg, #72e266, #0d8954); }
.fluent-icon.purple { background: linear-gradient(135deg, #cf63f0, #6743df); }
.fluent-icon.orange { background: linear-gradient(135deg, #f5d94a, #ff6a2a); }
.fluent-icon.cyan { background: linear-gradient(135deg, #4fe9ff, #1478c8); }

.process-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 28px;
  background: var(--line-soft);
}

.process-lanes div {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.048);
}

.process-lanes span {
  display: block;
  margin-bottom: 72px;
  color: #9feefa;
  font-weight: 800;
}

.process-lanes strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.35;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 96px;
  padding: clamp(26px, 5vw, 54px);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(37, 213, 242, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.055);
}

.cta-panel div {
  max-width: 820px;
}

.page-hero {
  padding: 86px var(--page-pad) 42px;
}

.premium-page {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: end;
  padding-bottom: 72px;
  overflow: hidden;
}

.premium-page::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(42vw, 520px);
  aspect-ratio: 1.7;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 38%, rgba(37, 213, 242, 0.25), transparent 30%),
    radial-gradient(circle at 74% 48%, rgba(98, 229, 111, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  z-index: -1;
}

.page-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.14rem;
}

.feature-grid,
.app-grid-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.app-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.app-card.large h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.split-showcase,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.stack-list,
.platform-table {
  display: grid;
  overflow: hidden;
  border-radius: 26px;
  background: var(--line-soft);
}

.stack-list div,
.table-row {
  display: grid;
  grid-template-columns: 64px 190px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.048);
}

.table-row {
  grid-template-columns: 180px 240px 1fr;
}

.table-row.head {
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.085);
}

.stack-list span {
  color: #9feefa;
  font-weight: 900;
}

.stack-list p {
  margin-bottom: 0;
}

.code-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.36);
}

pre {
  margin: 0;
  white-space: pre-wrap;
}

code {
  color: #b7f4ff;
}

.lead-form,
.contact-card {
  padding: 24px;
  border-radius: 26px;
}

.lead-form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 8px;
  color: #f2f5fb;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 13px 14px;
  color: #fff;
  outline: none;
  background: rgba(0, 0, 0, 0.24);
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(37, 213, 242, 0.16);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  width: 100%;
  margin: 96px 0 0;
  padding: 28px var(--page-pad);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}

.site-footer img {
  width: 104px;
  height: 48px;
  object-fit: contain;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 12px 22px;
  color: var(--muted);
}

.site-footer a:hover {
  color: #fff;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #071012;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--yellow));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(390px, calc(100vw - 36px));
  height: min(620px, calc(100svh - 112px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(22, 24, 30, 0.96);
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.chat-panel small {
  display: block;
  color: var(--subtle);
}

.chat-panel header button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  overflow-y: auto;
}

.message {
  max-width: 88%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #f2f5fb;
  background: rgba(255, 255, 255, 0.06);
}

.message.own {
  align-self: flex-end;
  color: #071012;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.message strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
}

.message p {
  margin: 0;
  white-space: pre-wrap;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  grid-column: 1 / -1;
}

.chat-form textarea {
  min-height: 46px;
  resize: none;
}

.chat-form button {
  border: 0;
  border-radius: 14px;
  padding: 0 14px;
  color: #071012;
  font-weight: 900;
  cursor: pointer;
  background: var(--yellow);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-premium,
  .case-panel,
  .split-showcase,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-body {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    display: none;
  }

  .capability-grid,
  .feature-grid,
  .app-grid-section,
  .process-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-product {
    max-width: 820px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-premium {
    min-height: auto;
    padding-top: 42px;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .table-row,
  .stack-list div {
    grid-template-columns: 1fr;
  }

  .premium-page::after {
    opacity: 0.48;
    width: 76vw;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 16px;
  }

  .header-actions .admin-link {
    display: none;
  }

  .site-logo img {
    width: 96px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .product-main {
    padding: 14px;
  }

  .hero-product {
    border-radius: 22px;
  }

  .product-topline {
    grid-template-columns: auto 1fr;
  }

  .product-topline small {
    grid-column: 1 / -1;
  }

  .product-hero-card,
  .product-cards,
  .capability-grid,
  .feature-grid,
  .app-grid-section,
  .process-lanes {
    grid-template-columns: 1fr;
  }

  .capability-card.wide,
  .app-card.large {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    width: 100%;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
