@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,300..800&display=swap");

:root {
  --ink: #f4f7f6;
  --muted: #a6b0b3;
  --faint: #6f7a80;
  --deep: #050609;
  --base: #090b0f;
  --surface: #0f1218;
  --raised: #141821;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --purple: #440154;
  --blue: #3b528b;
  --teal: #21918c;
  --green: #5ec962;
  --yellow: #dce74f;
  --display: "Roboto Flex", "Inter", "SF Pro Display", system-ui, sans-serif;
  --body: "Roboto Flex", "Inter", "SF Pro Text", system-ui, sans-serif;
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--deep);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 9% 3%, rgba(59, 82, 139, 0.13), transparent 28rem),
    radial-gradient(circle at 94% 12%, rgba(33, 145, 140, 0.09), transparent 30rem),
    var(--deep);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--deep);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

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

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

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(5, 6, 9, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  width: min(1320px, calc(100% - 48px));
  height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  background: #07101f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.brand-copy strong {
  color: white;
  font-weight: 720;
}

.brand-copy span {
  color: var(--muted);
  font-weight: 380;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.desktop-nav a,
.site-footer nav a {
  transition: color 160ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.button-small {
  min-height: 38px;
  padding-inline: 16px;
  border-radius: 8px;
  font-size: 12px;
}

.button-primary {
  color: #04100e;
  background: linear-gradient(115deg, #65d6b3, #8bd75f);
  box-shadow: 0 18px 45px -18px rgba(94, 201, 98, 0.75);
}

.button-primary:hover {
  box-shadow: 0 22px 52px -18px rgba(94, 201, 98, 0.95);
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-light {
  color: var(--deep);
  background: white;
  box-shadow: 0 18px 50px -20px rgba(255, 255, 255, 0.85);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  padding: 172px 0 64px;
  min-height: 100vh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 900px;
  height: 600px;
  transform: translateX(-12%);
  background: radial-gradient(ellipse, rgba(33, 145, 140, 0.11), transparent 67%);
  filter: blur(15px);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(580px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #85d9c4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(94, 201, 98, 0.1), 0 0 18px rgba(94, 201, 98, 0.65);
}

.hero h1 {
  max-width: 720px;
  margin: 25px 0 28px;
  font-size: clamp(58px, 6.6vw, 92px);
  font-weight: 640;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(92deg, #8ce0c7 3%, #6dce8e 50%, #d4df5a 98%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 620px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof strong {
  color: #d9dfdd;
  font-size: 12px;
  font-weight: 670;
}

.hero-proof span {
  color: var(--faint);
  font-size: 11px;
}

.product-stage {
  position: relative;
  perspective: 1400px;
}

.stage-glow {
  position: absolute;
  inset: 12% 2% -10% 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 145, 140, 0.2), rgba(59, 82, 139, 0.06) 42%, transparent 70%);
  filter: blur(32px);
}

.app-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: #0d1016;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  transform: rotateY(-3deg) rotateX(1deg);
}

.app-titlebar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #11141b;
  color: var(--faint);
  font-size: 9px;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dfe5e3;
  font-weight: 650;
}

.mini-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: #07100e;
  background: linear-gradient(145deg, var(--teal), var(--green));
  font-size: 11px;
  font-weight: 850;
}

.window-actions {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.window-actions span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444b55;
}

.app-body {
  min-height: 520px;
  display: grid;
  grid-template-columns: 112px 1fr;
}

.app-sidebar {
  padding: 18px 9px;
  border-right: 1px solid var(--line);
  background: #0a0c11;
}

.sidebar-label {
  margin: 0 8px 11px;
  color: #555e69;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 3px 0;
  padding: 8px 9px;
  border-radius: 6px;
  color: #9aa3ad;
  font-size: 8px;
  font-weight: 560;
}

.sidebar-item.active {
  color: #b8eee1;
  background: rgba(33, 145, 140, 0.13);
  box-shadow: inset 0 0 0 1px rgba(33, 145, 140, 0.18);
}

.sidebar-item.muted {
  color: #616a74;
}

.product-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.product-dot.blue,
.step-icon.blue { background: var(--blue); }
.product-dot.green,
.step-icon.green { background: var(--green); }
.product-dot.purple { background: #835598; }
.product-dot.teal,
.step-icon.teal { background: var(--teal); }
.step-icon.yellow { background: var(--yellow); }

.sidebar-separator {
  height: 1px;
  margin: 13px 7px;
  background: var(--line);
}

.app-content {
  padding: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    #0d1016;
  background-size: 30px 30px;
}

.content-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.overline {
  color: #5abdb7;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.content-heading h2 {
  margin: 5px 0 0;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.run-pill,
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(94, 201, 98, 0.22);
  border-radius: 20px;
  color: #8bd68c;
  background: rgba(94, 201, 98, 0.07);
  font-size: 7px;
  font-weight: 650;
}

.run-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mini-metric {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.mini-metric span,
.mini-metric small {
  display: block;
  color: #717b86;
  font-size: 7px;
}

.mini-metric strong {
  display: block;
  margin: 5px 0 2px;
  color: #ebefee;
  font-size: 16px;
  font-weight: 620;
}

.chart-card {
  margin-top: 10px;
  padding: 14px 14px 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(3, 5, 8, 0.46);
}

.chart-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.chart-top span,
.chart-top strong {
  display: block;
  font-size: 7px;
}

.chart-top span { color: #68727d; }
.chart-top strong { margin-top: 2px; color: #dfe4e3; font-size: 9px; }

.legend {
  display: flex;
  gap: 8px;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.legend i {
  width: 7px;
  height: 2px;
  border-radius: 2px;
}

.legend .gross { background: #4a659c; }
.legend .net { background: #55c19d; }

.chart {
  position: relative;
  height: 154px;
  margin-top: 8px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-gridline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.045);
}

.chart-gridline.g1 { top: 25%; }
.chart-gridline.g2 { top: 50%; }
.chart-gridline.g3 { top: 75%; }

.distribution {
  position: absolute;
  left: 4%;
  right: 5%;
  bottom: 0;
  height: 90%;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform-origin: bottom;
}

.gross-dist {
  opacity: 0.45;
  background: linear-gradient(180deg, rgba(59, 82, 139, 0.62), rgba(59, 82, 139, 0.06));
  clip-path: polygon(0 100%, 5% 97%, 12% 87%, 18% 69%, 24% 44%, 31% 21%, 38% 9%, 46% 5%, 55% 13%, 65% 32%, 73% 57%, 81% 77%, 90% 91%, 100% 98%, 100% 100%);
}

.net-dist {
  left: 12%;
  right: 18%;
  height: 76%;
  opacity: 0.78;
  background: linear-gradient(180deg, rgba(79, 195, 156, 0.74), rgba(33, 145, 140, 0.04));
  clip-path: polygon(0 100%, 4% 95%, 11% 79%, 19% 49%, 27% 22%, 36% 8%, 46% 3%, 57% 12%, 67% 33%, 76% 59%, 85% 82%, 94% 95%, 100% 99%, 100% 100%);
}

.var-line {
  position: absolute;
  top: 8%;
  bottom: 0;
  left: 83%;
  width: 1px;
  border-left: 1px dashed rgba(220, 231, 79, 0.62);
}

.var-line span {
  position: absolute;
  top: 0;
  left: 5px;
  width: max-content;
  color: #cbd46c;
  font-size: 6px;
}

.audit-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(33, 145, 140, 0.13);
  border-radius: 8px;
  background: rgba(33, 145, 140, 0.045);
}

.audit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #9ce0ce;
  background: rgba(33, 145, 140, 0.18);
  font-size: 8px;
}

.audit-line div {
  flex: 1;
}

.audit-line strong,
.audit-line small {
  display: block;
  font-size: 7px;
}

.audit-line strong { color: #cbd6d3; }
.audit-line small { margin-top: 1px; color: #66727b; }
.audit-time { color: #5c6871; font-size: 6px; }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 188px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(17, 20, 27, 0.91);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.floating-card-top {
  top: 22%;
  right: -7%;
  animation: float 5.5s ease-in-out infinite;
}

.floating-card-bottom {
  left: -7%;
  bottom: 10%;
  animation: float 6.5s 1s ease-in-out infinite;
}

.float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: #7ed1c5;
  background: rgba(33, 145, 140, 0.12);
}

.float-icon.ai-icon {
  color: #c6a8d1;
  background: rgba(131, 85, 152, 0.13);
}

.floating-card strong,
.floating-card small {
  display: block;
  font-size: 8px;
}

.floating-card small {
  margin-top: 2px;
  color: #6f7983;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.trust-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  margin-top: 92px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  color: #687177;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.trust-ribbon i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal);
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-intro {
  margin-bottom: 58px;
}

.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.section-intro h2,
.performance-copy h2,
.reinsurance-copy h2,
.intelligence-copy h2,
.reporting-copy h2 {
  margin: 15px 0 0;
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 570;
}

.section-intro p,
.performance-copy > p,
.reinsurance-copy > p,
.intelligence-copy > p,
.reporting-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.split-intro > p {
  margin-bottom: 2px;
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered p {
  max-width: 650px;
  margin: 22px auto 0;
}

.section-suite {
  background:
    linear-gradient(to bottom, transparent, rgba(15, 18, 24, 0.7) 16%, rgba(15, 18, 24, 0.7) 84%, transparent);
}

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

.suite-card {
  position: relative;
  min-height: 500px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: transform 220ms ease, border-color 220ms ease;
}

.suite-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  bottom: -120px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.12;
}

.suite-datuak::before { background: var(--blue); }
.suite-reserba::before { background: var(--green); }
.suite-kalibra::before { background: #965aa5; }
.suite-simulat::before { background: var(--teal); }

.suite-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.suite-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.suite-number {
  color: #5c666f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.suite-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 15px;
}

.suite-datuak .suite-icon { color: #7492d0; background: rgba(59, 82, 139, 0.13); }
.suite-reserba .suite-icon { color: #8ed88f; background: rgba(94, 201, 98, 0.11); }
.suite-kalibra .suite-icon { color: #c89ed4; background: rgba(131, 85, 152, 0.13); }
.suite-simulat .suite-icon { color: #80d7cc; background: rgba(33, 145, 140, 0.13); }

.suite-role,
.step-label,
.response-label {
  color: #6f7a83;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suite-card h3 {
  margin: 8px 0 17px;
  font-size: 36px;
  font-weight: 580;
}

.suite-card p {
  min-height: 104px;
  color: var(--muted);
  font-size: 14px;
}

.suite-card ul {
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.suite-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 15px;
  color: #808a91;
  font-size: 12px;
}

.suite-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

.card-signal,
.reserve-spark,
.fit-curve,
.sim-bars {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 24px;
  height: 48px;
  opacity: 0.52;
}

.card-signal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-signal span {
  flex: 1;
  height: 2px;
  background: #5774ae;
}

.card-signal span::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -2px;
  margin-left: 70%;
  border-radius: 50%;
  background: #7492d0;
}

.reserve-spark,
.sim-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.reserve-spark i,
.sim-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(94, 201, 98, 0.16), rgba(94, 201, 98, 0.8));
}

.sim-bars i {
  background: linear-gradient(to top, rgba(33, 145, 140, 0.13), rgba(33, 145, 140, 0.86));
}

.fit-curve {
  border-bottom: 1px solid rgba(200, 158, 212, 0.22);
}

.fit-curve span {
  position: absolute;
  inset: 3px 0 0;
  border-top: 2px solid #a66eb5;
  border-radius: 50% 50% 0 0;
  transform: skewX(-20deg);
}

.fit-curve i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d1aad9;
}

.fit-curve i:nth-of-type(1) { left: 11%; bottom: 9px; }
.fit-curve i:nth-of-type(2) { left: 29%; bottom: 27px; }
.fit-curve i:nth-of-type(3) { left: 48%; bottom: 39px; }
.fit-curve i:nth-of-type(4) { left: 68%; bottom: 30px; }
.fit-curve i:nth-of-type(5) { left: 88%; bottom: 12px; }

.section-workflow {
  overflow: hidden;
}

.workflow-canvas {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
}

.workflow-spine {
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 77px;
  width: 1px;
  background: linear-gradient(var(--blue), var(--green), var(--teal), var(--yellow));
  opacity: 0.65;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 50px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 122px;
  padding: 20px 28px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.workflow-step:first-of-type {
  border-top: 1px solid var(--line);
}

.step-index {
  color: #59626a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.step-icon {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 5px solid var(--deep);
  border-radius: 50%;
  color: #07100e;
  box-shadow: 0 0 0 1px var(--line);
  font-weight: 800;
}

.workflow-step h3 {
  margin: 4px 0 7px;
  font-size: 22px;
  font-weight: 580;
  letter-spacing: -0.03em;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.step-output {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #778188;
  background: rgba(255, 255, 255, 0.022);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.section-performance {
  background:
    radial-gradient(circle at 75% 50%, rgba(33, 145, 140, 0.1), transparent 34rem),
    rgba(15, 18, 24, 0.52);
}

.performance-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.performance-copy h2,
.intelligence-copy h2,
.reporting-copy h2 {
  margin-bottom: 27px;
}

.performance-copy > p {
  margin-bottom: 18px;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #8adcca;
  font-size: 13px;
  font-weight: 650;
}

.text-link:hover {
  color: #b9efe2;
}

.benchmark-panel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(8, 10, 14, 0.8);
  box-shadow: var(--shadow);
}

.benchmark-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 25px;
  border-bottom: 1px solid var(--line);
}

.benchmark-head span,
.benchmark-head strong {
  display: block;
}

.benchmark-head > div > span {
  color: #69747c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benchmark-head strong {
  margin-top: 5px;
  font-size: 14px;
}

.benchmark-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.benchmark-stats article {
  padding: 25px;
  border-right: 1px solid var(--line);
}

.benchmark-stats article:last-child {
  border-right: 0;
}

.benchmark-stats span {
  display: block;
  color: #6b757d;
  font-size: 9px;
}

.benchmark-stats strong {
  display: block;
  margin-top: 4px;
  color: #e6ebe9;
  font-size: 32px;
  font-weight: 520;
}

.phase-list {
  padding: 23px 25px;
}

.phase-list > div {
  display: grid;
  grid-template-columns: 114px 1fr 72px;
  align-items: center;
  gap: 13px;
  margin: 15px 0;
  font-size: 10px;
}

.phase-list span { color: #aeb6b7; }
.phase-list em { color: #68737b; font-style: normal; text-align: right; }

.phase-list i {
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
}

.phase-list b {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
}

.benchmark-note {
  display: flex;
  gap: 12px;
  padding: 16px 25px;
  border-top: 1px solid var(--line);
  color: #69737b;
  background: rgba(255, 255, 255, 0.018);
}

.benchmark-note p {
  margin: 0;
  font-size: 9px;
}

.section-reinsurance {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 45%, rgba(59, 82, 139, 0.12), transparent 30rem),
    radial-gradient(circle at 88% 55%, rgba(94, 201, 98, 0.08), transparent 32rem);
}

.section-reinsurance::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image: linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, 0.025) 50%, transparent 50.05%);
  background-size: 86px 100%;
  mask-image: linear-gradient(90deg, transparent, black 35%, black 65%, transparent);
}

.reinsurance-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.reinsurance-copy h2 {
  margin-bottom: 27px;
}

.reinsurance-copy > p {
  margin-bottom: 18px;
  font-size: 15px;
}

.contract-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 27px;
}

.contract-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(33, 145, 140, 0.2);
  border-radius: 20px;
  color: #91c9c0;
  background: rgba(33, 145, 140, 0.055);
  font-size: 9px;
  font-weight: 600;
}

.reinsurance-panel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background:
    radial-gradient(circle at 92% 8%, rgba(94, 201, 98, 0.07), transparent 18rem),
    rgba(8, 10, 14, 0.86);
  box-shadow: var(--shadow);
}

.reinsurance-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 25px;
  border-bottom: 1px solid var(--line);
}

.reinsurance-panel-head span,
.reinsurance-panel-head strong {
  display: block;
}

.reinsurance-panel-head > div > span {
  color: #69747c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reinsurance-panel-head strong {
  margin-top: 5px;
  font-size: 14px;
}

.speed-pill {
  flex: none;
  padding: 6px 10px;
  border: 1px solid rgba(220, 231, 79, 0.22);
  border-radius: 20px;
  color: #d6de72;
  background: rgba(220, 231, 79, 0.07);
  font-size: 8px;
  font-weight: 700;
}

.program-list {
  display: grid;
  gap: 9px;
  padding: 19px;
}

.program-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 102px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.022);
}

.program-row.program-current {
  border-color: rgba(33, 145, 140, 0.26);
  background: linear-gradient(110deg, rgba(33, 145, 140, 0.095), rgba(255, 255, 255, 0.018));
}

.program-index {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #78838a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.program-current .program-index {
  border-color: rgba(33, 145, 140, 0.33);
  color: #8bd6c8;
}

.program-copy small,
.program-copy strong {
  display: block;
}

.program-copy small {
  color: #68737b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-copy strong {
  margin-top: 4px;
  color: #e3e8e6;
  font-size: 13px;
}

.program-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.program-chips span {
  padding: 3px 7px;
  border-radius: 4px;
  color: #778188;
  background: rgba(255, 255, 255, 0.035);
  font-size: 7px;
}

.program-status {
  padding: 5px 8px;
  border: 1px solid rgba(33, 145, 140, 0.22);
  border-radius: 20px;
  color: #82d0c1;
  background: rgba(33, 145, 140, 0.07);
  font-size: 7px;
  font-weight: 700;
}

.program-status.ready {
  border-color: rgba(94, 201, 98, 0.2);
  color: #8ed38e;
  background: rgba(94, 201, 98, 0.06);
}

.program-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 16px 25px;
  border-top: 1px solid var(--line);
  color: #68737b;
  background: rgba(255, 255, 255, 0.018);
  font-size: 8px;
}

