:root {
  --bg: #edf2f1;
  --surface: #f8fbfa;
  --surface-soft: #dfe8e6;
  --ink: #0d1716;
  --muted: #53615f;
  --line: #bfd0cd;
  --brand: #0e615a;
  --brand-dark: #081b19;
  --brand-soft: #d7e6e3;
  --accent: #76a8a1;
  --accent-strong: #2e7a73;
  --accent-soft: #dceceb;
  --max: 1120px;
  --radius: 16px;
  --shadow: 0 24px 54px rgba(7, 21, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(118, 168, 161, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(8, 27, 25, 0.06), transparent 24%),
    linear-gradient(180deg, #f8fbfa 0%, #ebf0ef 100%);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 250, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(191, 208, 205, 0.72);
  box-shadow: 0 12px 28px rgba(13, 23, 22, 0.06);
}

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

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.hero {
  padding: 84px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118, 168, 161, 0.18) 0%, rgba(14, 97, 90, 0.12) 100%);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Aptos Display", "Aptos", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-copy {
  max-width: 43rem;
  min-width: 0;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(2.05rem, 4.05vw, 3.5rem);
  line-height: 1.03;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-points,
.trust-list,
.tier-list {
  margin: 0;
  padding-left: 22px;
}

.hero-points li,
.trust-list li,
.tier-list li {
  margin-bottom: 8px;
}

.hero-note,
.section-note {
  color: var(--muted);
  max-width: 42rem;
}

.hero-note {
  margin-top: 8px;
  margin-bottom: 32px;
}

.hero-bridge {
  margin-top: 0;
  padding: 22px 22px 20px;
  background:
    radial-gradient(circle at top right, rgba(118, 168, 161, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(248, 251, 250, 0.98) 0%, rgba(224, 233, 231, 0.96) 100%);
  border-color: rgba(191, 208, 205, 0.92);
}

.hero-bridge-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: stretch;
}

.hero-bridge-item {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(191, 208, 205, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-bridge-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-path {
  position: relative;
  overflow: hidden;
}

.hero-path::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
}

.hero-path-before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(231, 238, 236, 0.92) 100%);
}

.hero-path-before::before {
  background: linear-gradient(90deg, rgba(8, 27, 25, 0.92) 0%, rgba(8, 27, 25, 0.44) 100%);
}

.hero-path-after {
  background: linear-gradient(180deg, rgba(246, 251, 249, 0.98) 0%, rgba(216, 231, 227, 0.98) 100%);
}

.hero-path-after::before {
  background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.hero-path-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 97, 90, 0.08);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-path-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(191, 208, 205, 0.95);
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 10px 18px rgba(8, 27, 25, 0.05);
}

.hero-node-alert {
  background: rgba(8, 27, 25, 0.88);
  border-color: rgba(8, 27, 25, 0.88);
  color: #fff;
}

.hero-node-success {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  border-color: rgba(14, 97, 90, 0.72);
  color: #fff;
}

.hero-path-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(14, 97, 90, 0.08);
  color: var(--brand);
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.9;
}

.hero-bridge-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(191, 208, 205, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-note {
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 14px;
}

.contact-checklist {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 44rem;
}

.contact-checklist li {
  position: relative;
  margin-bottom: 0;
  padding: 14px 16px 14px 48px;
  border-radius: 18px;
  border: 1px solid rgba(191, 208, 205, 0.88);
  background: rgba(248, 251, 250, 0.82);
  box-shadow: 0 16px 36px rgba(13, 23, 22, 0.06);
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(14, 97, 90, 0.94) 0%, rgba(11, 47, 45, 0.9) 100%);
  box-shadow: 0 0 0 5px rgba(14, 97, 90, 0.1);
}

