/* =========================================================
   Nusenda Online Banking Login Guide — Stylesheet
   Brand: Nusenda Credit Union green (#82BA51 Mantis)
   Font: Open Sans (Nusenda's typeface)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand greens */
  --brand: #82ba51;        /* Mantis — official Nusenda */
  --brand-600: #6fa83f;
  --brand-700: #548a2c;    /* accessible green for links/buttons on white */
  --brand-800: #3f6c20;    /* dark headers */
  --brand-900: #2c4d15;    /* darkest */
  --brand-50: #f3f8ec;
  --brand-100: #e6f1d6;
  --brand-200: #cee4b1;

  /* Neutrals */
  --ink: #20271a;
  --text: #38412f;
  --muted: #6a7360;
  --faint: #8a9281;
  --line: #e4ebdb;
  --line-soft: #eef3e7;
  --bg: #f6f9f1;
  --card: #ffffff;
  --white: #ffffff;

  /* Accents */
  --gold: #f2a93b;
  --sky: #2f7da6;

  /* Effects */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(32, 50, 20, 0.05), 0 1px 3px rgba(32, 50, 20, 0.06);
  --shadow: 0 6px 18px -6px rgba(40, 70, 25, 0.18);
  --shadow-lg: 0 24px 60px -22px rgba(40, 70, 25, 0.34);
  --ring: 0 0 0 4px rgba(130, 186, 81, 0.28);

  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--brand-700);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

a:hover {
  color: var(--brand-800);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 800;
}

strong {
  font-weight: 700;
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section > h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin-bottom: 6px;
}

.lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 64ch;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--brand-800);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---------- Top utility bar ---------- */
.utility {
  background: var(--brand-900);
  color: #dcebc9;
  color: #d8e9c2;
  font-size: 0.82rem;
}

.utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 38px;
  flex-wrap: wrap;
}

.utility a {
  color: #fff;
  font-weight: 700;
}

.utility a:hover {
  color: var(--brand-200);
}

.utility .u-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.utility .u-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.utility .u-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

/* Logo lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-700) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -6px rgba(84, 138, 44, 0.7);
  flex: none;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text b {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-700);
}

/* Primary nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 9px 13px;
  border-radius: 9px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.main-nav a:hover {
  background: var(--brand-50);
  color: var(--brand-800);
}

.main-nav a[aria-current="page"] {
  color: var(--brand-800);
  background: var(--brand-50);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 11px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--brand-800);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 22px;
  border-radius: 11px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease),
    background 0.15s var(--ease), color 0.15s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: #1f3010;
  box-shadow: 0 10px 22px -10px rgba(84, 138, 44, 0.8);
}

.btn-primary:hover {
  color: #16270a;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(84, 138, 44, 0.9);
}

.btn-dark {
  background: var(--brand-800);
  color: #fff;
}

.btn-dark:hover {
  background: var(--brand-900);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  border-color: var(--brand-200);
  color: var(--brand-800);
}

.btn-ghost:hover {
  border-color: var(--brand);
  background: var(--brand-50);
  color: var(--brand-800);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.88rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding-block: 14px 4px;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--faint);
}

.breadcrumb a {
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 360px at 88% -10%, rgba(130, 186, 81, 0.5), transparent 60%),
    radial-gradient(700px 320px at 4% 120%, rgba(63, 108, 32, 0.25), transparent 55%),
    linear-gradient(160deg, var(--brand-800) 0%, var(--brand-900) 100%);
  color: #eaf3dd;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-block: 56px 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.hero h1 .hl {
  color: var(--brand-200);
}

.hero p.sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: #dcebc7;
  max-width: 54ch;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  font-size: 0.9rem;
  color: #cfe2b6;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta svg {
  width: 17px;
  height: 17px;
  color: var(--brand-200);
}

/* Hero login card */
.login-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  color: var(--text);
}

.login-card h2 {
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.login-card .lc-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font: inherit;
  font-size: 0.95rem;
  background: #fbfdf8;
  color: var(--ink);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: var(--ring);
}

.login-card .lc-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.login-card .lc-note svg {
  width: 16px;
  height: 16px;
  color: var(--brand-700);
  flex: none;
  margin-top: 2px;
}

.login-card .lc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 0.84rem;
}

/* sign-in options (non-form) */
.signin-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  margin-bottom: 11px;
  background: #fff;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease),
    transform 0.15s var(--ease);
}

a.signin-option:hover {
  border-color: var(--brand);
  background: var(--brand-50);
  transform: translateY(-1px);
}

.signin-option .so-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: none;
}

.signin-option .so-icon svg {
  width: 22px;
  height: 22px;
}

.signin-option .so-body {
  flex: 1;
  line-height: 1.3;
}

.signin-option .so-body b {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.signin-option .so-body small {
  color: var(--muted);
  font-size: 0.82rem;
}

.signin-option .so-go {
  color: var(--brand-700);
  flex: none;
  display: grid;
  place-items: center;
  transition: transform 0.15s var(--ease);
}

.signin-option .so-go svg {
  width: 20px;
  height: 20px;
}

a.signin-option:hover .so-go {
  transform: translateX(3px);
}

/* hero wave divider */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 70px;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  margin-top: -34px;
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

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

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: none;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-item b {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.trust-item small {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.stat:hover::after {
  transform: scaleX(1);
}

.stat .num {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--brand-700);
  letter-spacing: -0.02em;
}

.stat .lbl {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 4px;
  margin-top: 22px;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-soft);
}

.steps li:last-child {
  border-bottom: none;
}

.steps li::before {
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 12px -5px rgba(84, 138, 44, 0.8);
}

.steps li .st-body {
  padding-top: 5px;
}

.steps li .st-body b {
  color: var(--ink);
}

/* ---------- Access cards ---------- */
.access-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.access-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.access-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
}