.program-controls span {
  position: relative;
  padding-left: 10px;
}

.program-controls span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal);
}

.section-intelligence {
  overflow: hidden;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.analyst-window {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: #0d1016;
  box-shadow: var(--shadow);
}

.analyst-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: #d7dddc;
  font-size: 12px;
  font-weight: 650;
}

.analyst-titlebar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.analyst-titlebar > span {
  color: #65bbae;
  font-size: 9px;
}

.ai-spark {
  color: #c89ed4;
}

.analyst-body {
  padding: 24px;
  background:
    radial-gradient(circle at 10% 8%, rgba(131, 85, 152, 0.08), transparent 20rem),
    #0b0e13;
}

.prompt-bubble {
  width: 76%;
  margin-left: auto;
  padding: 14px 16px;
  border-radius: 12px 12px 3px 12px;
  color: #deeeea;
  background: rgba(33, 145, 140, 0.18);
  font-size: 12px;
}

.analyst-audit {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid rgba(33, 145, 140, 0.2);
  border-radius: 11px;
  background: rgba(33, 145, 140, 0.045);
}

.audit-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 650;
}

.audit-title small {
  color: #6cc6b6;
  font-size: 8px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 13px;
}

.fact-grid div {
  padding: 11px 9px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.16);
}

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

.fact-grid span { color: #68747c; font-size: 7px; }
.fact-grid strong { margin-top: 4px; font-size: 13px; }

.response-block {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.response-block p {
  margin: 8px 0 12px;
  color: #aeb7b8;
  font-size: 11px;
  line-height: 1.65;
}

.response-lines {
  display: grid;
  gap: 6px;
}

.response-lines i {
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.055);
}

.response-lines i:nth-child(2) { width: 92%; }
.response-lines i:nth-child(3) { width: 64%; }

.confirm-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #777f87;
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
}

