:root {
  --ink: #16251c;
  --ink-2: #314138;
  --forest: #173c2a;
  --forest-2: #24563c;
  --leaf: #4f8d58;
  --lime: #dceb6a;
  --lime-soft: #edf4b8;
  --ivory: #f6f1e7;
  --ivory-2: #fbf8f1;
  --sand: #e7ddc7;
  --sand-2: #d8c9aa;
  --orange: #e9a24f;
  --sky: #dce8e7;
  --white: #fff;
  --danger: #a23e2b;
  --success: #236f48;
  --line: rgba(22, 37, 28, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 10px 30px rgba(23, 60, 42, 0.08);
  --shadow-md: 0 24px 70px rgba(23, 60, 42, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1240px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.04;
}

::selection {
  background: var(--lime);
  color: var(--forest);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.sr-only {
  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;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--ivory) 96%, transparent);
  box-shadow: 0 8px 28px rgba(23, 60, 42, 0.05);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 140px;
  color: var(--forest);
  flex: 0 0 auto;
}

.brand img,
.brand svg {
  width: 100%;
  height: auto;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
}

.header-nav a {
  position: relative;
  padding-block: 10px;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--forest);
  transition: right 180ms ease;
}

.header-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

.language-switcher button {
  min-width: 38px;
  height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-3);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  appearance: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-switcher button:hover { color: var(--forest); }

.language-switcher button[aria-pressed="true"] {
  background: var(--forest);
  color: white;
  box-shadow: 0 2px 8px rgba(23, 60, 42, .16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory-2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--forest);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 60, 42, 0.2);
  background: #0e3020;
}

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 14px;
}

.button--large {
  min-height: 56px;
  padding: 17px 25px;
  font-size: 16px;
}

.button--lime {
  background: var(--lime);
  color: var(--forest);
}

.button--lime:hover {
  background: #e8f483;
  box-shadow: 0 12px 28px rgba(220, 235, 106, 0.24);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--forest);
}

.button--ghost:hover {
  border-color: var(--forest);
  background: rgba(255,255,255,.34);
  box-shadow: none;
}

.button--light {
  background: var(--white);
  color: var(--forest);
}

.button--light:hover {
  background: var(--ivory-2);
}

.button--full {
  width: 100%;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-weight: 750;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--forest-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(79, 141, 88, .12);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -12% auto 55%;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(220, 235, 106, .34), rgba(220, 235, 106, 0) 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: -100px;
  bottom: 20px;
  border: 1px solid rgba(23, 60, 42, .14);
  border-radius: 50%;
  box-shadow: 40px -40px 0 -1px var(--ivory), 40px -40px 0 0 rgba(23, 60, 42, .09);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  gap: 70px;
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(56px, 6.8vw, 104px);
  font-weight: 760;
  letter-spacing: -.07em;
}

.hero h1 em {
  color: var(--leaf);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.48;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-bottom: 20px;
}

.intent-link {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .58);
  color: var(--forest);
  font-weight: 750;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.intent-link:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 60, 42, .3);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.intent-link span:last-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: 18px;
}

.micro-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #526057;
  font-size: 13px;
  font-weight: 650;
}

.micro-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.micro-proof span::before {
  content: "✓";
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(79, 141, 88, .12);
  color: var(--success);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-board {
  position: absolute;
  inset: 16px 0 0 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-board::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: -160px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: -40px 50px 0 -1px var(--forest), -40px 50px 0 0 rgba(255,255,255,.07), -80px 100px 0 -1px var(--forest), -80px 100px 0 0 rgba(255,255,255,.05);
}

.board-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.board-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(0,0,0,.12);
}

.board-tabs button {
  min-height: 32px;
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.board-tabs button[aria-selected="true"] {
  background: rgba(255,255,255,.12);
  color: var(--lime);
}

.board-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.board-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(220,235,106,.12);
}

.board-status {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--lime-soft);
  font-size: 12px;
  font-weight: 750;
}

.order-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: opacity 130ms ease, transform 130ms ease;
}

.order-card.is-updating {
  opacity: .45;
  transform: translateY(3px);
}

.order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.order-head small,
.order-meta dt {
  color: rgba(255,255,255,.58);
}

.order-head h3 {
  margin: 5px 0 0;
  font-size: 27px;
  letter-spacing: -.04em;
}

.crop-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--lime);
  color: var(--forest);
}

.crop-mark svg {
  width: 31px;
  height: 31px;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.order-meta div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.12);
}

.order-meta dt {
  margin-bottom: 4px;
  font-size: 11px;
}

.order-meta dd {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.route-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 34px 0 22px;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime) 0 var(--route-progress, 55%), rgba(255,255,255,.17) var(--route-progress, 55%) 100%);
  transition: background 240ms ease;
}

.route-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.route-dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0 auto 9px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: var(--forest);
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-weight: 850;
}

.route-step.is-active .route-dot,
.route-step.is-done .route-dot {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--forest);
}

.route-step span:last-child {
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.route-step.is-active span:last-child,
.route-step.is-done span:last-child {
  color: var(--white);
}

.board-notes {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.board-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.board-note strong {
  color: var(--white);
}

.board-note i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(220,235,106,.14);
  color: var(--lime);
  font-style: normal;
  font-size: 12px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 15px 18px;
  border: 1px solid rgba(23,60,42,.12);
  border-radius: 18px;
  background: var(--ivory-2);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
  animation: float 5s ease-in-out infinite;
}

.floating-card--one {
  left: -28px;
  top: 42px;
}

.floating-card--two {
  right: -22px;
  bottom: 55px;
  animation-delay: -2.2s;
}

.floating-card small {
  display: block;
  margin-bottom: 3px;
  color: #637068;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  font-size: 14px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.proof-strip {
  padding: 18px 0 70px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, .75fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-intro,
.proof-item {
  min-height: 132px;
  padding: 26px 28px;
}

.proof-item {
  border-left: 1px solid var(--line);
}

.proof-intro {
  display: flex;
  align-items: center;
  color: var(--ink-2);
  font-size: 15px;
}

.proof-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: clamp(31px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.055em;
}

.proof-item span {
  display: block;
  color: #59655e;
  font-size: 13px;
}

.section {
  padding: 110px 0;
}

.section--tight {
  padding: 82px 0;
}

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

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

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

.section-head {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 740;
  letter-spacing: -.06em;
}

.section-head p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 19px;
}

.section--forest .section-head p {
  color: rgba(255,255,255,.68);
}

.section--forest .eyebrow {
  color: var(--lime-soft);
}

.section--forest .eyebrow::before {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(220,235,106,.12);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.problem-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.38);
}

.problem-card--answer {
  background: var(--forest);
  color: var(--white);
}

.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 58px;
  color: #667168;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.problem-card--answer .card-label {
  color: var(--lime-soft);
}

.problem-card h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 43px);
}

.problem-card p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 17px;
}

.problem-card--answer p {
  color: rgba(255,255,255,.7);
}

.problem-pairs {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.problem-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.problem-pair > div {
  padding: 24px 26px;
}

.problem-pair > div:last-child {
  border-left: 1px solid var(--line);
  background: rgba(79,141,88,.08);
}

.problem-pair strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 17px;
}

.problem-pair p {
  margin: 0;
  color: #5c685f;
  font-size: 14px;
}

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

.role-preview-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--ivory-2);
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.role-preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23,60,42,.28);
  box-shadow: var(--shadow-sm);
}

.role-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 12px;
  background: var(--lime-soft);
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

.role-preview-card h3 {
  margin-bottom: 11px;
  color: var(--forest);
  font-size: 23px;
}

.role-preview-card p {
  margin-bottom: 24px;
  color: #5f6a63;
  font-size: 15px;
}

.role-preview-card .text-link {
  margin-top: auto;
  font-size: 14px;
}

.role-preview-all {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.step-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
}

.step-number {
  margin-bottom: auto;
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .1em;
}

.step-card h3 {
  margin: 58px 0 13px;
  font-size: 27px;
}

.step-card p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

.steps-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 23px 26px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
}

.steps-note p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

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

.operations-grid--pilot .operation-card {
  min-height: 230px;
}

.partner-button {
  margin-top: 26px;
}

.operation-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255,255,255,.46);
}

.operation-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 16px;
  background: var(--forest);
  color: var(--lime);
}

.operation-icon svg {
  width: 25px;
  height: 25px;
}

.operation-card h3 {
  margin-bottom: 11px;
  color: var(--forest);
  font-size: 22px;
}

