:root {
  color-scheme: dark;
  --bg: #07101a;
  --bg-deep: #030812;
  --surface: rgba(15, 28, 40, .82);
  --surface-solid: #101d2a;
  --surface-soft: rgba(255, 255, 255, .045);
  --text: #f7f4ed;
  --muted: #aebac5;
  --quiet: #7f8e9c;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .24);
  --accent: #ff8e70;
  --accent-strong: #ffb09a;
  --teal: #8ddbd1;
  --lavender: #c4b5fd;
  --shadow: 0 30px 80px rgba(0, 0, 0, .35);
  --radius: 24px;
  --container: 1200px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f4ee;
  --bg-deep: #ebe9e2;
  --surface: rgba(255, 255, 255, .86);
  --surface-solid: #fffefa;
  --surface-soft: rgba(7, 16, 26, .045);
  --text: #17222d;
  --muted: #526270;
  --quiet: #73818d;
  --line: rgba(20, 34, 46, .14);
  --line-strong: rgba(20, 34, 46, .26);
  --accent: #b9472c;
  --accent-strong: #87301e;
  --teal: #176e67;
  --lavender: #6550a4;
  --shadow: 0 28px 70px rgba(42, 50, 57, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(92, 172, 162, .08), transparent 28rem),
    radial-gradient(circle at 10% 62%, rgba(255, 142, 112, .06), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .22em; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 870px; }
.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;
}

.skiplink {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 16px;
}
.skiplink:focus { transform: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(22px) saturate(120%);
}
.topbar-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; min-width: max-content; text-decoration: none; }
.brand img { width: 112px; height: auto; }
:root[data-theme="light"] .brand img { box-sizing: content-box; border-radius: 5px; background: #07101a; padding: 4px 6px; }
.brand span { border-left: 1px solid var(--line-strong); padding-left: 9px; color: var(--muted); font-size: .9rem; letter-spacing: .08em; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a,
.legal-menu > summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  padding: 7px 11px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.nav > a:hover, .nav > a:focus-visible, .legal-menu > summary:hover, .nav [aria-current="page"] { background: var(--surface-soft); color: var(--text); }
.nav a[aria-current="page"] { box-shadow: inset 0 -1px var(--accent); }
.tabler-icon { width: 20px; height: 20px; flex: 0 0 auto; }
.legal-menu, .language-menu { position: relative; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
.legal-menu-panel, .language-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-solid) 95%, transparent);
  box-shadow: var(--shadow);
}
.legal-menu-panel a, .language-link {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.legal-menu-panel a:hover, .language-link:hover, .language-link[aria-current="page"] { background: var(--surface-soft); color: var(--text); }
.language-flag { font-family: "Apple Color Emoji", "Segoe UI Emoji"; font-size: 1.15rem; }
.topbar-actions { display: flex; align-items: center; gap: 6px; }
.language-menu > summary, .icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.language-menu > summary:hover, .icon-button:hover, .language-menu[open] > summary { border-color: var(--line); background: var(--surface-soft); color: var(--text); }
.language-panel { min-width: 210px; }
.nav-toggle { display: none; }
.close-glyph { display: none; }
.nav-toggle[aria-expanded="true"] .menu-glyph { display: none; }
.nav-toggle[aria-expanded="true"] .close-glyph { display: inline-flex; }
.mobile-menu { border-top: 1px solid var(--line); }
.mobile-menu-inner { width: min(calc(100% - 40px), var(--container)); margin: auto; padding: 18px 0 24px; }
.mobile-menu-inner > a { display: block; padding: 11px 4px; color: var(--muted); text-decoration: none; }
.mobile-language-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }

.hero {
  min-height: min(830px, calc(100vh - 76px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}
.hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(3,8,18,.97) 0%, rgba(3,8,18,.87) 38%, rgba(3,8,18,.22) 72%, rgba(3,8,18,.08)); }
.hero-art { position: absolute; inset: 0; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; padding-block: 120px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--accent-strong);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow .tabler-icon { width: 18px; height: 18px; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 870px;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  font-weight: 620;
  letter-spacing: -.06em;
  line-height: .98;
}
.hero-lead, .page-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: #c8d0d7;
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
  line-height: 1.65;
}
:root[data-theme="light"] .page-lead { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.primary-button, .outline-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
}
.primary-button { border-color: var(--accent); background: var(--accent); color: #17100f; }
.primary-button:hover { border-color: var(--accent-strong); background: var(--accent-strong); }
.outline-button { background: var(--surface-soft); color: var(--text); }
.outline-button:hover { border-color: var(--text); }
.primary-button:focus-visible, .outline-button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid color-mix(in srgb, var(--teal) 75%, white); outline-offset: 3px; }
.section { padding: clamp(76px, 10vw, 132px) 0; }
.purpose-section { border-bottom: 1px solid var(--line); }
.purpose-grid { display: grid; grid-template-columns: 1.5fr .7fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.purpose-grid h2 { max-width: 780px; font-size: clamp(1.7rem, 3.2vw, 3rem); font-weight: 480; letter-spacing: -.035em; line-height: 1.35; }
.principle-stack { display: grid; gap: 12px; }
.principle-stack > div { min-height: 60px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 650; }
.principle-stack .tabler-icon { color: var(--teal); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 38px; }
.section-heading h2 { max-width: 650px; margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 550; letter-spacing: -.045em; line-height: 1.08; }
.products-section { background: color-mix(in srgb, var(--surface-solid) 55%, transparent); }
.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.product-art { min-height: 420px; overflow: hidden; background: var(--bg-deep); }
.product-art picture, .product-art img { width: 100%; height: 100%; }
.product-art img { object-fit: cover; }
.product-copy { position: relative; padding: clamp(32px, 5vw, 64px); }
.status-pill { display: inline-block; margin-bottom: 30px; border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent); border-radius: 999px; padding: 5px 11px; color: var(--accent-strong); font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.product-identity { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.product-identity img { width: 72px; border-radius: 17px; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.product-identity .eyebrow { margin-bottom: 5px; }
.product-identity h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.product-lead { color: var(--muted); font-size: 1.08rem; }
.boundary-note { display: flex; gap: 11px; margin: 24px 0; border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: .92rem; }
.boundary-note .tabler-icon { margin-top: 2px; color: var(--teal); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-strong); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.text-link .tabler-icon { width: 18px; height: 18px; }
.boundary-section { padding-top: 0; }
.boundary-panel {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  background: var(--surface-soft);
}
.boundary-panel > .tabler-icon { width: 30px; height: 30px; color: var(--teal); }
.boundary-panel h2 { margin-bottom: 8px; font-size: 1.4rem; }
.boundary-panel p { max-width: 820px; margin-bottom: 0; color: var(--muted); }

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: clamp(100px, 14vw, 190px) 0 clamp(74px, 10vw, 126px);
  background:
    radial-gradient(circle at 88% 20%, rgba(141,219,209,.13), transparent 26rem),
    radial-gradient(circle at 70% 120%, rgba(255,142,112,.1), transparent 32rem),
    var(--bg-deep);
}
.page-hero::after { position: absolute; top: -260px; right: -140px; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 940px; font-size: clamp(3rem, 6vw, 5.5rem); }
.about-hero h1 { max-width: 990px; }
.ethos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(40px, 8vw, 110px); }
.ethos-column > .tabler-icon { width: 34px; height: 34px; margin-bottom: 24px; color: var(--accent); }
.ethos-column h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 560; letter-spacing: -.04em; }
.ethos-column p { color: var(--muted); font-size: 1.06rem; }
.ethos-quote { max-width: 960px; margin-block: clamp(80px, 11vw, 150px); color: var(--text); font-size: clamp(2.1rem, 5vw, 4.5rem); font-weight: 420; letter-spacing: -.05em; line-height: 1.15; }
.products-page { padding-top: 68px; }
.product-card-full { min-height: 610px; }
.product-card-full .product-copy { display: flex; flex-direction: column; justify-content: center; }

