﻿:root {
  color-scheme: light;
  --bg: #eef2f7;
  --bg-deep: #e4ebf4;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --ink: #1a2433;
  --ink-soft: #4f6079;
  --line: rgba(26, 36, 51, 0.14);
  --accent: #2f74e8;
  --accent-strong: #1f5ec4;
  --accent-warm: #f7a507;
  --shadow-soft: 0 20px 50px rgba(19, 32, 53, 0.08);
  --shadow-card: 0 18px 42px rgba(20, 32, 52, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1400px 720px at 8% 0%, #f5f8ff 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 90;
  transform: translateY(-140%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 380px at 84% 8%, rgba(118, 199, 182, 0.28), transparent 62%),
    radial-gradient(760px 480px at 8% 26%, rgba(47, 116, 232, 0.14), transparent 64%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(16px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #69d7aa);
  box-shadow: 0 0 0 6px rgba(47, 116, 232, 0.14);
}

.topnav {
  display: none;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: var(--ink-soft);
}

.topnav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.2s ease;
}

.topnav a:hover {
  border-color: var(--accent);
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  padding: 10px 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.btn-solid {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 12px 26px rgba(47, 116, 232, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
}

main {
  padding: 0 clamp(16px, 4vw, 46px) 88px;
}

section {
  padding: clamp(40px, 7vw, 86px) 0;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 10px 0 14px;
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-ctas {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), #62cda5);
}

.hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
}

.hero-media img {
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-media figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.section-head {
  max-width: 72ch;
}

.section-head h2 {
  margin: 10px 0 12px;
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.95rem, 4.5vw, 3rem);
  line-height: 1.08;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.workflow-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.workflow-step {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(16px, 2.2vw, 24px);
  display: grid;
  gap: 16px;
}

.step-copy {
  display: grid;
  gap: 8px;
}

.step-num {
  margin: 0;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
}

.step-copy h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
}

.step-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.step-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-soft);
}

.step-media img {
  width: 100%;
}

.feature-grid .card-grid {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-card picture {
  display: block;
  border-bottom: 1px solid var(--line);
  background: #f0f4fb;
}

.feature-card h3 {
  margin: 14px 14px 8px;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0 14px 16px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.split-grid,
.trust-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.split-media,
.trust-media {
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.split-media picture,
.trust-media picture {
  display: block;
  border-radius: calc(var(--radius-lg) - 9px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.split-media figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.trust {
  padding-bottom: 70px;
}

.trust-copy {
  align-self: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.trust-copy p {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.trust-copy ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--ink-soft);
}

.trust-copy li + li {
  margin-top: 8px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 24px clamp(16px, 4vw, 46px) 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer p {
  margin: 0;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 820px) {
  .topnav {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 50px);
  }

  .workflow-step {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
    align-items: center;
  }

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

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

@media (min-width: 1120px) {
  .feature-grid .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-grid-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .top-actions {
    display: none;
  }

  .topbar {
    padding: 14px 14px;
  }

  .workflow-step {
    padding: 14px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
