:root {
  color-scheme: light;
  --ink: #10211b;
  --muted: #65746e;
  --paper: #ffffff;
  --soft: #f3f7f5;
  --line: #dfe8e3;
  --brand: #087a54;
  --brand-dark: #07523c;
  --brand-bright: #16c96f;
  --lime: #c7f36b;
  --coral: #f46f45;
  --night: #0a2920;
  --shadow: 0 24px 70px rgba(8, 48, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

body,
button,
a {
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
li,
span {
  overflow-wrap: anywhere;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 232, 227, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  width: 164px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  min-height: 40px;
  padding: 8px 12px;
  color: #52615b;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand-dark);
  border-bottom-color: var(--brand-bright);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(7, 82, 60, 0.2);
  transform: translateY(-2px);
}

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

.button-large {
  min-height: 56px;
  padding: 0 28px;
}

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

.button-light {
  color: var(--brand-dark);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  color: var(--brand-dark);
  background: var(--lime);
  border-color: var(--lime);
}

.button-ghost {
  color: #fff;
  background: rgba(5, 35, 25, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

.home-hero {
  position: relative;
  height: min(760px, calc(100svh - 116px));
  min-height: 600px;
  color: #fff;
  overflow: hidden;
}

.home-hero-bg,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-bg {
  background: url("/images/fishing-pond-hero.jpg") center 45% / cover no-repeat;
  transform: scale(1.01);
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 30, 22, 0.93) 0%, rgba(4, 30, 22, 0.78) 39%, rgba(4, 30, 22, 0.12) 72%),
    linear-gradient(0deg, rgba(3, 26, 19, 0.5), transparent 45%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 40px));
  height: 100%;
  margin-left: clamp(20px, 7vw, 112px);
  padding: 54px 0 68px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.eyebrow.light {
  color: var(--lime);
}

.home-hero h1 {
  margin: 0;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 950;
}

.hero-statement {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 34px;
  font-weight: 850;
  line-height: 1.24;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 38px 0 0;
}

.hero-facts div {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  font-size: 16px;
  font-weight: 850;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.hero-scroll span {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.56);
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 6vw, 96px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

.section-heading h2,
.intro-split h2,
.app-showcase h2,
.share-section h2,
.data-band h2,
.trust-band h2,
.about-lead h2,
.roadmap h2,
.process-detail h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.18;
}

.section-heading > p:last-child,
.intro-split p,
.app-showcase p,
.share-section p,
.data-band p,
.trust-band p,
.about-lead p,
.roadmap p,
.process-detail p {
  max-width: 780px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

.band-soft {
  background: var(--soft);
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  max-width: 1100px;
}

.comparison-grid article {
  min-height: 210px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-grid .comparison-target {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.comparison-grid h3 {
  margin: 28px 0 10px;
  font-size: 23px;
}

.comparison-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.comparison-target p {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.comparison-target .comparison-label {
  color: var(--lime);
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--brand);
}

.flow-arrow .icon {
  width: 30px;
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 84px);
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 24px;
  min-width: 0;
  padding-top: 36px;
  border-top: 3px solid var(--brand);
}

.angler-panel {
  border-top-color: var(--coral);
}

.audience-no {
  display: block;
  color: #b9c7c0;
  font-size: 12px;
  font-weight: 900;
}

.audience-panel h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.24;
}

.audience-panel p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.phone-wrap {
  align-self: end;
  height: 430px;
  overflow: hidden;
}

.phone-shell {
  position: relative;
  width: 228px;
  aspect-ratio: 0.51;
  margin: 0 auto;
  padding: 9px;
  background: #101815;
  border: 1px solid #26352f;
  border-radius: 34px;
  box-shadow: 0 24px 48px rgba(10, 41, 32, 0.2);
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 64px;
  height: 17px;
  background: #101815;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 16px 13px;
  background: #f5f7f6;
  border-radius: 26px;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 5px;
  color: #1d2b26;
  font-size: 8px;
  font-weight: 900;
}

.app-hero {
  display: grid;
  gap: 7px;
  margin: 0 -13px 15px;
  padding: 20px 14px 16px;
  color: #fff;
  background: var(--brand-bright);
}

.app-hero span {
  font-size: 9px;
  font-weight: 800;
}

.app-hero strong {
  font-size: 16px;
  line-height: 1.2;
}

.app-search {
  margin-top: 7px;
  padding: 8px 10px;
  color: #9aa6a1;
  font-size: 8px;
  background: #fff;
  border-radius: 8px;
}

.screen-section-title,
.screen-title-row,
.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.screen-section-title {
  margin: 11px 0 8px;
  font-size: 9px;
}

.screen-section-title span {
  color: var(--brand);
  font-size: 7px;
}

.ticket-card,
.session-row {
  padding: 11px;
  background: #fff;
  border: 1px solid #e6ece9;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(16, 33, 27, 0.06);
}

.ticket-card.secondary {
  margin-top: 7px;
}

.ticket-head strong,
.session-row b {
  font-size: 9px;
}

.ticket-head b {
  color: var(--coral);
  font-size: 12px;
}

.ticket-card > span,
.session-row span {
  display: block;
  margin-top: 5px;
  color: #7a8882;
  font-size: 7px;
}

.ticket-card small {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 6px;
  color: #a55c00;
  font-size: 6px;
  background: #fff2d8;
  border-radius: 4px;
}

.merchant-screen {
  background: #f2f6f4;
}

.screen-kicker {
  margin: 12px 0 1px;
  color: #74817c;
  font-size: 8px;
}

.screen-title-row h3 {
  margin: 0;
  font-size: 17px;
}

.status-dot {
  padding: 2px 5px;
  color: var(--brand);
  font-size: 6px;
  background: #dff7e8;
  border-radius: 4px;
}

.income-panel {
  display: grid;
  margin-top: 14px;
  padding: 14px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 8px;
}

.income-panel span,
.income-panel small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 7px;
}

.income-panel strong {
  margin: 5px 0 2px;
  font-size: 21px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 9px 0;
  background: #fff;
  border: 1px solid #e5ebe8;
  border-radius: 8px;
}

.mini-stats div {
  display: grid;
  padding: 9px 3px;
  text-align: center;
  border-left: 1px solid #edf1ef;
}

.mini-stats div:first-child {
  border-left: 0;
}

.mini-stats b {
  font-size: 12px;
}

.mini-stats span {
  color: #7a8882;
  font-size: 6px;
}

.session-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.session-row strong {
  color: var(--coral);
  font-size: 11px;
}

.scan-action {
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  background: var(--brand);
  border: 0;
  border-radius: 999px;
}

.lifecycle {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.lifecycle li {
  position: relative;
  padding: 30px 28px 0 0;
}

.lifecycle li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--brand-bright);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--brand-bright);
  content: "";
}

.lifecycle span,
.journey-grid span,
.trust-grid > article > span,
.values-grid > article > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.lifecycle h3 {
  margin: 8px 0 6px;
  font-size: 21px;
}

.lifecycle p {
  color: var(--muted);
  font-size: 14px;
}

.trust-band,
.data-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  color: #fff;
  background: var(--night);
}

