/* CapTab Marketing Site — Style Sheet */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #141456;
  background: #F7F7F8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: #5FC69B; color: #0e0e3d; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; padding: 0; }

/* === Tokens === */
:root {
  --navy: #141456;
  --navy-deep: #0B0B30;
  --navy-mid: #0e0e3d;
  --green: #5FC69B;
  --green-hover: #74D6AC;
  --green-dark: #2E9E72;
  --green-bg: rgba(95,198,155,0.14);
  --green-bg-light: rgba(95,198,155,0.18);
  --text: #141456;
  --text-secondary: #5A5A78;
  --text-muted: #6C6C8A;
  --text-faint: #8A8AA4;
  --text-label: #9A9AB0;
  --text-dark: #43436A;
  --border: #ECECF2;
  --border-light: #F0F0F5;
  --bg-page: #F7F7F8;
  --bg-card: #FFFFFF;
  --bg-subtle: #FBFBFD;
  --bg-table-header: #F7F7FA;
  --shadow-card: 0 6px 24px rgba(20,20,86,0.05);
  --shadow-card-lg: 0 14px 44px rgba(20,20,86,0.08);
  --shadow-card-xl: 0 30px 80px rgba(11,11,48,0.18);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-pill: 999px;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1120px;
}

/* === Layout Utilities === */
.container { max-width: var(--max-width); margin: 0 auto; }
.container--narrow { max-width: 880px; margin: 0 auto; }
.container--tight { max-width: 760px; margin: 0 auto; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* === Typography === */
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-dark);
}
.eyebrow--light { color: var(--green); }
.heading-xl {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(44px, 6vw, 76px); line-height: 1.06;
  letter-spacing: -0.015em; text-wrap: balance;
}
.heading-lg {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(32px, 4vw, 48px); line-height: 1.15;
  letter-spacing: -0.01em; text-wrap: balance;
}
.heading-md {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.18;
  letter-spacing: -0.01em; text-wrap: balance;
}
.heading-page {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(38px, 5vw, 60px); line-height: 1.1;
  letter-spacing: -0.012em; text-wrap: balance;
}
.body-lg { font-size: 17px; line-height: 1.65; }
.body { font-size: 16px; line-height: 1.7; }
.body-sm { font-size: 15.5px; line-height: 1.7; }
.body-xs { font-size: 14px; line-height: 1.65; }
.mono { font-family: var(--font-mono); }
.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }
.green { color: var(--green); }
.white { color: #FFFFFF; }
.muted { color: var(--text-secondary); }
.faint { color: var(--text-faint); }
.label { color: var(--text-label); }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.nav--solid {
  position: sticky; top: 0;
  padding: 14px 48px;
  background: rgba(11,11,48,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav--scrolled {
  background: rgba(11,11,48,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.08);
  padding: 12px 48px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
}
.nav__logo img { width: 28px; height: 28px; }
.nav__logo span {
  font-weight: 600; font-size: 17px;
  letter-spacing: -0.02em; color: #FFFFFF;
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s ease;
}
.nav__link:hover { color: #FFFFFF; }
.nav__link--active {
  font-weight: 600; color: #FFFFFF;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}
.btn { display: inline-block; font-weight: 600; border-radius: 10px; transition: background 0.15s ease, transform 0.15s ease; }
.btn--green {
  font-size: 13.5px; color: var(--navy-mid);
  background: var(--green); padding: 9px 20px; border-radius: 8px;
}
.btn--green:hover { background: var(--green-hover); }
.btn--green-lg {
  font-size: 15px; color: var(--navy-mid);
  background: var(--green); padding: 14px 32px;
}
.btn--green-lg:hover { background: var(--green-hover); transform: translateY(-1px); }
.btn--outline {
  font-size: 15px; font-weight: 500; color: #FFFFFF;
  padding: 14px 28px; border: 1px solid rgba(255,255,255,0.22);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* === Hero === */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 55%, var(--navy) 100%);
  padding: 168px 48px 0;
}
.hero__glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(95,198,155,0.14) 0%, rgba(95,198,155,0) 65%);
}
.hero__glow--right {
  top: -180px; right: -120px; width: 640px; height: 640px;
  animation: glowDrift 14s ease-in-out infinite;
}
.hero__glow--left {
  bottom: 120px; left: -200px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(95,198,155,0.08) 0%, rgba(95,198,155,0) 65%);
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.hero__pill-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.hero__body {
  font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.68);
  max-width: 620px; margin: 28px auto 0; text-wrap: pretty;
}
.hero__cta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }

/* Product mock */
.mock { position: relative; max-width: var(--max-width); margin: 88px auto -2px; perspective: 1400px; }
.mock__inner {
  transform: perspective(1400px) rotateX(9deg) scale(0.97);
  transform-origin: 50% 0%;
  border-radius: 14px 14px 0 0;
  background: #FFFFFF;
  box-shadow: 0 -10px 80px rgba(95,198,155,0.12), 0 40px 120px rgba(0,0,0,0.45);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.12);
}
.mock__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #FAFAFC;
  border-bottom: 1px solid #E8E8F0;
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: #E4E4EC; }
.mock__url {
  font-family: var(--font-mono); font-size: 10.5px; color: #9A9AB0;
  background: #F0F0F5; padding: 4px 14px; border-radius: 6px;
}
.mock__layout { display: grid; grid-template-columns: 200px 1fr; min-height: 480px; }
.mock__sidebar {
  background: #FFFFFF; border-right: 1px solid #ECECF2;
  padding: 18px 12px; display: flex; flex-direction: column; gap: 2px;
}
.mock__sidebar-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-label); padding: 6px 10px;
}
.mock__sidebar-item {
  font-size: 12px; font-weight: 500; color: var(--text-muted); padding: 8px 10px;
}
.mock__sidebar-item--active {
  font-weight: 600; color: var(--navy);
  background: rgba(95,198,155,0.13); border-radius: 7px;
}
.mock__main { padding: 24px 28px; background: #FBFBFD; }

/* === Sections === */
.section { padding: 110px 48px; }
.section--lg { padding: 128px 48px 110px; }
.section--white { background: #FFFFFF; border-top: 1px solid var(--border); }
.section--grey { background: var(--bg-page); border-top: 1px solid var(--border); }
.section--dark {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.section--dark-deep {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.section__glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(95,198,155,0.1) 0%, rgba(95,198,155,0) 65%);
}

/* === Cards === */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px;
}
.card--feature h3 {
  font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--navy);
}
.card--feature p {
  font-size: 14px; line-height: 1.65; color: var(--text-muted); margin: 12px 0 0;
}
.card--dark {
  background: #12123F; border-color: transparent; padding: 32px 28px;
}
.card--dark h4 {
  font-family: var(--font-mono); font-size: 13px; color: var(--green);
}
.card--dark p {
  font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 10px 0 0;
}

/* === Trust strip === */
.trust-strip {
  background: #FFFFFF; border-bottom: 1px solid var(--border);
  padding: 26px 48px;
}
.trust-strip__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.trust-strip__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.trust-strip__dot {
  width: 8px; height: 8px; border-radius: 2px; background: var(--green);
}

/* === Security items === */
.security-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 22px;
}
.security-item__icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 9px;
  background: var(--green-bg); display: grid; place-items: center;
  font-size: 14px; color: var(--green-dark); font-weight: 700;
}
.security-item__title { font-size: 14px; font-weight: 600; color: var(--navy); }
.security-item__desc { font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }

/* === Check list === */
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.check-list li {
  display: flex; gap: 12px; font-size: 14.5px; color: var(--text-dark); line-height: 1.5;
}
.check-icon {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-bg-light); color: var(--green-dark);
  display: grid; place-items: center; font-size: 11px; font-weight: 700; margin-top: 2px;
}

/* === Steps (Contact page) === */
.step { display: flex; align-items: flex-start; gap: 14px; }
.step__number {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px;
  background: var(--green-bg); display: grid; place-items: center;
  font-size: 13px; color: var(--green-dark); font-weight: 700;
}
.step__title { font-size: 14px; font-weight: 600; }
.step__desc { font-size: 13px; color: var(--text-faint); margin-top: 2px; }

/* === Number counter (Product page) === */
.section-number {
  font-family: var(--font-mono); font-size: 13px; color: var(--green-dark);
}

/* === FAQ === */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 30px; background: var(--bg-subtle);
}
.faq-item__q { font-size: 15.5px; font-weight: 600; color: var(--navy); }
.faq-item__a {
  font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin: 10px 0 0;
}

