:root {
  --ink: #11130f;
  --ink-soft: #23261f;
  --paper: #f4f1e9;
  --paper-deep: #e9e4d9;
  --surface: #fffdf8;
  --signal: #f35b35;
  --signal-dark: #c93716;
  --acid: #dff86a;
  --sage: #cbd8c1;
  --sage-dark: #45604d;
  --amber: #d69a2d;
  --clay: #c98168;
  --muted: #676960;
  --line: rgba(17, 19, 15, 0.14);
  --line-strong: rgba(17, 19, 15, 0.28);
  --shadow: 0 22px 70px rgba(24, 26, 21, 0.12);
  --radius-small: 12px;
  --radius: 22px;
  --radius-large: 34px;
  --content: min(1280px, calc(100% - 48px));
  --narrow: min(880px, calc(100% - 48px));
  --header-height: 82px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "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.55; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--acid); color: var(--ink); }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; }
[hidden] { display: none !important; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.045em; line-height: 1.02; }
h1 { font-size: clamp(3.5rem, 8.4vw, 8rem); font-weight: 650; }
h2 { font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 620; }
h3 { font-size: clamp(1.45rem, 2.2vw, 2.15rem); font-weight: 620; }

.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: 1000; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; background: var(--ink); color: white; }
.skip-link:focus { transform: translateY(0); }
.content-shell { width: var(--content); margin-inline: auto; }
.narrow-shell { width: var(--narrow); }
.section { padding: 112px 0; }
.icon { width: 1.05em; height: 1.05em; flex: 0 0 auto; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--muted); font-size: 0.73rem; font-weight: 750; letter-spacing: 0.17em; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.page-lead { max-width: 760px; color: var(--muted); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.5; }