.trust-band p,
.data-band p {
  color: rgba(255, 255, 255, 0.7);
}

.trust-band ul,
.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-band li,
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 750;
}

.trust-band li .icon,
.check-list li .icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--lime);
}

.faq-list {
  display: grid;
  max-width: 960px;
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--brand);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  color: #fff;
  background: var(--brand);
}

.cta-section h2 {
  max-width: 820px;
  margin: 0;
  font-size: 48px;
  line-height: 1.18;
}

.cta-section p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.application-copy {
  align-self: start;
  padding-top: 18px;
}

.application-points {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.application-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.application-points .icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--lime);
}

.application-form {
  position: relative;
  width: min(100%, 650px);
  padding: 32px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(2, 35, 24, 0.25);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.form-heading h3,
.form-heading p {
  margin: 0;
}

.form-heading h3 {
  font-size: 24px;
}

.form-heading p {
  color: var(--muted) !important;
  font-size: 13px !important;
}

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

.application-form label,
.message-field {
  display: grid;
  gap: 7px;
  color: #34463f;
  font-size: 14px;
  font-weight: 750;
}

.form-span,
.message-field {
  grid-column: 1 / -1;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  background: #fff;
  border: 1px solid #ccd9d3;
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.application-form input,
.application-form select {
  min-height: 46px;
  padding: 0 13px;
}

.application-form textarea {
  min-height: 112px;
  padding: 11px 13px;
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(8, 122, 84, 0.12);
}

.application-form fieldset {
  margin: 22px 0;
  padding: 0;
  border: 0;
}

.application-form legend {
  margin-bottom: 10px;
  color: #34463f;
  font-size: 14px;
  font-weight: 750;
}

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}

.checkbox-grid label:has(input:checked) {
  color: var(--brand-dark);
  background: #e8f7f0;
  border-color: #9dd9c0;
}

.checkbox-grid input {
  width: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--brand);
}

