:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --panel: #ffffff;
  --panel-2: #eef6f5;
  --panel-dark: #0f172a;
  --panel-dark-2: #111c33;
  --line: #d8e0ea;
  --line-soft: #e5ebf2;
  --text: #102033;
  --muted: #5b6b7f;
  --muted-dark: #9fb0c8;
  --accent: #0f766e;
  --accent-2: #f59e0b;
  --accent-3: #2563eb;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.03), transparent 16%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 84px 84px, 84px 84px, auto;
  color: var(--text);
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(246, 248, 251, 0.88);
  border-bottom: 1px solid rgba(216, 224, 234, 0.85);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--panel-dark), #1f3b63);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent) !important;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding: 46px 0 28px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-copy h1,
.section-head h2,
.contact-panel h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--text);
}

.hero-copy h1 {
  max-width: 10.4ch;
  font-size: 3.65rem;
}

.lead,
.section-head p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

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

.button.primary {
  background: linear-gradient(145deg, var(--accent), #0e8f86);
  color: #fff;
  box-shadow: 0 12px 22px rgba(15, 118, 110, 0.18);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 18px 18px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.hero-facts dt {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.08)),
    linear-gradient(145deg, #fdfefe, #eaf2fb);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 74px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.04), rgba(15, 118, 110, 0.01));
  border-top: 1px solid rgba(216, 224, 234, 0.65);
  border-bottom: 1px solid rgba(216, 224, 234, 0.65);
}

.section-dark {
  background: linear-gradient(180deg, var(--panel-dark), var(--panel-dark-2));
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: 2.2rem;
}

.section-head p {
  margin: 14px 0 0;
}

.section-head-dark h2,
.section-head-dark p,
.section-head-dark .eyebrow {
  color: #eaf2ff;
}

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

.module {
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.module-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.module h3,
.pill-group h3,
.step h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.module p,
.step p {
  color: var(--muted);
  line-height: 1.65;
}

.module ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.module li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.module li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.platform-groups {
  display: grid;
  gap: 16px;
}

.pill-group {
  padding: 22px;
  border: 1px solid rgba(159, 176, 200, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.pill-group h3 {
  color: #fff;
  margin-bottom: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(159, 176, 200, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #e7eef9;
  font-size: 0.94rem;
}

.section-grid {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.03), rgba(37, 99, 235, 0.01)),
    var(--panel);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 22px 20px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f9fbfd);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-3);
  font-size: 0.82rem;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 10px;
}

.section-cta {
  background: linear-gradient(135deg, #0f172a, #163055);
  color: #fff;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(159, 176, 200, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-panel h2,
.contact-panel p {
  color: #f0f6ff;
}

.contact-panel .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-footer {
  padding: 26px 0 34px;
  background: #0b1220;
  color: #b8c5d9;
  border-top: 1px solid rgba(159, 176, 200, 0.14);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0;
}

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

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

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

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 10px 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 2.75rem;
  }

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

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

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

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

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-text small {
    display: none;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-head h2 {
    font-size: 1.7rem;
  }

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

  .pill-group,
  .module,
  .step,
  .contact-panel {
    padding: 20px;
  }
}