.contact-form {
  margin-top: 26px;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field span,
.consent-row span {
  font-weight: 700;
  color: var(--brand-dark);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(191, 208, 205, 0.95);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 2px rgba(13, 23, 22, 0.04);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(14, 97, 90, 0.2);
  outline-offset: 1px;
  border-color: rgba(14, 97, 90, 0.52);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 0;
}

.consent-row input {
  margin-top: 4px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.form-status {
  min-height: 1.6em;
  margin: 14px 0 0;
  font-weight: 700;
}

.form-status[data-state="pending"] {
  color: var(--brand-dark);
}

.form-status[data-state="success"] {
  color: var(--brand);
}

.form-status[data-state="error"] {
  color: #9a2f18;
}

.contact-fallback {
  margin-top: 14px;
  color: var(--muted);
}

.legal-card.contact-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(11, 34, 33, 0.98) 0%, rgba(13, 52, 49, 0.95) 100%);
  border-color: rgba(61, 110, 106, 0.82);
  color: #f4f7f6;
}

.legal-card.contact-card .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.legal-card.contact-card h3 {
  margin: 0;
  max-width: 14ch;
  color: #fff;
}

.contact-side-steps {
  display: grid;
  gap: 12px;
}

.contact-side-step {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(191, 208, 205, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-side-step strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.02rem;
}

.contact-side-step p {
  margin: 0;
  color: rgba(232, 240, 238, 0.86);
  line-height: 1.6;
}

.contact-side-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(191, 208, 205, 0.18);
  color: rgba(232, 240, 238, 0.82);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 18px;
}

.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(8, 27, 25, 0.2);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(8, 27, 25, 0.28);
}

.button.secondary {
  border-color: rgba(118, 168, 161, 0.54);
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand-dark);
}

.button.secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 97, 90, 0.68);
  background: rgba(215, 230, 227, 0.76);
}