.message-field {
  margin-bottom: 22px;
}

.application-form > .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.application-form > .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0 !important;
  color: var(--brand-dark) !important;
  font-size: 13px !important;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  color: #b42318 !important;
}

.application-form .form-note {
  max-width: none;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.form-note a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-honey {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thanks-section {
  display: grid;
  place-items: center;
  min-height: 610px;
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
  background: var(--soft);
}

.thanks-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
}

.thanks-mark .icon {
  width: 34px;
  height: 34px;
}

.thanks-section h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.15;
}

.thanks-section > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.thanks-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 500px;
  padding: clamp(80px, 12vw, 170px) clamp(20px, 7vw, 112px) 80px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 30, 22, 0.92), rgba(4, 30, 22, 0.58) 60%, rgba(4, 30, 22, 0.28)),
    url("/images/fishing-pond-hero.jpg") center 42% / cover;
}

.page-hero-copy {
  max-width: 960px;
}

.page-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.12;
}

.page-hero-copy > p:last-child {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
}

.intro-split,
.app-showcase,
.share-section,
.about-lead,
.process-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(46px, 8vw, 120px);
}

.phone-stage {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 42px;
  background: var(--soft);
}

.phone-stage .phone-shell {
  width: 255px;
}

.feature-grid,
.journey-grid,
.trust-grid,
.plain-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.journey-grid article,
.trust-grid article,
.plain-grid article,
.values-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  color: var(--brand);
  background: #e3f8eb;
  border-radius: 50%;
}

.feature-icon .icon {
  width: 23px;
  height: 23px;
}

.feature-card h3,
.journey-grid h3,
.trust-grid h3,
.plain-grid h3,
.values-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

.feature-card p,
.journey-grid p,
.trust-grid p,
.plain-grid p,
.values-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.data-grid div {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.data-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.app-showcase .check-list {
  margin-top: 26px;
}

.app-showcase .check-list li {
  color: var(--ink);
  border-bottom-color: var(--line);
}

.app-showcase .check-list li .icon {
  color: var(--brand);
}

.journey-grid article {
  min-height: 250px;
}

.journey-grid span,
.trust-grid > article > span,
.values-grid > article > span {
  display: block;
  margin-bottom: 44px;
}

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

.rule-stack span {
  padding: 20px;
  color: var(--brand-dark);
  font-weight: 850;
  background: #e3f8eb;
  border-left: 3px solid var(--brand-bright);
}

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

.trust-grid article {
  min-height: 230px;
}

.process-detail ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-detail li {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 20px 0 20px 42px;
  border-bottom: 1px solid var(--line);
  counter-increment: process;
}

.process-detail li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
  content: "0" counter(process);
}

.process-detail li span {
  font-weight: 850;
}

.process-detail li p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.values-band {
  color: #fff;
  background: var(--night);
}

