:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #18312a;
  letter-spacing: 0;
  --seo-ink: #18312a;
  --seo-muted: #526761;
  --seo-green: #176653;
  --seo-green-dark: #104d40;
  --seo-blue: #28688d;
  --seo-coral: #cf5949;
  --seo-border: #d7e0dc;
  --seo-soft: #eff5f2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 0; background: #ffffff; color: var(--seo-ink); }
a { color: inherit; }
a:focus-visible { outline: 3px solid #f0aa28; outline-offset: 3px; }

.seo-skip-link {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 4px;
  background: #ffffff;
  color: var(--seo-ink);
  font-weight: 750;
}
.seo-skip-link:focus { transform: translateY(0); }

.seo-header {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--seo-border);
  background: #ffffff;
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  white-space: nowrap;
}
.seo-brand-logo { display: block; width: 144px; height: auto; }
.seo-footer-brand .seo-brand-logo { width: 132px; }

.seo-primary-nav { display: flex; align-items: center; gap: 26px; }
.seo-primary-nav a,
.seo-header-action {
  color: #314a43;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.seo-primary-nav a:hover,
.seo-header-action:hover { color: var(--seo-green); }
.seo-header-action { justify-self: end; }

.seo-hero {
  min-height: calc(100vh - 68px);
  max-height: 850px;
  padding: 76px max(24px, calc((100vw - 1180px) / 2)) 48px;
  background: #f1f6f4;
  overflow: hidden;
}
.seo-hero-copy {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}
.seo-hero h1 {
  max-width: 780px;
  margin: 0 auto 22px;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: 0;
}
.seo-hero-copy > p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--seo-muted);
  font-size: 20px;
  line-height: 1.6;
}
.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.seo-primary-action,
.seo-secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
.seo-primary-action { background: var(--seo-coral); color: #ffffff; }
.seo-primary-action:hover { background: #b94639; }
.seo-secondary-action { border: 1px solid #a8b9b3; background: #ffffff; color: var(--seo-ink); }
.seo-secondary-action:hover { border-color: var(--seo-green); color: var(--seo-green-dark); }

.seo-product-preview {
  width: min(100%, 980px);
  min-height: 330px;
  margin: 0 auto;
  border: 1px solid #c8d5d0;
  border-radius: 8px 8px 0 0;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(24, 49, 42, 0.12);
  overflow: hidden;
}
.seo-preview-bar {
  min-height: 58px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-bottom: 1px solid var(--seo-border);
}
.seo-preview-bar > span:first-child {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--seo-coral);
  box-shadow: 20px 0 0 #e6ad43, 40px 0 0 #4f9b78;
}
.seo-preview-bar strong { margin-left: 28px; font-size: 14px; }
.seo-preview-review { color: var(--seo-blue); font-size: 12px; font-weight: 750; }
.seo-preview-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  min-height: 272px;
}
.seo-preview-role {
  padding: 36px 30px;
  border-right: 1px solid var(--seo-border);
  background: #f8faf9;
}
.seo-preview-role span,
.seo-preview-role small { display: block; color: var(--seo-muted); }
.seo-preview-role span { margin-bottom: 14px; font-size: 13px; font-weight: 750; }
.seo-preview-role strong { display: block; margin-bottom: 12px; font-size: 29px; line-height: 1.2; }
.seo-preview-role small { line-height: 1.5; }
.seo-preview-detail { display: grid; align-content: start; gap: 0; padding: 28px 34px; }
.seo-preview-detail > div:not(.seo-preview-lines) {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border-bottom: 1px solid var(--seo-border);
}
.seo-preview-detail p { margin: 0; font-size: 14px; font-weight: 700; }
.seo-preview-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6f2ed;
  color: var(--seo-green);
  font-weight: 850;
}
.seo-preview-lines { display: grid; gap: 10px; padding-top: 28px; }
.seo-preview-lines span { height: 9px; border-radius: 3px; background: #e2e9e6; }
.seo-preview-lines span:nth-child(2) { width: 82%; }
.seo-preview-lines span:nth-child(3) { width: 63%; }

.seo-section {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 96px 0;
}
.seo-section h2,
.seo-safety h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0;
}
.seo-section-heading { max-width: 690px; margin-bottom: 48px; }
.seo-section-heading > p { color: var(--seo-muted); font-size: 17px; line-height: 1.65; }
.seo-eyebrow { margin: 0 0 12px; color: var(--seo-coral) !important; font-size: 12px !important; font-weight: 850; text-transform: uppercase; }
.seo-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.seo-steps li { min-width: 0; padding: 0 24px; border-left: 1px solid var(--seo-border); }
.seo-steps li:first-child { padding-left: 0; border-left: 0; }
.seo-step-number { display: block; margin-bottom: 24px; color: var(--seo-coral); font-size: 14px; font-weight: 850; }
.seo-steps h3 { margin: 0 0 10px; font-size: 19px; line-height: 1.3; }
.seo-steps p { margin: 0; color: var(--seo-muted); font-size: 15px; line-height: 1.65; }