.card,
.article-card,
.legal-card,
.feature-list li,
.step,
.offer-tier {
  background: linear-gradient(180deg, rgba(248, 251, 250, 0.98) 0%, rgba(232, 239, 237, 0.98) 100%);
  border: 1px solid rgba(191, 208, 205, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list li,
.step,
.offer-tier {
  position: relative;
  overflow: hidden;
}

.feature-list li::before,
.step::before,
.offer-tier::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 68px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

.section {
  padding: 28px 0 48px;
}

.section-contrast {
  background:
    radial-gradient(circle at top left, rgba(118, 168, 161, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(248, 251, 250, 0.72) 0%, rgba(225, 233, 231, 0.94) 100%);
}

.section-muted {
  background: linear-gradient(180deg, rgba(248, 251, 250, 0.82) 0%, rgba(229, 236, 234, 0.74) 100%);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(118, 168, 161, 0.18), transparent 28%),
    linear-gradient(180deg, #081b19 0%, #102826 52%, #0e615a 100%);
  color: rgba(255, 255, 255, 0.92);
}

.section-dark .section-header h2,
.section-dark .section-header .lead,
.section-dark h3,
.section-dark p {
  color: inherit;
}

.section-dark .eyebrow {
  background: rgba(215, 230, 227, 0.16);
  color: #fff;
}

.section-header {
  margin-bottom: 22px;
  max-width: 780px;
}

.blog-intro-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.blog-intro-card {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(118, 168, 161, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(8, 27, 25, 0.98) 0%, rgba(11, 43, 41, 0.96) 58%, rgba(14, 97, 90, 0.92) 100%);
  border: 1px solid rgba(61, 110, 106, 0.8);
  box-shadow: 0 28px 62px rgba(7, 21, 19, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.blog-intro-card .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.blog-intro-card h2 {
  max-width: 13ch;
  color: #fff;
}

.blog-reading-path {
  display: grid;
  gap: 12px;
}

.blog-reading-step {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(215, 230, 227, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.blog-reading-step strong {
  color: #fff;
  font-size: 1.02rem;
}

.blog-reading-step span {
  color: rgba(232, 240, 238, 0.82);
  line-height: 1.55;
}

.blog-reading-step:hover {
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
  border-color: rgba(215, 230, 227, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(118, 168, 161, 0.08) 100%);
}

.blog-library {
  margin-top: 4px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.feature-list-dark li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(118, 168, 161, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.feature-list-dark li::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(118, 168, 161, 0.82) 100%);
}

.feature-list li,
.step,
.offer-tier,
.article-card,
.legal-card {
  padding: 22px;
}

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

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255, 255, 255, 0.78) 100%);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(14, 97, 90, 0.14);
}

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

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-card-body {
  display: grid;
  gap: 8px;
  align-content: start;
}

.article-card p,
.article-card h2 {
  margin: 0;
}

.article-card h2 {
  font-size: clamp(1.5rem, 1.9vw, 2.1rem);
  line-height: 1.06;
}

.article-card-featured h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
}

.article-card h2 a {
  color: var(--brand-dark);
  text-decoration: none;
}

.article-card h2 a:hover {
  color: var(--brand);
  text-decoration: none;
}

.article-kicker {
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card-footer {
  margin-top: auto;
  padding-top: 4px;
}

.article-card-body > p:not(.article-kicker):not(.article-meta):not(.article-card-footer) {
  font-size: 0.98rem;
  line-height: 1.55;
}

.article-card-footer a {
  font-weight: 700;
  text-decoration: none;
}

.article-card-footer a:hover {
  text-decoration: none;
}

.article-card-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.article-card-featured img {
  height: 100%;
  min-height: 280px;
  margin-bottom: 0;
}

.offer-tier.featured {
  outline: 2px solid rgba(14, 97, 90, 0.24);
  background: linear-gradient(180deg, rgba(249, 252, 251, 0.98) 0%, rgba(220, 232, 229, 0.98) 100%);
  box-shadow: 0 24px 52px rgba(8, 27, 25, 0.14);
}

.offer-tier {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-kicker {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-subtitle {
  margin: -8px 0 2px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.tier-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tier-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(191, 208, 205, 0.86);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.tier-note {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(191, 208, 205, 0.7);
  color: var(--muted);
}

.tier-note strong {
  color: var(--brand-dark);
}

.tier-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118, 168, 161, 0.16) 0%, rgba(14, 97, 90, 0.18) 100%);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.offer-support {
  padding: 22px;
}

.offer-support .eyebrow {
  margin-bottom: 10px;
}

.offer-support h3 {
  margin-bottom: 10px;
}

.hero-side {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.portrait-card {
  margin: 0;
  padding: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(118, 168, 161, 0.18), transparent 34%),
    linear-gradient(160deg, #081b19 0%, #102826 56%, #153531 100%);
  border-color: rgba(118, 168, 161, 0.18);
  aspect-ratio: 4 / 5;
  min-height: 320px;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
  pointer-events: none;
}

.portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.98) contrast(1.02);
}

.portrait-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 88px 28px 28px;
  color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 27, 25, 0.18) 24%, rgba(8, 27, 25, 0.78) 64%, rgba(8, 27, 25, 0.94) 100%);
}

.portrait-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-overlay strong {
  max-width: 13ch;
  font-family: "Aptos Display", "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.portrait-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.portrait-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.hero-proof {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(118, 168, 161, 0.18), transparent 34%),
    linear-gradient(160deg, #081b19 0%, #102826 56%, #0e615a 100%);
  border-color: rgba(118, 168, 161, 0.18);
  color: rgba(255, 255, 255, 0.94);
}

.hero-proof h2,
.hero-proof h3,
.hero-proof p {
  color: inherit;
}

.hero-proof h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.hero-proof .eyebrow {
  background: rgba(215, 230, 227, 0.16);
  color: #fff;
}

.proof-stack {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.proof-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(118, 168, 161, 0.08) 100%);
  border: 1px solid rgba(215, 230, 227, 0.14);
}

.proof-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

.metric-card {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(118, 168, 161, 0.08) 100%);
  border: 1px solid rgba(215, 230, 227, 0.14);
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
  color: #fff;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.trust-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(248, 251, 250, 0.98) 0%, rgba(225, 233, 231, 0.94) 100%);
}