.values-grid article {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.values-grid > article > span {
  color: var(--lime);
}

.values-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.roadmap-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.roadmap-line span {
  position: relative;
  padding: 28px 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.roadmap-line span::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: #bdc9c3;
  border-radius: 50%;
  content: "";
}

.roadmap-line span.active {
  color: var(--brand-dark);
}

.roadmap-line span.active::before {
  background: var(--brand-bright);
  box-shadow: 0 0 0 5px rgba(22, 201, 111, 0.14);
}

.site-footer {
  padding: 64px clamp(20px, 6vw, 96px) 26px;
  background: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, auto);
  gap: 50px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 164px;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  align-content: start;
  gap: 12px 24px;
  color: #53625c;
  font-size: 14px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #89958f;
  font-size: 12px;
  border-top: 1px solid var(--line);
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 164px 1fr auto;
    gap: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav {
    gap: 2px;
  }

  .nav a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .phone-wrap {
    height: 360px;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .site-header > .button {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(10, 41, 32, 0.1);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .home-hero {
    height: calc(100svh - 108px);
    min-height: 570px;
  }

  .home-hero-overlay {
    background: linear-gradient(90deg, rgba(4, 30, 22, 0.91), rgba(4, 30, 22, 0.58));
  }

  .home-hero-content {
    width: min(720px, calc(100% - 48px));
    margin-left: 24px;
  }

  .home-hero h1 {
    font-size: 66px;
  }

  .hero-statement {
    font-size: 29px;
  }

  .section-heading h2,
  .intro-split h2,
  .app-showcase h2,
  .share-section h2,
  .data-band h2,
  .trust-band h2,
  .about-lead h2,
  .roadmap h2,
  .process-detail h2,
  .cta-section h2 {
    font-size: 40px;
  }

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

  .flow-arrow {
    transform: rotate(90deg);
  }

  .dual-grid,
  .trust-band,
  .data-band,
  .cta-section,
  .intro-split,
  .app-showcase,
  .share-section,
  .about-lead,
  .process-detail,
  .roadmap,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .application-copy {
    padding-top: 0;
  }

  .application-form {
    width: 100%;
  }

  .audience-panel {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .lifecycle {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 20px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .lifecycle li {
    padding: 0 0 28px 22px;
  }

  .lifecycle li::before {
    top: 5px;
    left: -26px;
  }

  .phone-stage {
    grid-row: 1;
  }

  .roadmap-line {
    min-width: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand,
  .footer-brand img {
    width: 144px;
  }

  .home-hero {
    height: calc(100svh - 100px);
    min-height: 540px;
  }

  .home-hero-bg {
    background-position: 61% center;
  }

  .home-hero-overlay {
    background: rgba(4, 30, 22, 0.75);
  }

  .home-hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 34px 0 42px;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .hero-statement {
    margin-top: 14px;
    font-size: 25px;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-facts {
    margin-top: 24px;
  }

  .hero-facts div {
    padding: 0 10px;
  }

  .hero-facts dt {
    font-size: 13px;
  }

  .hero-facts dd {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 72px 16px;
  }

  .cta-section {
    gap: 38px;
  }

  .application-form {
    padding: 22px 18px;
  }

  .form-heading {
    display: block;
  }

  .form-heading p {
    margin-top: 3px;
  }

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

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

  .thanks-section {
    min-height: 520px;
  }

  .thanks-section h1 {
    font-size: 36px;
  }

  .thanks-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .intro-split h2,
  .app-showcase h2,
  .share-section h2,
  .data-band h2,
  .trust-band h2,
  .about-lead h2,
  .roadmap h2,
  .process-detail h2,
  .cta-section h2 {
    font-size: 32px;
  }

  .section-heading > p:last-child,
  .intro-split p,
  .app-showcase p,
  .share-section p,
  .data-band p,
  .trust-band p,
  .about-lead p,
  .roadmap p,
  .process-detail p {
    font-size: 16px;
  }

  .comparison-grid article {
    min-height: 0;
    padding: 24px;
  }

  .dual-grid,
  .feature-grid,
  .journey-grid,
  .trust-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .phone-wrap {
    height: 360px;
  }

  .page-hero {
    min-height: 430px;
    padding: 86px 16px 54px;
    background-position: 62% center;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero-copy > p:last-child {
    font-size: 16px;
  }

  .phone-stage {
    min-height: 500px;
    padding: 30px 18px;
  }

  .phone-stage .phone-shell {
    width: 235px;
  }

  .feature-card,
  .journey-grid article,
  .trust-grid article,
  .plain-grid article,
  .values-grid article {
    min-height: 0;
    padding: 24px;
  }

  .feature-icon,
  .journey-grid span,
  .trust-grid > article > span,
  .values-grid > article > span {
    margin-bottom: 26px;
  }

  .data-grid,
  .rule-stack {
    grid-template-columns: 1fr;
  }

  .process-detail li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .roadmap-line {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 18px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .roadmap-line span {
    padding: 0 0 24px 18px;
  }

  .roadmap-line span::before {
    top: 5px;
    left: -23px;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

@media (max-height: 700px) and (max-width: 640px) {
  .home-hero {
    height: calc(100svh - 100px);
    min-height: 0;
  }

  .home-hero-content .eyebrow,
  .hero-facts {
    display: none;
  }

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