.operation-card p {
  margin: 0;
  color: #5c685f;
  font-size: 15px;
}

.demo-invite {
  padding: 34px 0 72px;
  background: var(--white);
}

.demo-invite-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  padding: clamp(38px, 5vw, 64px);
  border-radius: 30px;
  background: var(--forest);
  color: var(--white);
}

.demo-invite-card::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -290px;
  top: -300px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: -55px 75px 0 -1px var(--forest), -55px 75px 0 0 rgba(255,255,255,.06);
}

.demo-invite-copy,
.demo-invite-preview {
  position: relative;
  z-index: 1;
}

.demo-invite-copy .eyebrow {
  color: var(--lime);
}

.demo-invite-copy h2 {
  max-width: 650px;
  margin: 14px 0 18px;
  font-size: clamp(38px, 3.7vw, 56px);
  line-height: .98;
}

.demo-invite-copy > p {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
}

.demo-invite-path {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.16);
}

.demo-invite-path li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.demo-invite-path li > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.demo-invite-path strong,
.demo-invite-path small {
  display: block;
}

.demo-invite-path strong {
  font-size: 14px;
}

.demo-invite-path small {
  margin-top: 2px;
  color: rgba(255,255,255,.56);
  font-size: 11px;
}

.demo-invite-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.demo-invite-actions .button {
  min-width: 200px;
  justify-content: space-between;
}

.demo-invite-actions > div { display: grid; gap: 5px; }
.demo-invite-workspace { color: white; font-size: 12px; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 4px; }
.demo-invite-actions small {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.demo-invite-preview {
  min-height: 440px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  box-shadow: 0 28px 70px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
}

.demo-invite-preview__top,
.demo-invite-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.demo-invite-preview__top {
  margin-bottom: 22px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}

.demo-invite-preview__top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.demo-invite-preview__top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(220,235,106,.1);
}

.demo-invite-request {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  background: rgba(255,255,255,.075);
}

.demo-invite-request > small,
.demo-invite-next small {
  display: block;
  color: var(--lime);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.demo-invite-request h3 {
  margin: 8px 0 20px;
  font-size: 27px;
}

.demo-invite-request dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.demo-invite-request dl > div {
  padding-top: 14px;
}

.demo-invite-request dl > div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.13);
}

.demo-invite-request dt {
  color: rgba(255,255,255,.48);
  font-size: 10px;
}

.demo-invite-request dd {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 750;
}

.demo-invite-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 26px 0;
}

.demo-invite-route::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 15px;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.demo-invite-route > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255,255,255,.46);
  font-size: 9px;
}

.demo-invite-route i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: #264e39;
  font-style: normal;
  font-weight: 800;
}

.demo-invite-route .is-done i,
.demo-invite-route .is-active i {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--forest);
}

.demo-invite-route .is-active span {
  color: var(--white);
  font-weight: 750;
}

.demo-invite-next {
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--forest);
}

.demo-invite-next small {
  color: rgba(23,60,42,.58);
}

.demo-invite-next strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.demo-invite-next b {
  font-size: 24px;
}

.report-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  padding: 58px;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--white);
}

.report-card::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -260px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: -55px 75px 0 -1px var(--forest), -55px 75px 0 0 rgba(255,255,255,.08), -110px 150px 0 -1px var(--forest), -110px 150px 0 0 rgba(255,255,255,.05);
}

.report-copy,
.report-preview {
  position: relative;
  z-index: 1;
}

.report-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(39px, 4vw, 62px);
}

.report-copy p {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.7);
  font-size: 18px;
}

.report-preview {
  min-height: 340px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 27px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.report-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.report-preview-head strong {
  font-size: 14px;
}

.report-preview-head span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(220,235,106,.14);
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.chart-bars {
  height: 132px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.chart-bars i {
  flex: 1;
  min-width: 10px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--lime), rgba(220,235,106,.25));
}

.report-list {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.report-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.1);
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.report-row strong {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.trust-statement {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.trust-statement h2 {
  margin-bottom: 22px;
  font-size: clamp(43px, 5vw, 72px);
}

.trust-statement p {
  margin: 0;
  color: var(--ink-2);
  font-size: 18px;
}

.trust-list {
  display: grid;
}

.trust-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.trust-item:first-child {
  border-top: 1px solid var(--line);
}

.trust-item-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--lime-soft);
  color: var(--forest);
  font-size: 13px;
  font-weight: 850;
}

.trust-item h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.trust-item p {
  margin: 0;
  color: #5b675f;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 20px;
  font-weight: 750;
}

.faq-question i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
  background: var(--lime);
}

.faq-answer {
  max-width: 780px;
  padding: 0 0 26px;
  color: #5b675f;
}

.faq-answer p {
  margin: 0;
}

.closing {
  padding: 0 0 110px;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: var(--radius-xl);
  background: var(--lime);
  color: var(--forest);
  text-align: center;
}

.closing-card::before,
.closing-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23,60,42,.16);
  border-radius: 50%;
}

.closing-card::before {
  width: 360px;
  height: 360px;
  left: -210px;
  top: -170px;
}

.closing-card::after {
  width: 290px;
  height: 290px;
  right: -180px;
  bottom: -180px;
}

.closing-card > * {
  position: relative;
  z-index: 1;
}

.closing-card h2 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: clamp(44px, 5vw, 74px);
}

.closing-card p {
  max-width: 660px;
  margin: 0 auto 30px;
  color: rgba(23,60,42,.72);
  font-size: 18px;
}

.closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding: 60px 0 30px;
  background: var(--forest);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, .65fr);
  gap: 54px;
  padding-bottom: 46px;
}

.footer-brand {
  width: 132px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-about {
  max-width: 490px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.footer-col strong {
  display: block;
  margin-bottom: 15px;
  color: var(--lime-soft);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

/* Join funnel */
.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 100% 0%, rgba(220,235,106,.22), transparent 33%),
    var(--ivory);
}

.simple-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.simple-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.back-link:hover {
  color: var(--forest);
}

/* Interactive product demo */
.demo-main { padding: 34px 0 72px; }
.demo-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr); gap: 56px; align-items: end; margin-bottom: 24px; }
.demo-head h1 { max-width: 760px; margin-top: 12px; font-size: clamp(44px, 4.6vw, 66px); line-height: .96; letter-spacing: -.055em; }
.demo-head > p { max-width: 560px; margin: 0 0 2px; color: var(--ink-3); font-size: 17px; line-height: 1.5; }
.demo-page[data-demo-step="task"] .demo-head,
.demo-page[data-demo-step="result"] .demo-head { display: none; }

.demo-progress { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 520px; margin-bottom: 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.64); overflow: hidden; }
.demo-progress span { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; color: var(--ink-3); font-size: 12px; font-weight: 750; }
.demo-progress span + span { border-left: 1px solid var(--line); }
.demo-progress i { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--ivory-3); color: var(--ink-3); font-style: normal; font-size: 11px; }
.demo-progress .is-active { background: var(--forest); color: white; }
.demo-progress .is-active i { background: var(--lime); color: var(--forest); }
.demo-progress .is-done { color: var(--forest); }
.demo-progress .is-done i { background: var(--forest); color: white; }

.demo-stage { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); grid-template-areas: "head roles" "note roles"; gap: 22px 34px; min-height: 350px; padding: clamp(28px, 3.3vw, 44px); border: 1px solid rgba(255,255,255,.08); border-radius: 30px; background: var(--forest); color: white; box-shadow: 0 28px 70px rgba(23,60,42,.13); overflow: hidden; }
.demo-stage-head { grid-area: head; max-width: 430px; margin: 0; align-self: end; }
.demo-stage-head > span { color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.demo-stage-head h2 { margin: 10px 0 12px; font-size: clamp(32px, 3.2vw, 46px); line-height: 1; letter-spacing: -.045em; }
.demo-stage-head p { max-width: 390px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.5; }
.demo-role-grid { grid-area: roles; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.demo-role-card { min-height: 280px; padding: 24px; border: 1px solid rgba(23,60,42,.13); border-radius: 22px; background: var(--ivory-2); color: var(--forest); text-align: left; cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.demo-role-card:hover { transform: translateY(-3px); border-color: var(--lime); background: white; box-shadow: 0 18px 40px rgba(0,0,0,.15); }
.demo-role-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.demo-role-card__top i { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--lime-soft); font-style: normal; font-size: 11px; font-weight: 850; }
.demo-role-card__top b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--forest); color: white; font-size: 19px; transition: transform 180ms ease; }
.demo-role-card:hover .demo-role-card__top b { transform: translateX(4px); }
.demo-role-card > strong { display: block; margin-bottom: 10px; font-size: clamp(25px, 2.5vw, 33px); letter-spacing: -.035em; }
.demo-role-card > p { max-width: 420px; min-height: 66px; margin-bottom: 22px; color: var(--ink-3); font-size: 14px; line-height: 1.5; }
.demo-role-card > span:last-child { font-size: 12px; font-weight: 850; }
.demo-stage-note { grid-area: note; align-self: start; margin: 0; padding: 15px 0 0; border-top: 1px solid rgba(255,255,255,.12); border-radius: 0; background: transparent; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.5; }
.demo-stage-note strong { color: rgba(255,255,255,.88); }