.seo-region {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--seo-border);
}
.seo-region > div > p { max-width: 670px; color: var(--seo-muted); font-size: 18px; line-height: 1.7; }
.seo-region aside { padding: 28px 0 28px 30px; border-left: 4px solid var(--seo-blue); }
.seo-region aside strong { display: block; margin-bottom: 10px; font-size: 22px; }
.seo-region aside p { margin: 0; color: var(--seo-muted); line-height: 1.65; }

.seo-launch-inner { width: min(100% - 48px, 1120px); margin: 0 auto; }
.seo-launch-activation { padding: 96px 0; background: #ffffff; }
.seo-launch-activation .seo-section-heading { margin-bottom: 42px; }
.seo-activation-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin: 0; padding: 0; list-style: none; }
.seo-activation-steps li { min-width: 0; display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 14px; }
.seo-activation-steps li > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--seo-green); color: #ffffff; font-size: 14px; font-weight: 850; }
.seo-activation-steps h3 { margin: 4px 0 8px; font-size: 19px; }
.seo-activation-steps p { margin: 0; color: var(--seo-muted); line-height: 1.65; }
.seo-match-boundary { max-width: 900px; margin: 42px 0 0; padding: 20px 24px; border-left: 4px solid var(--seo-blue); background: #f5f8f7; color: var(--seo-muted); line-height: 1.65; }

.seo-problem { padding: 88px 0; background: #f1f6f4; }
.seo-problem .seo-launch-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr); gap: 72px; align-items: start; }
.seo-problem h2, .seo-comparison h2, .seo-trust h2 { margin: 0; font-size: 36px; line-height: 1.18; letter-spacing: 0; }
.seo-problem p { color: var(--seo-muted); font-size: 17px; line-height: 1.7; }
.seo-problem ul { margin: 0; padding: 0; list-style: none; }
.seo-problem li { padding: 15px 0; border-bottom: 1px solid #cfdad5; font-size: 17px; font-weight: 750; }
.seo-problem li:first-child { padding-top: 0; }

.seo-comparison { padding: 96px 0; background: #ffffff; }
.seo-comparison h2 { max-width: 760px; margin-bottom: 44px; }
.seo-comparison-grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); border-top: 1px solid var(--seo-border); border-bottom: 1px solid var(--seo-border); }
.seo-comparison-grid > div { min-width: 0; padding: 34px 36px; }
.seo-comparison-generic { border-right: 1px solid var(--seo-border); background: #f8faf9; }
.seo-comparison-career { border-top: 4px solid var(--seo-green); }
.seo-comparison-grid h3 { margin: 0 0 20px; font-size: 18px; }
.seo-comparison-grid ol { margin: 0; padding-left: 20px; }
.seo-comparison-grid li { padding: 8px 0; color: var(--seo-muted); line-height: 1.5; }
.seo-comparison-career li { color: var(--seo-ink); font-weight: 700; }

.seo-trust { padding: 96px 0; background: #173c34; color: #ffffff; }
.seo-trust .seo-launch-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.seo-trust h2 { margin-bottom: 26px; }
.seo-trust ul { margin: 0; padding: 0; list-style: none; }
.seo-trust li { position: relative; padding: 11px 0 11px 30px; color: #d9e9e3; line-height: 1.55; }
.seo-trust li::before { position: absolute; left: 0; top: 12px; color: #f0aa28; font-weight: 900; content: "—"; }
.seo-trust .seo-launch-inner > div:last-child li::before { color: #77c3a6; content: "✓"; }

.seo-safety {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 76px max(24px, calc((100vw - 1120px) / 2));
  background: var(--seo-green-dark);
  color: #ffffff;
}
.seo-safety > div { max-width: 760px; }
.seo-safety p { margin: 16px 0 0; color: #d9e9e3; font-size: 17px; line-height: 1.65; }
.seo-safety .seo-primary-action { flex: 0 0 auto; }

.seo-footer {
  display: grid;
  grid-template-columns: 1fr auto minmax(280px, auto);
  gap: 40px;
  align-items: start;
  padding: 52px max(24px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--seo-border);
  background: #ffffff;
}
.seo-footer p { max-width: 420px; margin: 16px 0 0; color: var(--seo-muted); font-size: 13px; line-height: 1.6; }
.seo-footer > nav { display: flex; gap: 18px; padding-top: 9px; }
.seo-footer a { font-size: 13px; font-weight: 700; }
.seo-locale > span { display: block; margin-bottom: 10px; color: var(--seo-muted); font-size: 12px; font-weight: 750; }
.seo-locale nav { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.seo-locale a { color: var(--seo-blue); text-underline-offset: 3px; }
.seo-locale a[aria-current="page"] { color: var(--seo-ink); text-decoration-thickness: 2px; }

@media (max-width: 850px) {
  .seo-header { grid-template-columns: 1fr auto; padding-inline: 20px; }
  .seo-primary-nav { display: none; }
  .seo-hero { min-height: auto; max-height: none; padding: 58px 20px 0; }
  .seo-hero h1 { font-size: 46px; }
  .seo-product-preview { min-height: 300px; }
  .seo-preview-body { grid-template-columns: 1fr; }
  .seo-preview-role { border-right: 0; border-bottom: 1px solid var(--seo-border); }
  .seo-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 42px; }
  .seo-steps li:nth-child(3) { padding-left: 0; border-left: 0; }
  .seo-region { grid-template-columns: 1fr; gap: 40px; }
  .seo-activation-steps { grid-template-columns: 1fr; gap: 28px; }
  .seo-problem .seo-launch-inner, .seo-trust .seo-launch-inner { grid-template-columns: 1fr; gap: 42px; }
  .seo-comparison-grid { grid-template-columns: 1fr; }
  .seo-comparison-generic { border-right: 0; border-bottom: 1px solid var(--seo-border); }
  .seo-safety { align-items: flex-start; flex-direction: column; }
  .seo-footer { grid-template-columns: 1fr 1fr; }
  .seo-locale { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .seo-header { min-height: 60px; }
  .seo-header-action { font-size: 13px; }
  .seo-brand-logo { width: 132px; }
  .seo-hero { padding-top: 44px; }
  .seo-hero-copy { margin-bottom: 40px; text-align: left; }
  .seo-hero h1 { font-size: 39px; }
  .seo-hero-copy > p { font-size: 17px; }
  .seo-hero-actions { justify-content: flex-start; }
  .seo-primary-action,
  .seo-secondary-action { width: 100%; }
  .seo-product-preview { min-height: 0; border-radius: 6px 6px 0 0; }
  .seo-preview-bar { grid-template-columns: 24px 1fr; padding-inline: 16px; }
  .seo-preview-bar strong { margin-left: 28px; overflow-wrap: anywhere; }
  .seo-preview-review { grid-column: 1 / -1; padding-bottom: 12px; }
  .seo-preview-role { padding: 24px 20px; }
  .seo-preview-role strong { font-size: 24px; overflow-wrap: anywhere; }
  .seo-preview-detail { padding: 18px 20px 24px; }
  .seo-section { width: min(100% - 32px, 1120px); padding: 70px 0; }
  .seo-launch-inner { width: min(100% - 32px, 1120px); }
  .seo-launch-activation, .seo-comparison, .seo-trust { padding: 70px 0; }
  .seo-problem { padding: 64px 0; }
  .seo-problem h2, .seo-comparison h2, .seo-trust h2 { font-size: 29px; }
  .seo-comparison-grid > div { padding: 26px 20px; }
  .seo-section h2,
  .seo-safety h2 { font-size: 30px; }
  .seo-steps { grid-template-columns: 1fr; row-gap: 0; }
  .seo-steps li,
  .seo-steps li:nth-child(3) { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 22px 0; border-left: 0; border-top: 1px solid var(--seo-border); }
  .seo-step-number { margin: 2px 0 0; }
  .seo-region { gap: 28px; }
  .seo-region aside { padding: 22px 0 0; border-top: 4px solid var(--seo-blue); border-left: 0; }
  .seo-safety { padding: 58px 16px; }
  .seo-footer { grid-template-columns: 1fr; padding: 40px 16px; }
  .seo-locale { grid-column: auto; }
}

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