:root {
  --ink: #f3f3e0;
  --muted: rgba(243, 243, 224, 0.68);
  --soft: rgba(243, 243, 224, 0.1);
  --line: rgba(243, 243, 224, 0.18);
  --navy: #13243b;
  --navy-2: #1c3352;
  --graphite: #08111e;
  --cyan: #6f8fc3;
  --amber: #d9a066;
  --green: #a6bce6;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(19, 36, 59, 0.98), rgba(8, 17, 30, 0.98) 42%, #070e19 100%),
    var(--graphite);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(243, 243, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 243, 224, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 12px;
  color: var(--navy);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.nav-open .site-header {
  background: rgba(19, 36, 59, 0.92);
  border-color: rgba(243, 243, 224, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 48px, var(--max));
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 142px;
  min-width: 142px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  display: block;
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: rgba(243, 243, 224, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 26px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 166px;
}

.okkta-link {
  color: var(--ink);
  border-bottom: 1px solid rgba(243, 243, 224, 0.38);
  font-size: 13px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(243, 243, 224, 0.06);
  border: 1px solid rgba(243, 243, 224, 0.2);
  border-radius: var(--radius);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(90deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px 0 88px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 243, 224, 0.38), transparent);
}

.hero-grid {
  width: min(100% - 48px, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: 70px;
  margin: 0 auto;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900;
}

h2 {
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 900;
}

h3 {
  font-size: 32px;
  font-weight: 900;
}

.lead {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy);
  background: var(--ink);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(243, 243, 224, 0.04);
  border: 1px solid rgba(243, 243, 224, 0.22);
}

.hero-note {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(243, 243, 224, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.hero-product {
  perspective: 1200px;
}

.product-frame {
  position: relative;
  padding: 18px;
  background: linear-gradient(145deg, rgba(243, 243, 224, 0.11), rgba(111, 143, 195, 0.08));
  border: 1px solid rgba(243, 243, 224, 0.18);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transform: rotateX(4deg) rotateY(-6deg);
  transform-style: preserve-3d;
}

.product-frame::before,
.product-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(111, 143, 195, 0.2);
  border-radius: inherit;
  inset: 18px -16px -18px 16px;
  z-index: -1;
}

.product-frame::after {
  inset: 38px -30px -38px 30px;
  opacity: 0.5;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  color: rgba(243, 243, 224, 0.48);
  background: rgba(19, 36, 59, 0.72);
  border: 1px solid rgba(243, 243, 224, 0.08);
  border-radius: 8px;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(243, 243, 224, 0.34);
}

.window-bar strong {
  margin-left: auto;
  font-size: 12px;
}

.product-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 6px 18px;
}

.product-topline small,
.report-panel span,
.module-row span,
.module-detail small {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.product-topline strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

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

.report-panel {
  min-height: 118px;
  padding: 18px;
  background: rgba(19, 36, 59, 0.72);
  border: 1px solid rgba(243, 243, 224, 0.12);
  border-radius: 10px;
}

.report-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.28;
}

.panel-wide {
  grid-column: 1 / -1;
}

.chart-line {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 76px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(243, 243, 224, 0.18);
}

.chart-line i {
  display: block;
  flex: 1;
  min-width: 14px;
  background: linear-gradient(180deg, var(--amber), rgba(111, 143, 195, 0.58));
  border-radius: 8px 8px 0 0;
}

.chart-line i:nth-child(1) { height: 36%; }
.chart-line i:nth-child(2) { height: 58%; }
.chart-line i:nth-child(3) { height: 46%; }
.chart-line i:nth-child(4) { height: 78%; }
.chart-line i:nth-child(5) { height: 66%; }
.chart-line i:nth-child(6) { height: 88%; }

.progress {
  height: 8px;
  margin-top: 20px;
  background: rgba(243, 243, 224, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress i {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--cyan);
}

.alert-panel {
  border-color: rgba(217, 160, 102, 0.46);
}

.ai-panel {
  grid-column: 1 / -1;
  background: rgba(111, 143, 195, 0.12);
}

.section {
  padding: 116px 0;
}

.section-quiet {
  background: rgba(243, 243, 224, 0.035);
}

.split,
.conversion-layout,
.modules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.section-copy p,
.section-heading p,
.closing-panel p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.intelligence-stack {
  display: grid;
  gap: 1px;
  background: rgba(243, 243, 224, 0.14);
  border: 1px solid rgba(243, 243, 224, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.intelligence-stack article {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
  background: rgba(28, 51, 82, 0.72);
}

.intelligence-stack span {
  color: var(--amber);
  font-weight: 900;
}

.intelligence-stack strong {
  font-size: 18px;
}

.intelligence-stack p {
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.74fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 52px;
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 430px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(19, 36, 59, 0.9), rgba(8, 17, 30, 0.72)),
    var(--navy);
  border: 1px solid rgba(243, 243, 224, 0.14);
  border-radius: 14px;
  overflow: hidden;
}

.flow-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(243, 243, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 243, 224, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.flow-side {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.flow-side span {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: rgba(243, 243, 224, 0.82);
  background: rgba(243, 243, 224, 0.06);
  border: 1px solid rgba(243, 243, 224, 0.18);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.flow-side:first-child span::after,
.flow-side:last-child span::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  background: rgba(243, 243, 224, 0.24);
}

.flow-side:first-child span::after {
  right: -34px;
}

.flow-side:last-child span::before {
  left: -34px;
}

.flow-core {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  color: var(--navy);
  text-align: center;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.flow-core::before,
.flow-core::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(243, 243, 224, 0.2);
  border-radius: 50%;
}

.flow-core::before { inset: -28px; }
.flow-core::after { inset: -56px; }

.flow-core img {
  position: absolute;
  width: 118px;
  height: auto;
  opacity: 0.17;
}

.flow-core strong {
  position: relative;
  z-index: 1;
  max-width: 130px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
}

.modules-section {
  background: rgba(243, 243, 224, 0.96);
  color: var(--navy);
}

.modules-section .section-copy p,
.module-detail p {
  color: rgba(19, 36, 59, 0.68);
}

.module-list {
  border: 1px solid rgba(19, 36, 59, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.module-row {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(19, 36, 59, 0.12);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.module-row:last-child {
  border-bottom: 0;
}

.module-row span {
  color: var(--navy);
}

.module-row strong {
  font-size: 18px;
}

.module-row:hover,
.module-row:focus-visible,
.module-row.is-active {
  color: var(--ink);
  background: var(--navy);
  outline: 0;
}

.module-row:hover span,
.module-row:focus-visible span,
.module-row.is-active span {
  color: var(--amber);
}

.module-detail {
  position: sticky;
  top: 112px;
  min-height: 310px;
  padding: 34px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(19, 36, 59, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(19, 36, 59, 0.12);
}

.module-detail h3 {
  margin-top: 18px;
  font-size: 38px;
}

.module-detail p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
}

.conversion-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  align-items: center;
}

.conversion-visual {
  padding: 34px;
  background: rgba(243, 243, 224, 0.06);
  border: 1px solid rgba(243, 243, 224, 0.14);
  border-radius: 14px;
}

.audit-line {
  position: relative;
  display: grid;
  gap: 18px;
}

.audit-line::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 17px;
  width: 1px;
  background: rgba(243, 243, 224, 0.2);
}

.audit-line span {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 0 18px 0 54px;
  background: rgba(19, 36, 59, 0.6);
  border: 1px solid rgba(243, 243, 224, 0.14);
  border-radius: var(--radius);
  font-weight: 800;
}

.audit-line span::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: var(--navy);
}

.audit-output {
  margin-top: 28px;
  padding: 24px;
  color: var(--navy);
  background: var(--ink);
  border-radius: var(--radius);
}

.audit-output strong {
  font-size: 22px;
}

.audit-output p {
  margin-top: 6px;
  color: rgba(19, 36, 59, 0.68);
}

.tech-section {
  border-top: 1px solid rgba(243, 243, 224, 0.1);
  border-bottom: 1px solid rgba(243, 243, 224, 0.1);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(243, 243, 224, 0.14);
  border: 1px solid rgba(243, 243, 224, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.tech-grid span {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(28, 51, 82, 0.72);
  font-weight: 900;
  text-align: center;
}

.closing-section {
  padding: 116px 0;
}

.closing-panel {
  padding: 58px;
  background:
    linear-gradient(135deg, rgba(28, 51, 82, 0.94), rgba(19, 36, 59, 0.98)),
    var(--navy);
  border: 1px solid rgba(243, 243, 224, 0.16);
  border-radius: 16px;
}

.closing-panel img {
  width: 180px;
  height: auto;
  margin-bottom: 46px;
}

.closing-panel h2 {
  max-width: 880px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(243, 243, 224, 0.12);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: rgba(243, 243, 224, 0.62);
  font-size: 14px;
}

.footer-grid p {
  max-width: 650px;
  line-height: 1.5;
}

.footer-grid a {
  color: var(--ink);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.legal-body {
  min-height: 100vh;
  color: var(--navy);
  background: var(--ink);
}

.legal-topbar {
  border-bottom: 1px solid rgba(19, 36, 59, 0.12);
  background: rgba(243, 243, 224, 0.94);
}

.legal-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-brand {
  font-size: 24px;
  font-weight: 900;
}

.legal-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(19, 36, 59, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.legal-page {
  padding: 78px 0 84px;
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
}

.legal-document h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.95;
}

.legal-document .updated {
  margin: 0 0 42px;
  color: rgba(19, 36, 59, 0.64);
  font-weight: 700;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid rgba(19, 36, 59, 0.14);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.08;
}

.legal-section p,
.legal-section li {
  color: rgba(19, 36, 59, 0.78);
  font-size: 16px;
  line-height: 1.72;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-note {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(19, 36, 59, 0.16);
  border-radius: var(--radius);
  color: rgba(19, 36, 59, 0.72);
  background: rgba(19, 36, 59, 0.04);
}

.legal-body .site-footer {
  border-top-color: rgba(19, 36, 59, 0.14);
}

.legal-body .footer-grid {
  color: rgba(19, 36, 59, 0.68);
}

.legal-body .footer-grid a {
  color: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.custom-cursor {
  --cursor-color: var(--amber);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 28px;
  height: 28px;
  border: 2px solid var(--cursor-color);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(19, 36, 59, 0.05);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition: opacity 140ms ease, transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.custom-cursor.is-active {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.custom-cursor.is-light {
  --cursor-color: var(--navy);
}

.custom-cursor.is-pressed {
  background: rgba(217, 160, 102, 0.18);
  transform: translate3d(-50%, -50%, 0) scale(1.35);
}

.custom-cursor.is-light.is-pressed {
  background: rgba(19, 36, 59, 0.12);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .conversion-layout,
  .modules-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .flow-board {
    grid-template-columns: 1fr;
  }

  .flow-core {
    margin: 32px auto;
  }

  .flow-side:first-child span::after,
  .flow-side:last-child span::before {
    display: none;
  }

  .module-detail {
    position: static;
  }

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

@media (max-width: 760px) {
  .nav-shell,
  .container,
  .hero-grid {
    width: min(100% - 32px, var(--max));
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    width: 116px;
    min-width: 116px;
  }

  .brand img {
    width: 116px;
  }

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

  .okkta-link {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(19, 36, 59, 0.98);
    border: 1px solid rgba(243, 243, 224, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 74px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 34px;
  }

  .lead,
  .section-copy p,
  .section-heading p,
  .closing-panel p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .product-frame {
    padding: 14px;
    transform: none;
  }

  .product-frame::before,
  .product-frame::after {
    display: none;
  }

  .product-topline {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .panel-wide,
  .ai-panel {
    grid-column: auto;
  }

  .section {
    padding: 78px 0;
  }

  .intelligence-stack article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-board {
    min-height: auto;
    padding: 24px;
  }

  .flow-core {
    width: 172px;
    height: 172px;
  }

  .flow-core::before { inset: -20px; }
  .flow-core::after { inset: -40px; }

  .module-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 92px;
    padding: 18px;
  }

  .module-detail {
    padding: 26px;
  }

  .module-detail h3 {
    font-size: 30px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid span {
    min-height: 70px;
  }

  .closing-section {
    padding: 78px 0;
  }

  .closing-panel {
    padding: 34px 24px;
  }

  .closing-panel img {
    width: 132px;
    margin-bottom: 34px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links,
  .legal-nav,
  .legal-nav nav {
    justify-content: flex-start;
  }

  .legal-nav {
    display: grid;
    padding: 18px 0;
  }
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

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