:root {
  --bg: #06101c;
  --bg-2: #091827;
  --panel: #0d1f31;
  --panel-2: #11283d;
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --surface-muted: #e8eef4;
  --text: #0b1724;
  --text-soft: #5d6d7c;
  --text-inverse: #f5f9fc;
  --text-inverse-soft: #9fb2c4;
  --line: #dbe3ea;
  --line-dark: rgba(255, 255, 255, 0.10);
  --accent: #3ac7ff;
  --accent-2: #56e0c5;
  --accent-strong: #159bd4;
  --shadow: 0 24px 80px rgba(2, 14, 25, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
}

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 14, 25, 0.55);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  display: inline-block;
}

.brand-mark span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid var(--accent);
}

.brand-mark span:nth-child(1) {
  left: 0;
  top: 8px;
}

.brand-mark span:nth-child(2) {
  right: 0;
  top: 0;
  border-color: var(--accent-2);
}

.brand-mark span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-color: rgba(255, 255, 255, 0.6);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--text-inverse-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 31px;
}

.main-nav a {
  color: #b5c5d2;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #31d9cf);
  color: #03101b;
  box-shadow: 0 10px 28px rgba(49, 198, 236, 0.22);
}

.button-primary:hover {
  box-shadow: 0 14px 34px rgba(49, 198, 236, 0.30);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: #eaf3f9;
  background: rgba(255, 255, 255, 0.04);
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: #dce8f0;
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 74% 36%, rgba(58, 199, 255, 0.12), transparent 27%),
    radial-gradient(circle at 20% 8%, rgba(86, 224, 197, 0.06), transparent 24%),
    linear-gradient(180deg, #07111e 0%, #071523 100%);
  min-height: 820px;
  padding: 168px 0 94px;
}

.hero-grid {
  position: absolute;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.hero-grid-left {
  width: 660px;
  height: 620px;
  left: -240px;
  top: 40px;
}

.hero-grid-right {
  width: 680px;
  height: 680px;
  right: -200px;
  top: 120px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
}

.eyebrow {
  color: #9fb7c8;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(86, 224, 197, .10);
}

.hero h1 {
  color: #f7fbfe;
  margin: 18px 0 23px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -0.055em;
  font-weight: 750;
  max-width: 720px;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(211, 232, 244, 0.46);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #a9bac8;
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-meta {
  margin-top: 49px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  color: #6f8799;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 9px;
  font-weight: 800;
}

.hero-meta strong {
  color: #dceaf3;
  font-size: 12px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.visual-glow {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 195, 255, .17), transparent 68%);
  filter: blur(20px);
}

.product-window {
  position: relative;
  z-index: 3;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 34, 50, .96), rgba(8, 23, 36, .98));
  box-shadow: 0 34px 100px rgba(0,0,0,.37);
  overflow: hidden;
}

.window-bar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
}

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

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.window-title {
  font-family: "JetBrains Mono", monospace;
  color: #9db2c1;
  font-size: 10px;
}

.window-status {
  justify-self: end;
  border: 1px solid rgba(86, 224, 197, .28);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.window-body {
  padding: 28px;
}

.code-line {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .15em;
  margin-bottom: 15px;
}

.muted {
  color: #60788a;
}

.data-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-node {
  width: 88%;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.035);
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-node-provider {
  width: 96%;
  border-color: rgba(58,199,255,.35);
  background: linear-gradient(90deg, rgba(58,199,255,.08), rgba(86,224,197,.045));
}

.node-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  color: #cfe2ef;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.provider-icon {
  color: #061421;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.sp-icon {
  color: #fff;
  background: rgba(63, 133, 255, .28);
}

.flow-node strong {
  display: block;
  color: #f3f9fc;
  font-size: 12px;
}

.flow-node span {
  display: block;
  color: #7890a1;
  margin-top: 2px;
  font-size: 10px;
}

.flow-connector {
  height: 61px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.flow-connector span {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--accent), rgba(58,199,255,.12));
  position: relative;
}

.flow-connector span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: rotate(45deg);
}

.flow-connector small {
  margin-top: 7px;
  color: #5f788b;
  font-size: 8px;
  font-family: "JetBrains Mono", monospace;
}

.status-row {
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #6f8799;
  font-size: 9px;
}

.status-row div {
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.035);
}

.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: var(--accent-2);
  margin-right: 5px;
}

.floating-card {
  z-index: 5;
  position: absolute;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(12, 30, 46, .90);
  backdrop-filter: blur(14px);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
}

