:root {
  color-scheme: light;
  --canvas: #fbfcff;
  --surface: #ffffff;
  --surface-soft: #f0f3f1;
  --surface-strong: #e8eeeb;
  --ink: #16211d;
  --muted: #5b6762;
  --line: rgba(22, 33, 29, 0.13);
  --line-strong: rgba(22, 33, 29, 0.26);
  --accent: #285f4c;
  --accent-hover: #1f4a3b;
  --accent-ink: #ffffff;
  --secondary: #1f4f8f;
  --chrome-accent: #9fe8ca;
  --amber: #9d6a20;
  --focus: #087be8;
  --review: #b66c00;
  --info: #1f6cd6;
  --header-bg: rgba(251, 252, 255, 0.92);
  --hero-bg:
    linear-gradient(135deg, rgba(47, 125, 95, 0.13), rgba(36, 92, 199, 0.1) 50%, rgba(185, 120, 21, 0.13)),
    linear-gradient(180deg, #ffffff, #f5f8fb);
  --shadow: 0 18px 60px rgba(12, 17, 14, 0.1);
  --container: 1460px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-control: 9px;
  --radius-panel: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --canvas: #101513;
  --surface: #19201e;
  --surface-soft: #141a18;
  --surface-strong: #172821;
  --ink: #eef7f2;
  --muted: #aab9b2;
  --line: rgba(238, 247, 242, 0.14);
  --line-strong: rgba(238, 247, 242, 0.28);
  --accent: #66c19d;
  --accent-hover: #95dfc1;
  --accent-ink: #07120e;
  --secondary: #8fb3ee;
  --chrome-accent: #9fe8ca;
  --amber: #f3be68;
  --focus: #75aeff;
  --review: #ffc43d;
  --info: #72a8ff;
  --header-bg: rgba(11, 13, 13, 0.91);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  --hero-bg:
    linear-gradient(135deg, rgba(88, 196, 157, 0.13), rgba(141, 181, 255, 0.12) 50%, rgba(243, 190, 104, 0.11)),
    linear-gradient(180deg, #141b18, #101513);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  background: var(--canvas);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

img,
svg {
  display: block;
}

button,
summary {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.skiplink {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--ink);
  color: var(--canvas);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skiplink:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(202, 224, 232, 0.12);
  background: rgba(5, 11, 18, 0.94);
  color: #f7f8f5;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.topbar .container,
.footer .container {
  width: min(100% - 40px, 1440px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.brand span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 14px;
  color: var(--chrome-accent);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.2vw, 38px);
  min-width: 0;
  color: rgba(247, 248, 245, 0.76);
}

.nav > a,
.nav-menu summary {
  position: relative;
  color: inherit;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.nav > a::after,
.nav-menu summary::after {
  position: absolute;
  right: 0;
  bottom: -22px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav > a:hover,
.nav > a[aria-current="page"],
.nav-menu summary:hover,
.nav-menu summary[aria-current="page"],
.nav-menu[open] summary {
  color: #ffffff;
}

.nav > a:hover::after,
.nav > a[aria-current="page"]::after,
.nav-menu summary:hover::after,
.nav-menu summary[aria-current="page"]::after,
.nav-menu[open] summary::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nav-language summary {
  min-height: 44px;
  display: flex;
}

.nav-language summary svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 27px);
  right: 0;
  display: grid;
  width: max-content;
  min-width: 200px;
  overflow: hidden;
  border: 1px solid rgba(202, 224, 232, 0.16);
  border-radius: 12px;
  background: #0d1216;
  box-shadow: var(--shadow);
}

.nav-panel a {
  padding: 11px 15px;
  color: #afb7b3;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-panel a:hover,
.nav-panel a[aria-current="page"] {
  background: #18201d;
  color: #ffffff;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(202, 224, 232, 0.18);
  border-radius: 12px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  border-color: rgba(202, 224, 232, 0.36);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-moon {
  display: none;
}

:root[data-theme="dark"] .theme-sun {
  display: none;
}

:root[data-theme="dark"] .theme-moon {
  display: block;
}

.nav-toggle {
  display: none;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.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, 0.12);
  background: #0b0d0d;
  color: #f7f8f5;
}

.mobile-menu-inner {
  display: grid;
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 30px 0 56px;
}

.mobile-menu-inner > a,
.mobile-group a {
  padding: 14px 0;
  border-bottom: 1px solid #2a302d;
  color: #f7f8f5;
  font-size: 1.15rem;
  font-weight: 690;
  text-decoration: none;
}

.mobile-group {
  display: grid;
  margin-top: 28px;
}

.mobile-group strong {
  margin-bottom: 8px;
  color: #89918d;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-group a {
  color: #b1b8b4;
  font-size: 1rem;
  font-weight: 590;
}

.hero {
  position: relative;
  display: grid;
  min-height: auto;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
  align-items: center;
  gap: clamp(44px, 5vw, 82px);
  padding-block: clamp(48px, 4vw, 64px) clamp(66px, 5vw, 82px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.section-head h2,
.disclaimer-band h2,
.legal-page h1,
.not-found h1 {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(3.25rem, 4.3vw, 4.3rem);
  line-height: 1.01;
}

.hero-copy h1::after,
.section-head h2::after {
  color: var(--accent);
  content: "";
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 1.75vw, 1.5rem);
  line-height: 1.48;
}

.hero-body {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.62;
}

.hero-actions,
.disclaimer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 0.98rem;
  font-weight: 740;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 12px 30px rgba(31, 79, 143, 0.2);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--secondary));
}

.btn-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--surface-soft);
}

.btn-outline-accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-accent:hover {
  background: color-mix(in srgb, var(--accent) 9%, transparent);
}

.hero-product {
  min-width: 0;
}

.preflight {
  overflow: hidden;
  border: 1px solid #333a37;
  border-radius: var(--radius-panel);
  background: #0e1110;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  color: #f3f5f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.preflight-toolbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border-bottom: 1px solid #2b312f;
  color: #cdd2cf;
  font-size: 0.78rem;
}

.preflight-toolbar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #a6ee1f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.preflight-toolbar strong {
  font-size: 0.84rem;
  font-weight: 650;
}