.demo-workspace { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr); gap: 20px; align-items: start; }
.demo-form-card, .demo-live-card { border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.86); box-shadow: 0 20px 55px rgba(23,60,42,.065); }
.demo-form-card { padding: clamp(24px, 3vw, 38px); }
.demo-card-kicker { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.demo-card-kicker > span { padding: 8px 13px; border-radius: 999px; background: var(--lime-soft); color: var(--forest); font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.demo-card-kicker button { border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--green); font: inherit; font-size: 13px; font-weight: 750; cursor: pointer; }
.demo-form-card h2 { margin-bottom: 8px; font-size: clamp(32px, 3.3vw, 45px); line-height: 1; letter-spacing: -.045em; }
.demo-form-card > p { max-width: 680px; margin-bottom: 22px; color: var(--ink-3); font-size: 14px; }
.demo-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 14px; margin-bottom: 22px; }
.demo-form-grid .field { min-width: 0; }
.demo-form-grid .field > span,
.demo-form-grid .field > label { display: block; margin-bottom: 9px; color: var(--forest); font-size: 13px; font-weight: 800; }
.demo-form-grid .field > span small,
.demo-form-grid .field > label small { margin-left: 4px; color: var(--ink-3); font-weight: 500; }
.demo-form-grid input, .demo-form-grid select, .demo-form-grid textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 15px; background: var(--ivory-2); color: var(--ink); font: inherit; font-size: 16px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.demo-form-grid input, .demo-form-grid select { height: 52px; padding: 0 15px; }
.demo-form-grid select { appearance: none; padding-right: 42px; background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%); background-position: calc(100% - 20px) 25px, calc(100% - 15px) 25px; background-size: 5px 5px; background-repeat: no-repeat; }
.demo-form-grid textarea { min-height: 78px; padding: 13px 15px; resize: vertical; }
.demo-form-grid input:focus, .demo-form-grid select:focus, .demo-form-grid textarea:focus { border-color: var(--forest); background-color: white; box-shadow: 0 0 0 4px rgba(23,60,42,.09); }
.demo-form-grid [aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(167,63,45,.08); }
.demo-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.demo-select { position: relative; }
.demo-select__trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: var(--ivory-2);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.demo-select__trigger.is-placeholder { color: #757b77; }
.demo-select__trigger:hover { border-color: rgba(23,60,42,.34); background: white; }
.demo-select__trigger:focus-visible,
.demo-select__trigger[aria-expanded="true"] { border-color: var(--forest); background: white; box-shadow: 0 0 0 4px rgba(23,60,42,.09); }
.demo-select__trigger[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(167,63,45,.08); }
.demo-select__value { min-width: 0; overflow: hidden; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
.demo-select__chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin: -5px 3px 0 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms var(--ease), margin 180ms var(--ease);
}
.demo-select__trigger[aria-expanded="true"] .demo-select__chevron { margin: 5px 3px 0 0; transform: rotate(225deg); }
.demo-select__popover {
  position: absolute;
  z-index: 130;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 100%;
  padding: 7px;
  border: 1px solid rgba(23,60,42,.16);
  border-radius: 16px;
  background: white;
  box-shadow: 0 22px 58px rgba(23,60,42,.18);
  transform-origin: top center;
  animation: demoSelectIn 160ms var(--ease) both;
}
.demo-select.is-up .demo-select__popover { top: auto; bottom: calc(100% + 8px); transform-origin: bottom center; }
.demo-select__list {
  display: grid;
  gap: 2px;
  max-height: min(286px, 44vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(23,60,42,.24) transparent;
}
.demo-select__option {
  position: relative;
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  padding: 9px 40px 9px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-2);
  text-align: left;
  cursor: pointer;
  outline: none;
}
.demo-select__option:hover,
.demo-select__option:focus-visible,
.demo-select__option.is-active { background: rgba(79,141,88,.09); color: var(--forest); }
.demo-select__option[aria-selected="true"] { background: var(--lime-soft); color: var(--forest); font-weight: 780; }
.demo-select__option[aria-selected="true"]::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 6px;
  height: 11px;
  margin-top: -3px;
  border: solid var(--forest);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@keyframes demoSelectIn { from { opacity: 0; transform: translateY(-5px) scale(.985); } to { opacity: 1; transform: none; } }
.input-with-unit { position: relative; }
.input-with-unit input { padding-right: 76px; }
.input-with-unit em { position: absolute; top: 50%; right: 16px; transform: translateY(-50%); color: var(--ink-3); font-style: normal; font-size: 13px; }
.demo-form-note { margin: 14px 0 0; color: var(--ink-3); font-size: 12px; text-align: center; }

.demo-live-card { position: sticky; top: 88px; min-height: 560px; padding: 26px; background: var(--forest); color: white; overflow: hidden; }
.demo-live-card::before { content: ""; position: absolute; width: 420px; height: 420px; right: -220px; top: -220px; border: 1px solid rgba(220,235,106,.15); border-radius: 50%; box-shadow: 0 0 0 65px rgba(220,235,106,.035), 0 0 0 130px rgba(220,235,106,.025); }
.demo-live-card__head { position: relative; display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.13); }
.demo-live-card__head span { font-size: 13px; font-weight: 800; }
.demo-live-card__head i { padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.1); color: var(--lime); font-style: normal; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.demo-live-empty { position: relative; display: flex; min-height: 370px; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.demo-live-mark { display: flex; align-items: center; gap: 6px; height: 58px; margin-bottom: 22px; }
.demo-live-mark span { width: 9px; border-radius: 999px; background: var(--lime); animation: demoBars 1.5s ease-in-out infinite; }
.demo-live-mark span:nth-child(1) { height: 24px; }
.demo-live-mark span:nth-child(2) { height: 48px; animation-delay: 120ms; }
.demo-live-mark span:nth-child(3) { height: 34px; animation-delay: 240ms; }
@keyframes demoBars { 0%, 100% { opacity: .45; transform: scaleY(.8); } 50% { opacity: 1; transform: scaleY(1); } }
.demo-live-empty strong { margin-bottom: 8px; font-size: 22px; }
.demo-live-empty p { max-width: 330px; color: rgba(255,255,255,.62); font-size: 14px; }
.demo-live-values { position: relative; padding-top: 64px; }
.demo-live-values > small { color: var(--lime); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.demo-live-values h3 { min-height: 112px; margin: 14px 0 30px; font-size: clamp(34px, 4vw, 50px); line-height: 1; letter-spacing: -.04em; }
.demo-live-values dl { display: grid; gap: 10px; }
.demo-live-values dl div { padding: 15px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.06); }
.demo-live-values dt { margin-bottom: 5px; color: rgba(255,255,255,.52); font-size: 11px; }
.demo-live-values dd { margin: 0; font-size: 15px; font-weight: 750; }

.demo-result { padding-bottom: 20px; }
.demo-result-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 20px; }
.demo-result-head h2 { max-width: 780px; margin: 10px 0 8px; font-size: clamp(40px, 4.6vw, 60px); line-height: .96; letter-spacing: -.055em; }
.demo-result-head p { max-width: 760px; color: var(--ink-3); font-size: 14px; }
.demo-result-summary { display: grid; grid-template-columns: 1.1fr .9fr .9fr 1.1fr; border: 1px solid var(--line); border-radius: 24px; background: white; overflow: hidden; }
.demo-result-summary > div { min-width: 0; padding: 22px; }
.demo-result-summary > div + div { border-left: 1px solid var(--line); }
.demo-result-summary small { display: block; margin-bottom: 7px; color: var(--ink-3); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.demo-result-summary strong { display: block; overflow: hidden; color: var(--forest); font-size: 15px; text-overflow: ellipsis; }
.demo-chain { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin: 22px 0; }
.demo-chain article { position: relative; min-height: 176px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.7); }
.demo-chain article > span { color: var(--ink-3); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.demo-chain article > i { position: absolute; top: 17px; right: 17px; display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 50%; font-style: normal; font-size: 11px; font-weight: 850; }
.demo-chain h3 { margin: 50px 0 7px; font-size: 18px; }
.demo-chain p { color: var(--ink-3); font-size: 13px; line-height: 1.5; }
.demo-chain .is-done { border-color: rgba(23,60,42,.28); }
.demo-chain .is-done > i { border-color: var(--forest); background: var(--forest); color: white; }
.demo-chain .is-active { border-color: var(--lime); background: var(--forest); color: white; box-shadow: 0 14px 34px rgba(23,60,42,.13); }
.demo-chain .is-active > span, .demo-chain .is-active p { color: rgba(255,255,255,.65); }
.demo-chain .is-active > i { border-color: var(--lime); background: var(--lime); color: var(--forest); }
.demo-next-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); gap: 18px; }
.demo-matches, .demo-next-action { padding: 28px; border-radius: 26px; }
.demo-matches { border: 1px solid var(--line); background: rgba(255,255,255,.76); }
.demo-block-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 18px; }
.demo-block-head span, .demo-next-action > span { color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.demo-block-head h3, .demo-next-action h3 { margin-top: 5px; font-size: 25px; }
.demo-block-head > b { padding: 6px 9px; border-radius: 999px; background: var(--lime-soft); color: var(--forest); font-size: 9px; letter-spacing: .1em; }
.demo-match-item { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.demo-match-item > i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--ivory-3); color: var(--forest); font-style: normal; font-size: 10px; font-weight: 850; }
.demo-match-item strong, .demo-match-item span, .demo-match-item small { display: block; }
.demo-match-item strong { margin-bottom: 3px; font-size: 15px; }
.demo-match-item span { margin-bottom: 5px; color: var(--ink-3); font-size: 12px; }
.demo-match-item small { color: var(--green); font-size: 11px; }
.demo-matches > p { margin-top: 8px; color: var(--ink-3); font-size: 11px; line-height: 1.5; }
.demo-next-action { display: flex; flex-direction: column; justify-content: center; background: var(--forest); color: white; }
.demo-next-action > span { color: var(--lime); }
.demo-next-action h3 { margin-bottom: 9px; color: white; }
.demo-next-action p { margin-bottom: 22px; color: rgba(255,255,255,.65); font-size: 14px; }
.demo-workspace-link { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; padding: 14px 17px; border: 1px solid rgba(220,235,106,.38); border-radius: 14px; color: var(--lime); font-size: 13px; font-weight: 850; transition: background 160ms ease, border-color 160ms ease; }
.demo-workspace-link:hover { border-color: var(--lime); background: rgba(220,235,106,.08); }
.demo-telegram-link { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 12px; min-height: 48px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 13px; font-weight: 800; }
.demo-next-action > small { margin-top: 13px; color: rgba(255,255,255,.5); font-size: 10px; text-align: center; }
.demo-restart { display: block; margin: 28px auto 0; border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--forest); font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; }