.floating-card-top {
  right: -27px;
  top: 66px;
}

.floating-card-bottom {
  left: -30px;
  bottom: 58px;
}

.floating-label {
  display: block;
  color: #6f8799;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  color: #d8e6ef;
  font-size: 10px;
}

.trust-strip {
  background: #0a1725;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-grid {
  min-height: 142px;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  align-items: center;
  gap: 50px;
}

.trust-intro {
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.section-kicker {
  color: #159bcf;
}

.section-dark .section-kicker,
.enterprise-band .section-kicker,
.contact-card .section-kicker,
.integration-section .section-kicker,
.trust-strip .section-kicker {
  color: var(--accent);
}

.trust-intro strong {
  color: #eef6fb;
  display: block;
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.5;
}

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

.trust-items span {
  color: #9db0bf;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.section {
  padding: 108px 0;
}

.section-light {
  background: var(--surface);
}

.section-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(58,199,255,.06), transparent 28%),
    #07131f;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin: 12px 0 0;
  color: #0d1b28;
  font-size: clamp(34px, 4vw, 51px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 730;
}

.section-heading > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.section-heading-dark h2 {
  color: #f3f8fb;
}

.section-heading-dark > p {
  color: #8ea3b3;
}

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

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

.feature-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfcfd);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(18, 47, 68, .04);
}

.feature-number {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #eef8fc;
  color: #168fbe;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
}

.feature-card h3,
.capability-card h3,
.outcome h3 {
  margin: 28px 0 10px;
  color: #102130;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.feature-card p,
.capability-card p,
.outcome p {
  color: #617180;
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.feature-tag {
  margin-top: auto;
  padding-top: 27px;
  color: #168fbe;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
  font-weight: 800;
}

.architecture-panel {
  padding: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.09);
}

.arch-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
}

.arch-label {
  color: #607a8d;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding-top: 17px;
}

.arch-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.arch-box {
  min-height: 76px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  padding: 15px;
}

.arch-box strong {
  display: block;
  color: #dfeaf1;
  font-size: 11px;
}

.arch-box span {
  color: #6f8798;
  font-size: 9px;
}

.arch-down {
  padding: 8px 0 8px 122px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.arch-down span {
  justify-self: center;
  width: 1px;
  height: 34px;
  background: linear-gradient(rgba(58,199,255,.4), rgba(58,199,255,.08));
}

.arch-provider {
  margin-left: 122px;
  border-radius: 16px;
  border: 1px solid rgba(58, 199, 255, .34);
  background: linear-gradient(135deg, rgba(58,199,255,.08), rgba(86,224,197,.04));
  padding: 28px;
  position: relative;
}

.provider-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 4px 9px;
  border: 1px solid rgba(58,199,255,.28);
  border-radius: 5px;
  background: #0a1a29;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: .12em;
}

.arch-provider h3 {
  color: #f5fafd;
  margin: 0 0 20px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.provider-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.provider-modules span {
  padding: 9px 10px;
  border-radius: 7px;
  background: rgba(255,255,255,.035);
  color: #8da4b4;
  font-size: 9px;
  border: 1px solid rgba(255,255,255,.06);
}

.arch-rest-line {
  margin-left: 122px;
  min-height: 70px;
  display: grid;
  place-items: center;
  position: relative;
}

.arch-rest-line::before,
.arch-rest-line::after {
  content: "";
  position: absolute;
  width: 1px;
  background: rgba(58,199,255,.3);
  left: 50%;
}

.arch-rest-line::before {
  top: 0;
  height: 24px;
}

.arch-rest-line::after {
  bottom: 0;
  height: 24px;
}

.rest-pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(58,199,255,.08);
  color: var(--accent);
  border: 1px solid rgba(58,199,255,.18);
  font-size: 8px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: .1em;
}

.arch-targets {
  margin-left: 122px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.target-card {
  padding: 18px;
  border-radius: 11px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 13px;
}

.target-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(59, 128, 255, .18);
  color: #85b3ff;
  font-size: 10px;
  font-weight: 800;
}

.target-card strong {
  display: block;
  color: #dce9f1;
  font-size: 11px;
}

.target-card span {
  color: #6e8798;
  font-size: 9px;
}

.architecture-note {
  margin-top: 23px;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #879cab;
  background: rgba(255,255,255,.018);
}

.note-mark {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(58,199,255,.3);
  color: var(--accent);
  border-radius: 50%;
  font-size: 10px;
  font-family: Georgia, serif;
  font-weight: 700;
}

.architecture-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}

.architecture-note strong {
  color: #d9e5ec;
}

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