.site-header { position: sticky; z-index: 100; top: 0; height: var(--header-height); border-bottom: 1px solid transparent; background: rgba(244, 241, 233, 0.86); backdrop-filter: blur(16px); transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.site-header.is-scrolled { border-color: var(--line); background: rgba(244, 241, 233, 0.96); box-shadow: 0 8px 30px rgba(17, 19, 15, 0.05); }
.header-shell { width: var(--content); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 36px; height: 36px; }
.brand-wordmark { font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-left: auto; }
.nav-link { position: relative; padding: 28px 0; color: #393c35; font-size: 0.79rem; font-weight: 650; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--signal); transition: transform 180ms ease; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-link { display: inline-flex; align-items: center; gap: 7px; padding: 10px; border-radius: 999px; font-size: 0.73rem; font-weight: 800; }
.language-link:hover { background: var(--paper-deep); }
.menu-button { display: none; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-button .icon { width: 22px; height: 22px; }
.menu-button .menu-close-icon { display: none; }
.menu-button[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-button[aria-expanded="true"] .menu-close-icon { display: block; }
.mobile-navigation { position: fixed; inset: var(--header-height) 0 0; padding: 32px 24px; background: var(--paper); overflow: auto; }
.mobile-navigation nav { display: grid; }
.mobile-navigation .nav-link, .mobile-language { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.5rem; font-weight: 600; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; padding: 14px 22px; border: 1px solid transparent; border-radius: 999px; font-size: 0.82rem; font-weight: 750; letter-spacing: -0.01em; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button .icon { transition: transform 160ms ease; }
.button:hover .icon { transform: translateX(3px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { box-shadow: 0 14px 30px rgba(17, 19, 15, 0.18); }
.button-signal { background: var(--signal); color: var(--ink); }
.button-signal:hover { background: #ff704b; box-shadow: 0 14px 30px rgba(243, 91, 53, 0.2); }
.button-light { background: var(--surface); color: var(--ink); }
.button-ghost { border-color: rgba(255, 255, 255, 0.36); color: white; }
.button-ghost-dark { border-color: var(--line-strong); color: var(--ink); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 0.75rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 780; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link .icon { transition: transform 160ms ease; }
.text-link:hover .icon { transform: translateX(4px); }

.home-hero { position: relative; min-height: calc(100vh - var(--header-height)); display: grid; align-items: center; padding: 72px 0 90px; overflow: hidden; background: var(--ink); color: white; }
.home-hero::before { content: ""; position: absolute; inset: 0; opacity: 0.22; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, black, transparent 90%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: 60px; }
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.hero-copy .eyebrow { color: var(--acid); }
.hero-copy h1 { max-width: 860px; margin-bottom: 30px; }
.hero-copy > p { max-width: 660px; margin-bottom: 38px; color: rgba(255, 255, 255, 0.7); font-size: clamp(1.15rem, 2vw, 1.55rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 42px; color: rgba(255, 255, 255, 0.58); font-size: 0.72rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row .icon { color: var(--acid); }
.hero-radar { position: relative; min-height: 620px; display: grid; place-items: center; }
.radar-stage { position: relative; width: min(570px, 100%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at center, rgba(223, 248, 106, 0.08), transparent 57%); }
.radar-ring { position: absolute; inset: 50%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 35%; height: 35%; }
.ring-two { width: 66%; height: 66%; }
.ring-three { width: 96%; height: 96%; border-color: rgba(255,255,255,.12); }
.radar-cross { position: absolute; top: 50%; left: 50%; background: rgba(255,255,255,.14); transform: translate(-50%, -50%); }
.radar-cross-x { width: 96%; height: 1px; }
.radar-cross-y { width: 1px; height: 96%; }
.radar-sweep { position: absolute; inset: 2%; border-radius: 50%; background: conic-gradient(from -40deg, transparent 0deg 310deg, rgba(223,248,106,.4) 350deg, transparent 360deg); animation: radar-spin 7s linear infinite; }
.radar-dot { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 6px rgba(243,91,53,.16), 0 0 28px rgba(243,91,53,.8); }
.dot-one { top: 25%; left: 60%; }
.dot-two { top: 61%; left: 26%; background: var(--acid); box-shadow: 0 0 0 6px rgba(223,248,106,.14), 0 0 28px rgba(223,248,106,.65); }
.dot-three { top: 72%; left: 68%; background: white; }
.radar-label { position: absolute; display: grid; gap: 1px; min-width: 130px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 11px; background: rgba(17,19,15,.8); box-shadow: 0 12px 30px rgba(0,0,0,.18); backdrop-filter: blur(8px); }
.radar-label strong { font-size: .78rem; }
.radar-label span { color: rgba(255,255,255,.55); font-size: .67rem; }
.label-one { top: 15%; right: -2%; }
.label-two { bottom: 24%; left: 0; }
.label-three { right: 3%; bottom: 10%; }
@keyframes radar-spin { to { transform: rotate(360deg); } }

.signal-strip { background: var(--acid); }
.signal-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-strip-grid > div { display: flex; align-items: center; gap: 12px; min-height: 72px; padding: 16px 22px; border-right: 1px solid rgba(17,19,15,.2); }
.signal-strip-grid > div:first-child { border-left: 1px solid rgba(17,19,15,.2); }
.signal-strip-grid span { font-size: .67rem; font-weight: 800; }
.signal-strip-grid strong { font-size: .76rem; }

.section-heading { margin-bottom: 52px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 60px; }
.split-heading > p { max-width: 510px; margin-bottom: 8px; color: var(--muted); font-size: 1.05rem; }
.featured-grid { display: grid; grid-template-columns: 1.45fr .775fr .775fr; gap: 20px; align-items: stretch; }
.article-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform 180ms ease, box-shadow 180ms ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.article-card-image { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-deep); }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.article-card:hover .article-card-image img { transform: scale(1.035); }
.article-card-image .status-pill { position: absolute; top: 16px; left: 16px; }
.article-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.article-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.article-card-meta span + span::before { content: "·"; margin-right: 12px; }
.article-card h2 { margin-bottom: 14px; font-size: clamp(1.55rem, 2.2vw, 2.5rem); }
.article-card h2 a { display: block; }
.article-card p { color: var(--muted); font-size: .94rem; }
.article-card .text-link { margin-top: auto; padding-top: 12px; }
.article-card-large .article-card-image { aspect-ratio: 16 / 10; }
.article-card-large h2 { font-size: clamp(2rem, 3.2vw, 3.7rem); }
.status-pill { display: inline-flex; align-items: center; gap: 6px; width: max-content; padding: 7px 10px; border: 1px solid rgba(17,19,15,.1); border-radius: 999px; background: rgba(255,253,248,.88); color: var(--ink); font-size: .62rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
.status-trending::before { background: var(--signal); box-shadow: 0 0 0 3px rgba(243,91,53,.16); }
.status-emerging::before { background: var(--acid); box-shadow: 0 0 0 3px rgba(160,180,61,.16); }
.status-watchlist::before { background: var(--amber); }
.status-guide::before { background: var(--sage-dark); }
.section-footer-link { display: flex; justify-content: center; margin-top: 46px; }

.method-section { background: var(--ink); color: white; }
.method-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.method-intro { align-self: start; position: sticky; top: 130px; }
.method-intro .eyebrow { color: var(--acid); }
.method-intro h2 { margin-bottom: 24px; }
.method-intro > p { max-width: 520px; margin-bottom: 34px; color: rgba(255,255,255,.63); font-size: 1.05rem; }
.method-steps { border-top: 1px solid rgba(255,255,255,.18); }
.method-steps article { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 38px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.method-steps article > span { color: var(--acid); font-size: .72rem; font-weight: 800; }
.method-steps h3 { margin-bottom: 10px; font-size: 2rem; }
.method-steps p { max-width: 540px; margin-bottom: 0; color: rgba(255,255,255,.6); }

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.category-card { position: relative; min-height: 330px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; overflow: hidden; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--surface); transition: transform 180ms ease, box-shadow 180ms ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card > div:not(.category-card-orbit) { position: relative; z-index: 2; max-width: 450px; }
.category-card p { margin-bottom: 8px; color: var(--muted); font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.category-card h3 { margin-bottom: 14px; font-size: clamp(2.2rem, 4vw, 4.2rem); }
.category-card div > span { color: var(--muted); }
.category-card > .icon { position: relative; z-index: 2; width: 32px; height: 32px; }
.category-card-orbit { position: absolute; top: -100px; right: -70px; width: 300px; height: 300px; border-radius: 50%; }
.category-card-orbit span { position: absolute; inset: 50%; border: 1px solid rgba(17,19,15,.12); border-radius: 50%; transform: translate(-50%,-50%); }
.category-card-orbit span:nth-child(1) { width: 30%; height: 30%; }
.category-card-orbit span:nth-child(2) { width: 65%; height: 65%; }
.category-card-orbit span:nth-child(3) { width: 100%; height: 100%; }
.category-sleep { background: #e4e4ef; }
.category-recovery { background: #dfe8d8; }
.category-performance { background: #f0d6cb; }
.category-wellnessTech { background: #e9e1c8; }

.brands-preview-section { background: var(--paper-deep); }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.brand-card { position: relative; min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform 180ms ease, box-shadow 180ms ease; }
.brand-card::after { content: ""; position: absolute; top: -90px; right: -90px; width: 210px; height: 210px; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 42px rgba(17,19,15,.03), 0 0 0 84px rgba(17,19,15,.02); }
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.brand-card-top, .brand-card-footer { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand-country { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; font-size: .68rem; font-weight: 850; }
.brand-card > div:nth-child(2) { position: relative; z-index: 2; }
.brand-category { margin-bottom: 7px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.brand-card h2 { margin-bottom: 15px; font-size: clamp(2.3rem, 4vw, 4.3rem); }
.brand-card p { color: var(--muted); }
.mini-score { font-size: .72rem; color: var(--muted); }
.mini-score strong { color: var(--ink); font-size: 1.2rem; }
.brand-accent-midnight { background: #d9dce8; }
.brand-accent-sage { background: #dce7d7; }
.brand-accent-signal { background: #f2d2c7; }
.brand-accent-sand { background: #e9e2d2; }
.brand-accent-clay { background: #ead6cf; }
.brand-accent-amber { background: #ede0bf; }

.partner-cta-section { background: var(--ink); color: white; }
.partner-cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.partner-cta > div { max-width: 850px; }
.partner-cta .eyebrow { color: var(--acid); }
.partner-cta h2 { margin-bottom: 22px; }
.partner-cta p { max-width: 700px; color: rgba(255,255,255,.63); font-size: 1.08rem; }
.newsletter-section { padding-top: 70px; }
.newsletter-card { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; overflow: hidden; padding: 55px 60px; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--acid); }
.newsletter-card > div:not(.newsletter-orbit) { position: relative; z-index: 2; max-width: 760px; }
.newsletter-card h2 { margin-bottom: 14px; }
.newsletter-card p { margin-bottom: 0; }
.newsletter-card .button { position: relative; z-index: 2; }
.newsletter-orbit { position: absolute; top: 50%; right: 12%; width: 320px; height: 320px; transform: translateY(-50%); }
.newsletter-orbit span { position: absolute; inset: 50%; border: 1px solid rgba(17,19,15,.16); border-radius: 50%; transform: translate(-50%,-50%); }
.newsletter-orbit span:nth-child(1) { width: 30%; height: 30%; }
.newsletter-orbit span:nth-child(2) { width: 65%; height: 65%; }
.newsletter-orbit span:nth-child(3) { width: 100%; height: 100%; }

.page-intro { padding: 120px 0 92px; border-bottom: 1px solid var(--line); }
.page-intro h1 { max-width: 1040px; margin-bottom: 30px; font-size: clamp(3.5rem, 7.6vw, 7.6rem); }
.radar-intro, .brands-intro { background: var(--surface); }
.radar-tools { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.search-field { min-width: min(420px, 100%); display: flex; align-items: center; gap: 10px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-field input::placeholder { color: #96988f; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: .72rem; font-weight: 750; }
.filter-button:hover, .filter-button.is-active { border-color: var(--ink); background: var(--ink); color: white; }
.results-count { margin-bottom: 22px; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.radar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.radar-grid .article-card-image { aspect-ratio: 16 / 11; }
.radar-grid .article-card h2 { font-size: clamp(1.65rem, 2.4vw, 2.55rem); }
.empty-state { padding: 70px 20px; text-align: center; color: var(--muted); }
.brand-grid-index { grid-template-columns: repeat(3, 1fr); }

.category-hero { padding: 112px 0; overflow: hidden; }
.category-hero-sleep { background: #dfe1ed; }
.category-hero-recovery { background: #dce8d7; }
.category-hero-performance { background: #efd5ca; }
.category-hero-wellnessTech { background: #eae1c7; }
.category-hero-grid { display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: 70px; }
.category-hero h1 { max-width: 920px; margin-bottom: 28px; }
.category-hero p:not(.eyebrow) { max-width: 670px; color: var(--muted); font-size: 1.15rem; }
.category-visual { position: relative; min-height: 440px; display: grid; place-items: center; }
.category-sphere { position: absolute; width: min(360px, 85%); aspect-ratio: 1; border-radius: 50%; background: var(--surface); box-shadow: inset -50px -30px 80px rgba(17,19,15,.1), 0 30px 70px rgba(17,19,15,.12); }
.category-line { position: absolute; width: 92%; height: 92%; border: 1px solid rgba(17,19,15,.22); border-radius: 50%; }
.line-a { transform: rotate(25deg) scaleY(.35); }
.line-b { transform: rotate(-35deg) scaleY(.47); }
.category-visual strong { position: relative; z-index: 2; padding: 12px 17px; border-radius: 999px; background: var(--ink); color: white; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

.brand-profile-hero { padding: 70px 0 100px; }
.breadcrumbs { margin-bottom: 70px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .7rem; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 5px; }
.breadcrumbs .icon { width: 13px; height: 13px; }
.breadcrumbs a:hover { color: var(--ink); }
.brand-profile-grid { display: grid; grid-template-columns: 1fr 340px; align-items: end; gap: 80px; }
.brand-profile-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.brand-profile-meta > span:first-child { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; font-size: .7rem; font-weight: 850; }
.brand-profile-grid h1 { margin-bottom: 24px; }
.brand-profile-lead { max-width: 760px; margin-bottom: 34px; color: var(--muted); font-size: 1.35rem; }
.brand-score-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.55); }
.brand-score-card > span { display: block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.brand-score-card strong { font-size: 6rem; line-height: 1; }
.brand-score-card small { color: var(--muted); }
.brand-score-card p { margin: 22px 0 0; color: var(--muted); font-size: .9rem; }
.two-column-info { display: grid; grid-template-columns: 1.3fr .7fr; gap: 110px; }
.two-column-info h2 { margin-bottom: 24px; font-size: 2.3rem; }
.two-column-info p { color: var(--muted); font-size: 1.05rem; }
.notice-card, .article-disclosure { display: flex; align-items: flex-start; gap: 14px; margin-top: 32px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface); }
.notice-card .icon, .article-disclosure .icon { margin-top: 3px; color: var(--signal); }
.notice-card p, .article-disclosure p { margin: 0; font-size: .82rem; }
.check-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list .icon { margin-top: 4px; color: var(--signal); }
.brand-facts { margin-top: 34px; border-top: 1px solid var(--line); }
.brand-facts div { display: flex; justify-content: space-between; gap: 25px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.brand-facts dt { color: var(--muted); font-size: .78rem; }
.brand-facts dd { margin: 0; font-size: .78rem; font-weight: 700; text-align: right; }

.for-brands-hero { min-height: calc(100vh - var(--header-height)); display: grid; align-items: center; overflow: hidden; padding: 90px 0; background: var(--ink); color: white; }
.for-brands-grid { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 90px; }
.for-brands-grid .eyebrow { color: var(--acid); }
.for-brands-grid h1 { margin-bottom: 28px; }
.for-brands-grid > div:first-child > p:not(.eyebrow):not(.proof-line) { max-width: 680px; color: rgba(255,255,255,.65); font-size: 1.25rem; }
.proof-line { display: flex; align-items: center; gap: 8px; margin-top: 27px; color: rgba(255,255,255,.55); font-size: .78rem; }
.proof-line .icon { color: var(--acid); }
.market-map { position: relative; min-height: 520px; }
.map-node { position: absolute; z-index: 3; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.node-brand { top: 8%; left: 8%; width: 130px; height: 130px; }
.node-radar { top: 40%; left: 38%; width: 155px; height: 155px; background: var(--signal); color: var(--ink); border-color: var(--signal); }
.node-spain { right: 4%; bottom: 5%; width: 140px; height: 140px; background: var(--acid); color: var(--ink); border-color: var(--acid); }
.map-line { position: absolute; z-index: 1; height: 1px; transform-origin: left; background: rgba(255,255,255,.4); }
.map-line::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: white; }
.line-one { top: 31%; left: 27%; width: 190px; transform: rotate(33deg); }
.line-two { top: 63%; left: 59%; width: 190px; transform: rotate(32deg); }
.map-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-a { width: 70%; height: 70%; }
.orbit-b { width: 100%; height: 100%; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.services-grid article { min-height: 280px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid article > span, .principles-grid article > span { display: block; margin-bottom: 48px; color: var(--signal); font-size: .72rem; font-weight: 850; }
.services-grid h3 { margin-bottom: 14px; font-size: 1.65rem; }
.services-grid p { margin-bottom: 0; color: var(--muted); }
.process-section { background: var(--paper-deep); }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); }
.process-timeline article { position: relative; padding: 34px 26px 0 0; }
.process-timeline article::before { content: ""; position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--signal); }
.process-timeline article > span { color: var(--muted); font-size: .7rem; font-weight: 850; }
.process-timeline h3 { margin: 26px 0 12px; font-size: 1.75rem; }
.process-timeline p { color: var(--muted); }
.requirements-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.large-check-list { gap: 0; border-top: 1px solid var(--line); }
.large-check-list li { padding: 23px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.contact-cta-section { padding-top: 0; }
.contact-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 50px; border-radius: var(--radius-large); background: var(--acid); }
.contact-cta h2 { margin-bottom: 12px; font-size: clamp(2.2rem, 4vw, 4.2rem); }
.contact-cta p { max-width: 650px; margin-bottom: 0; }

.about-story-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 100px; }
.giant-index { display: block; margin-bottom: 36px; color: var(--signal); font-size: .78rem; font-weight: 850; }
.about-story-grid h2 { font-size: 3rem; }
.prose-large p { margin-bottom: 30px; font-family: var(--font-serif); font-size: clamp(1.45rem, 2.3vw, 2.15rem); line-height: 1.45; letter-spacing: -0.02em; }
.principles-section { background: var(--ink); color: white; }
.principles-section .eyebrow { color: var(--acid); }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.principles-grid article { min-height: 280px; padding: 30px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.principles-grid h3 { margin-bottom: 18px; font-size: 1.8rem; }
.principles-grid p { color: rgba(255,255,255,.58); }
.contact-options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-options-grid article { min-height: 390px; display: flex; flex-direction: column; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--surface); }
.contact-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 70px; border-radius: 50%; background: var(--ink); color: white; }
.contact-options-grid h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 4rem); }
.contact-options-grid p { max-width: 520px; color: var(--muted); }
.contact-options-grid .text-link { margin-top: auto; }
.contact-note { margin-top: 20px; padding: 24px 30px; border-left: 3px solid var(--signal); background: var(--paper-deep); }
.contact-note p { margin: 0; }

.policy-page { padding: 110px 0; }
.policy-shell { max-width: 900px; }
.policy-shell h1 { margin-bottom: 30px; font-size: clamp(3.3rem, 6vw, 6.3rem); }
.policy-sections { margin-top: 70px; }
.policy-sections section { padding: 32px 0; border-top: 1px solid var(--line); }
.policy-sections h2 { margin-bottom: 15px; font-size: 1.65rem; }
.policy-sections p { max-width: 780px; color: var(--muted); }
.policy-updated { margin-top: 50px; color: var(--muted); font-size: .78rem; }

.article-hero { padding: 56px 0 70px; }
.article-title-grid { display: grid; grid-template-columns: minmax(0, 1fr) 180px; align-items: end; gap: 70px; }
.article-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--muted); font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.article-kicker > span:not(.status-pill) + span::before { content: "·"; margin-right: 12px; }
.article-title-grid h1 { max-width: 1120px; margin-bottom: 25px; font-size: clamp(3.3rem, 6.7vw, 7rem); }
.article-deck { max-width: 850px; margin-bottom: 28px; color: var(--muted); font-family: var(--font-serif); font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.45; }
.article-byline { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: .72rem; }
.article-byline span + span::before { content: "·"; margin-right: 12px; }
.article-hero-score { display: grid; justify-items: end; align-self: end; padding-bottom: 5px; }
.article-hero-score span { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.article-hero-score strong { font-size: 5.5rem; line-height: .9; }
.article-hero-score small { color: var(--muted); }
.article-hero-image { margin: 65px 0 0; overflow: hidden; border-radius: var(--radius-large); background: var(--paper-deep); }
.article-hero-image img { width: 100%; aspect-ratio: 16 / 8.8; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); justify-content: center; gap: 85px; padding-top: 50px; padding-bottom: 120px; }
.article-sidebar { min-width: 0; }
.article-toc { position: sticky; top: 120px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-toc > p { margin-bottom: 14px; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-toc ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.article-toc a { color: var(--muted); font-size: .77rem; }
.article-toc a:hover { color: var(--ink); }
.article-disclosure { margin-top: 20px; }
.article-main { min-width: 0; }
.score-panel { margin-bottom: 55px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.score-heading { display: flex; align-items: center; gap: 25px; margin-bottom: 30px; }
.score-gauge { position: relative; width: 116px; height: 116px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--score-color) calc(var(--score) * 1%), var(--paper-deep) 0); }
.score-gauge::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--surface); }
.score-gauge span { position: relative; display: flex; align-items: baseline; }
.score-gauge strong { font-size: 2.2rem; }
.score-gauge small { color: var(--muted); }
.score-heading p { margin-bottom: 3px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.score-heading h2 { margin: 0; font-size: 2rem; }
.score-details { display: grid; gap: 15px; padding-top: 25px; border-top: 1px solid var(--line); }
.score-row > div:first-child { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .72rem; }
.score-track { height: 5px; overflow: hidden; border-radius: 99px; background: var(--paper-deep); }
.score-track span { display: block; height: 100%; background: var(--ink); }
.score-panel .text-link { margin-top: 25px; }
.article-prose { font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.78; }
.article-prose > p:first-of-type { font-size: 1.35rem; }
.article-prose h2, .article-prose h3 { scroll-margin-top: 115px; font-family: var(--font-sans); }
.article-prose h2 { margin: 70px 0 24px; font-size: clamp(2.2rem, 4vw, 3.7rem); }
.article-prose h3 { margin: 44px 0 18px; font-size: 1.8rem; }
.article-prose p { margin-bottom: 26px; }
.article-prose ul, .article-prose ol { display: grid; gap: 10px; margin: 0 0 30px; padding-left: 24px; }
.article-prose a { text-decoration: underline; text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.article-prose blockquote { margin: 42px 0; padding: 28px 0 28px 30px; border-left: 3px solid var(--signal); font-size: 1.4rem; font-style: italic; }
.article-prose blockquote p { margin: 0; }
.article-prose hr { margin: 55px 0; border: 0; border-top: 1px solid var(--line); }
.article-prose code { padding: 2px 5px; border-radius: 4px; background: var(--paper-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .86em; }
.article-sources { margin-top: 70px; padding-top: 32px; border-top: 1px solid var(--line); }
.article-sources h2 { margin-bottom: 20px; font-size: 1.65rem; }
.article-sources ol { display: grid; gap: 12px; margin: 0; padding-left: 20px; }
.article-sources a { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-family: var(--font-sans); font-size: .82rem; text-decoration: underline; text-underline-offset: 4px; }
.article-end-note { display: grid; gap: 7px; margin-top: 42px; padding: 20px; border-radius: var(--radius-small); background: var(--paper-deep); color: var(--muted); font-size: .75rem; }
.article-end-note p { margin: 0; }
.related-section { background: var(--paper-deep); }

.site-footer { padding: 90px 0 30px; background: var(--ink); color: white; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 60px; padding-bottom: 70px; }
.brand-lockup-footer { margin-bottom: 22px; }
.footer-brand p { max-width: 430px; color: rgba(255,255,255,.55); }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h2 { margin-bottom: 10px; color: rgba(255,255,255,.4); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.72); font-size: .78rem; }
.footer-column a:hover { color: white; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.4); font-size: .68rem; }
.footer-bottom p:last-child { text-align: right; }
.language-gateway { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--paper); }
.language-gateway main { max-width: 700px; text-align: center; }
.language-gateway img { margin: 0 auto 24px; }
.language-gateway h1 { margin-bottom: 16px; font-size: clamp(3rem, 8vw, 6rem); }
.language-gateway main > div { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav .nav-link:nth-child(5), .desktop-nav .nav-link:nth-child(6) { display: none; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 30px; }
  .hero-radar { min-height: 490px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .article-card-large { grid-column: 1 / -1; }
  .article-card-large { display: grid; grid-template-columns: 1.2fr .8fr; }
  .article-card-large .article-card-image { height: 100%; }
  .radar-grid, .brand-grid, .brand-grid-index { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 860px) {
  :root { --content: min(100% - 32px, 720px); --narrow: min(100% - 32px, 720px); --header-height: 72px; }
  .section { padding: 80px 0; }
  .desktop-nav, .desktop-partner { display: none; }
  .menu-button { display: grid; }
  .hero-grid, .method-grid, .split-heading, .category-hero-grid, .for-brands-grid, .requirements-grid, .about-story-grid, .two-column-info, .brand-profile-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; padding: 72px 0; }
  .hero-radar { min-height: 430px; }
  .radar-stage { width: 430px; max-width: 100%; }
  .signal-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-strip-grid > div:nth-child(3) { border-left: 1px solid rgba(17,19,15,.2); }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .article-card-large { display: flex; grid-column: 1 / -1; }
  .method-intro { position: static; }
  .category-grid { grid-template-columns: 1fr; }
  .partner-cta, .newsletter-card, .contact-cta { align-items: flex-start; flex-direction: column; }
  .newsletter-card { display: flex; }
  .radar-tools { align-items: stretch; flex-direction: column; }
  .filter-row { justify-content: flex-start; }
  .brand-profile-grid { gap: 45px; }
  .brand-score-card { max-width: 420px; }
  .article-title-grid { grid-template-columns: 1fr; gap: 25px; }
  .article-hero-score { justify-items: start; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; }
  .article-toc { position: static; }
  .article-sidebar { order: 2; }
  .article-main { order: 1; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 45px; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 620px) {
  :root { --content: calc(100% - 24px); --narrow: calc(100% - 24px); }
  h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .brand-wordmark { font-size: .75rem; }
  .language-link span { display: none; }
  .hero-copy h1 { font-size: clamp(3.5rem, 16vw, 5.6rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-radar { min-height: 350px; }
  .radar-label { min-width: 105px; padding: 9px 11px; }
  .label-one { right: 0; }
  .label-two { left: 0; }
  .signal-strip-grid { grid-template-columns: 1fr; }
  .signal-strip-grid > div { border-left: 1px solid rgba(17,19,15,.2); border-bottom: 1px solid rgba(17,19,15,.2); }
  .featured-grid, .radar-grid, .brand-grid, .brand-grid-index { grid-template-columns: 1fr; }
  .article-card-large { grid-column: auto; }
  .category-card { min-height: 290px; padding: 28px; }
  .category-card h3 { font-size: 3rem; }
  .newsletter-card, .contact-cta { padding: 34px 26px; }
  .page-intro { padding: 80px 0 60px; }
  .page-intro h1 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .category-hero { padding: 75px 0; }
  .category-visual { min-height: 320px; }
  .services-grid, .principles-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-timeline article { padding-right: 0; }
  .contact-options-grid article { min-height: 340px; padding: 30px; }
  .article-hero { padding-top: 30px; }
  .breadcrumbs { margin-bottom: 45px; }
  .article-title-grid h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .article-hero-image { margin-top: 45px; border-radius: 20px; }
  .article-layout { padding-bottom: 80px; }
  .score-heading { align-items: flex-start; flex-direction: column; }
  .article-prose { font-size: 1.08rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p:last-child { text-align: left; }
  .language-gateway main > div { flex-direction: column; }
}

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

@media print {
  .site-header, .site-footer, .article-sidebar, .related-section, .hero-actions { display: none !important; }
  body { background: white; color: black; }
  .article-layout { display: block; width: 100%; }
  .article-main { max-width: none; }
}