.confirm-strip button {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 5px;
  color: #727b83;
  background: rgba(255, 255, 255, 0.03);
  font-size: 8px;
}

.intelligence-copy > p {
  font-size: 15px;
}

.principle-list {
  display: grid;
  margin-top: 33px;
}

.principle-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.principle-list article > span {
  color: #5c676f;
  font-size: 9px;
  font-weight: 700;
}

.principle-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.principle-list p {
  margin: 0;
  color: #7f8990;
  font-size: 12px;
}

.section-reporting {
  padding-top: 30px;
}

.reporting-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 70px;
  padding: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 20%, rgba(59, 82, 139, 0.12), transparent 24rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.reporting-copy h2 {
  font-size: clamp(40px, 4.5vw, 60px);
}

.reporting-copy > p {
  font-size: 14px;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.report-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #78838a;
  font-size: 9px;
}

.report-preview {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: #0b0e13;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.report-tabs {
  display: flex;
  gap: 21px;
  padding: 14px 18px 0;
  border-bottom: 1px solid var(--line);
  color: #626d75;
  font-size: 8px;
}

.report-tabs span {
  padding-bottom: 11px;
}

.report-tabs .active {
  border-bottom: 1px solid var(--teal);
  color: #80d3c7;
}

.report-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
}

.report-heading small,
.report-heading strong {
  display: block;
}