.demo-context-card { margin: -4px 0 28px; padding: 20px; border: 1px solid rgba(220,235,106,.5); border-radius: 20px; background: var(--forest); color: white; }
.demo-context-card__head { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 16px; }
.demo-context-card__head span { color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.demo-context-card__head strong { color: rgba(255,255,255,.7); font-size: 11px; }
.demo-context-card__grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; overflow: hidden; }
.demo-context-card__grid > div { min-width: 0; padding: 12px; }
.demo-context-card__grid > div + div { border-left: 1px solid rgba(255,255,255,.12); }
.demo-context-card__grid small, .demo-context-card__grid b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-context-card__grid small { margin-bottom: 4px; color: rgba(255,255,255,.5); font-size: 9px; }
.demo-context-card__grid b { font-size: 12px; }
.demo-context-card > p { margin-top: 13px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.5; }

.demo-hero-link { display: inline-flex; align-items: center; gap: 10px; margin: 4px 0 24px; color: var(--forest); font-size: 14px; font-weight: 850; }
.demo-hero-link i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--lime); font-style: normal; transition: transform 160ms ease; }
.demo-hero-link:hover i { transform: translateX(3px); }

.join-main {
  padding: 62px 0 100px;
}

.join-head {
  max-width: 820px;
  margin-bottom: 45px;
}

.join-head h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 6vw, 82px);
  letter-spacing: -.06em;
}

.join-head p {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--ink-2);
  font-size: 19px;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.time-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.progress-track {
  height: 5px;
  flex: 1;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(23,60,42,.1);
}

.progress-bar {
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--forest);
  transition: width 300ms var(--ease);
}

.progress-label {
  min-width: 76px;
  color: #677168;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

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

.role-card {
  position: relative;
  min-height: 208px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23,60,42,.32);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.role-card[aria-pressed="true"] {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.role-card-no {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 11px;
  background: var(--lime-soft);
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
}

.role-card[aria-pressed="true"] .role-card-no {
  background: var(--lime);
}

.role-card h2 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.14;
}

.role-card p {
  margin: 0;
  color: #5c685f;
  font-size: 13px;
  line-height: 1.45;
}

.role-card[aria-pressed="true"] p {
  color: rgba(255,255,255,.67);
}

.role-card-arrow {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  font-size: 17px;
}

.role-card[aria-pressed="true"] .role-card-arrow {
  border-color: rgba(255,255,255,.22);
  color: var(--lime);
}

.join-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.form-card,
.next-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-sm);
}

.form-card {
  padding: 34px;
}

.next-card {
  position: sticky;
  top: 22px;
  padding: 28px;
}

.selected-role {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 18px;
  border-radius: 18px;
  background: var(--forest);
  color: var(--white);
}

.selected-role small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.selected-role strong {
  display: block;
  font-size: 18px;
}

.change-role {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--lime);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.change-role:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-title {
  margin-bottom: 8px;
  font-size: 31px;
}

.form-intro {
  margin-bottom: 28px;
  color: #5d6961;
}

.contact-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 18px;
  padding: 5px;
  border-radius: 14px;
  background: rgba(23,60,42,.07);
}

.contact-tab {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #5c685f;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.contact-tab[aria-selected="true"] {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 6px 16px rgba(23,60,42,.08);
}

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

.form-grid > * {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 750;
}

.optional {
  color: #7a827d;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(23,60,42,.18);
  border-radius: 13px;
  background: var(--ivory-2);
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23,60,42,.09);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(162,62,43,.08);
}

.field-hint,
.field-error {
  display: block;
  margin-top: 7px;
  font-size: 12px;
}

.field-hint {
  color: #7a827d;
}

.field-error {
  color: var(--danger);
  font-weight: 650;
}

.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.form-actions .button {
  min-height: 56px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 4px 0;
  color: #7c857f;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.telegram-button {
  background: #2aabee;
  color: var(--white);
}

.telegram-button:hover {
  background: #199bdc;
  box-shadow: 0 12px 28px rgba(42,171,238,.24);
}

.consent-note {
  margin: 15px 0 0;
  color: #7a827d;
  font-size: 11px;
  text-align: center;
}

.consent-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.form-status--error {
  background: rgba(162,62,43,.09);
  color: var(--danger);
}

.form-status--success {
  background: rgba(35,111,72,.09);
  color: var(--success);
}

.next-card h2 {
  margin-bottom: 22px;
  font-size: 24px;
}

.next-list {
  display: grid;
  gap: 20px;
}

.next-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
}

.next-item span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--lime-soft);
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
}

.next-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
  font-size: 14px;
}

.next-item p {
  margin: 0;
  color: #667168;
  font-size: 12px;
}

.data-minimum {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #6b746e;
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Thanks */
.thanks-main {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 70px 0 100px;
}

.thanks-card {
  width: min(100%, 820px);
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.success-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 24px;
  background: var(--lime);
  color: var(--forest);
}

.success-mark svg {
  width: 38px;
  height: 38px;
}

.thanks-card h1 {
  margin-bottom: 18px;
  font-size: clamp(45px, 6vw, 72px);
}

.thanks-lead {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--ink-2);
  font-size: 18px;
}

.request-ticket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
}

.ticket-item {
  padding: 19px;
}

.ticket-item + .ticket-item {
  border-left: 1px solid var(--line);
}