/* === Form (Contact page) === */
.form-card {
  background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 18px; padding: 40px; box-shadow: 0 20px 60px rgba(20,20,86,0.08);
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 12.5px; font-weight: 600; color: var(--text-dark); }
.form-label span { font-weight: 400; color: var(--text-label); }
.form-input {
  font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--navy);
  padding: 12px 14px; border: 1px solid #D0D0DC; border-radius: var(--radius-sm);
  background: #FFFFFF; outline: none; transition: border-color 0.15s ease;
}
.form-input:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(95,198,155,0.15);
}
.form-input--error { border-color: #E74C3C; }
.form-error { font-size: 11.5px; color: #E74C3C; display: none; }
.form-error.visible { display: block; }
textarea.form-input { resize: vertical; }
.fund-btn {
  flex: 1; font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 500;
  padding: 11px 0; border-radius: var(--radius-sm); cursor: pointer;
  border: 1px solid #D0D0DC; background: #FFFFFF; color: var(--text-muted);
  transition: all 0.15s ease;
}
.fund-btn.selected {
  border-color: var(--green); background: var(--green-bg); color: var(--green-dark);
}
.form-submit {
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--navy-mid); background: var(--green); padding: 14px 0;
  border: none; border-radius: 10px; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease; width: 100%;
}
.form-submit:hover { background: var(--green-hover); transform: translateY(-1px); }
.form-note {
  font-size: 11.5px; line-height: 1.6; color: var(--text-label); text-align: center;
}

/* Success state */
.form-success { text-align: center; padding: 48px 12px; display: none; }
.form-success.visible { display: block; }
.form-fields.hidden { display: none; }
.form-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(95,198,155,0.16); color: var(--green-dark);
  display: grid; place-items: center; font-size: 24px; font-weight: 700;
  margin: 0 auto;
}