.capability-card {
  padding: 26px;
  min-height: 245px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 30px rgba(18, 47, 68, .035);
}

.capability-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 23px;
  align-content: start;
}

.capability-card-wide h3 {
  margin-top: 2px;
}

.capability-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #edf8fc;
}

.capability-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #138fbe;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integration-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(86,224,197,.06), transparent 25%),
    #0a1826;
  padding: 112px 0;
}

.integration-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 95px;
  align-items: center;
}

.integration-copy h2 {
  color: #f2f8fb;
  margin: 12px 0 23px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.integration-copy > p {
  color: #90a5b5;
  font-size: 15px;
  line-height: 1.8;
  max-width: 570px;
}

.integration-list {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.integration-list > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: start;
}

.check {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(86,224,197,.09);
  color: var(--accent-2);
  border: 1px solid rgba(86,224,197,.22);
  font-size: 11px;
  font-weight: 800;
}

.integration-list p {
  margin: 0;
  color: #8097a8;
  font-size: 12px;
  line-height: 1.65;
}

.integration-list strong {
  color: #dce8ef;
}

.integration-stack {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 38px;
  background: rgba(255,255,255,.025);
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.stack-layer {
  min-height: 78px;
  padding: 16px 20px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  position: relative;
  overflow: hidden;
}

.stack-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: rgba(58,199,255,.46);
}

.stack-layer-3 {
  border-color: rgba(58,199,255,.30);
  background: linear-gradient(90deg, rgba(58,199,255,.07), rgba(86,224,197,.025));
}

.stack-layer-3::before {
  background: linear-gradient(var(--accent), var(--accent-2));
}

.stack-layer span {
  color: #607b8d;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  display: block;
}

.stack-layer strong {
  color: #d8e6ee;
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.stack-arrow {
  height: 32px;
  display: grid;
  place-items: center;
  color: #395d73;
  font-size: 12px;
}

.differentiation-section {
  padding-top: 102px;
  padding-bottom: 116px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.outcome {
  position: relative;
  padding: 27px 26px 0 0;
}

.outcome + .outcome {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.outcome-line {
  position: absolute;
  height: 2px;
  background: #1da7d4;
  width: 54px;
  left: 0;
  top: -1px;
}

.outcome + .outcome .outcome-line {
  left: 26px;
}

.outcome > strong {
  color: #178fba;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.outcome h3 {
  margin-top: 28px;
}

.enterprise-band {
  background: #eaf1f5;
  padding: 78px 0;
  border-top: 1px solid #d8e3ea;
  border-bottom: 1px solid #d8e3ea;
}

.enterprise-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
}

.enterprise-layout h2 {
  margin: 11px 0 0;
  color: #10202e;
  max-width: 720px;
  font-size: 35px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.enterprise-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.enterprise-points span {
  padding: 12px 14px;
  border-radius: 9px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(22, 64, 88, .08);
  color: #5c6f7e;
  font-size: 10px;
  font-weight: 650;
}

.contact-section {
  background: #fff;
  padding: 90px 0;
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(58,199,255,.13), transparent 24%),
    linear-gradient(135deg, #07131f, #0a1d2d);
  padding: 62px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -190px;
  bottom: -270px;
  background: radial-gradient(circle, rgba(86,224,197,.20), transparent 64%);
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  margin: 12px 0 17px;
  color: #f5fafd;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 720px;
}

.contact-copy p {
  color: #91a6b5;
  font-size: 14px;
  line-height: 1.75;
  max-width: 680px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: stretch;
}

.site-footer {
  background: #07111d;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 44px 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 45px;
  align-items: center;
}

.footer-brand p {
  margin: 12px 0 0;
  color: #60788a;
  font-size: 10px;
}

.footer-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-meta span {
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.05);
  color: #6e8799;
  font-size: 8px;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  text-align: right;
  color: #6d8495;
  font-size: 9px;
}

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

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

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

  .hero-visual {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .trust-grid,
  .section-heading,
  .integration-layout,
  .enterprise-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .trust-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 28px 0;
  }

  .trust-items {
    padding-bottom: 28px;
  }

  .feature-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card:last-child {
    grid-column: span 2;
  }

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

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 45px;
  }

  .outcome:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }

  .outcome:nth-child(3) .outcome-line {
    left: 0;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header .button-small {
    display: none;
  }

  .nav-wrap {
    height: 70px;
  }

  .hero {
    padding-top: 132px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 46px;
  }

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

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

  .hero-visual {
    min-height: 480px;
  }

  .floating-card {
    display: none;
  }

  .window-body {
    padding: 18px;
  }

  .flow-node,
  .flow-node-provider {
    width: 100%;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .integration-copy h2 {
    font-size: 36px;
  }

  .feature-grid-3,
  .capability-grid,
  .outcome-grid,
  .enterprise-points,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child,
  .capability-card-wide {
    grid-column: auto;
  }

  .capability-card-wide {
    display: block;
  }

  .capability-card-wide .capability-icon {
    margin-bottom: 25px;
  }

  .architecture-panel {
    padding: 23px 15px;
  }

  .arch-row {
    display: block;
  }

  .arch-label {
    margin-bottom: 11px;
  }

  .arch-boxes {
    grid-template-columns: 1fr 1fr;
  }

  .arch-down {
    display: none;
  }

  .arch-provider,
  .arch-targets,
  .arch-rest-line {
    margin-left: 0;
  }

  .arch-provider {
    margin-top: 28px;
  }

  .provider-modules {
    grid-template-columns: 1fr 1fr;
  }

  .arch-targets {
    grid-template-columns: 1fr;
  }

  .integration-layout {
    gap: 50px;
  }

  .integration-stack {
    padding: 22px;
  }

  .outcome + .outcome {
    border-left: 0;
    padding-left: 0;
  }

  .outcome + .outcome .outcome-line {
    left: 0;
  }

  .contact-card {
    padding: 39px 27px;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .brand-copy strong {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .arch-boxes,
  .provider-modules {
    grid-template-columns: 1fr;
  }
}


/* ========================================================================
   Accessibility / contrast corrections
   SQL examples and legal footer
   ======================================================================== */

/* SQL section: force a readable light foreground on every code token,
   including plain identifiers and punctuation not wrapped in syntax spans. */
.sql-section,
.sql-section p,
.sql-section h2,
.sql-section h3,
.sql-section strong,
.sql-section code,
.sql-section pre {
  color: #dce8f0;
}

.sql-section .section-heading-dark > p {
  color: #a9bdca;
}

.sql-section .code-window,
.sql-section .mini-code-card {
  color: #dce8f0;
}

.sql-section .code-window pre,
.sql-section .code-window pre code,
.sql-section .mini-code-card pre,
.sql-section .mini-code-card pre code {
  color: #d7e5ee !important;
  background: transparent;
}

.sql-section .sql-keyword {
  color: #66d8ff !important;
}

.sql-section .sql-string,
.sql-section .cs-string {
  color: #86e7bf !important;
}

.sql-section .cs-keyword {
  color: #c0b7ff !important;
}

.sql-section .code-window-title,
.sql-section .mini-code-head span {
  color: #c7d8e3;
}

.sql-section .mini-code-head small,
.sql-section .sql-explanation p,
.sql-section .ado-copy p,
.sql-section .sql-disclaimer {
  color: #9eb3c1;
}

.sql-section .sql-explanation strong,
.sql-section .ado-copy h3 {
  color: #f3f8fb;
}

.sql-section .ado-tags span {
  color: #b9cad5;
}

/* Legal/footer: explicitly override any inherited dark foreground. */
.site-footer,
.site-footer * {
  color: #dce8ef;
}

.site-footer {
  background: #07111d;
}

.site-footer .legal-kicker {
  color: #8ea8b9;
}

.site-footer .legal-details strong,
.site-footer .footer-product-title {
  color: #f1f7fa;
}

.site-footer .legal-details p,
.site-footer .footer-product p {
  color: #a7bac7;
}

.site-footer .legal-details a {
  color: #69d5f5;
  text-decoration: none;
}

.site-footer .legal-details a:hover {
  color: #a2e9fb;
}

.site-footer .footer-meta span {
  color: #b4c5d0;
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.10);
}

/* Keep the logo itself untouched while increasing separation from dark footer. */
.site-footer .legal-logo {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.20);
}


/* ========================================================================
   HIGH-CONTRAST PATCH v3
   Explicitly optimized for dark SQL/product sections and legal footer.
   ======================================================================== */

#sql.sql-section {
  background: #07131f !important;
  color: #f4f8fb !important;
}

#sql.sql-section .section-kicker {
  color: #56d8ff !important;
}

