:root {
  --ink: oklch(20% 0.035 246);
  --ink-soft: oklch(41% 0.035 246);
  --blue: oklch(48% 0.16 252);
  --blue-dark: oklch(35% 0.13 252);
  --aqua: oklch(78% 0.12 188);
  --mint: oklch(94% 0.035 178);
  --white: oklch(99% 0.003 246);
  --line: oklch(88% 0.018 246);
  --surface: oklch(96% 0.01 246);
  --success: oklch(46% 0.12 157);
  --shadow: 0 8px 24px oklch(20% 0.035 246 / .08);
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Aptos, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  font-kerning: normal;
}
a { color: var(--blue-dark); }
a:hover { color: var(--blue); }
img { max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 20; background: var(--ink); color: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: oklch(99% 0.003 246 / .96); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); font-weight: 760; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--blue); color: white; font-weight: 800; }
.brand small { display: block; color: var(--ink-soft); font-size: .72rem; font-weight: 500; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: .94rem; font-weight: 600; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue-dark); }
.menu-button { display: none; min-width: 44px; min-height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 10px; font: inherit; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 46px; padding: .72rem 1.1rem; border-radius: 9px; background: var(--blue); color: white; font-weight: 700; text-decoration: none; border: 0; }
.button:hover { background: var(--blue-dark); color: white; }
.nav-links .button,
.nav-links .button:hover,
.nav-links .button[aria-current="page"] { color: white; }
.button.secondary { background: transparent; border: 1px solid var(--blue); color: var(--blue-dark); }
.button.secondary:hover { background: var(--mint); }
.hero { padding: clamp(4.5rem, 9vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem); overflow: hidden; background: var(--mint); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.kicker { margin: 0 0 1rem; color: var(--blue-dark); font-weight: 750; }
h1, h2, h3 { line-height: 1.1; text-wrap: balance; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(2.65rem, 6vw, 5.5rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 0 0 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -.02em; }
.lead { max-width: 62ch; margin: 1.5rem 0 2rem; color: var(--ink-soft); font-size: 1.16rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.product-window { padding: 1.2rem; background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); color: white; transform: rotate(1.2deg); }
.window-top { display: flex; gap: .35rem; margin-bottom: 1rem; }
.window-top span { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); opacity: .75; }
.profile-preview { background: white; color: var(--ink); border-radius: 9px; padding: 1.5rem; }
.profile-line { height: 9px; background: var(--line); border-radius: 8px; margin: .75rem 0; }
.profile-line.short { width: 55%; background: var(--aqua); }
.trust-strip { border-block: 1px solid var(--line); }
.trust-list { min-height: 84px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; color: var(--ink-soft); font-weight: 650; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section.alt { background: var(--surface); }
.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.section-head p { max-width: 52ch; margin: 0; color: var(--ink-soft); }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.feature { padding: 2rem 2rem 2rem 0; border-bottom: 1px solid var(--line); }
.feature:nth-child(3n+2), .feature:nth-child(3n+3) { padding-left: 2rem; border-left: 1px solid var(--line); }
.feature p, .step p { color: var(--ink-soft); margin-bottom: 0; }
.feature strong { display: block; color: var(--blue-dark); margin-bottom: 1rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: step; }
.step { counter-increment: step; padding: 1.5rem; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { content: counter(step); display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--mint); color: var(--blue-dark); font-weight: 800; }
.cta-band { padding: clamp(3rem, 6vw, 5rem); background: var(--blue-dark); color: white; border-radius: var(--radius); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { max-width: 16ch; }
.cta-band p { color: oklch(89% .02 245); max-width: 50ch; }
.cta-band .button { background: white; color: var(--blue-dark); white-space: nowrap; }
.page-hero { padding: clamp(3.5rem, 8vw, 6.5rem) 0 3.5rem; background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 18ch; font-size: clamp(2.5rem, 5vw, 4.7rem); }
.page-hero p { max-width: 65ch; color: var(--ink-soft); font-size: 1.1rem; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 740px); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.legal-nav { position: sticky; top: 110px; padding: 1rem 0; }
.legal-nav a { display: block; padding: .45rem 0; text-decoration: none; color: var(--ink-soft); }
.legal-content h2 { margin-top: 3rem; font-size: 1.8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 2rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.notice { background: var(--mint); padding: 1.25rem; border-radius: 10px; }
.pricing-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.pricing-table th, .pricing-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.pricing-table th { color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-details { margin: 0; }
.contact-details div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--ink-soft); font-size: .9rem; }
.contact-details dd { margin: .25rem 0 0; font-weight: 650; }
.site-footer { background: var(--ink); color: white; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.site-footer a { color: oklch(88% .025 246); text-decoration: none; }
.site-footer a:hover { color: white; }
.site-footer ul { list-style: none; padding: 0; margin: .75rem 0; }
.site-footer li { margin: .5rem 0; }
.footer-note { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid oklch(100% 0 0 / .16); color: oklch(76% .018 246); font-size: .88rem; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }

@media (max-width: 820px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links { display: none; position: absolute; inset: 76px 0 auto; padding: 1rem 1.25rem 1.5rem; background: var(--white); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .hero-grid, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: none; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(n) { padding: 1.5rem 1.5rem 1.5rem 0; border-left: 0; }
  .feature:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--line); }
  .steps, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 540px) {
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .brand small { display: none; }
  .hero { padding-top: 3.5rem; }
  .product-window { transform: none; }
  .feature-list { grid-template-columns: 1fr; }
  .feature:nth-child(n) { padding: 1.4rem 0; border-left: 0; }
  .section-head { display: block; }
  .pricing-table { display: block; overflow-x: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