.ticket-item small {
  display: block;
  margin-bottom: 5px;
  color: #78817b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticket-item strong {
  display: block;
  color: var(--forest);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.thanks-next {
  padding: 23px;
  border-radius: 18px;
  background: var(--forest);
  color: var(--white);
  text-align: left;
}

.thanks-next strong {
  display: block;
  margin-bottom: 6px;
}

.thanks-next p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* Privacy and content pages */
.content-main {
  padding: 70px 0 110px;
}

.content-head {
  margin-bottom: 50px;
}

.content-head h1 {
  margin-bottom: 15px;
  font-size: clamp(45px, 6vw, 74px);
}

.content-head p {
  color: #667168;
}

.prose {
  font-size: 17px;
}

.prose h2 {
  margin: 48px 0 16px;
  color: var(--forest);
  font-size: 31px;
}

.prose h3 {
  margin: 32px 0 12px;
  font-size: 23px;
}

.prose p,
.prose li {
  color: var(--ink-2);
}

.prose ul {
  padding-left: 22px;
}

.prose a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--leaf);
  border-radius: 0 14px 14px 0;
  background: rgba(79,141,88,.08);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 540ms var(--ease) var(--reveal-delay, 0ms), transform 540ms var(--ease) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 2026 composition refinement: compact, editorial and viewport-conscious. */
@media (min-width: 921px) {
  :root {
    --container: 1320px;
    --header-h: 68px;
  }

  .site-header,
  .header-inner {
    min-height: var(--header-h);
  }

  .brand { width: 128px; }

  .hero {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    padding: clamp(30px, 5vh, 54px) 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: clamp(34px, 4vw, 64px);
  }

  .hero h1 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(52px, 5.25vw, 76px);
    line-height: .94;
  }

  .hero-lead {
    max-width: 610px;
    margin-bottom: 22px;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.45;
  }

  .hero .eyebrow { margin-bottom: 15px; }
  .intent-grid { margin-bottom: 14px; }

  .intent-link {
    min-height: 50px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 14px;
  }

  .intent-link span:last-child {
    width: 25px;
    height: 25px;
  }

  .micro-proof { font-size: 12px; }

  .hero-visual { min-height: clamp(532px, 61vh, 560px); }

  .hero-board {
    inset: 0;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(23, 60, 42, .16);
  }

  .board-inner { padding: 22px; }
  .board-top { margin-bottom: 18px; }
  .order-card { padding: 20px; border-radius: 18px; }
  .order-head { margin-bottom: 14px; }
  .order-head h3 { font-size: 24px; }
  .crop-mark { width: 48px; height: 48px; border-radius: 14px; }
  .order-meta div { padding: 10px; border-radius: 10px; }
  .route-line { margin: 25px 0 17px; }
  .board-notes { gap: 7px; }
  .board-note { padding: 10px 12px; border-radius: 11px; font-size: 12px; }

  .floating-card { display: none; }

  .proof-strip { padding: 0 0 54px; }
  .proof-intro, .proof-item { min-height: 104px; padding: 21px 24px; }
  .proof-item strong { font-size: clamp(30px, 2.7vw, 42px); }

  .section { padding: clamp(64px, 8vh, 86px) 0; }
  .section-head { max-width: 780px; margin-bottom: 34px; }
  .section-head h2 { margin-bottom: 14px; font-size: clamp(36px, 4.1vw, 56px); }
  .section-head p { font-size: 17px; }

  .problem-card { min-height: 250px; padding: 28px; border-radius: 22px; }
  .card-label { margin-bottom: 34px; }
  .problem-card h3 { font-size: clamp(25px, 2.4vw, 35px); }
  .problem-pairs { gap: 9px; margin-top: 11px; }
  .problem-pair > div { padding: 17px 21px; }

  .role-preview-grid { gap: 10px; }
  .role-preview-card { min-height: 190px; padding: 22px; border-radius: 18px; }
  .role-index { margin-bottom: 21px; }
  .role-preview-card h3 { font-size: 20px; }
  .role-preview-card p { margin-bottom: 16px; font-size: 13px; }
  .role-preview-all { margin-top: 20px; }

  .steps-grid { gap: 9px; }
  .step-card { min-height: 230px; padding: 20px; border-radius: 18px; }
  .step-card h3 { margin: 38px 0 10px; font-size: 23px; }
  .step-card p { font-size: 13px; }
  .steps-note { margin-top: 18px; padding: 17px 20px; }

  .operations-grid { gap: 10px; }
  .operation-card { min-height: 178px; padding: 22px; border-radius: 18px; }
  .operation-icon { width: 42px; height: 42px; margin-bottom: 24px; border-radius: 12px; }
  .operation-card h3 { font-size: 19px; }
  .operation-card p { font-size: 13px; }

  .report-card { gap: 38px; padding: 44px; border-radius: 28px; }
  .report-copy h2 { font-size: clamp(36px, 3.7vw, 52px); }
  .report-copy p { font-size: 16px; }
  .report-preview { min-height: 290px; }

  .trust-grid { gap: 56px; }
  .trust-statement h2 { font-size: clamp(38px, 4vw, 56px); }
  .trust-item { padding: 20px 0; }
  .trust-item h3 { font-size: 21px; }

  .faq-question { padding: 19px 0; font-size: 18px; }
  .closing { padding-bottom: 76px; }
  .closing-card { padding: 52px; border-radius: 28px; }
  .closing-card h2 { font-size: clamp(38px, 4.5vw, 60px); }

  .join-main { padding: 38px 0 70px; }
  .join-head { max-width: 760px; margin-bottom: 25px; }
  .join-head .eyebrow { margin-bottom: 12px; }
  .join-head h1 { margin-bottom: 10px; font-size: clamp(42px, 4.8vw, 64px); }
  .join-head p { margin-bottom: 12px; font-size: 16px; }
  .progress-wrap { margin-bottom: 20px; }
  .role-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
  .role-card { min-height: 126px; padding: 17px; border-radius: 16px; }
  .role-card-no { width: 29px; height: 29px; margin-bottom: 15px; border-radius: 9px; }
  .role-card-arrow { right: 13px; top: 13px; width: 27px; height: 27px; }
  .role-card h2 { margin-bottom: 6px; padding-right: 16px; font-size: 16px; }
  .role-card p { font-size: 11px; }
  .form-card { padding: 28px; }
}

/* Client concept packaging: current Agriva visual language, clearer product truth. */
.intent-grid--primary {
  margin-bottom: 14px;
}

.intent-link--primary {
  min-height: 72px;
}

.intent-link--primary > span:first-child {
  display: grid;
  gap: 3px;
}

.intent-link--primary strong,
.intent-link--primary small {
  display: block;
}

.intent-link--primary strong {
  font-size: 16px;
}

.intent-link--primary small {
  color: #69746d;
  font-size: 11px;
  font-weight: 620;
}

.proof-source {
  padding-top: 12px;
  color: #747d77;
  font-size: 11px;
}

.proof-source a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-reality {
  position: relative;
  overflow: hidden;
}

.product-reality::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -310px;
  top: -330px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: -56px 76px 0 -1px var(--forest), -56px 76px 0 0 rgba(255,255,255,.05);
  pointer-events: none;
}

.product-reality .container {
  position: relative;
  z-index: 1;
}

.status-matrix {
  border-top: 1px solid rgba(255,255,255,.18);
}

.status-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.status-no {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.status-row h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 22px;
}

.status-row p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.status-pill,
.status-link {
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill--live {
  border-color: rgba(220,235,106,.32);
  background: var(--lime);
  color: var(--forest);
}

.status-pill--demo {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.status-pill--manual {
  border-color: rgba(220,235,106,.34);
  color: var(--lime);
}

.status-pill--roadmap {
  color: rgba(255,255,255,.58);
}

.status-link {
  color: var(--lime);
  transition: background 180ms ease, color 180ms ease;
}

.status-link:hover {
  background: var(--lime);
  color: var(--forest);
}

.dashboard-showcase {
  overflow: hidden;
}

.dashboard-window {
  overflow: hidden;
  border: 1px solid rgba(23,60,42,.17);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(23,60,42,.12);
}

.dashboard-window__bar,
.dashboard-window__foot {
  display: grid;
  align-items: center;
  gap: 20px;
}

.dashboard-window__bar {
  grid-template-columns: minmax(210px, .75fr) auto minmax(180px, .75fr);
  min-height: 68px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory-2);
}

.dashboard-window__identity {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
}

.dashboard-window__identity > i,
.dashboard-window__foot span > i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(79,141,88,.12);
}

.dashboard-window__identity span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
}

.dashboard-window__identity small {
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--forest);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-window__roles {
  display: flex;
  gap: 3px;
  padding: 3px;
  border-radius: 11px;
  background: #e9ebe5;
}