.report-heading small { color: #657078; font-size: 7px; }
.report-heading strong { margin-top: 3px; font-size: 12px; }
.report-heading > span { color: #6abfb3; font-size: 8px; }

.report-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9px;
  padding: 0 18px 18px;
}

.donut-card,
.table-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.022);
}

.donut {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 4px auto 13px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 42%, var(--blue) 42% 73%, #8ca64c 73%);
}

.donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #101319;
}

.donut > span {
  z-index: 2;
  text-align: center;
}

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

.donut strong { font-size: 17px; }
.donut small { color: #69747c; font-size: 6px; }

.donut-legend {
  display: grid;
  gap: 6px;
}

.donut-legend span {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  align-items: center;
  gap: 5px;
  color: #69737b;
  font-size: 6px;
}

.donut-legend i {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--teal);
}

.donut-legend span:nth-child(2) i { background: var(--blue); }
.donut-legend span:nth-child(3) i { background: #8ca64c; }
.donut-legend b { color: #adb5b6; }

.table-card {
  padding: 4px 12px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.75fr;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid var(--line);
  color: #9fa8aa;
  font-size: 7px;
}

.table-row:last-child { border-bottom: 0; }
.table-row.header { min-height: 34px; color: #5f6971; font-size: 6px; }

.table-row span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.table-row i {
  width: 5px;
  height: 5px;
  border-radius: 1px;
}

.table-row .t1 { background: var(--teal); }
.table-row .t2 { background: var(--blue); }
.table-row .t3 { background: #8ca64c; }

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

.governance-card {
  padding: 28px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.024), transparent);
}

.governance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(33, 145, 140, 0.2);
  border-radius: 9px;
  color: #78cec2;
  background: rgba(33, 145, 140, 0.08);
}

.governance-card h3 {
  margin: 45px 0 13px;
  font-size: 20px;
  font-weight: 570;
  letter-spacing: -0.025em;
}

.governance-card p {
  margin: 0;
  color: #7d878e;
  font-size: 13px;
}

.cta-section {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(94, 201, 98, 0.13), transparent 34rem),
    linear-gradient(180deg, #080a0e, #060709);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1000px, 90vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(94, 201, 98, 0.5), transparent);
}

.cta-orbit {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(94, 201, 98, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
}

.orbit-one {
  top: 65px;
  width: 660px;
  height: 660px;
}

.orbit-two {
  top: -75px;
  width: 940px;
  height: 940px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  margin: 17px 0 25px;
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 570;
}

.cta-content p {
  max-width: 590px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 17px;
}

.cta-content small {
  display: block;
  margin-top: 22px;
  color: #5f696f;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.site-footer {
  padding: 55px 0 27px;
  border-top: 1px solid var(--line);
  background: #030405;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  padding-bottom: 42px;
}

.footer-main > p {
  margin: 0;
  color: #6e787e;
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: #758087;
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #525b61;
  font-size: 9px;
}

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

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

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

.legal-page {
  min-height: 100vh;
  padding: 140px 0 90px;
}

.legal-shell {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
}

.legal-shell h1 {
  margin: 20px 0 18px;
  font-size: clamp(44px, 7vw, 68px);
}

.legal-shell h2 {
  margin: 42px 0 12px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell a {
  color: #84d8c7;
}

.legal-meta {
  margin-bottom: 40px;
  color: var(--faint);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 850px;
  }

  .product-stage {
    width: min(800px, 95%);
    margin: 20px auto 0;
  }

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

  .suite-card {
    min-height: 450px;
  }

  .performance-grid,
  .reinsurance-grid,
  .intelligence-grid {
    grid-template-columns: 1fr;
  }

  .performance-copy,
  .reinsurance-copy,
  .intelligence-copy {
    max-width: 750px;
  }

  .analyst-window {
    order: 2;
  }

  .reporting-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
  }

  .menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .site-header.menu-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    display: none;
    width: min(100% - 48px, 760px);
    margin: 0 auto;
    padding: 8px 0 20px;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .mobile-nav {
    display: grid;
  }

  .mobile-nav a {
    padding: 12px 4px;
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-nav a:last-child {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #06100d;
    background: linear-gradient(115deg, #65d6b3, #8bd75f);
    text-align: center;
    font-weight: 700;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .reporting-shell {
    padding: 48px 34px;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-shell,
  .mobile-nav {
    width: min(100% - 30px, 1240px);
  }

  .nav-shell {
    height: 72px;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 50px;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .product-stage {
    width: 100%;
    margin-top: 18px;
  }

  .app-window {
    transform: none;
  }

  .app-body {
    grid-template-columns: 1fr;
    min-height: 450px;
  }

  .app-sidebar {
    display: none;
  }

  .app-content {
    padding: 16px;
  }

  .window-project {
    display: none;
  }

  .app-titlebar {
    grid-template-columns: 1fr auto;
  }

  .metric-row {
    grid-template-columns: 1fr 1fr;
  }

  .mini-metric:last-child {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .trust-ribbon {
    justify-content: flex-start;
    gap: 12px;
    overflow: hidden;
    white-space: nowrap;
  }

  .trust-ribbon span:last-child,
  .trust-ribbon i:last-of-type {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-intro h2,
  .performance-copy h2,
  .reinsurance-copy h2,
  .intelligence-copy h2,
  .reporting-copy h2 {
    font-size: 43px;
  }

  .suite-grid,
  .governance-grid {
    grid-template-columns: 1fr;
  }

  .suite-card {
    min-height: 435px;
  }

  .workflow-spine {
    left: 44px;
  }

  .workflow-step {
    grid-template-columns: 20px 48px 1fr;
    gap: 10px;
    padding-inline: 0;
  }

  .step-output {
    display: none;
  }

  .benchmark-head {
    align-items: flex-start;
    gap: 20px;
  }

  .benchmark-stats article,
  .phase-list,
  .benchmark-head {
    padding-inline: 16px;
  }

  .benchmark-stats strong {
    font-size: 25px;
  }

  .reinsurance-panel-head {
    align-items: flex-start;
    padding-inline: 16px;
  }

  .program-list {
    padding: 12px;
  }

  .program-row {
    grid-template-columns: 31px 1fr;
    padding: 15px;
  }

  .program-status {
    display: none;
  }

  .program-controls {
    padding-inline: 16px;
  }

  .phase-list > div {
    grid-template-columns: 88px 1fr;
  }

  .phase-list em {
    display: none;
  }

  .analyst-body {
    padding: 15px;
  }

  .prompt-bubble {
    width: 90%;
  }

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

  .reporting-shell {
    width: 100%;
    padding: 38px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

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

  .donut-card {
    display: none;
  }

  .cta-section {
    padding: 105px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
