:root {
  --ink: #102a2a;
  --ink-soft: #496363;
  --paper: #fbfdfb;
  --paper-alt: #f1f7f4;
  --line: #dbe7e2;
  --teal: #0d766e;
  --teal-dark: #07554f;
  --teal-deep: #0b3b39;
  --mint: #dff4e9;
  --lime: #cbe874;
  --orange: #ffb464;
  --blue: #b9d9f5;
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(19, 54, 52, .08);
  --shadow-lg: 0 24px 70px rgba(15, 61, 58, .14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 14px; background: var(--white); border-radius: 8px; transform: translateY(-150%); box-shadow: var(--shadow-sm); }
.skip-link:focus { transform: translateY(0); }

.announcement { color: #e9fbf7; background: var(--teal-deep); font-size: 13px; }
.announcement__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement p { margin: 0; display: flex; align-items: center; gap: 9px; }
.announcement a { color: var(--lime); font-weight: 700; white-space: nowrap; }
.announcement__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(203,232,116,.14); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,253,251,.93); border-bottom: 1px solid rgba(219,231,226,.8); backdrop-filter: blur(16px); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 25px rgba(20,59,56,.08); }
.header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 230px; }
.brand img { flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__text strong { font-size: 17px; letter-spacing: -.02em; }
.brand__text small { margin-top: 5px; color: var(--ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px,2vw,28px); }
.desktop-nav a { position: relative; color: #294644; font-size: 14px; font-weight: 650; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--teal); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
.icon-button:hover { border-color: #acc9c1; background: var(--paper-alt); }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0 11px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 4px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel { display: none; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 43px; padding-inline: 18px; font-size: 13px; }
.button--dark { color: var(--white); background: var(--teal-deep); }
.button--dark:hover { background: #062e2c; }
.button--primary { color: var(--white); background: var(--teal); box-shadow: 0 10px 25px rgba(13,118,110,.2); }
.button--primary:hover { background: var(--teal-dark); box-shadow: 0 15px 30px rgba(13,118,110,.25); }
.button--ghost { color: var(--ink); border-color: #b8cbc6; background: rgba(255,255,255,.55); }
.button--ghost:hover { background: var(--white); border-color: #7da79d; }
.button--light { color: var(--teal-deep); background: var(--white); }

.hero { position: relative; overflow: hidden; padding: 72px 0 48px; background: linear-gradient(135deg, #f8fcfa 0%, #edf7f1 52%, #f8f3e8 100%); }
.hero::before { content: ""; position: absolute; inset: auto auto -220px -220px; width: 520px; height: 520px; border-radius: 50%; background: rgba(203,232,116,.18); filter: blur(4px); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); align-items: center; gap: 44px; }
.hero__content { padding: 38px 0 50px; }
.eyebrow { margin: 0 0 16px; color: var(--teal); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow span::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.eyebrow--light { color: #b7e6d7; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(48px,6vw,77px); line-height: .99; letter-spacing: -.055em; }
.hero h1 em { display: block; color: var(--teal); font-family: var(--font-serif); font-weight: 400; letter-spacing: -.045em; }
.hero__lead { max-width: 650px; margin: 25px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(82,120,115,.18); }
.hero__trust > div { display: flex; align-items: flex-start; gap: 10px; }
.trust-icon { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; color: var(--teal-dark); background: var(--mint); border-radius: 50%; font-size: 13px; font-weight: 900; }
.hero__trust p { margin: -2px 0 0; line-height: 1.3; }
.hero__trust strong, .hero__trust small { display: block; }
.hero__trust strong { font-size: 13px; }
.hero__trust small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; }
.hero__visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero__visual > img { position: relative; z-index: 2; width: min(100%, 720px); filter: drop-shadow(0 25px 35px rgba(15,64,59,.12)); }
.hero__halo { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.9), rgba(211,240,225,.55) 50%, rgba(203,232,116,.12) 72%, transparent 73%); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.85); border-radius: 16px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.floating-card p { margin: 0; line-height: 1.25; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.floating-card strong { margin-top: 4px; font-size: 13px; }
.floating-card--energy { left: 2%; bottom: 18%; }
.floating-card--status { right: 0; top: 22%; }
.floating-card__icon { width: 35px; height: 35px; display: grid; place-items: center; color: var(--teal-deep); background: var(--lime); border-radius: 11px; font-weight: 900; }
.status-pulse { width: 13px; height: 13px; margin-left: 6px; border-radius: 50%; background: #36b57b; box-shadow: 0 0 0 7px rgba(54,181,123,.13); }

.ecosystems { border-block: 1px solid var(--line); background: var(--white); }
.ecosystems__inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.ecosystems__inner > p { margin: 0; color: var(--ink-soft); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.ecosystems__logos { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: clamp(20px,3vw,42px); }
.ecosystems__logos span { display: inline-flex; align-items: center; gap: 8px; color: #45605e; font-size: 13px; font-weight: 700; }
.ecosystems__logos b { width: 25px; height: 25px; display: grid; place-items: center; color: var(--teal); border: 1px solid #bcd3cc; border-radius: 8px; font-family: Georgia,serif; font-size: 13px; }

.section { padding: 100px 0; }
.section--start { background: var(--paper); }
.section--featured { background: var(--paper-alt); }
.section--latest { background: var(--paper); }
.section-heading { margin-bottom: 44px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.65fr); align-items: end; gap: 60px; }
.section-heading--compact { margin-bottom: 34px; }
.section-heading h2 { max-width: 760px; margin: 0; font-size: clamp(34px,4vw,54px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p, .section-heading > div + p { margin: 0 0 5px; color: var(--ink-soft); font-size: 16px; }

.path-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.path-card { position: relative; min-height: 360px; display: flex; flex-direction: column; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 5px 15px rgba(14,67,63,.025); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.path-card::after { content: ""; position: absolute; right: -55px; bottom: -70px; width: 170px; height: 170px; border-radius: 50%; opacity: .38; transition: transform .25s ease; }
.path-card:hover { transform: translateY(-7px); border-color: #b8cec7; box-shadow: var(--shadow-lg); }
.path-card:hover::after { transform: scale(1.16); }
.path-card--security::after { background: var(--blue); }
.path-card--comfort::after { background: var(--mint); }
.path-card--savings::after { background: var(--lime); }
.path-card--renters::after { background: var(--orange); }
.path-card__number { align-self: flex-end; color: #88a39e; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.path-card__icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 18px 0 28px; border-radius: 18px; background: var(--paper-alt); }
.path-card__icon svg { width: 36px; fill: none; stroke: var(--teal-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.path-card h3 { margin: 0; font-size: 23px; line-height: 1.2; letter-spacing: -.025em; }
.path-card p { margin: 14px 0 20px; color: var(--ink-soft); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--teal-dark); font-size: 13px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
a:hover .text-link span, .text-link:hover span { transform: translateX(4px); }
.text-link--large { margin-top: 0; font-size: 14px; }

.article-controls { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.filter-pill { padding: 8px 15px; border: 1px solid #c8d8d3; border-radius: 999px; color: var(--ink-soft); background: transparent; font-size: 12px; font-weight: 750; cursor: pointer; }
.filter-pill:hover, .filter-pill.is-active { color: var(--white); border-color: var(--teal); background: var(--teal); }
.featured-grid { display: grid; grid-template-columns: minmax(0,1.13fr) minmax(380px,.87fr); gap: 24px; }
.article-card.is-hidden { display: none; }
.feature-story { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.feature-story__image { position: relative; display: block; aspect-ratio: 1.45; overflow: hidden; }
.feature-story__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-story:hover .feature-story__image img { transform: scale(1.025); }
.article-badge { position: absolute; top: 20px; left: 20px; padding: 8px 12px; color: var(--teal-deep); background: rgba(255,255,255,.9); border-radius: 999px; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.feature-story__content { padding: 30px 32px 32px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 17px; color: #6a817e; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.article-meta span + span { position: relative; }
.article-meta span + span::before { content: ""; position: absolute; left: -10px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #9eb4ae; }
.feature-story h3 { margin: 13px 0 10px; font-size: clamp(28px,3vw,38px); line-height: 1.15; letter-spacing: -.035em; }
.feature-story h3 a:hover, .compact-story h3 a:hover, .latest-card h3 a:hover { color: var(--teal); }
.feature-story__content > p { margin: 0 0 20px; color: var(--ink-soft); }
.article-stack { display: grid; gap: 14px; }
.compact-story { display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: center; padding: 15px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.compact-story__image { overflow: hidden; aspect-ratio: 1.2; border-radius: 14px; }
.compact-story__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.compact-story:hover img { transform: scale(1.04); }
.compact-story h3 { margin: 9px 0 11px; font-size: 19px; line-height: 1.25; letter-spacing: -.025em; }

.section--review-band { padding: 0; color: var(--white); background: var(--teal-deep); }
.review-band { min-height: 440px; display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.9fr); align-items: center; gap: 80px; padding-block: 78px; }
.review-band__intro h2 { max-width: 650px; margin: 0; font-size: clamp(35px,4vw,54px); line-height: 1.08; letter-spacing: -.045em; }
.review-band__intro > p:not(.eyebrow) { max-width: 620px; margin: 20px 0 28px; color: #c6dbd7; }
.review-band__steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.review-band__steps > div { min-height: 125px; display: flex; align-items: flex-start; gap: 13px; padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.06); }
.review-band__steps > div > span { width: 29px; height: 29px; flex: 0 0 auto; display: grid; place-items: center; color: var(--teal-deep); border-radius: 50%; background: var(--lime); font-size: 12px; font-weight: 900; }
.review-band__steps p { margin: 1px 0 0; line-height: 1.35; }
.review-band__steps strong, .review-band__steps small { display: block; }
.review-band__steps strong { font-size: 14px; }
.review-band__steps small { margin-top: 7px; color: #bdd2ce; font-size: 12px; }

.latest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.latest-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.latest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.latest-card__image { position: relative; min-height: 245px; display: grid; place-items: center; overflow: hidden; }
.latest-card__image::after { content: ""; position: absolute; width: 220px; height: 220px; border: 1px solid rgba(16,42,42,.12); border-radius: 50%; }
.latest-card__image span { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.78); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.latest-card__image svg { position: relative; z-index: 1; width: 92px; fill: none; stroke: var(--teal-deep); stroke-width: 2.2; stroke-linejoin: round; }
.latest-card__image--blue { background: linear-gradient(135deg,#d8eaf8,#b9d9f5); }
.latest-card__image--green { background: linear-gradient(135deg,#e8f4d4,#cbe874); }
.latest-card__image--orange { background: linear-gradient(135deg,#ffe5c4,#ffb464); }
.latest-card__body { padding: 25px; }
.latest-card h3 { margin: 11px 0 10px; font-size: 22px; line-height: 1.25; letter-spacing: -.025em; }
.latest-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.newsletter { padding: 78px 0; color: var(--white); background: linear-gradient(110deg,var(--teal) 0%,#0a5f58 62%,#13453f 100%); }
.newsletter__inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(450px,.9fr); align-items: center; gap: 70px; }
.newsletter h2 { max-width: 680px; margin: 0; font-size: clamp(34px,4vw,52px); line-height: 1.1; letter-spacing: -.045em; }
.newsletter__copy > p:not(.eyebrow) { margin: 18px 0 0; color: #d5eae5; }
.newsletter__field { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 999px; background: var(--white); box-shadow: 0 20px 45px rgba(0,31,29,.2); }
.newsletter__field > svg { width: 21px; margin-left: 11px; flex: 0 0 auto; fill: none; stroke: #66817d; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.newsletter__field input { min-width: 0; flex: 1; padding: 10px 4px; color: var(--ink); border: 0; outline: 0; background: transparent; }
.newsletter__field button { align-self: stretch; padding: 0 23px; color: var(--white); border: 0; border-radius: 999px; background: var(--teal-deep); font-weight: 800; cursor: pointer; }
.newsletter__field button:hover { background: #062e2c; }
.newsletter__note { margin: 10px 0 0 20px; color: #c5dcd7; font-size: 11px; }
.newsletter__note.is-success { color: #e1f79d; }

.site-footer { padding: 70px 0 24px; color: #d8e5e1; background: #082f2d; }
.footer__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding-bottom: 55px; }
.brand--footer { color: var(--white); }
.brand--footer .brand__text small { color: #9bb7b1; }
.footer__brand > p { max-width: 410px; margin: 22px 0 0; color: #9eb8b3; font-size: 14px; }
.footer__links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer__links h3 { margin: 0 0 16px; color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.footer__links a { display: block; margin: 10px 0; color: #a8c0bb; font-size: 13px; }
.footer__links a:hover { color: var(--lime); }
.footer__bottom { display: grid; grid-template-columns: 1.4fr auto auto; align-items: center; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #789994; font-size: 11px; }
.footer__bottom p { margin: 0; }
.footer__bottom > div { display: flex; gap: 16px; }
.footer__bottom a:hover { color: var(--white); }

.search-dialog { width: min(calc(100% - 30px), 760px); padding: 0; border: 0; border-radius: 28px; color: var(--ink); background: var(--white); box-shadow: 0 30px 90px rgba(0,33,31,.32); }
.search-dialog::backdrop { background: rgba(4,31,29,.68); backdrop-filter: blur(7px); }
.search-dialog__inner { position: relative; padding: 50px; }
.search-dialog__close { position: absolute; top: 20px; right: 20px; }
.search-dialog h2 { margin: 0 0 25px; font-size: clamp(30px,5vw,47px); line-height: 1.08; letter-spacing: -.04em; }
.search-dialog form { display: flex; gap: 10px; }
.search-dialog input { min-width: 0; flex: 1; padding: 15px 18px; border: 1px solid #bcd1cb; border-radius: 999px; outline: 0; }
.search-dialog input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,118,110,.1); }
.search-dialog__suggestions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px; color: var(--ink-soft); font-size: 12px; }
.search-dialog__suggestions a { padding: 6px 10px; border-radius: 999px; background: var(--paper-alt); font-weight: 700; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-panel { position: fixed; top: 119px; left: 0; right: 0; max-height: calc(100vh - 119px); overflow: auto; padding: 22px 20px 28px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 25px 40px rgba(16,54,51,.16); }
  .mobile-panel.is-open { display: block; }
  .mobile-panel nav { width: min(100%,var(--container)); margin: 0 auto 20px; }
  .mobile-panel nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mobile-panel > .button { width: min(100%,var(--container)); margin: 0 auto; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero__visual { min-height: 510px; }
  .hero__trust { grid-template-columns: 1fr; gap: 12px; }
  .path-grid { grid-template-columns: repeat(2,1fr); }
  .path-card { min-height: 320px; }
  .featured-grid { grid-template-columns: 1fr; }
  .article-stack { grid-template-columns: repeat(3,1fr); }
  .compact-story { grid-template-columns: 1fr; align-content: start; }
  .compact-story__image { aspect-ratio: 1.4; }
  .review-band { gap: 45px; }
  .newsletter__inner { gap: 40px; }
  .footer__grid { gap: 50px; }
  .footer__bottom { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 820px) {
  .announcement__inner { justify-content: center; }
  .announcement a { display: none; }
  .header__inner { min-height: 72px; }
  .header__guide { display: none; }
  .mobile-panel { top: 109px; max-height: calc(100vh - 109px); }
  .hero { padding-top: 42px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 8px; }
  .hero__visual { min-height: 500px; }
  .hero__visual > img { max-width: 650px; }
  .hero__trust { grid-template-columns: repeat(3,1fr); }
  .ecosystems__inner { min-height: 120px; flex-direction: column; justify-content: center; padding-block: 22px; text-align: center; }
  .ecosystems__logos { justify-content: center; }
  .section { padding: 78px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .article-controls { justify-content: flex-start; }
  .article-stack { grid-template-columns: 1fr; }
  .compact-story { grid-template-columns: 180px 1fr; }
  .review-band { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr; }
  .latest-card { display: grid; grid-template-columns: 240px 1fr; }
  .latest-card__image { min-height: 100%; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { font-size: 11px; }
  .brand { min-width: 0; }
  .brand__text strong { font-size: 14px; }
  .brand__text small { font-size: 9px; }
  .brand img { width: 41px; height: 41px; }
  .header__actions { gap: 7px; }
  .icon-button, .menu-button { width: 40px; height: 40px; }
  .hero h1 { font-size: clamp(43px,14vw,62px); }
  .hero__lead { font-size: 16px; }
  .hero__actions .button { width: 100%; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__visual { min-height: 390px; margin-top: -10px; }
  .hero__halo { width: 360px; height: 360px; }
  .floating-card { padding: 9px 11px; }
  .floating-card--energy { left: 0; bottom: 13%; }
  .floating-card--status { right: 0; top: 17%; }
  .ecosystems__logos { gap: 14px 18px; }
  .ecosystems__logos span { font-size: 11px; }
  .section-heading h2 { font-size: 36px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 290px; }
  .feature-story__content { padding: 24px; }
  .feature-story h3 { font-size: 28px; }
  .compact-story { grid-template-columns: 125px 1fr; gap: 14px; }
  .compact-story h3 { font-size: 16px; }
  .compact-story .text-link { display: none; }
  .review-band { padding-block: 62px; }
  .review-band__steps { grid-template-columns: 1fr; }
  .latest-card { grid-template-columns: 1fr; }
  .latest-card__image { min-height: 220px; }
  .newsletter__field { border-radius: 20px; flex-wrap: wrap; }
  .newsletter__field input { width: calc(100% - 45px); }
  .newsletter__field button { width: 100%; min-height: 47px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .search-dialog__inner { padding: 42px 24px 28px; }
  .search-dialog form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Filtered featured-story layouts */
.featured-grid.is-feature-only { grid-template-columns: 1fr; }
.featured-grid.is-feature-only .article-stack { display: none; }
.featured-grid.is-compact-only { grid-template-columns: 1fr; }
.featured-grid.is-compact-only .article-stack { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.featured-grid.is-compact-only .compact-story { grid-template-columns: 1fr; }
