:root {
  color-scheme: light;
  --ink: #111214;
  --muted: #5f6570;
  --paper: #fffaf1;
  --surface: rgba(255, 255, 255, 0.78);
  --line: rgba(17, 18, 20, 0.12);
  --accent: #9df56d;
  --dark: #111716;
  --radius: 22px;
  --shadow: 0 18px 46px rgba(31, 24, 12, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0 0, rgba(157, 245, 109, 0.2), transparent 28rem),
    linear-gradient(180deg, #fffaf1 0%, #f8f0e5 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #050607;
}

.brand-mark.compact {
  width: 31px;
  height: 31px;
  border-radius: 11px;
}

.brand-mark img {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.brand-mark.compact img {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #111214;
  border-radius: 999px;
  background: #111214;
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(17, 18, 20, 0.12);
}

.button.small {
  min-height: 39px;
  padding-inline: 16px;
  font-size: 14px;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.hero {
  padding: 34px 0 18px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(157, 245, 109, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.hero-copy-block {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #344033;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #67e63f;
  box-shadow: 0 0 0 5px rgba(103, 230, 63, 0.16);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: #515663;
  font-size: clamp(17px, 1.7vw, 20px);
}

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

.note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-summary {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #111716;
  color: #ffffff;
}

.summary-label {
  display: block;
  margin-bottom: 18px;
  color: #c8d1c9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-summary h2 {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hero-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-summary li {
  display: flex;
  gap: 10px;
  color: #e8eee8;
  font-size: 15px;
}

.hero-summary li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 0 42px;
}

.benefit-strip article {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.benefit-strip span {
  display: block;
  margin-bottom: 22px;
  color: #66705f;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-strip h2 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section {
  padding: 64px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.compact-heading {
  max-width: 620px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-copy {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.flow-section {
  padding-top: 50px;
}

.product-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.flow-card,
.flow-grid > div,
.benefit-card,
.step-list article {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.flow-card {
  padding: 22px;
  border-radius: var(--radius);
}

.flow-card h2 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.flow-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-label {
  display: block;
  margin-bottom: 16px;
  color: #6b6f78;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dia-card {
  background: #17201d;
  color: #ffffff;
}

.dia-card .card-label {
  color: #bac2bd;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 780;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.signal-list span {
  display: block;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #eef3ec;
  font-size: 13px;
  font-weight: 720;
}

.flow-connector {
  align-self: center;
  height: 1px;
  background: var(--line);
}

.flow-grid {
  display: grid;
  gap: 14px;
}

.flow-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
}

.flow-grid strong,
.flow-grid span {
  display: block;
}

.flow-grid span {
  color: var(--muted);
  font-size: 14px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  min-height: 238px;
  padding: 22px;
  border-radius: var(--radius);
}

.benefit-card span,
.step-list article span {
  display: inline-flex;
  margin-bottom: 26px;
  color: #66705f;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-card h3,
.step-list h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.13;
  letter-spacing: -0.04em;
}

.benefit-card p,
.step-list p,
.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step-list article {
  padding: 24px;
  border-radius: var(--radius);
}

.step-list article span {
  margin-bottom: 18px;
}

.final-cta {
  margin: 42px auto 36px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: #111716;
  color: #ffffff;
  text-align: center;
}

.final-cta .eyebrow {
  color: #dce8d6;
}

.final-cta h2 {
  max-width: 740px;
  margin: 0 auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 540px;
  margin: 18px auto 28px;
  color: #c7cec8;
  font-size: 18px;
}

.final-cta .button {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  text-decoration: none;
}

.legal-page {
  background: var(--paper);
}

.privacy-hero {
  padding: 54px 0 24px;
}

.privacy-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
}

.privacy-content {
  max-width: 840px;
  padding: 28px 0 80px;
}

.privacy-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.privacy-content h2 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.1;
}

.privacy-content ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 920px) {
  .hero-panel,
  .product-flow,
  .split-section {
    grid-template-columns: 1fr;
  }

  .benefit-strip,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-connector {
    width: 1px;
    height: 20px;
    margin-left: 28px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-panel {
    padding: 26px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .benefit-strip,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-strip article {
    min-height: auto;
  }

  .benefit-card span {
    margin-bottom: 22px;
  }

  .section {
    padding: 56px 0;
  }

  .footer {
    flex-direction: column;
  }
}