.access-card .ac-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.access-card .ac-icon svg {
  width: 26px;
  height: 26px;
}

.access-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.access-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 20px;
  flex: 1;
}

.store-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  border-radius: 11px;
  padding: 9px 15px;
  font-size: 0.8rem;
  line-height: 1.1;
}

.store-badge:hover {
  color: #fff;
  background: #000;
}

.store-badge svg {
  width: 22px;
  height: 22px;
}

.store-badge b {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
}

/* ---------- Info / help grid ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.info-card .ic-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.info-card .ic-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: none;
}

.info-card .ic-icon svg {
  width: 21px;
  height: 21px;
}

.info-card h3 {
  font-size: 1.04rem;
}

.info-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Enrollment timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
  counter-reset: tl;
}

.tl-step {
  position: relative;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  counter-increment: tl;
}

.tl-step::before {
  content: "0" counter(tl);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-700);
}

.tl-step h4 {
  font-size: 1rem;
  margin: 6px 0;
}

.tl-step p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Security feature list ---------- */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 22px;
}

.feature-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-list .fl-check {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
}

.feature-list .fl-check svg {
  width: 15px;
  height: 15px;
}

.feature-list b {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
}

.feature-list small {
  color: var(--muted);
  font-size: 0.86rem;
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.faq-item.open {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.01rem;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q:hover {
  color: var(--brand-800);
}

.faq-q .chev {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--brand-700);
  transition: transform 0.25s var(--ease);
}

.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

/* ---------- Related / pills ---------- */
.related {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.related .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand-800);
  transition: all 0.15s var(--ease);
}

.related .pill:hover {
  border-color: var(--brand);
  background: var(--brand-50);
  transform: translateY(-1px);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(130, 186, 81, 0.45), transparent 60%),
    linear-gradient(135deg, var(--brand-800), var(--brand-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.cta-band p {
  color: #dcebc7;
  max-width: 56ch;
  margin: 0 auto 24px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Article prose (sub-pages) ---------- */
.prose p {
  color: var(--muted);
  margin-bottom: 16px;
}

.prose h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  margin: 28px 0 10px;
}

.prose h3 {
  font-size: 1.15rem;
  margin: 22px 0 8px;
}

.prose ul,
.prose ol {
  color: var(--muted);
  margin: 0 0 18px 1.1rem;
  display: grid;
  gap: 8px;
}

.prose li strong {
  color: var(--ink);
}

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

.callout {
  display: flex;
  gap: 14px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 22px 0;
}

.callout svg {
  width: 22px;
  height: 22px;
  color: var(--brand-700);
  flex: none;
}

.callout p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-900);
  color: #c7d8af;
  margin-top: 10px;
}

.footer-main {
  padding-block: 48px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-main .brand-text b {
  color: #fff;
}

.footer-about p {
  font-size: 0.9rem;
  color: #b6cd99;
  margin-top: 16px;
  max-width: 38ch;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-col a {
  color: #c7d8af;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-badges .fb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  color: #b6cd99;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  border-radius: 10px;
}

.footer-badges .fb svg {
  width: 22px;
  height: 22px;
  color: var(--brand-200);
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}

.social a:hover {
  background: var(--brand);
  color: #16270a;
  transform: translateY(-2px);
}

.social svg {
  width: 18px;
  height: 18px;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 22px 30px;
  font-size: 0.8rem;
  color: #a7c086;
  line-height: 1.6;
}

.footer-legal .disclaimer {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 16px;
  color: #c7d8af;
}

.footer-legal .disclaimer strong {
  color: #ffffff;
}

.footer-legal a {
  color: #d7e7c2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 280px at 92% -20%, rgba(130, 186, 81, 0.4), transparent 60%),
    linear-gradient(160deg, var(--brand-800), var(--brand-900));
  color: #eaf3dd;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-block: 46px 58px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  margin-bottom: 14px;
  max-width: 20ch;
}

.page-hero p {
  color: #dcebc7;
  max-width: 60ch;
  font-size: 1.05rem;
}

/* ---------- Main wrap ---------- */
main {
  display: block;
}

.main-wrap {
  padding-top: 30px;
}

/* small helpers */
.tac {
  text-align: center;
}

.mt0 {
  margin-top: 0;
}

.hide {
  display: none !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

@media (max-width: 800px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 84px 20px 28px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    gap: 4px;
    z-index: 70;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.05rem;
    padding: 13px 14px;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 12, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease);
    z-index: 65;
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .header-cta .btn:not(.nav-toggle) {
    display: none;
  }

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

  .trust-item:nth-child(odd) {
    border-left: none;
  }

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

  .access-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .info-grid,
  .timeline,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero .container {
    padding-block: 40px 70px;
  }

  .cta-band,
  .section {
    padding: 24px 18px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-left: none;
    border-top: 1px solid var(--line-soft);
  }

  .utility .u-left .u-item.hide-sm {
    display: none;
  }

  .brand-text b {
    font-size: 1.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}
