:root {
  --bg: #f5f7f1;
  --surface: #ffffff;
  --surface-2: #eaf0e8;
  --surface-3: #152d2a;
  --surface-4: #243d37;
  --text: #17211f;
  --text-muted: #60706b;
  --text-inverse: #f8fbf6;
  --accent: #c39b5b;
  --accent-2: #6b8d7d;
  --accent-soft: #efe2cb;
  --border: #ced8d1;
  --border-dark: #38534b;
  --success: #3f755f;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Aptos", "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  --fs-display: clamp(2.8rem, 6vw, 5.9rem);
  --fs-h1: clamp(2.45rem, 5vw, 5.05rem);
  --fs-h2: clamp(2rem, 3.7vw, 3.65rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.55rem);
  --fs-body: clamp(1rem, 1.15vw, 1.09rem);
  --fs-small: 0.9rem;
  --space-xs: 0.55rem;
  --space-sm: 0.9rem;
  --space-md: 1.45rem;
  --space-lg: 2.4rem;
  --space-xl: clamp(3.8rem, 7vw, 7rem);
  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-lg: 36px;
  --shadow-sm: 0 12px 36px rgba(27, 48, 42, 0.08);
  --shadow-md: 0 28px 80px rgba(18, 43, 37, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

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

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

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--surface-3);
  color: var(--text-inverse);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 241, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(206, 216, 209, 0.72);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 15px 15px 5px 15px;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.ad-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--surface);
  color: var(--text-muted);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #344541;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-cta {
  background: var(--surface-3);
  color: var(--text-inverse) !important;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span {
  opacity: 0;
}

.nav-toggle.is-open::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7.6rem) 0 4rem;
  background:
    radial-gradient(circle at 85% 12%, rgba(195, 155, 91, 0.17), transparent 30%),
    linear-gradient(135deg, var(--bg), #edf2ec 57%, #e3ebe4);
}

.hero::after {
  content: "2026";
  position: absolute;
  right: -0.06em;
  bottom: -0.32em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 19vw, 17rem);
  line-height: 1;
  color: rgba(21, 45, 42, 0.045);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--success);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero h1,
.page-hero h1,
.article-hero h1,
.legal-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 650;
}

