:root {
  --ink: #163d3a;
  --ink-deep: #0e2f2d;
  --ink-soft: #28534f;
  --sage-50: #f3f8f3;
  --sage-100: #e7f0e8;
  --sage-200: #d2e3d5;
  --sage-300: #b9d2c1;
  --cream: #fff8ef;
  --cream-deep: #f6ebdf;
  --paper: #fffdf8;
  --coral: #f58e73;
  --coral-deep: #da625a;
  --coral-soft: #fde8de;
  --gold: #c99b53;
  --text: #173c39;
  --muted: #667c79;
  --line: rgba(22, 61, 58, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 12px 30px rgba(14, 47, 45, 0.08);
  --shadow-md: 0 24px 60px rgba(14, 47, 45, 0.12);
  --shadow-lg: 0 38px 90px rgba(14, 47, 45, 0.17);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --container: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin-top: 0; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.25rem; }
button { border: 0; }

::selection { background: rgba(245, 142, 115, .35); color: var(--ink-deep); }
:focus-visible { outline: 3px solid rgba(245, 142, 115, .78); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink-deep);
  color: #fff;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container.narrow { max-width: 820px; }
.container.wide { max-width: 1320px; }
.section { padding: 104px 0; position: relative; }
.section.compact { padding: 76px 0; }
.section.cream { background: var(--cream); }
.section.paper { background: var(--paper); }
.section.sage { background: var(--sage-100); }
.section.dark { background: var(--ink-deep); color: #fff; }
.section.coral-wash { background: linear-gradient(135deg, #fff8ef 0%, #fde8de 100%); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.section.dark .section-heading p { color: rgba(255,255,255,.72); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--coral); border-radius: 99px; }
.section.dark .eyebrow { color: #dceae0; }

h1, h2, h3, h4 {
  color: var(--ink-deep);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
}
h1 { font-size: clamp(3rem, 7.4vw, 6.4rem); max-width: 13ch; margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.2rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); margin-bottom: 12px; }
h4 { font-size: 1.08rem; letter-spacing: -.02em; margin-bottom: 9px; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.display-accent { color: var(--coral-deep); }
.text-accent { color: var(--coral); }
.text-muted { color: var(--muted); }
.text-small { font-size: .88rem; }
.max-copy { max-width: 62ch; }

.pill, .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.6);
  color: var(--ink-soft);
  font-size: .79rem;
  font-weight: 750;
  line-height: 1;
  backdrop-filter: blur(12px);
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(245,142,115,.17); }
.tag.sage { background: var(--sage-100); border-color: transparent; }
.tag.coral { background: var(--coral-soft); border-color: transparent; }
.tag.dark { background: var(--ink); color: #fff; border-color: transparent; }

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22,61,58,.15);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--ink-deep); box-shadow: 0 16px 34px rgba(22,61,58,.2); }
.btn:active { transform: translateY(0); }
.btn.secondary { background: transparent; color: var(--ink); border-color: rgba(22,61,58,.28); box-shadow: none; }
.btn.secondary:hover { background: rgba(255,255,255,.75); border-color: var(--ink); }
.btn.coral { background: var(--coral); color: var(--ink-deep); box-shadow: 0 10px 24px rgba(218,98,90,.22); }
.btn.coral:hover { background: #ff9e84; }
.btn.light { background: #fff; color: var(--ink-deep); }
.btn.light:hover { background: var(--cream); }
.btn.small { min-height: 42px; padding: 10px 17px; font-size: .91rem; }
.btn.full { width: 100%; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--sage-100);
  color: var(--ink);
}
.icon-wrap.coral { background: var(--coral-soft); color: var(--coral-deep); }
.icon-wrap.dark { background: var(--ink); color: #fff; }

.announcement {
  position: relative;
  z-index: 110;
  background: var(--ink-deep);
  color: #fff;
  font-size: .86rem;
}
.announcement-inner { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.announcement a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,248,239,.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 14px 38px rgba(14,47,45,.08); border-color: var(--line); background: rgba(255,248,239,.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 222px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 7px; margin-left: auto; }
.main-nav a:not(.btn) { padding: 10px 12px; border-radius: 999px; color: var(--ink-soft); font-size: .92rem; font-weight: 730; }
.main-nav a:not(.btn):hover, .main-nav a[aria-current="page"]:not(.btn) { background: rgba(255,255,255,.75); color: var(--ink-deep); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; background: transparent; color: var(--ink); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; border-radius: 99px; background: currentColor; transition: transform .22s var(--ease), opacity .22s var(--ease); }
.menu-toggle span { margin: 5px 0; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 8% 20%, rgba(185,210,193,.42), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(245,142,115,.22), transparent 24%),
    var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -200px 35%;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  filter: blur(55px);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr); align-items: center; gap: 46px; }
.hero-copy > p { max-width: 59ch; margin-bottom: 30px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.hero-copy .pill { margin-bottom: 20px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: var(--ink-soft); font-size: .87rem; font-weight: 680; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { content: "✓"; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-200); color: var(--ink); font-size: .75rem; font-weight: 900; }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-visual > img { position: relative; z-index: 2; width: 100%; min-width: 640px; transform: translateX(-2%); filter: drop-shadow(0 30px 50px rgba(14,47,45,.08)); }
.hero-floating {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 18px;
  background: rgba(255,253,248,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.hero-floating strong { display: block; color: var(--ink-deep); font-size: .9rem; }
.hero-floating small { color: var(--muted); }
.hero-floating.one { right: -2px; top: 42px; animation: float 5.6s ease-in-out infinite; }
.hero-floating.two { left: -8px; bottom: 28px; animation: float 6.2s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.logo-strip { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-strip-inner { min-height: 86px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 42px; }
.logo-strip-label { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.trust-items { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .87rem; font-weight: 700; }
.trust-item .icon { width: 19px; height: 19px; color: var(--coral-deep); }

.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.66);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}
.card.soft { background: var(--paper); box-shadow: var(--shadow-sm); border-color: transparent; }
.card.dark { background: var(--ink); color: #fff; border-color: transparent; }
.card.dark h3, .card.dark h4 { color: #fff; }
.card p { color: var(--muted); }
.card.dark p { color: rgba(255,255,255,.7); }
.card .icon-wrap { margin-bottom: 22px; }
.card-number { font-size: 4rem; line-height: .9; color: rgba(22,61,58,.08); font-weight: 900; letter-spacing: -.08em; position: absolute; right: 22px; top: 22px; }
.card:hover .card-number { color: rgba(245,142,115,.25); }

.problem-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.problem-main { min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); position: relative; }
.problem-main::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(245,142,115,.24); top: -190px; right: -70px; }
.problem-main::after { content: ""; position: absolute; width: 190px; height: 190px; border: 34px solid rgba(231,240,232,.14); border-radius: 50%; top: 40px; right: 70px; }
.problem-main h3 { max-width: 13ch; color: #fff; font-size: clamp(2.1rem, 4vw, 3.5rem); }
.problem-main p { max-width: 54ch; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.problem-side { display: grid; gap: 22px; }
.problem-side .card { min-height: 204px; }
.quote-mark { color: var(--coral); font-size: 4rem; line-height: .7; font-weight: 900; }

.split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: center; gap: clamp(44px, 7vw, 94px); }
.split.reverse { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); }
.split-copy > p { color: var(--muted); font-size: 1.08rem; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; margin-top: 1px; border-radius: 50%; background: var(--sage-200); color: var(--ink); font-size: .78rem; font-weight: 900; }
.section.dark .check-list li { color: rgba(255,255,255,.78); }
.section.dark .check-list li::before { background: rgba(255,255,255,.13); color: var(--coral); }

.system-shell { padding: 18px; border-radius: var(--radius-xl); background: var(--paper); box-shadow: var(--shadow-lg); }
.system-tabs { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; padding: 8px; border-radius: 22px; background: var(--sage-50); }
.system-tab { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 12px; border-radius: 16px; background: transparent; color: var(--muted); font-weight: 800; font-size: .86rem; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); }
.system-tab[aria-selected="true"] { background: #fff; color: var(--ink); box-shadow: 0 8px 22px rgba(14,47,45,.08); }
.system-panel { display: none; min-height: 430px; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 34px; padding: 34px 30px 22px; }
.system-panel.active { display: grid; animation: panelIn .35s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.system-visual { min-height: 330px; position: relative; display: grid; place-items: center; border-radius: 26px; overflow: hidden; background: linear-gradient(145deg, var(--sage-100), #fff); }
.system-visual.coral { background: linear-gradient(145deg, var(--coral-soft), #fff); }
.system-visual.dark { background: linear-gradient(145deg, #214f4a, var(--ink-deep)); }
.station-art { position: relative; width: 230px; height: 220px; }
.station-basket { position: absolute; left: 22px; right: 22px; bottom: 16px; height: 124px; border-radius: 18px 18px 42px 42px; background: var(--ink); box-shadow: 0 20px 34px rgba(14,47,45,.22); }
.station-basket::before { content: ""; position: absolute; left: 22px; right: 22px; top: -26px; height: 46px; border: 10px solid var(--ink); border-bottom: 0; border-radius: 28px 28px 0 0; }
.station-product { position: absolute; border-radius: 12px; background: var(--coral); box-shadow: 0 10px 20px rgba(14,47,45,.12); }
.station-product.p1 { width: 48px; height: 98px; left: 42px; top: 64px; transform: rotate(-7deg); }
.station-product.p2 { width: 72px; height: 80px; left: 91px; top: 73px; background: #fff; border: 1px solid var(--line); }
.station-product.p3 { width: 42px; height: 115px; right: 35px; top: 48px; background: var(--sage-300); transform: rotate(7deg); }
.station-product.p4 { width: 85px; height: 26px; left: 72px; top: 45px; border-radius: 50%; background: #f6c9b8; }
.station-label { position: absolute; left: 58px; right: 58px; bottom: 62px; z-index: 2; padding: 8px; border-radius: 8px; background: var(--cream); color: var(--ink); text-align: center; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.system-copy p { color: var(--muted); }
.mini-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.mini-list li { padding: 11px 12px; border-radius: 12px; background: var(--sage-50); color: var(--ink-soft); font-size: .88rem; font-weight: 700; }

.steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; position: relative; }
.steps::before { content: ""; position: absolute; left: 12%; right: 12%; top: 28px; height: 2px; background: linear-gradient(90deg, var(--coral), var(--sage-300)); z-index: 0; }
.step { position: relative; z-index: 1; padding: 0 24px; text-align: center; }
.step-index { width: 58px; height: 58px; margin: 0 auto 19px; display: grid; place-items: center; border: 7px solid var(--cream); border-radius: 50%; background: var(--ink); color: #fff; font-weight: 900; box-shadow: 0 0 0 1px var(--line); }
.section.paper .step-index { border-color: var(--paper); }
.step p { color: var(--muted); font-size: .92rem; }

.outcome-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.outcome-card { padding: 34px; border-radius: var(--radius-md); background: rgba(255,255,255,.08); border: 1px solid var(--line-light); }
.outcome-card .metric { display: block; color: var(--coral); font-size: 2.8rem; line-height: 1; font-weight: 900; letter-spacing: -.06em; margin-bottom: 14px; }
.outcome-card p { color: rgba(255,255,255,.72); }

.employer-band { position: relative; overflow: hidden; padding: 90px 0; background: var(--ink-deep); color: #fff; }
.employer-band::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(245,142,115,.28), transparent 66%); right: -160px; top: -260px; }
.employer-band::after { content: ""; position: absolute; width: 400px; height: 400px; border: 60px solid rgba(231,240,232,.06); border-radius: 50%; left: -230px; bottom: -250px; }
.employer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 64px; }
.employer-band h2 { color: #fff; }
.employer-band p { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.employer-panel { padding: 30px; border-radius: 28px; background: rgba(255,255,255,.08); border: 1px solid var(--line-light); backdrop-filter: blur(12px); }
.employer-panel-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.employer-panel-row:last-child { border: 0; }
.employer-panel-row span { color: rgba(255,255,255,.65); font-size: .9rem; }
.employer-panel-row strong { text-align: right; }

.pricing-wrap { display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; gap: 24px; }
.price-context { padding: 40px; border-radius: var(--radius-lg); background: var(--sage-100); }
.price-context p { color: var(--muted); }
.price-card { position: relative; overflow: hidden; padding: 42px; border-radius: var(--radius-lg); background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); }
.price-card::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(245,142,115,.18); right: -120px; top: -180px; }
.price-card h3 { color: #fff; font-size: 2rem; }
.price-kicker { color: #dceae0; font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price { display: flex; align-items: flex-end; gap: 10px; margin: 20px 0 26px; }
.price strong { font-size: clamp(3.4rem,6vw,5rem); line-height: .9; letter-spacing: -.07em; }
.price span { color: rgba(255,255,255,.65); padding-bottom: 7px; }
.price-card .check-list { margin-bottom: 28px; }
.price-card .fine { color: rgba(255,255,255,.55); font-size: .8rem; }
.volume-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: .92rem; }
.volume-table th, .volume-table td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; }
.volume-table th { color: var(--muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.volume-table td:last-child, .volume-table th:last-child { text-align: right; font-weight: 800; }

.calculator { padding: 34px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.calc-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.calc-result { margin-top: 24px; padding: 24px; border-radius: 20px; background: var(--sage-100); }
.calc-result strong { display: block; color: var(--ink); font-size: clamp(2rem,4vw,3rem); line-height: 1; letter-spacing: -.05em; margin: 8px 0 10px; }
.calc-result small { color: var(--muted); }
.range-row { margin-top: 16px; }
.range-row output { color: var(--ink); font-weight: 900; }
input[type="range"] { width: 100%; accent-color: var(--coral-deep); }

.form-card { padding: 40px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--ink-soft); font-size: .86rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(22,61,58,.2);
  border-radius: 13px;
  background: #fff;
  color: var(--ink-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--coral-deep); box-shadow: 0 0 0 4px rgba(245,142,115,.16); }
.form-field .hint { color: var(--muted); font-size: .78rem; }
.form-check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .82rem; }
.form-check input { margin-top: 4px; accent-color: var(--ink); }
.form-message { display: none; margin-top: 20px; padding: 18px; border-radius: 14px; background: var(--sage-100); color: var(--ink); font-weight: 700; }
.form-message.show { display: block; }

.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.7); overflow: hidden; }
.faq summary { position: relative; list-style: none; padding: 20px 60px 20px 22px; color: var(--ink-deep); font-weight: 800; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; width: 26px; height: 26px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; background: var(--sage-100); color: var(--ink); font-size: 1.2rem; transition: transform .2s var(--ease), background .2s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--coral-soft); }
.faq-answer { padding: 0 22px 22px; color: var(--muted); max-width: 82ch; }

.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 48px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--ink) 0%, #275651 100%); color: #fff; box-shadow: var(--shadow-lg); }
.cta-card::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 60px solid rgba(255,255,255,.05); right: -150px; top: -210px; }
.cta-card h2 { color: #fff; font-size: clamp(2rem,4vw,3.5rem); }
.cta-card p { color: rgba(255,255,255,.7); }
.cta-card > * { position: relative; z-index: 1; }

.page-hero { position: relative; overflow: hidden; padding: 92px 0 88px; background: var(--sage-100); }
.page-hero.coral { background: linear-gradient(135deg,var(--cream) 0%,var(--coral-soft) 100%); }
.page-hero.dark { background: var(--ink-deep); color: #fff; }
.page-hero::after { content: ""; position: absolute; width: 530px; height: 530px; border-radius: 50%; border: 84px solid rgba(255,255,255,.25); right: -230px; top: -290px; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 60px; }
.page-hero h1 { font-size: clamp(3rem,6vw,5.7rem); }
.page-hero p { max-width: 58ch; color: var(--muted); font-size: 1.15rem; }
.page-hero.dark h1 { color: #fff; }
.page-hero.dark p { color: rgba(255,255,255,.72); }
.page-hero-card { padding: 30px; border-radius: 28px; background: rgba(255,255,255,.73); border: 1px solid rgba(255,255,255,.75); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.page-hero.dark .page-hero-card { background: rgba(255,255,255,.08); border-color: var(--line-light); }

.value-rail { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.value-rail-item { padding: 24px; border-left: 3px solid var(--coral); background: rgba(255,255,255,.5); border-radius: 0 16px 16px 0; }
.value-rail-item strong { display: block; color: var(--ink-deep); margin-bottom: 6px; }
.value-rail-item p { margin: 0; color: var(--muted); font-size: .9rem; }

.privacy-callout { display: flex; gap: 16px; padding: 22px; border-radius: 18px; background: var(--sage-100); }
.privacy-callout .icon-wrap { flex: 0 0 auto; margin: 0; }
.privacy-callout p { color: var(--muted); }

.wizard-wrap { max-width: 900px; margin: 0 auto; }
.wizard { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-lg); }
.wizard-top { padding: 26px 30px; border-bottom: 1px solid var(--line); background: var(--sage-50); }
.wizard-progress { display: flex; align-items: center; gap: 10px; }
.wizard-progress span { height: 7px; flex: 1; border-radius: 99px; background: var(--sage-200); transition: background .25s var(--ease); }
.wizard-progress span.active { background: var(--coral); }
.wizard-body { padding: 40px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: panelIn .35s var(--ease); }
.wizard-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 30px; }
.option-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.option-card { position: relative; display: block; cursor: pointer; }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card-content { height: 100%; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
.option-card input:checked + .option-card-content { border-color: var(--coral-deep); box-shadow: 0 0 0 4px rgba(245,142,115,.14); transform: translateY(-2px); }
.option-card strong { display: block; margin-bottom: 6px; color: var(--ink-deep); }
.option-card small { color: var(--muted); }
.summary-box { display: grid; gap: 10px; padding: 22px; border-radius: 18px; background: var(--sage-100); }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(22,61,58,.1); }
.summary-row:last-child { padding: 0; border: 0; }
.summary-row span { color: var(--muted); }
.summary-row strong { text-align: right; }

.legal { padding: 80px 0 110px; background: var(--paper); }
.legal-content { max-width: 830px; }
.legal-content h1 { font-size: clamp(2.6rem,5vw,4.6rem); }
.legal-content h2 { margin-top: 42px; font-size: 1.8rem; letter-spacing: -.03em; }
.legal-content h3 { margin-top: 28px; font-size: 1.2rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-meta { margin-bottom: 34px; padding: 18px 20px; border-radius: 14px; background: var(--sage-100); color: var(--ink-soft); font-size: .9rem; }

.site-footer { background: var(--ink-deep); color: #fff; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3,.65fr); gap: 48px; }
.footer-brand img { width: 174px; margin-bottom: 20px; }
.footer-brand p { max-width: 40ch; color: rgba(255,255,255,.66); }
.footer-heading { margin-bottom: 14px; color: #fff; font-size: .78rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .91rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge { padding: 6px 10px; border: 1px solid var(--line-light); border-radius: 999px; }

.cookie-banner { position: fixed; z-index: 500; left: 20px; right: 20px; bottom: 20px; max-width: 680px; margin: 0 auto; display: none; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.97); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .84rem; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 8px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

.only-mobile { display: none; }

@media (max-width: 1060px) {
  :root { --header-h: 70px; }
  .main-nav { position: fixed; inset: calc(36px + var(--header-h)) 18px auto; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.98); box-shadow: var(--shadow-lg); }
  .main-nav.open { display: flex; }
  .main-nav a:not(.btn) { padding: 13px 14px; }
  .main-nav .btn { margin-top: 4px; }
  .menu-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 550px; }
  .hero-visual > img { min-width: 680px; max-width: 780px; }
  .trust-items { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-side { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 48px; }
  .system-panel { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px 0; }
  .steps::before { display: none; }
  .employer-grid, .pricing-wrap, .page-hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,.8fr); }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section.compact { padding: 60px 0; }
  .announcement-inner { min-height: 42px; padding: 7px 0; font-size: .78rem; }
  .announcement .hide-mobile { display: none; }
  .brand img { width: 190px; }
  .hero { padding: 54px 0 60px; }
  h1 { font-size: clamp(2.75rem, 14.5vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10.5vw, 3.25rem); }
  .hero-visual { min-height: 410px; margin-inline: -18px; }
  .hero-visual > img { min-width: 520px; transform: none; }
  .hero-floating { display: none; }
  .logo-strip-inner { padding: 22px 0; grid-template-columns: 1fr; gap: 16px; }
  .trust-items { grid-template-columns: 1fr; gap: 12px; }
  .grid.two, .grid.three, .grid.four, .outcome-grid, .value-rail { grid-template-columns: 1fr; }
  .problem-main { min-height: 380px; padding: 30px; }
  .problem-side { grid-template-columns: 1fr; }
  .system-shell { padding: 10px; border-radius: 28px; }
  .system-tabs { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .system-panel { min-height: 0; padding: 24px 12px 16px; }
  .mini-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; padding: 0; text-align: left; }
  .step-index { margin: 0; }
  .employer-band { padding: 70px 0; }
  .price-context, .price-card, .form-card, .calculator { padding: 28px; }
  .calc-grid, .form-grid, .option-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .cta-card { grid-template-columns: 1fr; padding: 34px 28px; }
  .page-hero { padding: 70px 0; }
  .page-hero-card { padding: 24px; }
  .wizard-body { padding: 28px 20px; }
  .wizard-actions { align-items: stretch; flex-direction: column-reverse; }
  .wizard-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .only-mobile { display: block; }
}

@media (max-width: 480px) {
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .btn { width: 100%; }
  .card { padding: 23px; }
  .system-tabs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .price-card { padding: 28px 23px; }
  .price strong { font-size: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .announcement, .site-header, .site-footer, .cookie-banner, .btn, .menu-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .page-hero, .legal { padding: 30px 0; background: #fff !important; }
  .card, .form-card, .calculator, .price-card { box-shadow: none; border: 1px solid #bbb; }
}

/* Prevent intrinsic illustration width from stretching the mobile hero grid. */
.hero-grid > * { min-width: 0; }
@media (max-width: 760px) {
  .hero-visual { overflow: hidden; }
  .hero-visual > img { min-width: 0; width: 138%; max-width: none; }
}

.legal-content h1,
.legal-content h2 { overflow-wrap: anywhere; }

/* For Every Kind pricing and readability */
.price-card .check-list li { color: rgba(255,255,255,.94); }
.price-card .check-list li::before { background: rgba(255,255,255,.18); color: #fff; }
.price-card .price span { color: rgba(255,255,255,.92); font-weight: 700; }
.price-card .fine { color: rgba(255,255,255,.84); font-size: .86rem; line-height: 1.55; }
.price-subnote { margin: -8px 0 20px; color: #fff; font-weight: 700; line-height: 1.5; }
.price-subnote strong { color: var(--coral); }
.price-overview-section { padding: 42px 0; background: var(--sage-100); }
.package-pricing-banner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 36px; align-items: center; padding: 34px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.package-pricing-banner h2 { margin-bottom: 10px; }
.package-pricing-banner p { color: var(--muted); margin: 0; }
.package-pricing-banner { align-items: stretch; gap: 36px; }
.package-pricing-copy { display: flex; flex-direction: column; justify-content: center; }
.pricing-includes { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.pricing-includes span { padding:8px 11px; border-radius:999px; background:rgba(21,59,55,.08); color:var(--ink); font-size:.78rem; font-weight:800; }
.package-price-options { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; align-items:stretch; }
.package-price-option { position:relative; min-height:190px; padding:28px 18px 22px; border-radius:22px; background:#fff; text-align:left; border:1px solid var(--line); display:flex; flex-direction:column; justify-content:flex-end; box-shadow:0 10px 28px rgba(20,54,49,.07); }
.package-price-option.pilot { background:var(--ink-deep); color:#fff; border-color:transparent; box-shadow:0 16px 38px rgba(8,47,43,.18); }
.package-price-option.recommended { border:2px solid var(--coral); }
.package-price-option small { display:block; min-height:38px; font-size:.8rem; line-height:1.35; font-weight:850; color:var(--ink); }
.package-price-option.pilot small { color:#fff; }
.package-price-option strong { display:block; margin-top:16px; font-size:2.55rem; line-height:.9; letter-spacing:-.055em; }
.package-price-option .price-vat { display:block; margin-top:9px; color:var(--muted); font-size:.76rem; font-weight:700; }
.package-price-option.pilot .price-vat { color:rgba(255,255,255,.84); }
.price-badge { position:absolute; left:16px; top:14px; display:inline-flex; width:max-content; padding:6px 9px; border-radius:999px; background:var(--coral); color:var(--ink-deep); font-size:.68rem; line-height:1; font-weight:900; text-transform:uppercase; letter-spacing:.06em; }
.package-price-option.recommended .price-badge { background:var(--ink-deep); color:#fff; }
@media (max-width: 800px) { .package-pricing-banner { grid-template-columns: 1fr; padding: 24px; } .package-price-options { grid-template-columns: 1fr; } }


@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: static !important; }
  .cookie-banner { display: none !important; }
}

/* Launch accessibility helpers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* v39 visible company positioning in header */
.brand-positioning{font-family:Arial,Helvetica,sans-serif}


/* v40 form control correction */
.form-check input[type="checkbox"]{width:20px!important;height:20px!important;min-height:20px!important;padding:0!important;margin:2px 0 0!important;flex:0 0 20px;box-shadow:none;}