.preflight-toolbar span {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid #516423;
  border-radius: 5px;
  color: #a6ee1f;
  font-size: 0.66rem;
}

.preflight-body {
  display: grid;
  gap: 10px;
  padding: 13px;
}

.report-group {
  overflow: hidden;
  border: 1px solid #292f2d;
  border-radius: 8px;
  background: #101312;
}

.report-group header {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-bottom: 1px solid #252b29;
}

.report-group-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: #e5e8e6;
  font-size: 0.71rem;
}

.report-group-title svg {
  width: 16px;
  height: 16px;
  flex: none;
  fill: none;
  stroke: #aeb6b2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.report-group-title strong {
  font-weight: 650;
}

.report-group-title em {
  overflow: hidden;
  color: #737b77;
  font-size: 0.64rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-status {
  flex: none;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 650;
}

.is-match {
  color: #a6ee1f;
}

.is-review {
  color: #ffc43d;
}

.report-group dl {
  margin: 0;
}

.report-group dl div {
  display: grid;
  grid-template-columns: minmax(125px, 0.85fr) minmax(130px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  color: #aeb5b1;
  font-size: 0.64rem;
}

.report-group dt,
.report-group dd {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-row-state {
  font-size: 0.61rem;
}

.finding-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 16px 12px;
  border: 1px solid #343a37;
  border-left: 3px solid #ffc43d;
  border-radius: 7px;
  background: #111513;
}

.finding-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #ffc43d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.finding-row small {
  display: block;
  margin-bottom: 2px;
  color: #7f8783;
  font-size: 0.59rem;
}

.finding-row strong {
  display: block;
  font-size: 0.72rem;
}

.finding-row p {
  margin: 4px 0 0;
  color: #939b97;
  font-size: 0.62rem;
  line-height: 1.45;
}

.preflight-note {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 15px;
  border-top: 1px solid #2b312f;
  color: #8e9692;
  font-size: 0.63rem;
}

.preflight-note svg {
  width: 18px;
  height: 18px;
  padding: 2px;
  border: 1px solid #7fb81b;
  border-radius: 50%;
  fill: none;
  stroke: #a6ee1f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section {
  padding-block: clamp(92px, 10vw, 148px);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
}

.section-head h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 1.02;
}

