:root {
  --navy: #0b1020;
  --navy-2: #101932;
  --navy-3: #18233f;
  --cyan: #00c2d1;
  --white: #ffffff;
  --muted: #a6b3c6;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(7, 11, 23, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: radial-gradient(circle at 20% 20%, #152042 0%, #0b1020 42%, #060a15 100%);
  color: var(--white);
  min-height: 100vh;
}

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

p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

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

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

li {
  margin-bottom: 0.6rem;
}

.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: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 0.7), transparent 65%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 6vw;
  background: rgba(9, 14, 28, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.cta-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 194, 209, 0.35);
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 5.5rem 8vw 4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  color: #c4cedd;
}

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

.hero-note {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-graphic {
  background: rgba(13, 19, 35, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.6rem;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
}

.hero-graphic img {
  width: 200px;
  height: auto;
}

.graphic-caption {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-line {
  padding: 1.5rem 8vw;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
}

.section {
  padding: 4.5rem 8vw;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

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

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

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.8rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 14px 40px rgba(5, 8, 16, 0.35);
}

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

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

.pipeline-step {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pipeline-step h3 {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--cyan);
}

.integration-notes {
  background: rgba(13, 19, 35, 0.7);
  border-radius: 16px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 720px;
}

.integration-notes h4 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--cyan);
}

.step-number {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}

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

.faq-list details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--white);
}

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

.company-card {
  background: rgba(13, 19, 35, 0.75);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 820px;
}

.contact {
  padding-bottom: 6rem;
}

.contact-card {
  background: rgba(13, 19, 35, 0.9);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.contact-links .link {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 8vw 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

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

  .hero {
    padding-top: 4rem;
  }
}

@media (max-width: 600px) {
  .cta {
    width: 100%;
  }

  .hero-graphic {
    padding: 2rem 1.5rem;
  }

  .site-header {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-graphic,
  .section-header,
  .card,
  .pipeline-step,
  .integration-notes,
  .company-card,
  .contact-card {
    animation: fadeUp 0.8s ease both;
  }

  .hero-graphic {
    animation-delay: 0.2s;
  }

  .card:nth-child(2) {
    animation-delay: 0.1s;
  }

  .card:nth-child(3) {
    animation-delay: 0.2s;
  }
}

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