.dashboard-window__roles button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #6e7771;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-window__roles button[aria-pressed="true"] {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 4px 12px rgba(23,60,42,.08);
}

.dashboard-window__bar > a {
  justify-self: end;
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(23,60,42,.2);
  text-underline-offset: 4px;
}

.dashboard-window__frame {
  height: min(74vh, 780px);
  min-height: 620px;
  background: #f3f1e9;
}

.dashboard-window__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #f3f1e9;
}

.dashboard-window__foot {
  grid-template-columns: auto 1fr;
  min-height: 52px;
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  background: var(--ivory-2);
}

.dashboard-window__foot span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
}

.dashboard-window__foot p {
  justify-self: end;
  margin: 0;
  color: #737d76;
  font-size: 10px;
}

.closing-kicker {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.closing-vision {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  font-weight: 760;
}

@media (min-width: 921px) {
  .intent-link--primary {
    min-height: 66px;
  }
}

@media (max-width: 680px) {
  .intent-link--primary {
    min-height: 68px;
  }

  .status-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 22px 0;
  }

  .status-row h3 {
    font-size: 19px;
  }

  .status-pill,
  .status-link {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
    margin-top: 2px;
  }

  .dashboard-window {
    border-radius: 18px;
  }

  .dashboard-window__bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 13px;
  }

  .dashboard-window__identity small {
    margin-left: auto;
  }

  .dashboard-window__roles {
    width: 100%;
  }

  .dashboard-window__roles button {
    flex: 1;
    padding-inline: 8px;
  }

  .dashboard-window__bar > a {
    justify-self: start;
  }

  .dashboard-window__frame {
    min-height: 640px;
    height: 72vh;
  }

  .dashboard-window__foot {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dashboard-window__foot p {
    justify-self: start;
  }
}

@media (min-width: 921px) and (max-height: 720px) {
  .hero { padding: 24px 0; }
  .hero-visual { min-height: 410px; }
  .hero h1 { font-size: clamp(48px, 5vw, 66px); }
  .hero-lead { font-size: 16px; }
  .micro-proof { display: none; }
}

@media (max-width: 920px) {
  .hero { padding: 46px 0 42px; }
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: clamp(52px, 11vw, 76px); line-height: .96; }
  .hero-visual { min-height: 500px; }
  .floating-card { display: none; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: clamp(38px, 7vw, 56px); }
}

@media (max-width: 680px) {
  :root { --header-h: 64px; }
  .site-header, .header-inner { min-height: var(--header-h); }
  .hero { padding: 34px 0 28px; }
  .hero .eyebrow { margin-bottom: 14px; font-size: 11px; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 62px); }
  .hero-lead { margin-bottom: 22px; }
  .micro-proof { gap: 7px 13px; }
  .hero-visual { min-height: 440px; }
  .board-status { display: none; }
  .board-inner { padding: 17px; }
  .order-meta { gap: 7px; }
  .board-notes .board-note:last-child { display: none; }
  .section, .section--tight { padding: 64px 0; }
  .section-head h2 { font-size: clamp(36px, 10.5vw, 48px); }
  .problem-card { min-height: auto; }
  .card-label { margin-bottom: 30px; }
  .join-main { padding-top: 32px; }
  .join-head { margin-bottom: 28px; }
  .join-head h1 { font-size: 43px; }
  .role-card { min-height: 128px; padding: 18px; }
  .role-card-no { margin-bottom: 15px; }
  .language-switcher button { min-width: 34px; height: 30px; padding-inline: 7px; }
  .simple-header-inner { gap: 10px; }
  .simple-header-inner .back-link { font-size: 0; gap: 0; }
  .simple-header-inner .back-link svg { width: 20px; height: 20px; }
}

/* Editorial information architecture: hierarchy without repetitive card grids. */
@media (min-width: 921px) {
  .hero-visual {
    min-height: 520px;
  }

  .section,
  .section--tight {
    padding: 72px 0;
  }

  .section-head:not(.section-head--center) {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
    column-gap: clamp(40px, 6vw, 92px);
    row-gap: 16px;
    align-items: end;
    margin-bottom: 38px;
  }

  .section-head:not(.section-head--center) .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .section-head:not(.section-head--center) h2 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(36px, 3.55vw, 52px);
  }

  .section-head:not(.section-head--center) p {
    max-width: 480px;
    margin: 0 0 3px;
    font-size: 16px;
  }

  .problem-grid {
    grid-template-columns: .86fr 1.14fr;
    gap: 10px;
  }

  .problem-card {
    min-height: 235px;
    padding: 27px 28px;
    border-radius: 16px;
  }

  .problem-card h3 {
    max-width: 620px;
    font-size: clamp(25px, 2.3vw, 34px);
  }

  .problem-pairs {
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .problem-pair {
    border: 0;
    border-radius: 0;
  }

  .problem-pair + .problem-pair {
    border-top: 1px solid var(--line);
  }

  .problem-pair > div {
    padding: 16px 22px;
  }

  .role-preview-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
  }

  .role-preview-card {
    grid-column: span 3;
    min-height: 176px;
    padding: 21px;
    border-radius: 14px;
  }

  .role-preview-card:nth-child(-n + 2) {
    grid-column: span 6;
    min-height: 198px;
    padding: 25px;
  }

  .role-preview-card:nth-child(2) {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
  }

  .role-preview-card:nth-child(2) h3,
  .role-preview-card:nth-child(2) .text-link {
    color: var(--white);
  }

  .role-preview-card:nth-child(2) p {
    color: rgba(255,255,255,.68);
  }

  .role-preview-card:nth-child(2) .role-index {
    color: var(--lime);
  }

  .role-index {
    width: auto;
    height: auto;
    display: block;
    margin-bottom: 25px;
    border-radius: 0;
    background: transparent;
    color: var(--leaf);
    font-size: 11px;
    letter-spacing: .12em;
  }

  .role-preview-card:nth-child(-n + 2) .role-index {
    margin-bottom: 34px;
  }

  .role-preview-card h3 {
    font-size: 18px;
  }

  .role-preview-card:nth-child(-n + 2) h3 {
    max-width: 430px;
    font-size: 23px;
  }

  .role-preview-card p {
    font-size: 12px;
  }

  .role-preview-card:nth-child(-n + 2) p {
    max-width: 480px;
    font-size: 14px;
  }

  .role-preview-all {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .steps-grid {
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .step-card {
    min-height: 238px;
    padding: 26px 20px 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .step-card + .step-card {
    border-left: 1px solid rgba(255,255,255,.16);
  }

  .step-number {
    margin-bottom: 50px;
  }

  .step-card h3 {
    margin: 0 0 11px;
    font-size: 22px;
  }

  .steps-note {
    margin-top: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.035);
  }

  .operations-grid--pilot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(23,60,42,.22);
    border-bottom: 1px solid rgba(23,60,42,.22);
  }

  .operations-grid--pilot .operation-card {
    min-height: 250px;
    padding: 30px 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .operations-grid--pilot .operation-card + .operation-card {
    border-left: 1px solid rgba(23,60,42,.22);
  }

  .operations-grid--pilot .operation-icon {
    width: 31px;
    height: 31px;
    margin-bottom: 48px;
    border-radius: 0;
    background: transparent;
    color: var(--forest);
  }

  .operations-grid--pilot .operation-icon svg {
    width: 28px;
    height: 28px;
  }

  .operations-grid--pilot .operation-card h3 {
    max-width: 310px;
    font-size: 20px;
  }

  .operations-grid--pilot .operation-card p {
    max-width: 350px;
    font-size: 14px;
  }

  .report-card {
    gap: clamp(36px, 5vw, 72px);
    padding: 44px 50px;
    border-radius: 22px;
  }

  .report-copy h2 {
    font-size: clamp(36px, 3.5vw, 50px);
  }

  .report-preview {
    min-height: 270px;
    border-radius: 18px;
  }

  .trust-grid {
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    gap: clamp(60px, 8vw, 120px);
  }

  .trust-statement h2 {
    max-width: 470px;
    font-size: clamp(38px, 3.8vw, 54px);
  }

  .trust-item {
    grid-template-columns: 42px 1fr;
    gap: 22px;
    padding: 18px 0;
  }

  .trust-item-num {
    width: auto;
    height: auto;
    display: block;
    padding-top: 4px;
    border-radius: 0;
    background: transparent;
    color: var(--leaf);
  }

  .trust-item h3 {
    font-size: 20px;
  }

  .section-head--center {
    max-width: 720px;
    margin-bottom: 28px;
  }

  .section-head--center h2 {
    font-size: clamp(38px, 3.9vw, 54px);
  }

  .faq-list {
    max-width: 900px;
  }

  .closing {
    padding: 8px 0 68px;
  }

  .closing-card {
    padding: 46px 54px;
    border-radius: 22px;
  }

  .closing-card h2 {
    max-width: 920px;
    font-size: clamp(38px, 4vw, 56px);
  }
}

/* Accessible custom region picker. */
.native-select {
  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;
}

.region-picker {
  position: relative;
}

.region-trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(23,60,42,.18);
  border-radius: 13px;
  background: var(--ivory-2);
  color: #7a827d;
  text-align: left;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.region-trigger.has-value {
  color: var(--ink);
}

.region-trigger:hover {
  border-color: rgba(23,60,42,.34);
  background: var(--white);
}

.region-trigger:focus-visible,
.region-trigger[aria-expanded="true"] {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23,60,42,.09);
}

