:root {
  color-scheme: dark;
  --bg: #050a07;
  --bg-soft: #0b130f;
  --panel: #111814;
  --panel-2: #18201b;
  --border: rgba(198, 255, 218, 0.14);
  --border-strong: rgba(198, 255, 218, 0.28);
  --text: #f4fff7;
  --muted: rgba(244, 255, 247, 0.72);
  --subtle: rgba(244, 255, 247, 0.52);
  --green: #ff5967;
  --green-soft: rgba(255, 89, 103, 0.14);
  --blue: #66d9ff;
  --purple: #9d7cff;
  --pink: #ff5967;
  --amber: #ffb84f;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 89, 103, 0.13), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(157, 124, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, #10070a 0%, #050507 38%, #09060a 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(12, 11, 17, 0.78);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(12, 11, 17, 0.9);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

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

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

.nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav .nav-cta {
  color: #fff8f9;
  background: var(--green);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: -80px;
  padding: 152px max(16px, calc((100vw - var(--max)) / 2)) 96px;
  text-align: center;
  background-image: url("/assets/hero-ocean.png");
  background-position: 58% calc(0px + var(--hero-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-copy {
  max-width: 780px;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.56),
    0 8px 28px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.split-section p,
.greenfield p,
.differentiation p,
.proof-body {
  color: var(--muted);
  font-size: 18px;
}

.proof-line {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button.primary {
  border-color: rgba(255, 89, 103, 0.78);
  color: #fff8f9;
  background: var(--green);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.product-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  padding: 18px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.panel-top h2 {
  margin: 0;
  font-size: 32px;
}

.panel-top span {
  align-self: start;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.panel-kicker,
.card-label {
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-summary {
  color: var(--muted);
  font-size: 14px;
}

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

.panel-card {
  position: relative;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

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

.panel-card strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
}

.card-accent {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
}

.green {
  background: var(--green);
}

.purple {
  background: var(--purple);
}

.pink {
  background: var(--pink);
}

.blue {
  background: var(--blue);
}

.amber {
  background: var(--amber);
}

.feature-grid,
.stats-grid {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

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

.feature-grid article,
.workflow-card,
.security-list,
.use-case-list,
.stats-grid article,
.contact-form,
.faq-list article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.feature-grid article,
.faq-list article {
  padding: 22px;
}

.feature-grid article:hover,
.faq-list article:hover,
.contact-form:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 89, 103, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.feature-grid p,
.faq-list p {
  color: var(--muted);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 34px;
}

.benefits {
  --benefits-y: 0px;
  display: grid;
  gap: 28px;
  isolation: isolate;
}

.benefits::before,
.cta::before {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: -1;
}

.benefits::before {
  top: -150px;
  left: 50%;
  width: 100vw;
  height: 700px;
  margin-left: -50vw;
  background-image: url("/assets/blueprint-wide.png");
  background-position: center calc(50% + var(--benefits-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.38;
  filter: saturate(1.08);
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.8) 50%, transparent 86%);
}

.benefit-center,
.cta {
  position: relative;
  z-index: 1;
  text-align: center;
}

.benefit-center {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.workflow-card {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 89, 103, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.workflow-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

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

.stats-grid article {
  padding: 24px;
}

.stats-grid strong {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.proof-body {
  max-width: 900px;
  margin-top: 28px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 89, 103, 0.55);
  outline-offset: 2px;
  border-color: rgba(255, 89, 103, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 89, 103, 0.1);
}

.hidden-field {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--subtle);
  font-size: 13px;
}

.cta {
  --cta-y: 0px;
  max-width: 760px;
  isolation: isolate;
}

.cta::before {
  top: -120px;
  left: 50%;
  width: 100vw;
  height: 620px;
  margin-left: -50vw;
  background-image: url("/assets/blueprint-band.png");
  background-position: center calc(50% + var(--cta-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.28;
  filter: saturate(1.08);
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.7) 42%, transparent 80%);
}

.cta p {
  color: var(--muted);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--subtle);
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

.footer-button {
  width: auto;
}

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

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

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

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(5, 10, 7, 0.96);
  }

  .nav[data-open="true"] {
    display: flex;
  }

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

  .hero {
    min-height: auto;
    margin-top: -72px;
    padding-top: 132px;
  }

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

@media (max-width: 560px) {
  .section {
    width: min(100% - 24px, var(--max));
    padding: 72px 0;
  }

  .site-header {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .hero {
    width: 100vw;
    min-height: 560px;
    padding-right: 12px;
    padding-left: 12px;
    background-position: 52% calc(0px + var(--hero-y, 0px));
  }

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

  .button {
    width: 100%;
  }

  .product-panel {
    padding: 12px;
  }

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

  .panel-card.wide {
    grid-column: auto;
  }

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