/* === Footer === */
.footer {
  background: var(--navy-deep); padding: 56px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer--compact { padding: 48px 48px 36px; }
.footer__inner { max-width: var(--max-width); margin: 0 auto; }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
}
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo img { width: 26px; height: 26px; }
.footer__logo span { font-weight: 600; font-size: 16px; color: #FFFFFF; }
.footer__desc {
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.45);
  margin: 14px 0 0; max-width: 300px;
}
.footer__columns { display: flex; gap: 72px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.footer__link {
  font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.15s ease;
}
.footer__link:hover { color: #FFFFFF; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* Compact footer */
.footer--compact .footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer--compact .footer__links { display: flex; gap: 28px; }
.footer--compact .footer__link { font-size: 13px; color: rgba(255,255,255,0.6); }

/* === Page Header (inner pages) === */
.page-header {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 96px 48px 88px; text-align: center;
}
.page-header--pricing { padding-bottom: 200px; }

/* === Pricing Card === */
.price-card {
  background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 20px; box-shadow: var(--shadow-card-xl);
  overflow: hidden;
}
.price-card__grid { display: grid; grid-template-columns: 1fr 1.2fr; }
.price-card__left {
  padding: 52px 48px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.price-card__amount {
  display: flex; align-items: baseline; gap: 8px; margin-top: 18px;
}
.price-card__amount span:first-child {
  font-family: var(--font-serif); font-size: 72px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1;
}
.price-card__amount span:last-child { font-size: 14px; color: var(--text-faint); }
.price-card__right { padding: 52px 48px; }
.price-card__list { margin: 22px 0 0; display: grid; gap: 13px; }
.price-card__list li {
  display: flex; gap: 12px; font-size: 14px; color: var(--text-dark); line-height: 1.5;
}

/* === Table mocks === */
.table-mock { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #FFFFFF; }
.table-mock__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.table-mock__header-title { font-size: 13px; font-weight: 600; }
.table-mock__date {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--text-muted);
  border: 1px solid #E0E0EC; border-radius: 6px; padding: 4px 10px;
}
.table-mock__head {
  display: grid; padding: 10px 20px; background: var(--bg-table-header);
  border-bottom: 1px solid #E8E8F0;
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-label);
}
.table-mock__row {
  display: grid; padding: 11px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 12px; align-items: center;
}
.table-mock__row:last-child { border-bottom: none; }
.table-mock__total {
  display: grid; padding: 12px 20px;
  background: #F7FBF9; border-top: 1px solid #DCEFE6;
  font-size: 12px; align-items: center;
}
.table-mock .mono { font-size: 11px; text-align: right; }
.table-mock .text-right { text-align: right; }

/* === Article / Knowledge === */
.article {
  max-width: 720px; margin: 0 auto; padding: 0 48px;
}
.article h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 48px 0 16px; color: var(--navy);
}
.article h3 {
  font-size: 18px; font-weight: 600;
  margin: 36px 0 12px; color: var(--navy);
}
.article p {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary);
  margin: 0 0 16px;
}
.article p strong { color: var(--navy); font-weight: 600; }
.article ul, .article ol {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary);
  margin: 0 0 20px; padding-left: 24px;
}
.article li { margin-bottom: 6px; }
.article code {
  font-family: var(--font-mono); font-size: 13px;
  background: rgba(20,20,86,0.06); padding: 2px 6px;
  border-radius: 4px; color: var(--navy);
}
.article-table {
  width: 100%; border-collapse: collapse; margin: 24px 0 28px;
  font-size: 13px;
}
.article-table th {
  text-align: left; padding: 10px 14px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-label);
  background: var(--bg-table-header); border-bottom: 1px solid var(--border);
}
.article-table th.text-right { text-align: right; }
.article-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}
.article-table td.text-right { text-align: right; }
.article-table td.mono {
  font-family: var(--font-mono); font-size: 12px;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table--bordered {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.article-table .total-row td {
  background: #F7FBF9; border-top: 1px solid #DCEFE6;
  font-weight: 600; color: var(--navy);
}
.article-callout {
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-left: 3px solid var(--green); border-radius: 0 10px 10px 0;
  padding: 20px 24px; margin: 24px 0 28px;
}
.article-callout p { margin: 0; font-size: 14px; }
.article-callout p strong { color: var(--green-dark); }
.article-formula {
  background: var(--navy); color: #FFFFFF; border-radius: 10px;
  padding: 20px 28px; margin: 24px 0 28px;
  font-family: var(--font-mono); font-size: 14px;
  line-height: 1.8; text-align: center;
}
.article-diagram {
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px; margin: 28px 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.article-diagram__node {
  padding: 10px 24px; border-radius: 8px; font-size: 13px; font-weight: 600;
  text-align: center; min-width: 180px;
}
.article-diagram__node--fund {
  background: var(--navy); color: #FFFFFF;
}
.article-diagram__node--spv {
  background: #FFFFFF; border: 1.5px solid var(--navy); color: var(--navy);
}
.article-diagram__node--topco {
  background: #FFFFFF; border: 1px solid var(--green); color: var(--navy);
}
.article-diagram__node--sub {
  background: var(--bg-subtle); border: 1px solid #E0E0EC; color: var(--text-muted);
  font-weight: 500;
}
.article-diagram__line {
  width: 1.5px; height: 20px; background: #D6D6E4;
}
.article-diagram__label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--green-dark); background: rgba(95,198,155,0.1);
  border-radius: 999px; padding: 2px 10px;
}
.article-diagram__row {
  display: flex; gap: 16px; align-items: center;
}

/* Glossary */
.glossary-nav {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 32px 0;
  justify-content: center;
}
.glossary-nav a {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--text-muted); border: 1px solid var(--border);
  background: #FFFFFF; transition: all 0.15s ease;
}
.glossary-nav a:hover {
  border-color: var(--green); color: var(--green-dark);
  background: var(--green-bg);
}
.glossary-letter {
  font-family: var(--font-serif); font-size: 32px; font-weight: 600;
  color: var(--navy); margin: 40px 0 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--green);
  display: inline-block;
}
.glossary-term { margin-bottom: 24px; }
.glossary-term dt {
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.glossary-term dd {
  font-size: 14.5px; line-height: 1.7; color: var(--text-secondary);
  margin: 4px 0 0;
}
.glossary-term dd code {
  font-family: var(--font-mono); font-size: 12.5px;
  background: rgba(20,20,86,0.06); padding: 2px 6px;
  border-radius: 4px; color: var(--navy);
}

/* === Animations === */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowDrift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(60px, -40px); }
  100% { transform: translate(0, 0); }
}

/* Reveal animation (applied via JS) */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(.2,.65,.25,1), transform 0.85s cubic-bezier(.2,.65,.25,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Hero fade-up with stagger */
.hero [data-reveal] { animation: heroFadeUp 0.9s cubic-bezier(.2,.65,.25,1) both; }
.hero [data-stagger="1"] { animation-delay: 0.12s; }
.hero [data-stagger="2"] { animation-delay: 0.24s; }
.hero [data-stagger="3"] { animation-delay: 0.36s; }

/* === Responsive === */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav { padding: 14px 24px; }
  .nav__links { gap: 16px; }
  .section { padding: 72px 24px; }
  .hero { padding: 140px 24px 0; }
  .footer { padding: 40px 24px 32px; }
  .footer__columns { gap: 40px; }
  .price-card__grid { grid-template-columns: 1fr; }
  .price-card__left { border-right: none; border-bottom: 1px solid var(--border); }
  .mock__layout { grid-template-columns: 1fr; }
  .mock__sidebar { display: none; }
}
@media (max-width: 600px) {
  .nav__links a:not(.btn) { display: none; }
  .trust-strip__inner { gap: 24px; flex-direction: column; }
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