.region-trigger[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(162,62,43,.08);
}

.region-trigger svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 180ms var(--ease);
}

.region-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.region-dropdown {
  position: absolute;
  z-index: 120;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: min(360px, 88vw);
  padding: 8px;
  border: 1px solid rgba(23,60,42,.16);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(23,60,42,.18);
}

.region-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--ivory-2);
}

.region-search:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23,60,42,.08);
}

.region-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #6f7972;
}

.region-search input {
  min-height: 43px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.field .region-search input:focus {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.region-options {
  max-height: 250px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(23,60,42,.24) transparent;
}

.region-option {
  position: relative;
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 36px 9px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink-2);
  text-align: left;
  cursor: pointer;
}

.region-option:hover,
.region-option:focus-visible {
  outline: none;
  background: rgba(79,141,88,.09);
  color: var(--forest);
}

.region-option[aria-selected="true"] {
  background: var(--lime-soft);
  color: var(--forest);
  font-weight: 750;
}

.region-option[aria-selected="true"]::after {
  content: "\2713";
  position: absolute;
  right: 13px;
  color: var(--forest);
  font-weight: 850;
}

.region-empty {
  margin: 0;
  padding: 22px 12px;
  color: #77817a;
  text-align: center;
  font-size: 13px;
}

/* In-context success confirmation. */
.success-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,34,24,.62);
  backdrop-filter: blur(8px);
  animation: modal-fade 220ms ease both;
}

.success-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 28px;
  background: var(--ivory-2);
  box-shadow: 0 34px 100px rgba(8,27,17,.3);
  animation: modal-enter 320ms var(--ease) both;
}

.success-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

.success-dialog__close:hover {
  background: var(--white);
}

.success-dialog__close svg {
  width: 19px;
  height: 19px;
}

.success-dialog .success-mark {
  width: 60px;
  height: 60px;
  margin: 0 0 24px;
  border-radius: 18px;
}

.success-dialog .success-mark svg {
  width: 30px;
  height: 30px;
}

.success-dialog__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.success-dialog__copy h2 {
  margin-bottom: 12px;
  font-size: clamp(36px, 5vw, 52px);
}

.success-dialog__copy p {
  max-width: 600px;
  margin-bottom: 26px;
  color: #5d6961;
}

.success-ticket {
  margin-bottom: 14px;
  background: var(--white);
}

.success-next {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 15px;
  background: var(--forest);
  color: var(--white);
}

.success-next > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.success-next p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.success-next strong {
  color: var(--white);
}

.success-dialog__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 18px;
}

@keyframes modal-fade {
  from { opacity: 0; }
}

@keyframes modal-enter {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
}

