:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #607080;
  --line: #e1e7ee;
  --paper: #fffaf3;
  --white: #ffffff;
  --orange: #ff7a1a;
  --orange-dark: #c84d00;
  --mint: #54d6b2;
  --blue: #246b8f;
  --shadow: 0 24px 70px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid rgba(225, 231, 238, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 8px solid var(--orange);
  border-right-color: var(--mint);
  border-radius: 50%;
}

.site-nav {
  gap: clamp(14px, 3vw, 30px);
  color: #354554;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - 68px);
  padding: clamp(40px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.2), transparent 36%),
    linear-gradient(315deg, rgba(36, 107, 143, 0.13), transparent 34%),
    #fffaf3;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #354554;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 33, 43, 0.14);
}

.primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section,
.flow-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

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

.feature-card {
  min-height: 220px;
  padding: 28px;
  background: #f7fbfc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card:nth-child(2) {
  background: #fff7ec;
}

.feature-card:nth-child(3) {
  background: #f4fff9;
}

.feature-card p,
.flow-list p,
.site-footer p {
  color: var(--muted);
}

.flow-section {
  background:
    linear-gradient(90deg, rgba(84, 214, 178, 0.16), transparent 38%),
    #17212b;
  color: var(--white);
}

.flow-section .eyebrow {
  color: #ffb16f;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.flow-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 900;
}

.flow-list strong {
  display: block;
  font-size: 1.2rem;
}

.flow-list p {
  color: #c7d2dd;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 72px);
  background: #101820;
}

.site-footer p {
  margin: 0;
  color: #bdc9d4;
  font-size: 0.9rem;
}

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

  .hero {
    min-height: auto;
  }

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

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.4rem);
  }

  .button {
    width: 100%;
  }
}
