:root {
  --ink: #eef7ff;
  --muted: #a8bad0;
  --line: #23445e;
  --paper: #071421;
  --surface: #0d2234;
  --surface-strong: #102c43;
  --sap: #0a6ed1;
  --sap-bright: #19a7ff;
  --sap-soft: #87cfff;
  --green: #37d6a5;
  --green-dark: #102c43;
  --gold: #f2c94c;
  --rose: #ff7a90;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --premium-line: rgba(135, 207, 255, 0.22);
  --hairline: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #071421 0%, #08192a 44%, #071421 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(135, 207, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 207, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 70px);
  background: rgba(5, 16, 27, 0.84);
  border-bottom: 1px solid rgba(135, 207, 255, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sap), var(--sap-bright));
  color: #fff;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--sap-bright);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(10, 110, 209, 0.28);
}

.button.primary,
.header-cta {
  background: linear-gradient(135deg, var(--sap), #0871c9);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--sap-soft);
}

.section,
.section-band {
  padding: 82px clamp(20px, 5vw, 70px);
}

.section-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(25, 167, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #071421 0%, #0b2740 62%, #071421 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100vh - 68px);
}

.hero-motion,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-motion {
  opacity: 0.78;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 33, 0.96) 0%, rgba(7, 20, 33, 0.72) 44%, rgba(7, 20, 33, 0.28) 100%),
    radial-gradient(circle at 76% 42%, rgba(10, 110, 209, 0.28), transparent 36%);
}

.hero-copy,
.ops-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sap-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5.8vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy p:not(.eyebrow),
.section-intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy p:not(.eyebrow) {
  font-size: 1.16rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-credentials span {
  padding: 9px 12px;
  border: 1px solid rgba(135, 207, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 24, 39, 0.5);
  color: var(--sap-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.ops-panel,
.extraction-console,
.demo-form,
.pricing-grid article,
.pilot-grid article,
.solution-grid article,
.governance-grid article,
.steps article,
.location-grid article {
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 44, 67, 0.92), rgba(10, 29, 47, 0.94));
  box-shadow: var(--shadow);
}

.ops-panel {
  padding: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.executive-note {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(6, 17, 29, 0.58);
}

.executive-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--sap-bright);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.executive-note p {
  margin: 0;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 70px);
  background: rgba(135, 207, 255, 0.1);
  border-top: 1px solid rgba(135, 207, 255, 0.16);
  border-bottom: 1px solid rgba(135, 207, 255, 0.16);
}

.trust-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(7, 20, 33, 0.94);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

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

.panel-top span,
.console-header span,
.sap-payload span,
.pilot-grid article > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.signal-grid div {
  min-height: 118px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 45, 73, 0.92), rgba(9, 30, 50, 0.96));
}

.signal-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--sap-soft);
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.workflow-map span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

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

.section-intro.compact {
  margin-bottom: 0;
}

.solution-grid,
.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-grid article,
.governance-grid article,
.steps article {
  padding: 24px;
}

.solution-grid article,
.pilot-grid article,
.pricing-grid article,
.governance-grid article,
.steps article,
.location-grid article,
.faq-list details,
.demo-form,
.extraction-console {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-grid article:hover,
.pilot-grid article:hover,
.pricing-grid article:hover,
.governance-grid article:hover,
.steps article:hover,
.location-grid article:hover,
.faq-list details:hover,
.extraction-console:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 167, 255, 0.42);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
}

.solution-grid p,
.governance-grid p,
.steps p,
.pilot-grid p,
.pricing-grid p,
.pricing-grid li {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.architecture-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(10, 110, 209, 0.24), transparent 34%),
    linear-gradient(180deg, #071421 0%, #06111d 100%);
}

.architecture-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
}

.architecture-map {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(25, 167, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(16, 44, 67, 0.72), rgba(6, 17, 29, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.architecture-map::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(135, 207, 255, 0.14);
  border-radius: 8px;
}

.arch-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 126px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(135, 207, 255, 0.28);
  border-radius: 8px;
  background: rgba(8, 24, 39, 0.9);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.arch-node.core {
  top: 50%;
  left: 50%;
  width: min(270px, 55%);
  min-height: 126px;
  transform: translate(-50%, -50%);
  border-color: rgba(25, 167, 255, 0.62);
  background: linear-gradient(135deg, rgba(10, 110, 209, 0.92), rgba(8, 24, 39, 0.96));
}

.arch-node.core span {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arch-node.core strong {
  color: #fff;
  font-size: 1.08rem;
}

.arch-node:nth-child(2) {
  top: 10%;
  left: 9%;
}

.arch-node:nth-child(3) {
  top: 10%;
  right: 9%;
}

.arch-node:nth-child(4) {
  top: 38%;
  left: 5%;
}

.arch-node:nth-child(5) {
  top: 38%;
  right: 5%;
}

.arch-node:nth-child(6) {
  bottom: 16%;
  left: 9%;
}

.arch-node:nth-child(7) {
  bottom: 16%;
  right: 9%;
}

.arch-node:nth-child(8) {
  bottom: 7%;
  left: 36%;
}

.arch-node:nth-child(9) {
  top: 7%;
  left: 38%;
}

.architecture-copy {
  display: grid;
  gap: 14px;
}

.architecture-copy article {
  padding: 24px;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 44, 67, 0.88), rgba(8, 25, 42, 0.95));
  box-shadow: var(--shadow);
}

.architecture-copy span {
  color: var(--sap-bright);
  font-size: 0.86rem;
  font-weight: 850;
}

.architecture-copy p {
  color: var(--muted);
}

.demo-controls,
.demo-form {
  display: grid;
  gap: 14px;
}

.demo-controls {
  margin-top: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--sap-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: #081827;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.extraction-console {
  overflow: hidden;
}

.console-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, #0a2e4d, #0a6ed1);
  color: #fff;
}