@media (max-width: 680px) {
  body.region-select-open::before {
    content: "";
    position: fixed;
    z-index: 180;
    inset: 0;
    background: rgba(15,34,24,.48);
    backdrop-filter: blur(4px);
  }

  .region-dropdown {
    position: fixed;
    z-index: 190;
    top: auto;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    min-width: 0;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(8,27,17,.34);
  }

  .region-search input {
    min-height: 48px;
  }

  .region-options {
    max-height: min(52dvh, 390px);
  }

  .region-option {
    min-height: 46px;
  }

  .success-modal {
    align-items: end;
    padding: 10px;
  }

  .success-dialog {
    max-height: calc(100dvh - 20px);
    padding: 27px 20px 20px;
    border-radius: 24px;
  }

  .success-dialog__close {
    top: 13px;
    right: 13px;
  }

  .success-dialog .success-mark {
    width: 52px;
    height: 52px;
    margin-bottom: 19px;
  }

  .success-dialog__copy h2 {
    font-size: 36px;
  }

  .success-ticket {
    grid-template-columns: 1fr;
  }

  .success-next {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .success-dialog__actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 921px) and (max-width: 1120px) {
  .section-head:not(.section-head--center) {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
    column-gap: 38px;
  }

  .role-preview-card {
    grid-column: span 6;
  }

  .role-preview-card:nth-child(-n + 2) {
    grid-column: span 6;
  }

  .steps-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .step-card {
    padding-inline: 15px;
  }

  .step-card h3 {
    font-size: 19px;
  }
}

@media (max-width: 920px) {
  .section-head:not(.section-head--center) {
    display: block;
  }

  .problem-grid {
    gap: 10px;
  }

  .role-preview-card,
  .operation-card {
    border-radius: 16px;
  }

  .steps-grid {
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .step-card {
    min-height: auto;
    padding: 24px 4px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    border-radius: 0;
    background: transparent;
  }

  .step-number {
    display: block;
    margin-bottom: 25px;
  }

  .step-card h3 {
    margin-top: 0;
  }

  .operations-grid--pilot {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .operations-grid--pilot .operation-card {
    min-height: auto;
    padding: 28px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .operations-grid--pilot .operation-icon {
    margin-bottom: 28px;
  }
}

@media (max-width: 1100px) {
  .header-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
    gap: 40px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .floating-card--one { left: -10px; }
  .floating-card--two { right: -8px; }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-card {
    min-height: 270px;
  }

  .join-form-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 920px) {
  :root { --header-h: 70px; }

  .header-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    height: calc(100dvh - var(--header-h));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    margin: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms var(--ease), visibility 0s linear 220ms;
  }

  body.menu-open .header-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition-delay: 0s;
  }

  body.menu-open { overflow: hidden; }

  .header-nav a {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border-top: 1px solid var(--line);
    font-size: 16px;
  }

  .header-nav a::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .button { display: none; }
  .brand { width: 126px; }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(56px, 12vw, 88px);
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 570px;
    margin: 0 auto;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-intro {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 21px 0;
  }

  .proof-item:first-of-type {
    border-left: 0;
  }

  .role-preview-grid,
  .operations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-card {
    grid-template-columns: 1fr;
  }

  .report-preview {
    max-width: 600px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-statement {
    position: static;
  }

  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .join-form-layout {
    grid-template-columns: 1fr;
  }

  .next-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .button--large {
    min-height: 52px;
  }

  .hero {
    padding: 40px 0 38px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(49px, 14.5vw, 70px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .intent-grid {
    grid-template-columns: 1fr;
  }

  .intent-link {
    min-height: 56px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-board {
    inset: 10px 0 0 0;
    border-radius: 30px;
  }

  .board-inner {
    padding: 19px;
  }

  .board-top {
    margin-bottom: 22px;
  }

  .order-card {
    padding: 18px;
  }

  .order-head h3 {
    font-size: 23px;
  }

  .crop-mark {
    width: 48px;
    height: 48px;
  }

  .order-meta {
    grid-template-columns: 1fr 1fr;
  }

  .order-meta div:last-child {
    grid-column: 1 / -1;
  }

  .route-line {
    margin: 25px 0 18px;
  }

  .route-dot {
    width: 31px;
    height: 31px;
  }

  .route-line::before {
    top: 15px;
  }

  .route-step span:last-child {
    font-size: 8px;
  }

  .board-note {
    padding: 11px 12px;
    font-size: 11px;
  }

  .floating-card {
    display: none;
  }

  .proof-strip {
    padding-bottom: 50px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    grid-column: auto;
  }

  .proof-item {
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section,
  .section--tight {
    padding: 78px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .section-head p {
    font-size: 16px;
  }

  .problem-grid,
  .problem-pair {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 290px;
    padding: 26px;
  }

  .problem-pair > div:last-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .role-preview-grid,
  .operations-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .role-preview-card,
  .operation-card,
  .step-card {
    min-height: auto;
  }

  .role-preview-card {
    padding: 24px;
  }

  .role-index,
  .operation-icon {
    margin-bottom: 28px;
  }

  .step-card {
    min-height: 230px;
  }

  .steps-note {
    align-items: stretch;
    flex-direction: column;
  }

  .report-card {
    padding: 32px 24px;
    border-radius: 30px;
  }

  .report-copy h2 {
    font-size: 40px;
  }

  .report-preview {
    min-height: 300px;
  }

  .trust-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .trust-item-num {
    width: 42px;
    height: 42px;
  }

  .faq-question {
    font-size: 17px;
  }

  .closing {
    padding-bottom: 78px;
  }

  .closing-card {
    padding: 50px 22px;
    border-radius: 30px;
  }

  .closing-card h2 {
    font-size: 43px;
  }

  .closing-actions {
    display: grid;
  }

  .closing-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 70;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: block;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: color-mix(in srgb, var(--forest) 92%, transparent);
    box-shadow: 0 16px 45px rgba(23,60,42,.28);
    backdrop-filter: blur(14px);
    transform: translateY(110%);
    opacity: 0;
    transition: transform 250ms var(--ease), opacity 180ms ease;
  }

  .mobile-cta.is-visible {
    transform: none;
    opacity: 1;
  }

  body.menu-open .mobile-cta {
    opacity: 0;
    transform: translateY(110%);
    pointer-events: none;
  }

  .mobile-cta .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .join-main {
    padding: 42px 0 76px;
  }

  .join-head h1 {
    font-size: 48px;
  }

  .join-head p {
    font-size: 16px;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    min-height: 170px;
  }

  .form-card,
  .next-card {
    border-radius: 22px;
  }

  .form-card {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .selected-role {
    padding: 15px;
  }

  .form-title {
    font-size: 27px;
  }

  .thanks-card {
    padding: 38px 20px;
    border-radius: 28px;
  }

  .request-ticket {
    grid-template-columns: 1fr;
  }

  .ticket-item + .ticket-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .thanks-actions {
    display: grid;
  }

  .thanks-actions .button {
    width: 100%;
  }
}

@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;
  }
}

/* Final cascade: keep the compact composition after legacy breakpoints. */
.contact-tab[aria-pressed="true"] {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 6px 16px rgba(23,60,42,.08);
}

@media (min-width: 921px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: clamp(34px, 4vw, 64px);
  }

  .hero-visual { min-height: clamp(532px, 61vh, 560px); }
  .steps-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .step-card { min-height: 230px; }
  .role-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 921px) and (max-height: 720px) {
  .hero-visual { min-height: 520px; }
}

@media (max-width: 920px) {
  :root { --header-h: 70px; }
  .header-actions { margin-left: auto; }
  .hero { padding: 46px 0 42px; }
  .hero-grid { gap: 34px; }
  .hero-visual { min-height: 500px; }
  .section, .section--tight { padding: 76px 0; }
  .section-head { margin-bottom: 38px; }
  .demo-head { grid-template-columns: 1fr; gap: 20px; }
  .demo-stage { grid-template-columns: 1fr; grid-template-areas: "head" "roles" "note"; }
  .demo-stage-head { max-width: 680px; }
  .demo-workspace { grid-template-columns: 1fr; }
  .demo-live-card { position: relative; top: auto; min-height: 420px; }
  .demo-result-summary { grid-template-columns: repeat(2, 1fr); }
  .demo-result-summary > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .demo-result-summary > div:nth-child(4) { border-top: 1px solid var(--line); }
  .demo-chain { grid-template-columns: repeat(3, 1fr); }
  .demo-chain article:nth-child(n+4) { min-height: 160px; }
  .demo-next-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --header-h: 64px; }
  .site-header, .header-inner { min-height: var(--header-h); }
  .hero { padding: 34px 0 28px; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 62px); line-height: .96; }
  .hero-visual { min-height: 440px; }
  .board-status { display: none; }
  .board-inner { padding: 17px; }
  .board-notes .board-note:last-child { display: none; }
  .section, .section--tight { padding: 64px 0; }
  .join-main { padding-top: 32px; }
  .join-head h1 { font-size: 43px; }
  .role-card { min-height: 128px; padding: 18px; }
  .role-card-no { margin-bottom: 15px; }
  .demo-main { padding: 24px 0 64px; }
  .demo-head { gap: 12px; margin-bottom: 18px; }
  .demo-head .eyebrow { margin-bottom: 10px; font-size: 10px; }
  .demo-head h1 { font-size: 36px; line-height: .98; }
  .demo-head > p { font-size: 14px; line-height: 1.5; }
  .demo-progress { margin-bottom: 14px; }
  .demo-progress span { min-height: 42px; gap: 6px; font-size: 11px; }
  .demo-progress i { width: 20px; height: 20px; }
  .demo-stage { padding: 18px; border-radius: 22px; }
  .demo-stage-head { margin-bottom: 16px; }
  .demo-stage-head > span { margin-bottom: 12px; }
  .demo-stage-head h2 { margin-bottom: 8px; font-size: 28px; }
  .demo-stage-head p { font-size: 13px; line-height: 1.45; }
  .demo-role-grid { grid-template-columns: 1fr; }
  .demo-role-card { min-height: 174px; padding: 18px; }
  .demo-role-card__top { margin-bottom: 20px; }
  .demo-role-card strong { font-size: 24px; }
  .demo-role-card > p { margin: 8px 0 18px; font-size: 13px; }
  .demo-role-card > p { min-height: 0; }
  .demo-form-card, .demo-live-card { border-radius: 24px; }
  .demo-form-card { padding: 22px; }
  .demo-form-card h2 { font-size: 34px; }
  .demo-form-grid { grid-template-columns: 1fr; gap: 17px; }
  .demo-live-card { min-height: 390px; padding: 22px; }
  .demo-live-empty { min-height: 300px; }
  .demo-result-head { display: block; }
  .demo-result-head { margin-bottom: 14px; }
  .demo-result-head h2 { margin-top: 8px; font-size: 37px; line-height: 1; }
  .demo-result-head p { font-size: 13px; line-height: 1.45; }
  .demo-result-head .button { width: 100%; margin-top: 18px; }
  .demo-result-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 18px; }
  .demo-result-summary > div { padding: 14px; }
  .demo-result-summary > div + div { border-top: 0; }
  .demo-result-summary > div:nth-child(2),
  .demo-result-summary > div:nth-child(4) { border-left: 1px solid var(--line); }
  .demo-result-summary > div:nth-child(3),
  .demo-result-summary > div:nth-child(4) { border-top: 1px solid var(--line); }
  .demo-result-summary small { margin-bottom: 4px; font-size: 8px; }
  .demo-result-summary strong { font-size: 13px; line-height: 1.3; }
  .demo-chain { display: flex; overflow-x: auto; margin-inline: calc(var(--container-pad) * -1); padding-inline: var(--container-pad); scroll-snap-type: x mandatory; scrollbar-width: none; }
  .demo-chain::-webkit-scrollbar { display: none; }
  .demo-chain article, .demo-chain article:nth-child(n+4) { flex: 0 0 76vw; min-height: 190px; scroll-snap-align: start; }
  .demo-matches, .demo-next-action { padding: 22px; border-radius: 22px; }
  .demo-context-card__grid { grid-template-columns: 1fr; }
  .demo-context-card__grid > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 920px) {
  .demo-invite {
    padding: 18px 0 64px;
  }

  .demo-invite-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .demo-invite-copy h2 {
    max-width: 720px;
  }

  .demo-invite-preview {
    width: min(100%, 620px);
  }
}

@media (max-width: 680px) {
  .demo-invite {
    padding: 10px 0 52px;
  }

  .demo-invite-card {
    gap: 28px;
    padding: 24px 20px 20px;
    border-radius: 24px;
  }

  .demo-invite-copy h2 {
    margin: 11px 0 14px;
    font-size: 36px;
  }

  .demo-invite-copy > p {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .demo-invite-path {
    margin-bottom: 24px;
  }

  .demo-invite-actions {
    display: grid;
    gap: 10px;
  }

  .demo-invite-actions .button {
    width: 100%;
  }

  .demo-invite-actions > small {
    text-align: center;
  }

  .demo-invite-preview {
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .demo-invite-preview__top {
    margin-bottom: 16px;
  }

  .demo-invite-request {
    padding: 17px;
  }

  .demo-invite-request h3 {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .demo-invite-route {
    margin: 20px 0;
  }

  .demo-invite-route span {
    font-size: 8px;
  }

  .demo-invite-next {
    padding: 14px;
  }
}