.resource-layout { max-width: 980px; }
.resource-group + .resource-group { margin-top: clamp(80px, 12vw, 150px); }
.group-heading { display: grid; grid-template-columns: 55px 1fr; gap: 22px; margin-bottom: 30px; }
.group-heading > span { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .15em; }
.group-heading h2 { margin-bottom: 8px; font-size: clamp(2.1rem, 4.3vw, 3.9rem); font-weight: 560; letter-spacing: -.05em; }
.group-heading p { color: var(--muted); }
.resource-list { display: grid; gap: 12px; }
.resource-card {
  min-height: 106px;
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px;
  background: var(--surface-soft);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.resource-card:hover { transform: translateY(-2px); border-color: var(--line-strong); background: var(--surface); }
.resource-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--teal) 12%, transparent); color: var(--teal); }
.resource-card strong, .resource-card small { display: block; }
.resource-card strong { margin-bottom: 3px; font-size: 1.05rem; }
.resource-card small { color: var(--muted); font-size: .9rem; line-height: 1.45; }
.resource-arrow { color: var(--quiet); }
.country-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 32px 77px; }
.country-tabs button { border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; background: transparent; color: var(--muted); cursor: pointer; }
.country-tabs button:hover, .country-tabs button[aria-selected="true"] { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--text); }
.country-panel { margin-left: 77px; }
.country-panel h3 { margin-bottom: 18px; font-size: 1.15rem; }
.resource-disclaimer { display: flex; gap: 12px; margin: 52px 0 0 77px; border-top: 1px solid var(--line); padding-top: 25px; color: var(--muted); font-size: .88rem; }
.resource-disclaimer .tabler-icon { color: var(--accent); margin-top: 2px; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(28px, 6vw, 76px); align-items: start; }
.contact-form-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(24px, 5vw, 48px); box-shadow: var(--shadow); }
.activation-status { display: flex; gap: 14px; margin-bottom: 36px; border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line)); border-radius: 15px; padding: 16px; background: color-mix(in srgb, var(--accent) 7%, transparent); }
.activation-status .tabler-icon { color: var(--accent); margin-top: 2px; }
.activation-status strong { display: block; margin-bottom: 4px; }
.activation-status p { margin: 0; color: var(--muted); font-size: .91rem; }
form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
label { display: grid; gap: 7px; color: var(--text); font-size: .88rem; font-weight: 680; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: color-mix(in srgb, var(--bg) 68%, transparent);
  color: var(--text);
  padding: 12px 14px;
  outline: 0;
}
input, select { min-height: 49px; }
textarea { min-height: 142px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--quiet); }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 14%, transparent); }
.character-count { justify-self: end; color: var(--quiet); font-size: .75rem; font-weight: 500; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-privacy, .form-status { margin: 0; color: var(--muted); font-size: .84rem; }
.submit-button { justify-self: start; border: 0; }
.submit-button:disabled { cursor: not-allowed; filter: grayscale(.35); opacity: .48; }
.contact-aside { display: grid; gap: 18px; }
.contact-aside > div { border: 1px solid var(--line); border-radius: 18px; padding: 25px; background: var(--surface-soft); }
.contact-aside .tabler-icon { color: var(--teal); margin-bottom: 15px; }
.contact-aside h2 { font-size: 1.18rem; }
.contact-aside ul { margin: 0; padding-left: 20px; color: var(--muted); }
.central-support p { color: var(--muted); font-size: .91rem; }
.central-support a { color: var(--accent-strong); font-weight: 700; overflow-wrap: anywhere; }

.legal-container { max-width: 840px; }
.updated { color: var(--quiet); font-size: .85rem; }
.legal-section { padding-top: 60px; }
.legal-document-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.legal-document-nav a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; color: var(--muted); text-decoration: none; }
.legal-document-nav a[aria-current="page"] { border-color: var(--accent); color: var(--text); }
.legal-status { display: flex; gap: 14px; margin-bottom: 56px; border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: var(--surface-soft); }
.legal-status .tabler-icon { color: var(--teal); margin-top: 2px; }
.legal-status p { margin: 0; color: var(--muted); }
.legal-section section { padding: 0 0 34px 34px; border-left: 1px solid var(--line); }
.legal-section section h2 { margin-bottom: 12px; font-size: 1.45rem; }
.legal-section section p { color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 70px max(20px, calc((100vw - var(--container)) / 2)) 26px; background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(170px, .6fr)); gap: 52px; }
.footer-grid h2 { margin-bottom: 15px; color: var(--quiet); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; width: fit-content; margin-bottom: 8px; color: var(--muted); font-size: .92rem; text-decoration: none; }
.footer-grid > div > a:hover { color: var(--text); }
.footer-brand p { max-width: 480px; margin-top: 20px; color: var(--muted); font-size: .9rem; }
.footer-legal-heading { display: flex; align-items: center; gap: 8px; }
.footer-legal-heading .tabler-icon { width: 17px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; border-top: 1px solid var(--line); padding-top: 22px; color: var(--quiet); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-privacy-button { border: 0; padding: 0; background: none; color: var(--muted); text-decoration: underline; cursor: pointer; }

.analytics-consent-banner {
  position: fixed;
  left: max(18px, calc((100vw - var(--container)) / 2));
  right: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 22px;
  background: color-mix(in srgb, var(--surface-solid) 95%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.analytics-consent-banner h2 { margin-bottom: 4px; font-size: 1.05rem; }
.analytics-consent-banner p { max-width: 760px; margin: 0; color: var(--muted); font-size: .87rem; }
.analytics-consent-actions { display: flex; gap: 9px; flex-shrink: 0; }
.analytics-consent-actions .primary-button, .analytics-consent-actions .outline-button { min-height: 42px; padding: 8px 14px; font-size: .84rem; }
.privacy-settings-backdrop { position: fixed; inset: 0; z-index: 160; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.68); }
.privacy-settings-dialog { position: relative; width: min(520px, 100%); border: 1px solid var(--line-strong); border-radius: 22px; padding: 32px; background: var(--surface-solid); box-shadow: var(--shadow); }
.privacy-settings-dialog > p { color: var(--muted); }
.privacy-settings-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--surface-soft); cursor: pointer; }
.privacy-settings-status { display: flex; justify-content: space-between; border-block: 1px solid var(--line); padding-block: 12px; }
.privacy-settings-learn { display: inline-block; margin-top: 18px; color: var(--muted); }