.console-header span,
.console-header strong {
  color: #fff;
}

.result-table {
  display: grid;
  padding: 20px;
}

.result-row {
  display: grid;
  grid-template-columns: 160px 1fr 104px;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

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

.result-row span:first-child {
  color: var(--muted);
  font-weight: 800;
}

.result-row span:last-child {
  color: var(--green);
  font-weight: 800;
  text-align: right;
}

.sap-payload {
  padding: 0 20px 20px;
}

pre {
  overflow-x: auto;
  margin: 10px 0 0;
  padding: 18px;
  border-radius: 8px;
  background: #06111d;
  color: #dff2ff;
  font-size: 0.88rem;
  line-height: 1.45;
}

.governance {
  background:
    radial-gradient(circle at 20% 0%, rgba(55, 214, 165, 0.12), transparent 30%),
    #08192a;
}

.governance-grid article:first-child {
  border-top: 4px solid var(--sap);
}

.governance-grid article:nth-child(2) {
  border-top: 4px solid var(--sap-bright);
}

.governance-grid article:nth-child(3) {
  border-top: 4px solid var(--gold);
}

.governance-grid article:nth-child(4) {
  border-top: 4px solid var(--rose);
}

.pilot-grid,
.pricing-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pilot-grid article,
.pricing-grid article {
  padding: 24px;
}

.pilot-grid dl {
  margin: 18px 0 0;
}

.pilot-grid dt {
  color: var(--sap-soft);
  font-weight: 800;
}

.pilot-grid dd {
  margin: 4px 0 14px;
  color: var(--muted);
}

.process {
  background: #0a2033;
}

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

.steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--sap);
  color: #fff;
  font-weight: 900;
}

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

.pricing-grid article.featured {
  border-top: 4px solid var(--sap-bright);
}

.pricing-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.pricing-grid ul {
  padding-left: 20px;
}

.pricing-grid .button {
  margin-top: 12px;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(26px, 5vw, 70px);
  background:
    radial-gradient(circle at 78% 18%, rgba(10, 110, 209, 0.26), transparent 34%),
    #08192a;
}

.demo-form {
  padding: 26px;
}

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

.hidden-field {
  display: none;
}

.locations-section {
  background: #06111d;
}

.faq-section {
  background:
    linear-gradient(180deg, #071421 0%, #0b1d30 100%);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 44, 67, 0.88), rgba(8, 25, 42, 0.96));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 24px;
  color: var(--ink);
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--sap-bright);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

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

.location-grid article {
  overflow: hidden;
}

.location-copy {
  padding: 24px;
}

.location-copy span {
  color: var(--sap-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-copy p {
  color: var(--muted);
}

.location-grid iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: #050f1a;
  color: var(--muted);
}

.site-footer div:last-child {
  display: flex;
  gap: 18px;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-you {
  width: min(680px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.thank-you h1 {
  margin-top: 32px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split-section,
  .request-section,
  .architecture-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .governance-grid,
  .pilot-grid,
  .pricing-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section,
  .section-band {
    padding: 58px 18px;
  }

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

  .header-cta {
    display: none;
  }

  .signal-grid,
  .workflow-map,
  .trust-strip,
  .solution-grid,
  .governance-grid,
  .pilot-grid,
  .pricing-grid,
  .location-grid,
  .steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .result-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .architecture-map {
    min-height: 720px;
  }

  .arch-node,
  .arch-node.core,
  .architecture-map .arch-node:nth-child(n) {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    transform: none;
    margin: 12px;
  }

  .architecture-map {
    display: grid;
    align-content: center;
    gap: 0;
    padding: 14px;
  }

  .result-row span:last-child {
    text-align: left;
  }

  .site-footer,
  .site-footer div:last-child {
    flex-direction: column;
  }
}