.trust-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-result {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(191, 208, 205, 0.82);
}

.trust-result strong {
  color: var(--brand-dark);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-result span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.case-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 97, 90, 0.18);
}

.contact-links {
  margin-bottom: 0;
}

.legal-card.contact-card .contact-links,
.legal-card.contact-card .contact-links a {
  color: rgba(255, 255, 255, 0.9);
}

.article-card img,
.article-hero img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
}

.article-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-meta {
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-shell {
  padding: 54px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.article-body {
  padding: 24px;
}

.article-body {
  background: rgba(248, 251, 250, 0.95);
  border: 1px solid rgba(191, 208, 205, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(215, 230, 227, 0.92);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.article-lead {
  max-width: 48rem;
  margin: 0 0 22px;
  color: var(--brand-dark);
  font-size: 1.18rem;
  line-height: 1.6;
}

.article-summary {
  margin: 24px 0 28px;
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 249, 248, 0.98) 0%, rgba(224, 233, 230, 0.94) 100%);
  border: 1px solid rgba(191, 208, 205, 0.9);
  box-shadow: 0 18px 42px rgba(7, 21, 19, 0.08);
}

.article-summary strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 1rem;
}

.article-summary ul {
  margin: 0;
  padding-left: 22px;
}

.article-summary li {
  margin-bottom: 8px;
}

.article-body ul,
.legal-card ul {
  padding-left: 22px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  padding: 0;
}

.article-side-stack {
  display: grid;
  gap: 16px;
}

.article-side-panel {
  padding: 22px;
}

.article-side-panel h3 {
  margin-bottom: 14px;
}

.article-side-panel-dark {
  background:
    radial-gradient(circle at top right, rgba(118, 168, 161, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(8, 27, 25, 0.98) 0%, rgba(11, 43, 41, 0.96) 58%, rgba(14, 97, 90, 0.92) 100%);
  border-color: rgba(61, 110, 106, 0.8);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 62px rgba(7, 21, 19, 0.18);
}

.article-side-panel-dark .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.article-side-panel-dark h3,
.article-side-panel-dark p {
  color: #fff;
}

.article-side-list {
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}

.article-side-panel-dark .button.primary {
  width: 100%;
  text-align: center;
  background: #fff;
  color: var(--brand-dark);
  border-color: rgba(255, 255, 255, 0.28);
}

.article-side-panel-dark .button.primary:hover {
  color: var(--brand-dark);
}

.article-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.article-links li {
  padding-top: 10px;
  border-top: 1px solid rgba(14, 97, 90, 0.14);
}

.article-links li:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-links a {
  color: var(--brand-dark);
  font-weight: 600;
}

.article-side-panel .section-note {
  max-width: none;
  margin-top: 14px;
}

.footer {
  border-top: 1px solid rgba(191, 208, 205, 0.82);
  margin-top: 48px;
}

.footer a {
  margin-left: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  background: rgba(18, 58, 49, 0.96);
  color: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #fff;
  color: var(--brand-dark);
}

.cookie-actions .decline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .blog-intro-grid,
  .hero-grid,
  .split-grid,
  .form-grid,
  .offer-grid,
  .offer-support-grid,
  .article-grid,
  .steps,
  .feature-list,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .blog-intro-card h2 {
    max-width: none;
  }

  .article-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .article-card-featured img {
    min-height: 220px;
  }

  .site-header .container,
  .footer-inner,
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .portrait-card {
    min-height: 320px;
  }

  .hero-copy h1 {
    max-width: 18ch;
  }

  .hero-line {
    display: inline;
    white-space: normal;
  }

  .hero-bridge-grid {
    grid-template-columns: 1fr;
  }

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

  .legal-card.contact-card h3 {
    max-width: none;
  }
}