.locale-chooser, .not-found { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: var(--bg-deep); }
.locale-chooser main, .not-found main { width: min(620px, 100%); }
.locale-chooser h1, .not-found h1 { margin-top: 54px; font-size: clamp(2.5rem, 8vw, 5rem); }
.locale-chooser nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.locale-chooser nav a { border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; color: var(--muted); text-decoration: none; }
.locale-chooser nav a:hover { border-color: var(--line-strong); color: var(--text); }
.not-found main > p:not(.eyebrow) { color: var(--muted); }

@media (max-width: 1060px) {
  .nav { display: none; }
  .nav-toggle { display: grid; }
  .topbar-inner { min-height: 68px; }
  .product-card { grid-template-columns: 1fr; }
  .product-art { min-height: 380px; max-height: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand img { width: 103px; }
  .hero { min-height: 730px; align-items: end; }
  .hero::after { background: linear-gradient(0deg, rgba(3,8,18,.98) 0%, rgba(3,8,18,.85) 56%, rgba(3,8,18,.32) 100%); }
  .hero-art img { object-position: 68% center; }
  .hero-content { padding-block: 110px 75px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions, .hero-actions > * { width: 100%; }
  .section { padding-block: 76px; }
  .purpose-grid, .ethos-grid { grid-template-columns: 1fr; gap: 45px; }
  .purpose-grid h2 { font-size: 1.6rem; }
  .product-art { min-height: 300px; }
  .product-copy { padding: 26px; }
  .product-identity { align-items: flex-start; }
  .product-identity img { width: 58px; border-radius: 14px; }
  .page-hero { padding-block: 94px 72px; }
  .page-hero h1 { font-size: clamp(2.6rem, 12vw, 4.3rem); }
  .page-lead { font-size: 1.02rem; }
  .ethos-quote { font-size: 2.35rem; }
  .boundary-panel { flex-direction: column; }
  .group-heading { grid-template-columns: 38px 1fr; gap: 10px; }
  .resource-card { grid-template-columns: 40px 1fr; gap: 14px; padding: 17px; }
  .resource-arrow { display: none; }
  .country-tabs, .country-panel, .resource-disclaimer { margin-left: 0; }
  .country-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; scrollbar-width: thin; }
  .country-tabs button { flex: 0 0 auto; }
  .form-row, .contact-aside { grid-template-columns: 1fr; }
  .contact-form-card { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom, .analytics-consent-banner { flex-direction: column; align-items: stretch; }
  .analytics-consent-actions > * { flex: 1; }
}

@media (max-width: 460px) {
  .topbar-inner { gap: 8px; }
  .topbar-actions { margin-left: auto; }
  .public-theme-control { display: none; }
  .mobile-language-links { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .locale-chooser nav { grid-template-columns: 1fr; }
}

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

/* Exact pre-CortisolAware shared chrome, scoped to avoid changing page bodies. */
.skiplink,
.topbar,
.site-footer {
  --chrome-accent: #9fe8ca;
  --shell-accent: #66c19d;
  --shell-focus: #75aeff;
  --shell-ink: #eef7f2;
  --shell-canvas: #101513;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}
:root[data-theme="light"] .skiplink,
:root[data-theme="light"] .topbar,
:root[data-theme="light"] .site-footer {
  --shell-accent: #285f4c;
  --shell-focus: #087be8;
  --shell-ink: #16211d;
  --shell-canvas: #fbfcff;
}
.skiplink { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; border-radius: 9px; background: var(--shell-ink); color: var(--shell-canvas); font-weight: 750; transform: translateY(-160%); transition: transform 160ms ease; }
.skiplink:focus { transform: translateY(0); }
.skiplink:focus-visible,
.topbar :focus-visible,
.site-footer :focus-visible { outline: 3px solid var(--shell-focus); outline-offset: 3px; }

/* emonster.dev public navigation, copied at source dimensions. */
.topbar { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(202, 224, 232, .12); background: rgba(5, 11, 18, .94); color: #f7f8f5; -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%); }
.topbar .container { width: min(100% - 40px, 1440px); margin-inline: auto; }
.topbar-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 88px; gap: 34px; }
.topbar .brand,
.site-footer .brand { display: inline-flex; min-width: auto; min-height: 44px; align-items: center; gap: 14px; flex: 0 0 auto; color: inherit; text-decoration: none; }
.topbar .brand img,
.site-footer .brand img { box-sizing: border-box; width: 178px; height: auto; border-radius: 0; padding: 0; background: transparent; object-fit: contain; }
.topbar .brand span,
.site-footer .brand span { display: inline; border-left: 1px solid rgba(255, 255, 255, .28); padding-left: 14px; color: var(--chrome-accent); font-size: .88rem; font-weight: 760; letter-spacing: -.01em; }
.topbar .nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(20px, 2.2vw, 38px); min-width: 0; margin-left: 0; color: rgba(247, 248, 245, .76); }
.topbar .nav > a { position: relative; min-height: 0; padding: 0; border-radius: 0; background: transparent; box-shadow: none; color: inherit; font-size: .96rem; font-weight: 650; line-height: 1.2; text-decoration: none; white-space: nowrap; }
.topbar .nav > a::after { position: absolute; right: 0; bottom: -22px; left: 0; height: 2px; background: var(--shell-accent); content: ""; opacity: 0; transform: scaleX(.4); transition: opacity 160ms ease, transform 160ms ease; }
.topbar .nav > a:hover, .topbar .nav > a[aria-current="page"] { background: transparent; color: #fff; }
.topbar .nav > a:hover::after, .topbar .nav > a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.topbar .legal-menu { position: relative; }
.topbar .legal-menu summary { min-height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; color: #c0cad9; font-size: 14px; font-weight: 650; line-height: 1.2; cursor: pointer; list-style: none; white-space: nowrap; }
.topbar .legal-menu summary::-webkit-details-marker, .topbar .language-menu summary::-webkit-details-marker { display: none; }
.topbar .legal-menu[open] summary, .topbar .legal-menu summary:hover { background: transparent; color: #5c9cff; }
.topbar .legal-menu summary .tabler-icon { width: 22px; height: 22px; flex: 0 0 22px; color: currentColor; }
.topbar .legal-menu-panel { position: absolute; z-index: 120; top: calc(100% + 10px); right: auto; left: 50%; display: grid; width: 210px; min-width: 0; overflow: hidden; padding: 0; border: 1px solid #263a55; border-radius: 8px; background: #101e31; box-shadow: 0 22px 70px rgba(0, 0, 0, .36); transform: translateX(-50%); }
.topbar .nav .legal-menu-panel a, .topbar .mobile-legal-menu .legal-menu-panel a { min-height: 44px; display: flex; align-items: center; gap: 0; padding: 10px 13px; border-radius: 0; color: #c0cad9; font-size: 13px; font-weight: 650; text-decoration: none; }
.topbar .nav .legal-menu-panel a:hover, .topbar .nav .legal-menu-panel a:focus-visible, .topbar .mobile-legal-menu .legal-menu-panel a:hover, .topbar .mobile-legal-menu .legal-menu-panel a:focus-visible { background: color-mix(in srgb, #5c9cff 9%, #101e31); color: #f1f6ff; }
.topbar .language-menu { position: relative; width: 128px; }
.topbar .language-menu summary { width: 100%; min-width: 0; height: 42px; display: flex; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid #263a55; border-radius: 8px; background: #101e31; color: #f1f6ff; font-size: 13px; font-weight: 650; cursor: pointer; list-style: none; }
.topbar .language-menu summary .tabler-icon { width: 20px; height: 20px; flex: 0 0 20px; }
.topbar .language-panel { position: absolute; z-index: 120; top: calc(100% + 10px); right: auto; left: 0; width: 100%; min-width: 0; display: grid; overflow: hidden; padding: 0; border: 1px solid #263a55; border-radius: 8px; background: #101e31; box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36); }
.topbar .language-link { min-height: 44px; display: flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 0; color: #c0cad9; font-size: 13px; font-weight: 650; text-decoration: none; transition: background 160ms ease, color 160ms ease; }
.topbar .language-link:hover, .topbar .language-link[aria-current="page"] { background: color-mix(in srgb, #5c9cff 9%, #101e31); color: #f1f6ff; }
.topbar .language-flag { width: 22px; flex: 0 0 22px; font-family: inherit; font-size: 17px; line-height: 1; text-align: center; }
.topbar .mobile-language-links { display: none; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.topbar .icon-button { display: inline-grid; width: 46px; height: 46px; padding: 0; place-items: center; border: 1px solid rgba(202, 224, 232, .18); border-radius: 12px; background: transparent; color: #fff; cursor: pointer; transition: border-color 160ms ease, background 160ms ease, transform 160ms ease; }
.topbar .icon-button:hover { border-color: rgba(202, 224, 232, .36); background: rgba(255, 255, 255, .07); transform: translateY(-1px); }
.topbar .tabler-icon,
.topbar .icon-button svg,
.site-footer .footer-legal-heading svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.topbar .icon-button svg { width: 20px; height: 20px; }
.topbar .public-theme-control { display: inline-grid; width: 42px; height: 42px; border: 1px solid #263a55; border-radius: 8px; background: #101e31; color: #f1f6ff; transform: none; }
.topbar .public-theme-control:hover { border-color: #38506f; background: #132339; transform: none; }
.topbar .public-theme-control .tabler-icon { width: 22px; height: 22px; }
.theme-mode-icons {
  display: grid;
  place-items: center;
}

.theme-mode-icon {
  display: none;
}

:root[data-theme-preference="system"] .theme-mode-icon-system,
:root[data-theme-preference="light"] .theme-mode-icon-light,
:root[data-theme-preference="dark"] .theme-mode-icon-dark {
  display: grid;
}

.theme-preference-label {
  display: none;
}

.topbar .nav-toggle { display: none; }
.topbar .nav-toggle .close-glyph { display: none; }
.topbar .nav-toggle[aria-expanded="true"] .menu-glyph { display: none; }
.topbar .nav-toggle[aria-expanded="true"] .close-glyph { display: block; }
.topbar .mobile-menu { position: absolute; z-index: 90; top: 100%; right: 0; left: 0; height: calc(100svh - 88px); overflow-y: auto; border-top: 1px solid rgba(202, 224, 232, .12); background: #0b0d0d; color: #f7f8f5; }
.topbar .mobile-menu-inner { display: grid; width: min(100% - 40px, 720px); margin: 0 auto; padding: 30px 0 56px; }
.topbar .mobile-menu-inner > a { padding: 14px 0; border-bottom: 1px solid #2a302d; color: #f7f8f5; font-size: 1.15rem; font-weight: 690; text-decoration: none; }

/* ASO Signals footer, copied at source dimensions and breakpoints. */
.site-footer { padding: 68px max(20px, calc((100% - 1280px) / 2)) 28px; border-top: 1px solid #203451; background: #071225; color: #f3f7ff; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, 1fr); gap: 48px; }
.site-footer .footer-brand { max-width: 340px; }
.site-footer .footer-brand > a { display: inline-flex; }
.site-footer .footer-product-brand img { width: 178px; }
.site-footer .footer-brand p { max-width: none; margin: 1em 0; color: #99aac2; font-size: 14px; }
.site-footer .footer-grid h2 { margin: 4px 0 16px; color: #fff; font-size: 13px; letter-spacing: normal; text-transform: none; }
.site-footer .footer-legal-heading { min-height: 20px; display: flex; align-items: center; gap: 8px; font-weight: 650; }
.site-footer .footer-legal-heading svg { width: 20px; height: 20px; flex: 0 0 20px; color: currentColor; }
.site-footer .footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.site-footer .footer-grid > div > a:not(.brand) { display: inline; width: auto; margin: 0; color: #aebbd0; font-size: 13px; text-decoration: underline; }
.site-footer .footer-grid a:hover { color: #45cfdf; }
.site-footer .footer-bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid #203451; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #8798b0; font-size: 12px; }
.site-footer .footer-bottom p { margin: 0; }
.site-footer .footer-privacy-button { padding: 0; border: 0; background: transparent; color: #aebbd0; font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.site-footer .footer-privacy-button:hover { color: #45cfdf; }

.topbar a,
.site-footer a { text-decoration-thickness: 1px; text-underline-offset: .2em; }

@media (max-width: 1180px) {
  .topbar-inner { gap: 20px; }
  .topbar .nav { gap: 20px; }
  .topbar .nav > a, .topbar .legal-menu summary { font-size: .88rem; }
}

@media (max-width: 980px) {
  .topbar-inner { min-height: 78px; }
  .topbar .nav, .topbar .language-menu { display: none; }
  .topbar .mobile-legal-menu { width: 100%; margin-top: 20px; }
  .topbar .mobile-legal-menu summary { width: 100%; min-height: 44px; border-bottom: 1px solid #263a55; }
  .topbar .mobile-legal-menu .legal-menu-panel { position: static; width: 100%; border: 0; border-bottom: 1px solid #263a55; border-radius: 0; box-shadow: none; transform: none; }
  .topbar .mobile-legal-menu .legal-menu-panel a { padding-left: 23px; background: #132339; }
  .topbar .mobile-language-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; margin-top: 20px; padding-top: 14px; border-top: 1px solid #263a55; }
  .topbar .mobile-language-links .language-link { padding-inline: 0; }
  .topbar .nav-toggle { display: inline-grid; }
  .topbar .mobile-menu { height: calc(100svh - 78px); }
}

@media (max-width: 900px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .topbar .container { width: min(100% - 40px, 1440px); }
  .topbar-inner { min-height: 76px; }
  .topbar .mobile-menu { height: calc(100svh - 76px); }
  .topbar .brand img, .site-footer .brand img { width: 150px; }
  .topbar .brand span, .site-footer .brand span { display: none; }
}

@media (max-width: 700px) {
  .topbar-inner { gap: 12px; }
  .topbar .icon-button { width: 42px; height: 42px; }
}

@media (max-width: 620px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-brand { grid-column: auto; }
  .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .topbar .brand img, .site-footer .brand img { width: 132px; }
  .topbar-actions { gap: 6px; }
  .topbar .icon-button:not(.public-theme-control) { width: 40px; height: 40px; }
}