.section-head p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.5;
}

.evidence-flow {
  padding-bottom: 76px;
  background: var(--canvas);
}

.evidence-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 76px);
  margin-top: 76px;
}

.evidence-node,
.privacy-node {
  position: relative;
  z-index: 2;
  text-align: center;
}

.evidence-icon,
.privacy-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--muted);
}

.evidence-icon svg,
.privacy-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.evidence-node h3,
.privacy-node h3 {
  margin: 19px 0 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.evidence-node p,
.privacy-node p {
  max-width: 330px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.rail-line {
  position: relative;
  grid-column: 1 / -1;
  height: 68px;
  margin: -8px 12.5% 0;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 0 0 12px 12px;
}

.rail-line::after {
  position: absolute;
  bottom: -44px;
  left: 50%;
  width: 2px;
  height: 44px;
  background: var(--accent);
  content: "";
}

.rail-line span::after {
  position: absolute;
  bottom: -45px;
  left: calc(50% - 7px);
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  content: "";
  transform: rotate(45deg);
}

.evidence-output {
  grid-column: 1 / -1;
  margin-top: 9px;
  text-align: center;
}

.evidence-output > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
}

.evidence-output svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.evidence-output h3 {
  margin: 18px 0 0;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.evidence-output p {
  margin: 4px 0 0;
  color: var(--muted);
}

.evidence-detail {
  padding-top: 88px;
  background: var(--surface-soft);
}

.example-finding {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 2.6fr);
  align-items: stretch;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--review);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.example-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.example-title svg {
  width: 27px;
  height: 27px;
  flex: none;
  fill: none;
  stroke: var(--review);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.example-title strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.example-finding dl {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.65fr 1.15fr 1.45fr;
  margin: 0;
}

.example-finding dl > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 19px 20px;
  border-right: 1px solid var(--line);
}

.example-finding dl > div:last-child {
  border-right: 0;
}

.example-finding dt,
.example-finding dd {
  margin: 0;
}

.example-finding dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.example-finding dd {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 660;
  line-height: 1.35;
}

.example-finding dd.is-review {
  color: var(--review);
}

.example-finding a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: color-mix(in srgb, var(--accent) 75%, var(--ink));
  font-weight: 660;
}

.example-finding a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.unknown-result {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 21px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.unknown-result > svg {
  width: 28px;
  height: 28px;
  flex: none;
  fill: none;
  stroke: var(--info);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.unknown-result strong {
  font-size: 1.03rem;
}

.unknown-result p {
  margin: 2px 0 0;
  color: var(--muted);
}

.privacy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  margin-top: 70px;
}

.privacy-icon {
  width: 110px;
  height: 90px;
  color: var(--ink);
}

.privacy-icon svg {
  width: 78px;
  height: 78px;
  stroke-width: 1.2;
}

.privacy-arrow {
  color: var(--accent);
}

.privacy-arrow svg {
  width: clamp(44px, 6vw, 88px);
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.disclaimer-band {
  padding-block: clamp(60px, 7vw, 96px);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface-strong);
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 64px;
}

.disclaimer-band h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.disclaimer-band p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.disclaimer-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.footer {
  padding-block: 44px;
  background: #050b12;
  color: #fff;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.45fr 0.8fr;
  gap: 48px;
}

.footer .brand {
  color: #fff;
}

.footer .brand img {
  width: 170px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(247, 248, 245, 0.58);
  font-size: clamp(0.64rem, 2.9vw, 0.82rem);
  white-space: nowrap;
}

.footer-primary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
}