#sql.sql-section .section-heading h2 {
  color: #f7fbff !important;
}

#sql.sql-section .section-heading > p {
  color: #c7d9e5 !important;
}

#sql .sql-showcase,
#sql .sql-main,
#sql .sql-examples,
#sql .ado-example {
  color: #f2f7fa !important;
}

/* Main SQL code card */
#sql .code-window {
  background: #0d2234 !important;
  border: 1px solid #2d6f91 !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.34) !important;
}

#sql .code-window-bar {
  background: #112b40 !important;
  border-bottom: 1px solid #326f8f !important;
}

#sql .code-window-title {
  color: #e5f1f7 !important;
}

#sql .code-badge {
  color: #9bf3d5 !important;
  background: #123a3c !important;
  border-color: #347c70 !important;
}

#sql .code-window pre,
#sql .code-window pre code {
  color: #f0f6fa !important;
  opacity: 1 !important;
}

#sql .sql-keyword {
  color: #71dcff !important;
  font-weight: 700 !important;
}

#sql .sql-string,
#sql .cs-string {
  color: #98efc5 !important;
}

#sql .cs-keyword {
  color: #c8bfff !important;
  font-weight: 700 !important;
}

/* Explanatory steps */
#sql .sql-explanation {
  border-bottom-color: #274357 !important;
}