.legal-hero h1 {
  word-break: break-all;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--surface-3);
  color: var(--text-inverse);
  box-shadow: 0 14px 36px rgba(21, 45, 42, 0.18);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.hero-point {
  padding: 14px 14px 13px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(206, 216, 209, 0.86);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.hero-point strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.hero-point span {
  display: block;
  color: var(--text-muted);
  font-size: 0.81rem;
  line-height: 1.35;
}

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

.hero-photo {
  position: absolute;
  inset: 0 0 32px 40px;
  overflow: hidden;
  border-radius: 7px 52px 7px 52px;
  box-shadow: var(--shadow-md);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.horizon-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(310px, 78%);
  padding: 22px;
  background: var(--surface-3);
  color: var(--text-inverse);
  border-radius: 2px 20px 2px 20px;
  box-shadow: var(--shadow-md);
}

.horizon-line {
  position: relative;
  height: 52px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.horizon-line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  height: 70px;
  border-top: 2px solid var(--accent);
  border-radius: 55% 55% 0 0;
  transform: rotate(-6deg);
}

.horizon-line::after {
  content: "";
  position: absolute;
  right: 16%;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(195, 155, 91, 0.13);
}

.horizon-card small {
  display: block;
  color: rgba(248, 251, 246, 0.66);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.horizon-card strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 1.48rem;
  line-height: 1.2;
}

.section {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

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

.section-soft {
  background: var(--surface-2);
}

.section-dark {
  background: var(--surface-3);
  color: var(--text-inverse);
}

.section-dark .eyebrow {
  color: #bcd4c8;
}

.section-dark .section-copy,
.section-dark .muted {
  color: rgba(248, 251, 246, 0.7);
}

.section-pattern {
  background-color: #f2f5ef;
  background-image:
    linear-gradient(rgba(107, 141, 125, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 141, 125, 0.065) 1px, transparent 1px);
  background-size: 34px 34px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2,
.split-copy h2,
.form-copy h2,
.blog-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 650;
}

.section-copy {
  margin: 0;
  color: var(--text-muted);
}

.early-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.story-panel {
  padding: clamp(24px, 4vw, 44px);
  background: var(--surface-3);
  color: var(--text-inverse);
  border-radius: 4px 34px 4px 34px;
  box-shadow: var(--shadow-md);
}

.story-panel p {
  color: rgba(248, 251, 246, 0.72);
}

.story-timeline {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline-row strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.timeline-row span {
  color: rgba(248, 251, 246, 0.78);
}

.photo-panel {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 34px 4px 34px 4px;
  box-shadow: var(--shadow-sm);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  font-size: 0.92rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.fact-card {
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.fact-card:nth-child(1) {
  grid-column: span 5;
  border-radius: 2px 28px 2px 28px;
}

.fact-card:nth-child(2) {
  grid-column: span 3;
  border-radius: 18px;
}

.fact-card:nth-child(3) {
  grid-column: span 4;
  border-radius: 28px 2px 28px 2px;
}

.fact-card:nth-child(4) {
  grid-column: span 4;
  border-radius: 18px;
}

.fact-card:nth-child(5) {
  grid-column: span 8;
  border-radius: 2px 28px 2px 28px;
}

.fact-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #7c5b28;
  font-weight: 900;
}

.fact-card h3,
.strategy-card h3,
.blog-card h2,
.mini-card h3,
.step-card h3,
.article-body h2,
.legal-content h2,
.legal-content h3 {
  font-family: var(--font-display);
}

.fact-card h3 {
  margin: 0 0 9px;
  font-size: 1.28rem;
}

.fact-card p {
  margin: 0;
  color: var(--text-muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 520px;
}

.split-media img {
  width: calc(100% - 34px);
  height: 100%;
  object-fit: cover;
  border-radius: 40px 4px 40px 4px;
  box-shadow: var(--shadow-md);
}

.split-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -24px;
  width: 58%;
  height: 55%;
  z-index: -1;
  background: var(--accent-soft);
  border-radius: 4px 40px 4px 40px;
}

.split-copy p {
  color: var(--text-muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--success);
  font-weight: 900;
}

.scenario-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.scenario-copy {
  position: sticky;
  top: 112px;
}

.scenario-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.02;
}

.scenario-copy p {
  color: rgba(248, 251, 246, 0.7);
}

.scenario-table {
  display: grid;
  gap: 10px;
}

.scenario-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
}

.scenario-row strong {
  color: var(--accent);
}

.scenario-row span {
  color: rgba(248, 251, 246, 0.76);
}

.scenario-note {
  margin-top: 14px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 251, 246, 0.74);
  font-size: 0.9rem;
}

.section-surface .scenario-copy p {
  color: var(--text-muted);
}

.section-surface .scenario-row {
  grid-template-columns: 1fr 1fr;
  padding: 0;
  border: 0;
  background: transparent;
}

.section-surface .scenario-card {
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}

.section-surface .scenario-card strong {
  display: block;
  color: var(--success);
  margin-bottom: 4px;
}

.section-surface .scenario-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.section-surface .scenario-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.section-surface .scenario-note {
  background: var(--accent-soft);
  color: #42524d;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.strategy-card {
  grid-column: span 4;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.strategy-card:nth-child(odd) {
  border-radius: 26px 3px 26px 3px;
}

.strategy-card:nth-child(even) {
  border-radius: 3px 26px 3px 26px;
}

.strategy-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px 15px 5px 15px;
  background: var(--surface-2);
  color: var(--surface-3);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.strategy-card h3 {
  margin: 20px 0 8px;
  font-size: 1.3rem;
}

.strategy-card p {
  margin: 0 0 20px;
  color: var(--text-muted);
}

.strategy-yield {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}

.strategy-yield strong {
  display: block;
  color: var(--success);
}

.advisory-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 24px;
  background: var(--accent-soft);
  border-radius: 28px 4px 28px 4px;
}

.advisory-band img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px 3px 22px 3px;
}

.advisory-band h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.advisory-band p {
  margin: 0;
  color: #4e5d57;
}

.form-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.form-copy p {
  color: rgba(248, 251, 246, 0.72);
}

.contact-form {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label,
.consent label {
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  min-height: 50px;
  width: 100%;
  max-width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.065);
  color: var(--text-inverse);
}

.field option {
  color: var(--text);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(248, 251, 246, 0.43);
}

.consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(248, 251, 246, 0.72);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

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

.contact-form .button {
  grid-column: 1 / -1;
  background: var(--accent);
  color: #1e2b28;
  border: 0;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(248, 251, 246, 0.52);
  font-size: 0.82rem;
}

.faq-stack {
  display: grid;
  gap: 10px;
}

