:root {
  --navy: #0b1020;
  --navy-2: #101932;
  --navy-3: #18233f;
  --cyan: #00c2d1;
  --white: #ffffff;

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.10);
  --card: rgba(255, 255, 255, 0.04);

  --shadow: 0 18px 54px rgba(0, 0, 0, 0.45);

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;

  --content-max: 1120px;
  --gutter: clamp(20px, 6vw, 72px);
  --header-offset: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 20% 20%, #142042 0%, #0b1020 44%, #060a15 100%);
  color: var(--text);
  min-height: 100vh;
}

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  margin: 0 0 0.7rem;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

li {
  margin-bottom: 0.55rem;
}

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

a.link,
.footer-links a,
.contact-links a.link {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 0.7rem 1rem;
  background: rgba(11, 16, 32, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.18;
  pointer-events: none;
  mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 0.7), transparent 70%);
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 16, 32, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem var(--gutter);
}

.brand img {
  height: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 0.3rem 0.1rem;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: transparent;
  opacity: 0.9;
}

.site-nav a:hover::after {
  background: rgba(0, 194, 209, 0.55);
}

.header-cta {
  white-space: nowrap;
}

.nav-cta {
  display: none;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cta-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(0, 194, 209, 0.28);
}

.cta-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

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

.hero {
  padding: 4.75rem var(--gutter) 3.25rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4rem;
  align-items: start;
}

.eyebrow {
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.35rem);
  line-height: 1.08;
  max-width: 18ch;
}

.lead {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 70ch;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pill-list li {
  margin: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.hero-note {
  font-size: 0.95rem;
  color: var(--muted-2);
}

.hero-graphic {
  background: rgba(13, 19, 35, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.hero-graphic-title {
  margin-bottom: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
}

.mini-diagram {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  gap: 0.6rem;
  align-items: center;
  margin: 0.4rem 0 1rem;
}

.mini-col {
  display: grid;
  gap: 0.35rem;
}

.mini-label {
  font-size: 0.8rem;
  color: var(--muted-2);
}

.mini-box {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 0.8rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.95rem;
}

.mini-box-accent {
  border-color: rgba(0, 194, 209, 0.45);
  box-shadow: 0 10px 22px rgba(0, 194, 209, 0.12);
}

.mini-arrow {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
}

.mini-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid rgba(255, 255, 255, 0.35);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.graphic-caption {
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 0.9rem;
}

.assurance-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.9rem var(--gutter);
}

.assurance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.assurance-list li::before {
  content: "•";
  color: rgba(0, 194, 209, 0.9);
  margin-right: 0.55rem;
}

.section {
  padding: 4rem var(--gutter);
}

.section-header {
  max-width: 74ch;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.bullets {
  margin-top: 0.9rem;
  color: var(--muted);
}

.integration {
  background: linear-gradient(135deg, rgba(0, 194, 209, 0.08), rgba(0, 0, 0, 0));
}

.pipeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.8rem;
}

.pipeline-step {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.pipeline-step h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.integration-notes {
  background: rgba(13, 19, 35, 0.72);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  max-width: 76ch;
}

.integration-notes h4 {
  margin: 0 0 0.8rem;
  color: var(--cyan);
  font-size: 0.95rem;
}

.small-note {
  margin-top: 0.9rem;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.profile-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.profile-callout {
  margin-top: 1.35rem;
  background: rgba(13, 19, 35, 0.72);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  max-width: 92ch;
}

.profile-callout h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.step-number {
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.company {
  background: rgba(255, 255, 255, 0.02);
}

.company-card {
  background: rgba(13, 19, 35, 0.72);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  max-width: 82ch;
}

.contact {
  padding-bottom: 5.5rem;
}

.contact-card {
  background: rgba(13, 19, 35, 0.88);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  box-shadow: var(--shadow);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
}

.contact-checklist {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.2rem;
}

.contact-checklist h3 {
  font-size: 1.05rem;
}

.form-note {
  font-size: 0.95rem;
  color: var(--muted-2);
  margin-top: 0.85rem;
}

.contact-side {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.contact-side-title {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 2.25rem var(--gutter) 3rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.footer-brand img {
  width: auto;
  height: 34px;
  max-width: min(520px, 100%);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  align-items: center;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.55);
  max-width: 110ch;
}

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

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

  .mini-diagram {
    grid-template-columns: 1fr;
  }

  .mini-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding-top: 0.9rem;
    margin-top: 0.4rem;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .nav-cta {
    display: grid;
    gap: 0.65rem;
    width: 100%;
    margin-top: 0.9rem;
  }

  .nav-cta .cta {
    width: 100%;
  }

  .hero {
    padding-top: 3.6rem;
  }

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

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-graphic {
    animation: fadeUp 0.6s ease both;
  }
  .hero-graphic {
    animation-delay: 0.12s;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