#sql .sql-step {
  color: #8ce3ff !important;
  background: #10314a !important;
  border-color: #347a9e !important;
}

#sql .sql-explanation strong {
  color: #f4f8fb !important;
}

#sql .sql-explanation p {
  color: #bdd0dc !important;
}

/* Secondary SQL cards */
#sql .mini-code-card {
  background: #0c2031 !important;
  border-color: #315d77 !important;
}

#sql .mini-code-card-accent {
  background: #0f2935 !important;
  border-color: #3b8f83 !important;
}

#sql .mini-code-head {
  background: #10283b !important;
  border-bottom-color: #315d77 !important;
}

#sql .mini-code-head span {
  color: #f0f6fa !important;
}

#sql .mini-code-head small {
  color: #b3c6d3 !important;
}

#sql .mini-code-card pre,
#sql .mini-code-card pre code {
  color: #eaf3f8 !important;
  opacity: 1 !important;
}

/* ADO.NET example */
#sql .ado-copy h3 {
  color: #f7fbff !important;
}

#sql .ado-copy p {
  color: #c1d3df !important;
}

#sql .ado-tags span {
  color: #d5e4ec !important;
  background: #10283a !important;
  border-color: #315a72 !important;
}

#sql .sql-disclaimer {
  color: #c3d4df !important;
  background: #0e2435 !important;
  border-color: #315a72 !important;
}

/* Legal footer: high-contrast typography */
.site-footer {
  background: #06101b !important;
}

.site-footer .legal-kicker {
  color: #9fc3d8 !important;
}

.site-footer .legal-details strong,
.site-footer .footer-product-title {
  color: #ffffff !important;
}

.site-footer .legal-details p,
.site-footer .footer-product p {
  color: #d2e0e8 !important;
}

.site-footer .legal-details a {
  color: #6fddff !important;
}

.site-footer .legal-details a:hover {
  color: #b9efff !important;
}

.site-footer .footer-meta span {
  color: #e0ebf1 !important;
  background: #102436 !important;
  border-color: #2e5167 !important;
}

/* Defensive rule against inherited low-opacity text */
#sql * ,
.site-footer * {
  opacity: 1;
}


/* Qualified partner access */
.partner-access-note {
  margin-top: 4px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
}

.partner-access-dot {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(86,224,197,.08);
}

.partner-access-note strong {
  display: block;
  color: #edf6fa;
  font-size: 10px;
}

.partner-access-note small {
  display: block;
  margin-top: 3px;
  color: #a8bdca;
  font-size: 9px;
  line-height: 1.55;
}

.partner-policy {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(22, 64, 88, .10);
}

.partner-policy strong {
  display: block;
  color: #183045;
  font-size: 11px;
}

.partner-policy p {
  margin: 5px 0 0;
  color: #5c6f7e;
  font-size: 10px;
  line-height: 1.65;
}


/* Repository access / NDA */
.repository-access-button {
  min-height: 58px;
  padding-left: 18px;
  padding-right: 18px;
  text-align: center;
  line-height: 1.35;
  border-color: rgba(86,224,197,.30);
  background: rgba(86,224,197,.06);
  color: #eaf8f4;
}

.repository-access-button:hover {
  border-color: rgba(86,224,197,.58);
  background: rgba(86,224,197,.11);
}

.partner-policy a {
  color: #0b7fa7;
  font-weight: 700;
  text-decoration: none;
}

.partner-policy a:hover {
  text-decoration: underline;
}

.site-footer .legal-email {
  margin-left: 14px;
}