.faq-stack details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.faq-stack summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-stack summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--accent);
}

.faq-stack details[open] summary::after {
  content: "–";
}

.faq-stack details p {
  margin: 0;
  padding: 0 17px 18px;
  color: rgba(248, 251, 246, 0.68);
}

.page-hero,
.article-hero,
.legal-hero {
  padding: clamp(3.5rem, 7vw, 6.2rem) 0 3rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(195, 155, 91, 0.14), transparent 28%),
    var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.page-hero p,
.article-hero p,
.legal-hero p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px 30px 4px 30px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.blog-card:nth-child(even) {
  border-radius: 30px 4px 30px 4px;
}

.blog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  line-height: 1.12;
}

.blog-card p {
  color: var(--text-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--surface-3);
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.article-cover {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 4px 34px 4px 34px;
  box-shadow: var(--shadow-md);
}

.article-cover img {
  width: 100%;
  height: min(54vw, 520px);
  object-fit: cover;
}

.article-body {
  max-width: 790px;
}

.article-body h2 {
  margin: 2.1rem 0 0.8rem;
  font-size: 2rem;
  line-height: 1.1;
}

.article-body p,
.article-body li {
  color: #42524d;
}

.article-body ul {
  padding-left: 1.25rem;
}

.article-callout {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 16px 16px 0;
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.mini-card h3 {
  margin: 0 0 7px;
  font-size: 1.12rem;
}

.mini-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 54px 20px 70px;
  word-break: break-word;
}

.legal-toc {
  margin-bottom: 34px;
  padding: 20px;
  display: grid;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 3px 22px 3px 22px;
  background: var(--surface);
}

.legal-toc a {
  color: var(--success);
  font-weight: 750;
}

.legal-section {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.16;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: #42524d;
}

.legal-callout {
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
}

.legal-list {
  padding-left: 1.25rem;
}

.thanks-shell {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: var(--space-xl) 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(195, 155, 91, 0.13), transparent 28%),
    var(--surface-2);
}

.thanks-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 4px 36px 4px 36px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.thanks-card > img {
  width: 50px;
  height: 50px;
  border-radius: 15px 15px 5px 15px;
}

.thanks-card h1 {
  margin: 22px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.02;
}

.thanks-card > p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.step-card {
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}

.step-card span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--text-inverse);
  font-weight: 900;
}

.step-card h3 {
  margin: 14px 0 6px;
  font-size: 1.08rem;
}

.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: auto;
  background: #102521;
  color: var(--text-inverse);
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-brand .brand-name {
  color: var(--text-inverse);
}

.footer-brand p,
.footer-contacts p,
.footer-disclaimer {
  color: rgba(248, 251, 246, 0.64);
}

.footer-contacts strong,
.footer-links strong {
  display: block;
  margin-bottom: 11px;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.footer-contacts p {
  margin: 4px 0;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a {
  color: rgba(248, 251, 246, 0.76);
}

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

.footer-disclaimer {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.86rem;
  line-height: 1.58;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(248, 251, 246, 0.47);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .early-grid,
  .split-section,
  .scenario-wrap,
  .form-faq-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    grid-template-columns: 1fr;
  }

  .scenario-copy,
  .article-aside {
    position: static;
  }

  .fact-card:nth-child(n),
  .strategy-card {
    grid-column: span 6;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 10px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 70px;
    gap: 11px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .ad-badge {
    padding-inline: 8px;
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

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

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

  .hero-photo {
    inset: 0 0 30px 14px;
  }

  .horizon-card {
    width: min(285px, 88%);
  }

  .fact-card:nth-child(n),
  .strategy-card {
    grid-column: 1 / -1;
  }

  .advisory-band {
    grid-template-columns: 1fr;
  }

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

  .field,
  .field-full,
  .consent,
  .contact-form .button,
  .form-note {
    grid-column: 1;
  }

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

  .section-surface .scenario-row {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .next-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .split-media {
    min-height: 390px;
  }

  .blog-card img {
    height: 230px;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .hero-grid > *,
  .early-grid > *,
  .split-section > *,
  .scenario-wrap > *,
  .form-faq-grid > *,
  .strategy-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-name {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .ad-badge {
    word-break: break-all;
  }

  .footer-contacts,
  .footer-links {
    word-break: break-all;
  }
}

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

  .legal-content {
    padding: 40px 16px 50px;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1,
  .legal-hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .contact-form .button {
    width: 100%;
    max-width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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