.footer-primary a,
.footer-legal a,
.footer-consent-link {
  color: rgba(247, 248, 245, 0.78);
  font-size: 0.9rem;
  font-weight: 670;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-primary a:hover,
.footer-legal a:hover,
.footer-consent-link:hover {
  color: var(--accent);
}

.footer-legal {
  display: grid;
  gap: 12px;
}

.footer-consent-link {
  border: 0;
  padding: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.legal-section {
  min-height: 70vh;
  background: var(--canvas);
}

.legal-container {
  max-width: 900px;
}

.legal-label {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-page h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-document {
  margin-top: 70px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-document h2 {
  margin: 54px 0 16px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal-document p {
  margin: 0 0 19px;
}

.redirect-page,
.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.redirect-page img {
  width: min(297px, 72vw);
  margin-inline: auto;
}

.redirect-page {
  background: #050b12;
  color: #f7f8f5;
}

.redirect-page p,
.not-found p {
  color: var(--muted);
}

.redirect-page a {
  color: var(--accent);
  font-weight: 700;
}

.not-found .container {
  max-width: 720px;
}

.error-code {
  margin: 0;
  color: var(--accent) !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
}

.not-found h1 {
  margin-top: 14px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.not-found .btn {
  margin-top: 18px;
}

.consent-banner {
  position: fixed;
  z-index: 500;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px var(--gutter);
  pointer-events: none;
}

.consent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 21px 24px;
  border: 1px solid #414844;
  border-radius: var(--radius-panel);
  background: #111413;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  color: #f3f5f2;
  pointer-events: auto;
}

.consent-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.consent-copy p {
  margin: 5px 0 0;
  color: #aeb6b2;
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-copy a {
  color: #d7ddd9;
}

.consent-status {
  font-size: 0.82rem !important;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.consent-actions .btn {
  min-height: 48px;
  cursor: pointer;
}

/* emonster.dev division homepage */

.division-hero {
  isolation: isolate;
  min-height: calc(100svh - 88px);
  background: var(--hero-bg);
}

.division-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(40, 95, 76, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 79, 143, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 58%, #000);
}

.division-hero::after {
  position: absolute;
  z-index: -1;
  right: -16vw;
  bottom: -44vw;
  width: min(80vw, 1040px);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}

.division-hero .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(470px, 0.78fr);
  padding-block: clamp(68px, 7vw, 110px);
}

.division-hero .hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 5.7vw, 6.4rem);
  line-height: 0.96;
}

.division-hero .hero-lead {
  max-width: 700px;
  color: var(--ink);
  font-weight: 720;
}

.dev-manifest {
  overflow: hidden;
  border: 1px solid rgba(159, 232, 202, 0.28);
  border-radius: 18px;
  background: #07110e;
  box-shadow: 0 34px 90px rgba(5, 20, 16, 0.34);
  color: #eaf7f1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.manifest-toolbar {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(159, 232, 202, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: #cce1d8;
  font-size: 0.78rem;
}

.manifest-toolbar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--chrome-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.manifest-toolbar strong {
  min-width: 0;
  overflow: hidden;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manifest-toolbar span {
  width: 8px;
  height: 8px;
  flex: none;
  margin-left: auto;
  border-radius: 50%;
  background: var(--chrome-accent);
  box-shadow: 0 0 18px rgba(159, 232, 202, 0.7);
}

.dev-manifest dl {
  margin: 0;
  padding: 12px 20px;
}

.dev-manifest dl div {
  display: grid;
  grid-template-columns: minmax(138px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(159, 232, 202, 0.11);
}

.dev-manifest dl div:last-child {
  border-bottom: 0;
}

.dev-manifest dt,
.dev-manifest dd {
  min-width: 0;
  margin: 0;
}

.dev-manifest dt {
  color: #728d81;
  font-size: 0.7rem;
}

.dev-manifest dd {
  color: #f4fbf8;
  font-size: 0.77rem;
  font-weight: 670;
  overflow-wrap: anywhere;
}

.dev-manifest dd::before {
  margin-right: 10px;
  color: #6cb897;
  content: "→";
}

.manifest-command {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-top: 1px solid rgba(159, 232, 202, 0.16);
  color: #9caea6;
  font-size: 0.7rem;
}

.manifest-command > span:first-child {
  color: var(--chrome-accent);
}

.manifest-cursor {
  width: 7px;
  height: 14px;
  margin-left: 2px;
  background: var(--chrome-accent);
  animation: manifest-blink 1.1s steps(1, end) infinite;
}

@keyframes manifest-blink {
  50% { opacity: 0; }
}

.credibility-section {
  background: var(--canvas);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(58px, 7vw, 92px);
  border-block: 1px solid var(--line-strong);
}

.proof-point {
  position: relative;
  min-width: 0;
  padding: 34px clamp(22px, 3vw, 42px) 38px;
  border-left: 1px solid var(--line);
}

.proof-point:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-point > span,
.shift-step > span {
  display: block;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 750;
}

.proof-point strong {
  display: block;
  margin-top: 30px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.proof-point p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.portfolio-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 940px;
  margin-top: 44px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.portfolio-note > svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--secondary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.portfolio-note strong {
  color: var(--ink);
  font-size: 1.13rem;
}

.portfolio-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.shift-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(58px, 8vw, 130px);
  align-items: start;
}

.shift-steps {
  border-top: 1px solid var(--line-strong);
}

.shift-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.shift-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.shift-step p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.tools-section {
  overflow: hidden;
  background: #050b12;
  color: #f7f8f5;
}

.tool-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(540px, 1.3fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: center;
}

.tool-feature::before {
  position: absolute;
  z-index: 0;
  top: -30%;
  right: -18%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(159, 232, 202, 0.12);
  border-radius: 50%;
  content: "";
}

.tool-copy,
.tool-preview {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.tool-label {
  margin: 0 0 20px;
  color: var(--chrome-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tool-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 860;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.tool-lead {
  margin: 28px 0 0;
  color: #d9e5df;
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  font-weight: 680;
  line-height: 1.42;
}

.tool-body {
  margin: 20px 0 0;
  color: #98a9a1;
  font-size: 1.04rem;
  line-height: 1.65;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-product {
  background: #a6ee1f;
  color: #0b1500;
}

.btn-product:hover {
  background: #b7f348;
}

.tool-note {
  max-width: 560px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(202, 224, 232, 0.14);
  color: #82938b;
  font-size: 0.86rem;
  line-height: 1.55;
}

.tool-preview .preflight {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
}

.principles-section {
  background: var(--canvas);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(58px, 7vw, 92px);
  border-block: 1px solid var(--line-strong);
}

.principle-item {
  min-width: 0;
  padding: 36px clamp(24px, 3.5vw, 54px) 40px;
  border-left: 1px solid var(--line);
}

.principle-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.principle-item > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
}

.principle-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.principle-item h3 {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.principle-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.principles-actions {
  margin-top: 42px;
}

@media (max-width: 1180px) {
  .topbar-inner {
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .nav > a,
  .nav-menu summary {
    font-size: 0.88rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
    gap: 38px;
  }

  .division-hero .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(450px, 0.82fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-point:nth-child(3) {
    border-left: 0;
  }

  .proof-point:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .tool-feature {
    grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 5vw, 4.35rem);
  }

  .report-group-title em {
    display: none;
  }

  .example-finding {
    grid-template-columns: 1fr;
  }

  .example-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .topbar-inner {
    min-height: 78px;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    height: calc(100svh - 78px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 76px 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    max-width: 800px;
    font-size: clamp(3.2rem, 8.8vw, 5.8rem);
  }

  .hero-product {
    width: min(100%, 760px);
  }

  .division-hero {
    min-height: auto;
  }

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

  .division-hero .hero-copy h1 {
    font-size: clamp(3.2rem, 8.8vw, 5.8rem);
  }

  .shift-grid,
  .tool-feature {
    grid-template-columns: 1fr;
  }

  .shift-steps {
    max-width: 760px;
  }

  .tool-feature {
    gap: 64px;
  }

  .tool-copy {
    max-width: 720px;
  }

  .tool-preview {
    width: min(100%, 760px);
  }

  .example-finding dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-finding dl > div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .example-finding dl > div:nth-child(2n) {
    border-right: 0;
  }

  .example-finding dl > div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .privacy-flow {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .privacy-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .privacy-arrow svg {
    width: 50px;
  }

  .privacy-node p {
    max-width: 520px;
  }

  .disclaimer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .disclaimer-actions {
    justify-content: flex-start;
  }

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

  .footer-legal {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .topbar .container,
  .footer .container {
    width: min(100% - 40px, 1440px);
  }

  .topbar-inner {
    min-height: 76px;
  }

  .mobile-menu {
    height: calc(100svh - 76px);
  }

  .brand img {
    width: 150px;
  }

  .brand span {
    display: none;
  }

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

  .footer-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .topbar-inner {
    gap: 12px;
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .hero-grid {
    gap: 44px;
    padding-block: 60px 72px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    letter-spacing: -0.06em;
  }

  .division-hero::before {
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, transparent, #000 42%, #000);
  }

  .division-hero .hero-copy h1 {
    font-size: clamp(2.72rem, 13vw, 4.25rem);
  }

  html[lang="ja"] .division-hero .hero-copy h1,
  html[lang="ko"] .division-hero .hero-copy h1 {
    font-size: clamp(2.45rem, 11.8vw, 3.8rem);
    line-height: 1.04;
  }

  html[lang="ja"] .division-hero .hero-copy h1 {
    word-break: keep-all;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1.12rem;
  }

  .hero-body {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .preflight-toolbar span {
    display: none;
  }

  .dev-manifest dl {
    padding-inline: 16px;
  }

  .dev-manifest dl div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .dev-manifest dd::before {
    margin-right: 8px;
  }

  .manifest-command {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 0.62rem;
  }

  .preflight-body {
    gap: 8px;
    padding: 9px;
  }

  .report-group dl div {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 8px;
    padding: 6px 10px;
  }

  .report-row-state {
    display: none;
  }

  .finding-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .finding-row > .report-status {
    display: none;
  }

  .section {
    padding-block: 82px;
  }

  .section-head h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .section-head p {
    font-size: 1.06rem;
  }

  .proof-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .proof-point,
  .proof-point:first-child,
  .proof-point:nth-child(3),
  .principle-item,
  .principle-item:first-child {
    padding: 30px 0 32px;
    border-left: 0;
  }

  .proof-point:nth-child(n + 2),
  .principle-item:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .proof-point strong {
    margin-top: 18px;
    font-size: 2rem;
  }

  .portfolio-note {
    grid-template-columns: 1fr;
  }

  .shift-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .tool-feature {
    gap: 48px;
  }

  .tool-copy h2 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .section-actions {
    display: grid;
  }

  .principle-item h3 {
    margin-top: 22px;
  }

  .evidence-rail {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 56px;
  }

  .rail-line {
    display: none;
  }

  .evidence-node:not(:nth-child(3))::after {
    display: block;
    width: 2px;
    height: 34px;
    margin: 26px auto -8px;
    background: var(--accent);
    content: "";
  }

  .evidence-output {
    margin-top: 2px;
  }

  .example-finding {
    margin-top: 42px;
  }

  .example-finding dl {
    grid-template-columns: 1fr;
  }

  .example-finding dl > div,
  .example-finding dl > div:nth-child(2n),
  .example-finding dl > div:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .example-finding dl > div:last-child {
    border-bottom: 0;
  }

  .unknown-result {
    align-items: flex-start;
    padding: 19px;
  }

  .disclaimer-band {
    padding-block: 64px;
  }

  .disclaimer-actions {
    display: grid;
  }

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

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

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legal-document {
    margin-top: 48px;
    font-size: 1rem;
  }

  .consent-banner {
    padding: 12px;
  }

  .consent-panel {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 19px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 132px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13.6vw, 3.7rem);
  }

  .preflight-toolbar {
    padding: 0 11px;
  }

  .report-group-title {
    font-size: 0.66rem;
  }

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

  .consent-actions {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .manifest-cursor {
    animation: none;
  }
}
