:root {
  --bg: #041329;
  --bg-strong: #010e24;
  --panel: rgba(9, 24, 46, 0.9);
  --panel-soft: rgba(16, 32, 54, 0.86);
  --panel-muted: rgba(18, 33, 56, 0.64);
  --text: #d6e3ff;
  --text-strong: #f3f7ff;
  --muted: #aebed0;
  --line: rgba(133, 147, 153, 0.24);
  --cyan: #00d1ff;
  --brand-wordmark: #ffffff;
  --cyan-soft: rgba(0, 209, 255, 0.14);
  --cyan-glow: rgba(76, 214, 255, 0.2);
  --amber: #feb700;
  --amber-soft: rgba(254, 183, 0, 0.14);
  --danger: #ffb4ab;
  --danger-soft: rgba(255, 180, 171, 0.12);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  --headline: "Manrope", "Noto Sans KR", sans-serif;
  --body: "Inter", "Noto Sans KR", sans-serif;
  --label: "Space Grotesk", "Noto Sans KR", sans-serif;
  --landing-content-width: 1360px;
  --motion-fast: 180ms;
  --motion-medium: 320ms;
  --motion-slow: 560ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes surfacePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.58;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.82;
  }
}

.js-motion .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  filter: saturate(0.9);
  transition:
    opacity var(--motion-medium) var(--motion-ease),
    transform var(--motion-medium) var(--motion-ease),
    filter var(--motion-fast) ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-motion .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.site-body
  :where(
    p,
    li,
    .muted-note,
    .subpage-hero-note,
    .hero-lead,
    .hero-highlights span
  )
  > code {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-strong);
  font-family: "Cascadia Code", "Consolas", "D2Coding", monospace;
  font-size: 0.9em;
  line-height: 1.2;
  white-space: nowrap;
  vertical-align: middle;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f3f7ff;
  color: #041329;
  text-decoration: none;
  font-family: var(--headline);
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-180%);
  transition: transform var(--motion-fast) ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: none;
}

.site-body {
  min-height: 100vh;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(
      circle at top left,
      rgba(76, 214, 255, 0.16),
      transparent 22%
    ),
    radial-gradient(
      circle at 82% 16%,
      rgba(254, 183, 0, 0.13),
      transparent 18%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(76, 214, 255, 0.08),
      transparent 24%
    ),
    linear-gradient(160deg, #031024 0%, #041329 55%, #06172d 100%);
}

#main-content {
  scroll-margin-top: 16px;
}

.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.site-shell {
  position: relative;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  position: sticky;
  top: 14px;
  z-index: 40;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(4, 19, 41, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-strong);
  text-decoration: none;
  min-width: 0;
}

.brand-copy {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--headline);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 12px;
  background: center / cover no-repeat
    url("./assets/branding/favicons/apple-icon-60x60.png");
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  flex: 0 0 auto;
}

.site-nav,
.topbar-actions,
.hero-actions,
.hero-highlights,
.subpage-actions,
.badge-row,
.quick-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav {
  justify-content: center;
  flex: 1 1 auto;
}

.site-nav a,
.topbar-link {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--headline);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    color 140ms ease,
    background-color 140ms ease,
    transform 140ms ease;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

:where(#top, #phishshield, #tech, #updates) {
  scroll-margin-top: 112px;
}

.site-nav a:hover,
.topbar-link:hover {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.site-nav a[aria-current] {
  color: var(--text-strong);
  background: rgba(0, 209, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 209, 255, 0.16);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--text-strong);
  text-decoration: none;
  font-family: var(--headline);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  transition:
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    filter var(--motion-fast) ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.site-nav a:focus-visible,
.topbar-link:focus-visible,
.button:focus-visible,
.feature-link:focus-visible,
.quick-links a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.24);
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan), #4cd6ff);
  color: #05202d;
  box-shadow: 0 12px 30px rgba(0, 209, 255, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(0, 209, 255, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  border-color: rgba(76, 214, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.button-compact {
  min-height: 42px;
  padding-inline: 14px;
}

.hero-panel,
.section-block,
.subpage-hero,
.wide-panel,
.info-card,
.detail-card-site,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 38px;
  min-height: 760px;
  margin-top: 24px;
  padding: 44px;
  align-items: center;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(76, 214, 255, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(254, 183, 0, 0.11),
      transparent 18%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.02)
    ),
    var(--panel);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle at center,
    rgba(76, 214, 255, 0.12),
    transparent 56%
  );
  opacity: 0.06;
  pointer-events: none;
}

.hero-copy,
.analysis-console,
.section-head,
.feature-card,
.step-card,
.timeline-card,
.split-card,
.contribution-card,
.highlight-card {
  position: relative;
  z-index: 1;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #dff6ff;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(254, 183, 0, 0.12);
}

.section-kicker,
.card-kicker,
.console-label,
.metric-label,
.timeline-stamp {
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker,
.card-kicker {
  margin: 18px 0 12px;
  color: var(--cyan);
}

.hero-copy h1,
.section-head h2,
.split-card h2,
.subpage-hero h1,
.wide-panel h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--headline);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.hero-lead,
.section-head p,
.feature-card p,
.step-card p,
.timeline-card p,
.split-card p,
.contribution-card p,
.info-card p,
.detail-card-site p,
.contact-card p,
.wide-panel p,
.subpage-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 690px;
  margin-top: 20px;
  font-size: 1.12rem;
}

.hero-highlights {
  margin-top: 26px;
}

.hero-highlights span,
.badge,
.contact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: var(--label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-actions {
  margin-top: 26px;
}

.hero-tertiary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.hero-tertiary-link {
  color: var(--cyan);
  text-decoration: none;
  font-family: var(--headline);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    color var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.hero-tertiary-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateX(2px);
}

.hero-tertiary-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.24);
  border-radius: 8px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-proof-card {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.024),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(10, 25, 48, 0.76);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition:
    transform var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.hero-proof-card:hover,
.hero-proof-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(164, 230, 255, 0.12);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.024);
}

.hero-proof-label {
  display: inline-flex;
  align-items: center;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-proof-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-proof-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.56;
}

.analysis-console {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.024),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(9, 20, 40, 0.9);
  padding: 20px;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform var(--motion-medium) var(--motion-ease),
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.analysis-console::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 52%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle at center,
    rgba(76, 214, 255, 0.2),
    transparent 68%
  );
  filter: blur(12px);
  opacity: 0.65;
  pointer-events: none;
  animation: surfacePulse 5.8s ease-in-out infinite;
}

.analysis-console:hover,
.analysis-console:focus-within {
  transform: translateY(-4px);
  border-color: rgba(164, 230, 255, 0.12);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.032);
}

.console-header,
.console-status,
.score-row,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.console-header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.console-dots {
  display: inline-flex;
  gap: 8px;
}

.console-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.console-dots span:nth-child(1) {
  background: rgba(255, 107, 95, 0.65);
}

.console-dots span:nth-child(2) {
  background: rgba(254, 183, 0, 0.65);
}

.console-dots span:nth-child(3) {
  background: rgba(76, 214, 255, 0.65);
}

.console-badge,
.console-score {
  color: var(--text-strong);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-status {
  margin-top: 18px;
}

.console-metrics {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  margin-top: 18px;
}

.console-metric {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(255, 255, 255, 0.025);
  transition:
    transform var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.console-metric:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 214, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.console-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.console-metric-primary strong {
  font-size: 2.4rem;
  line-height: 0.95;
}

.console-metric-primary strong span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 1rem;
}

.console-metric-verdict strong {
  font-size: 1.08rem;
}

.console-metric-verdict p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.console-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.console-status strong {
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.05rem;
}

.console-score {
  color: var(--amber);
}

.console-alert,
.metric-block,
.feature-card,
.highlight-card,
.step-card,
.timeline-card,
.split-card,
.contribution-card,
.info-card,
.detail-card-site,
.contact-card,
.wide-panel,
.mail-surface {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.028);
}

.console-alert {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(254, 183, 0, 0.08);
  border-color: rgba(254, 183, 0, 0.18);
}

.console-alert strong,
.metric-block strong,
.feature-card h3,
.highlight-card h3,
.step-card h3,
.timeline-card strong,
.split-card h2,
.contribution-card h3,
.info-card h3,
.detail-card-site h3,
.contact-card h3 {
  color: var(--text-strong);
  font-family: var(--headline);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.console-alert p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.console-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.console-signal {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 209, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: #d9f7ff;
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.console-card {
  padding: 14px;
  border-radius: 14px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.032),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(255, 255, 255, 0.016);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.console-card:hover,
.console-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(76, 214, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.console-card span {
  display: block;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.console-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1rem;
}

.console-card p,
.console-footer,
.mail-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.console-card p code,
.mail-meta span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.console-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mission-band {
  margin-top: 24px;
  padding: 54px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(10, 25, 48, 0.84);
  text-align: center;
  box-shadow: var(--shadow);
}

.mission-band .section-kicker {
  margin-top: 0;
}

.mission-band h2 {
  margin: 0 auto;
  max-width: 980px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.12;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-block,
.subpage-hero,
.wide-panel,
.info-card,
.detail-card-site,
.contact-card {
  margin-top: 24px;
  padding: 32px;
}

.section-head {
  max-width: 760px;
}

.center-head {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.subpage-hero h1,
.wide-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-head p,
.subpage-hero p {
  margin-top: 14px;
}

.feature-grid,
.step-grid,
.timeline,
.split-section,
.contribution-grid,
.info-grid,
.detail-grid-site,
.contact-grid,
.highlight-grid,
.split-block {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.highlight-card,
.step-card,
.timeline-card,
.split-card,
.contribution-card,
.info-card,
.detail-card-site,
.contact-card {
  padding: 22px;
  border-radius: 18px;
}

.feature-card {
  min-height: 240px;
}

.feature-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.feature-points li + li {
  margin-top: 8px;
}

.feature-index,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(0, 209, 255, 0.18);
  background: rgba(0, 209, 255, 0.06);
  color: var(--cyan);
  font-family: var(--headline);
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-card h3,
.highlight-card h3,
.step-card h3 {
  margin: 18px 0 10px;
}

.feature-link,
.contribution-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--cyan);
  text-decoration: none;
  font-family: var(--headline);
  font-weight: 800;
  transition:
    color var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.feature-link:hover,
.contribution-card a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateX(2px);
}

.step-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 209, 255, 0.4),
    rgba(0, 209, 255, 0)
  );
}

.step-card {
  min-height: 240px;
}

.step-meta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-card:nth-child(4) span {
  border-color: rgba(254, 183, 0, 0.24);
  background: rgba(254, 183, 0, 0.08);
  color: var(--amber);
}

.demo-preview {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(76, 214, 255, 0.12),
      transparent 20%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.012)
    ),
    var(--panel);
}

.landing-page .demo-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.demo-sidebar,
.demo-mail {
  padding: 28px;
}

.demo-sidebar {
  background: rgba(4, 19, 41, 0.74);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-sidebar h3,
.mail-surface strong {
  margin: 0 0 18px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-weight: 800;
}

.metric-block {
  padding: 16px;
  border-radius: 14px;
}

.metric-block.is-risk {
  background: var(--danger-soft);
  border-color: rgba(255, 180, 171, 0.22);
}

.metric-label {
  display: block;
  color: var(--danger);
}

.metric-block p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.score-stack + .score-stack,
.metric-block + .score-stack,
.score-stack + .metric-block {
  margin-top: 18px;
}

.score-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.score-row strong {
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1rem;
}

.score-bar {
  margin-top: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.score-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.score-fill-risk {
  width: 12%;
  background: linear-gradient(90deg, #ff8a7d, var(--danger));
}

.score-fill-warn {
  width: 41%;
  background: linear-gradient(90deg, var(--amber), #ffdd9c);
}

.demo-mail {
  position: relative;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(76, 214, 255, 0.12),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.018);
}

.mail-surface {
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(18, 33, 56, 0.72);
}

.mail-meta {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mail-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.mail-meta p + p {
  margin-top: 6px;
}

.mail-meta span {
  color: var(--text-strong);
}

.mail-body {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.mail-body p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.mail-body p + p {
  margin-top: 0;
}

.mail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  margin-top: 0;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffdd9c, var(--amber));
  color: #452f00;
  text-decoration: none;
  font-family: var(--headline);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
}

.mail-note {
  margin-top: 0;
}

.split-section,
.split-block,
.detail-grid-site,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.muted-card {
  background:
    linear-gradient(180deg, rgba(254, 183, 0, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(16, 32, 54, 0.82);
}

.page-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.page-list li + li {
  margin-top: 10px;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
  min-height: 220px;
}

.timeline-stamp {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan);
}

.timeline-card strong {
  display: block;
  font-size: 1.12rem;
}

.timeline-card p {
  margin-top: 12px;
}

.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contribution-section {
  background:
    radial-gradient(
      circle at top center,
      rgba(76, 214, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.016),
      rgba(255, 255, 255, 0.012)
    ),
    var(--panel);
}

.contribution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contribution-card {
  min-height: 220px;
}

.contribution-card h3,
.info-card h3,
.detail-card-site h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.site-footer {
  margin-top: 24px;
  padding: 26px 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1rem;
  font-weight: 800;
}

.site-footer p {
  margin: 10px 0 0;
  max-width: 380px;
  line-height: 1.7;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a,
.quick-links a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--headline);
  font-weight: 700;
  transition:
    color var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.footer-links a:hover,
.quick-links a:hover {
  color: var(--text-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateY(-1px);
}

.subpage-hero {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(
      circle at top right,
      rgba(76, 214, 255, 0.12),
      transparent 18%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.012)
    ),
    var(--panel);
}

.subpage-hero p.section-kicker {
  margin-bottom: 0;
}

.subpage-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.subpage-hero-main {
  display: grid;
  gap: 16px;
}

.subpage-hero-main .section-kicker {
  margin: 0;
}

.subpage-hero-lead {
  max-width: 720px;
  color: var(--text);
  font-size: 1.08rem;
}

.subpage-hero-note {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(18, 33, 56, 0.66);
  color: var(--muted);
  line-height: 1.72;
}

.subpage-hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(8, 22, 43, 0.88);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.subpage-panel-label {
  display: block;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subpage-hero-panel > strong {
  display: block;
  margin-top: 10px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.subpage-hero-panel > p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.subpage-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.subpage-stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.016)
    ),
    rgba(255, 255, 255, 0.024);
}

.subpage-stat span {
  display: block;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subpage-stat strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.subpage-stat p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.subpage-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.subpage-signal {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 209, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: #d9f7ff;
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subpage-media-frame {
  overflow: hidden;
  margin: 20px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.024);
}

.subpage-media-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.subpage-media-frame figcaption {
  margin: 0;
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.report-page .subpage-hero {
  gap: 22px;
}

.report-page .subpage-hero-main {
  gap: 14px;
}

.report-page .subpage-hero-panel {
  padding: 24px;
}

.report-page .subpage-hero-note {
  max-width: 760px;
}

.report-summary-grid,
.report-guidance-grid,
.report-export-grid,
.report-mask-compare {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.report-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-summary-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.032),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(16, 32, 54, 0.78);
}

.report-summary-label,
.report-status-label {
  display: block;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-summary-card strong,
.report-status-item strong {
  display: block;
  margin-top: 10px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.report-summary-card p,
.report-status-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.66;
}

.report-flow-block {
  padding-top: 12px;
}

.report-flow-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.report-step-grid {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-step-grid::before {
  display: none;
}

.report-step-card {
  min-height: 216px;
}

.report-status-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(8, 22, 43, 0.88);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.report-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.report-status-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.report-status-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(255, 255, 255, 0.02);
}

.report-guidance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-guidance-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.report-check-list {
  margin-top: 16px;
}

.report-tight-list li + li {
  margin-top: 8px;
}

.report-inline-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 209, 255, 0.12);
  background: rgba(0, 209, 255, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.64;
}

.report-mask-example {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.028),
      rgba(255, 255, 255, 0.01)
    ),
    rgba(7, 20, 40, 0.72);
}

.report-mask-example-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.report-mask-compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-mask-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.report-mask-card-highlight {
  border-color: rgba(0, 209, 255, 0.18);
  background: rgba(0, 209, 255, 0.06);
}

.report-mask-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-strong);
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-mask-pre {
  margin: 14px 0 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(4, 10, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  white-space: pre-wrap;
  line-height: 1.7;
  font-family: "Cascadia Code", "Consolas", "D2Coding", monospace;
  font-size: 0.88rem;
}

.report-export-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-mail-guide-block > * + * {
  margin-top: 32px;
}

.report-export-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.report-provider-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.report-provider-header h3 {
  margin: 0;
}

.report-provider-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 209, 255, 0.14);
  background: rgba(0, 209, 255, 0.06);
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-provider-steps {
  margin: 18px 0 0;
  padding-left: 18px;
}

.report-provider-steps li + li {
  margin-top: 12px;
}

.report-provider-steps strong {
  color: var(--text-strong);
}

.report-provider-steps p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.66;
}

.report-guide-stepper {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(9, 24, 46, 0.88), rgba(6, 18, 35, 0.9)),
    radial-gradient(
      circle at top right,
      rgba(0, 209, 255, 0.12),
      transparent 34%
    );
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.report-mail-guide-block .report-export-grid,
.report-mail-guide-block .report-guide-stepper,
.report-mail-guide-block .muted-note {
  margin-top: 0;
}

.report-guide-intro h3 {
  margin: 8px 0 0;
}

.report-guide-intro p:last-child {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.report-guide-kicker,
.report-guide-label,
.report-guide-step-index {
  display: inline-flex;
  align-items: center;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-guide-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  margin-top: 22px;
  align-items: start;
}

.report-guide-stage {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(7, 18, 34, 0.92), rgba(4, 14, 28, 0.9)),
    radial-gradient(
      circle at top left,
      rgba(0, 209, 255, 0.08),
      transparent 42%
    );
}

.report-guide-stage-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.report-guide-stage-top h3 {
  margin: 8px 0 0;
}

.report-guide-count {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 209, 255, 0.18);
  background: rgba(0, 209, 255, 0.08);
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 0.88rem;
  font-weight: 800;
}

.report-guide-stage-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.report-guide-progress {
  margin-top: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.report-guide-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #69defd);
  box-shadow: 0 0 24px rgba(0, 209, 255, 0.22);
  transition: width var(--motion-medium) var(--motion-ease);
}

.report-guide-figure {
  margin: 18px 0 0;
}

.report-guide-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 10, 20, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.report-guide-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.04),
    transparent 42%
  );
}

.report-guide-figure-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.66;
}

.report-guide-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.report-guide-link {
  color: var(--text-strong);
  text-decoration: none;
  font-family: var(--headline);
  font-weight: 700;
}

.report-guide-link:hover {
  color: var(--cyan);
}

.report-guide-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-guide-controls[hidden] {
  display: none;
}

.report-guide-nav[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.report-guide-steps {
  display: grid;
  gap: 12px;
}

.report-guide-step {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition:
    transform var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.report-guide-step:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 209, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.report-guide-step.is-active {
  border-color: rgba(0, 209, 255, 0.24);
  background: rgba(0, 209, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 209, 255, 0.08);
}

.report-guide-step strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.report-guide-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.report-template-panel .section-head {
  max-width: 820px;
}

body.report-page .quick-links {
  margin-top: 20px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wide-panel,
.info-card,
.detail-card-site,
.contact-card {
  background: var(--panel-soft);
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.muted-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.site-note {
  margin-inline: auto;
  max-width: 1040px;
  text-align: center;
}

.template-block {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(3, 10, 16, 0.5);
  color: var(--text);
  white-space: pre-wrap;
  line-height: 1.7;
  font-family: "Cascadia Code", "Consolas", "D2Coding", monospace;
  font-size: 0.95rem;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .hero-panel,
  .landing-page .demo-shell,
  .feature-grid,
  .step-grid,
  .timeline,
  .contribution-grid,
  .info-grid,
  .detail-grid-site,
  .contact-grid,
  .split-section,
  .split-block,
  .subpage-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .subpage-hero-shell {
    grid-template-columns: 1fr;
  }

  .report-summary-grid,
  .report-guidance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-export-grid,
  .report-mask-compare {
    grid-template-columns: 1fr;
  }

  .report-guide-shell {
    grid-template-columns: 1fr;
  }

  .report-flow-shell {
    grid-template-columns: 1fr;
  }

  .topbar {
    gap: 14px;
  }

  .site-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(100% - 20px, 1280px);
    padding-top: 12px;
  }

  .topbar {
    position: static;
    padding: 16px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-panel,
  .section-block,
  .subpage-hero,
  .wide-panel,
  .info-card,
  .detail-card-site,
  .contact-card {
    padding: 24px;
  }

  .hero-panel,
  .feature-grid,
  .step-grid,
  .timeline,
  .contribution-grid,
  .info-grid,
  .detail-grid-site,
  .contact-grid,
  .split-section,
  .split-block,
  .subpage-stat-grid,
  .landing-page .demo-shell {
    grid-template-columns: 1fr;
  }

  .report-summary-grid,
  .report-guidance-grid,
  .report-step-grid,
  .report-export-grid,
  .report-mask-compare {
    grid-template-columns: 1fr;
  }

  .report-guide-stepper,
  .report-guide-stage {
    padding: 18px;
  }

  .report-guide-stage-top,
  .report-guide-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .report-guide-count {
    align-self: flex-start;
  }

  .report-guide-controls {
    width: 100%;
  }

  .report-guide-nav {
    flex: 1 1 0;
  }

  .report-guide-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel::after {
    width: 480px;
    height: 480px;
    right: -120px;
    bottom: -140px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .console-grid {
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-nav {
    gap: 8px;
  }

  .site-nav a,
  .topbar-link {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .button,
  .button-compact {
    width: 100%;
    justify-content: center;
  }

  .hero-highlights span,
  .contact-tags span,
  .badge {
    width: 100%;
    justify-content: center;
  }

  .mission-band {
    padding: 42px 24px;
  }

  .section-head h2,
  .subpage-hero h1,
  .wide-panel h2 {
    line-height: 1.06;
  }

  .subpage-hero-lead {
    font-size: 1rem;
  }

  .report-summary-grid,
  .report-guidance-grid {
    gap: 14px;
  }
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.landing-page .site-shell {
  width: 100%;
  padding: 0 0 72px;
}

.landing-page .topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border: 0;
  border-radius: 0;
  background: rgba(4, 19, 41, 0.8);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.topbar-inner,
.footer-inner {
  width: min(var(--landing-content-width), calc(100% - 64px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-wordmark {
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.brand-title {
  color: var(--brand-wordmark);
  font-family: var(--headline);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(254, 183, 0, 0.24);
  background: rgba(254, 183, 0, 0.1);
  color: var(--amber);
  font-family: var(--label);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  transform: translateY(1px);
}

.landing-page .site-nav {
  gap: 32px;
}

.landing-page .site-nav a {
  padding: 0 0 6px;
  border-radius: 0;
  background: transparent;
}

.landing-page .site-nav a:hover,
.landing-page .site-nav a[aria-current] {
  color: var(--cyan);
  background: transparent;
}

.landing-page .site-nav a[aria-current] {
  border-bottom: 2px solid var(--cyan);
}

.subpage-shell-page .site-shell {
  width: 100%;
  padding: 0 0 56px;
}

.subpage-shell-page .topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border: 0;
  border-radius: 0;
  background: rgba(4, 19, 41, 0.8);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.subpage-shell-page main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 104px;
}

.subpage-shell-page .site-nav {
  gap: 32px;
}

.subpage-shell-page .site-nav a {
  padding: 0 0 6px;
  border-radius: 0;
  background: transparent;
}

.subpage-shell-page .site-nav a:hover,
.subpage-shell-page .site-nav a[aria-current] {
  color: var(--cyan);
  background: transparent;
}

.subpage-shell-page .site-nav a[aria-current] {
  box-shadow: none;
  border-bottom: 2px solid var(--cyan);
}

.report-page main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 104px;
}

.solution-subpage .site-shell {
  width: 100%;
  padding: 0 0 72px;
}

.solution-subpage .topbar,
.solution-subpage .demo-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border: 0;
  border-radius: 0;
  background: rgba(4, 19, 41, 0.8);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.solution-subpage main {
  width: min(var(--landing-content-width), calc(100% - 64px));
  margin: 0 auto;
  padding-top: 104px;
}

.solution-subpage .subpage-hero {
  display: block;
  margin: 0;
  padding: 22px 0 0;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.solution-subpage .subpage-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 64px;
  align-items: stretch;
}

.solution-subpage .subpage-hero-main {
  display: block;
  max-width: 720px;
  min-width: 0;
}

.solution-subpage .subpage-hero-main .section-kicker {
  display: none;
}

.solution-subpage .subpage-hero h1 {
  max-width: 10.5ch;
  margin-top: 24px;
  font-size: clamp(3.1rem, 5vw, 5.1rem);
  line-height: 1.06;
  word-break: keep-all;
  overflow-wrap: normal;
}

.solution-subpage .hero-emphasis {
  color: var(--cyan);
}

.solution-subpage .subpage-hero-lead {
  max-width: 620px;
  margin-top: 24px;
  color: #b8c6d8;
  font-size: 0.99rem;
  line-height: 1.68;
}

.solution-subpage .badge-row {
  gap: 8px;
  margin-top: 24px;
}

.solution-subpage .badge {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.solution-subpage .subpage-actions {
  gap: 14px;
  margin-top: 24px;
}

.solution-subpage .subpage-hero-note {
  max-width: 620px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.solution-subpage .subpage-hero-panel {
  width: min(100%, 460px);
  justify-self: end;
  align-self: start;
  margin-right: 34px;
  padding: 22px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.024),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(13, 28, 50, 0.94);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.solution-subpage .subpage-panel-label {
  letter-spacing: 0.16em;
}

.solution-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.solution-panel-top > div {
  flex: 1 1 auto;
  min-width: 0;
}

.solution-panel-top strong {
  display: block;
  margin-top: 12px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  white-space: nowrap;
}

.solution-panel-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.solution-panel-card {
  min-height: 86px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background: rgba(28, 42, 65, 0.88);
}

.solution-panel-card span,
.solution-trust-card span,
.solution-detail-card span {
  display: block;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.solution-panel-card.accent span,
.solution-trust-card.accent span,
.solution-detail-card.accent span {
  color: var(--amber);
}

.solution-panel-card strong,
.solution-trust-card strong,
.solution-detail-card strong {
  display: block;
  margin-top: 13px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.24;
}

.solution-panel-card p,
.solution-trust-card p,
.solution-detail-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.solution-panel-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.solution-trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 80px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  background: rgba(13, 28, 50, 0.92);
}

.solution-trust-card {
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background: rgba(28, 42, 65, 0.88);
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.solution-detail-card {
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background: rgba(28, 42, 65, 0.88);
}

.solution-subpage .wide-panel,
.solution-subpage .section-block {
  width: 100%;
  margin-top: 0;
  padding: 80px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.solution-subpage .wide-panel > h2,
.solution-subpage .wide-panel .section-head h2,
.solution-subpage .section-head h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 3.7vw, 3.9rem);
  line-height: 1.04;
}

.solution-subpage .section-head p {
  max-width: 700px;
}

.solution-subpage .report-summary-grid,
.solution-subpage .report-guidance-grid,
.solution-subpage .report-export-grid,
.solution-subpage .report-mask-compare,
.solution-subpage .detail-grid-site,
.solution-subpage .split-section,
.solution-subpage .subpage-stat-grid,
.solution-subpage .feature-grid,
.solution-subpage .step-grid {
  gap: 20px;
}

.solution-subpage .solution-trust-band {
  gap: 16px;
}

.solution-subpage :where(
  .report-summary-card,
  .report-export-card,
  .detail-card-site,
  .split-card,
  .subpage-stat,
  .feature-card,
  .step-card,
  .timeline-content,
  .report-status-panel,
  .report-guide-stepper,
  .report-guide-stage,
  .report-guide-step,
  .report-mask-card
) {
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(28, 42, 65, 0.88);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.landing-main {
  width: 100%;
  padding-top: 72px;
}

.landing-page .hero-panel {
  display: block;
  margin-top: 0;
  padding: 22px 0 44px;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.landing-page .hero-panel::after {
  right: -120px;
  bottom: -210px;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle at center,
    rgba(76, 214, 255, 0.18),
    transparent 54%
  );
  filter: none;
  opacity: 0.1;
}

.hero-inner {
  width: min(var(--landing-content-width), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 64px;
  align-items: stretch;
}

.landing-page .hero-copy {
  width: min(100%, 780px);
  min-width: 0;
  max-width: 780px;
  justify-self: start;
}

.landing-page .hero-copy h1 {
  max-width: 9.6ch;
  margin-top: 24px;
  font-size: clamp(3.1rem, 5.4vw, 5.45rem);
  line-height: 1.06;
  word-break: keep-all;
  overflow-wrap: normal;
}

.landing-page .hero-copy h1 .hero-emphasis {
  color: var(--cyan);
}

.landing-page .hero-lead {
  max-width: 620px;
  margin-top: 24px;
  font-size: 0.99rem;
  line-height: 1.68;
  color: #b8c6d8;
}

.landing-page .hero-highlights {
  margin-top: 24px;
  gap: 8px;
}

.landing-page .hero-actions {
  margin-top: 24px;
  gap: 14px;
}

.landing-page .hero-tertiary-links {
  margin-top: 10px;
}

.landing-page .hero-highlights span {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.landing-page .hero-proof-grid {
  margin-top: 24px;
}

.landing-page .quick-links {
  margin-top: 18px;
}

.landing-page .analysis-console {
  width: min(100%, 460px);
  align-self: start;
  justify-self: end;
  margin-right: 34px;
  padding: 20px;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.trust-band {
  width: min(var(--landing-content-width), calc(100% - 64px));
  margin: 0 auto;
  padding-top: 0;
}

.trust-band-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.024),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(13, 28, 50, 0.92);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.trust-band-shell::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle at center,
    rgba(76, 214, 255, 0.14),
    transparent 58%
  );
  opacity: 0.05;
  filter: none;
  pointer-events: none;
}

.trust-band-intro,
.trust-band-grid {
  position: relative;
  z-index: 1;
}

.trust-band-intro {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-band-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.12);
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-band-intro p {
  margin: 0;
  color: var(--text);
}

.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-band-card {
  min-height: auto;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.022),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(28, 42, 65, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.trust-band-label {
  display: block;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-band-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  word-break: keep-all;
}

.trust-band-card strong > code {
  display: inline-flex;
  align-items: center;
  padding: 0.08rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-strong);
  font-family: "Cascadia Code", "Consolas", "D2Coding", monospace;
  font-size: 0.88em;
  line-height: 1.2;
  white-space: nowrap;
  vertical-align: middle;
}

.trust-band-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
}

.research-bridge {
  padding-top: 76px;
}

.research-bridge .section-head p {
  max-width: 760px;
}

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

.research-bridge-card {
  position: relative;
  min-width: 0;
  min-height: 254px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.012)),
    rgba(28, 42, 65, 0.86);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.022);
  overflow: hidden;
}

.research-bridge-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(254, 183, 0, 0),
    rgba(254, 183, 0, 0.72),
    rgba(76, 214, 255, 0)
  );
  opacity: 0.74;
}

.research-bridge-card .feature-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ffcf5c;
}

.research-bridge-label {
  display: block;
  color: var(--cyan);
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.research-bridge-card h3 {
  margin: 10px 0 0;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  text-wrap: balance;
}

.research-bridge-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.headline-line {
  display: block;
}

.headline-highlight {
  color: #ffdb9d;
}

.landing-main .section-block {
  width: min(var(--landing-content-width), calc(100% - 64px));
  margin-top: 0;
  margin-inline: auto;
  padding: 80px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.landing-main .section-block[id] {
  scroll-margin-top: 120px;
}

.landing-main .section-head {
  margin-bottom: 24px;
}

.landing-main .section-head h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
  word-break: keep-all;
  overflow-wrap: normal;
}

.landing-main .section-head p {
  max-width: 680px;
  margin-top: 16px;
}

.section-actions {
  margin-top: 22px;
}

.feature-icon {
  color: var(--cyan);
  font-size: 2.1rem;
}

.landing-page .feature-grid,
.landing-page .contribution-grid {
  gap: 20px;
}

.landing-page .feature-card,
.landing-page .step-card,
.landing-page .contribution-card,
.landing-page .split-card {
  overflow: hidden;
}

.landing-page .feature-card,
.landing-page .contribution-card {
  min-height: 264px;
  padding: 28px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(28, 42, 65, 0.88);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.022);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.landing-page .feature-card::before,
.landing-page .step-card::before,
.landing-page .split-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(76, 214, 255, 0),
    rgba(76, 214, 255, 0.7),
    rgba(254, 183, 0, 0)
  );
  opacity: 0.7;
}

.landing-page .feature-card:hover,
.landing-page .contribution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(164, 230, 255, 0.12);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.024);
}

.landing-page .feature-card h3,
.landing-page .contribution-card h3 {
  margin-top: 16px;
  font-size: 1.28rem;
  line-height: 1.24;
  text-wrap: balance;
  word-break: keep-all;
}

.landing-page .step-grid {
  gap: 24px;
  margin-top: 30px;
}

.landing-page .step-grid::before {
  top: 40px;
}

.landing-page .step-card {
  display: flex;
  flex-direction: column;
  min-height: 244px;
  padding: 26px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(13, 28, 50, 0.88);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition:
    transform var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.landing-page .step-card:hover,
.landing-page .step-card:focus-within,
.landing-page .split-card:hover,
.landing-page .split-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(164, 230, 255, 0.12);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.024);
}

.landing-page .step-card span {
  min-width: 72px;
  min-height: 72px;
  border-width: 4px;
  font-size: 1.36rem;
}

.landing-page .step-card h3 {
  margin-top: 20px;
  font-size: 1.26rem;
  line-height: 1.24;
  text-wrap: balance;
  word-break: keep-all;
}

.landing-page .step-card p {
  margin-bottom: 18px;
}

.landing-page .demo-preview {
  padding-top: 88px;
}

.landing-page .demo-preview .section-head {
  max-width: 780px;
}

.landing-page .demo-shell {
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  background: rgba(28, 42, 65, 0.8);
}

.landing-page .demo-sidebar,
.landing-page .demo-mail {
  padding: 28px;
}

.landing-page .demo-sidebar {
  background: rgba(13, 28, 50, 0.92);
}

.landing-page .demo-mail {
  position: relative;
  background: rgba(28, 42, 65, 0.86);
}

.landing-page .demo-mail::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(76, 214, 255, 0.14);
  filter: blur(80px);
}

.landing-page .mail-surface {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 18px;
}

.demo-actions {
  margin-top: 26px;
}

.landing-page .split-section {
  gap: 20px;
}

.landing-page .split-card {
  padding: 28px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(28, 42, 65, 0.88);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition:
    transform var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.timeline-list {
  display: grid;
  gap: 32px;
  margin-top: 42px;
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: 148px;
  top: 16px;
  bottom: -32px;
  width: 1px;
  background: rgba(133, 147, 153, 0.18);
}

.timeline-entry:last-child::before {
  bottom: 36px;
}

.timeline-date {
  padding-top: 12px;
  text-align: right;
}

.timeline-content {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(133, 147, 153, 0.16);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.01)
    ),
    rgba(13, 28, 50, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -37px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  border: 4px solid var(--bg);
}

.timeline-content.current {
  border-color: rgba(76, 214, 255, 0.22);
}

.timeline-content.current::before {
  background: var(--amber);
}

.timeline-content strong {
  display: block;
  color: var(--text-strong);
  font-family: var(--headline);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.24;
  text-wrap: balance;
  word-break: keep-all;
}

.timeline-content p {
  margin: 12px 0 0;
}

.landing-page .contribution-section {
  padding-bottom: 0;
}

.landing-page .site-footer {
  margin-top: 112px;
  padding: 54px 32px 0;
  border-top: 1px solid rgba(133, 147, 153, 0.16);
  background: transparent;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.landing-page .footer-links {
  gap: 48px;
}

@media (max-width: 1180px) {
  .topbar-inner,
  .hero-inner,
  .trust-band,
  .landing-main .section-block,
  .footer-inner {
    width: min(100% - 48px, var(--landing-content-width));
  }

  .solution-subpage main {
    width: min(100% - 48px, var(--landing-content-width));
  }

  .solution-subpage .subpage-hero-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solution-subpage .subpage-hero-panel {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-right: 0;
  }

  .solution-trust-band,
  .solution-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .landing-page .analysis-console {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-right: 0;
  }

  .trust-band-shell {
    grid-template-columns: 1fr;
  }

  .trust-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .landing-page .feature-grid,
  .landing-page .step-grid,
  .landing-page .contribution-grid,
  .landing-page .split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline-entry::before,
  .timeline-content::before {
    display: none;
  }

  .timeline-date {
    text-align: left;
    padding-top: 0;
  }
}

@media (max-width: 820px) {
  .topbar-inner,
  .hero-inner,
  .trust-band,
  .landing-main .section-block,
  .footer-inner {
    width: min(100% - 32px, var(--landing-content-width));
  }

  .solution-subpage main {
    width: min(100% - 32px, var(--landing-content-width));
    padding-top: 24px;
  }

  .landing-page .topbar,
  .subpage-shell-page .topbar,
  .solution-subpage .demo-topbar {
    position: static;
  }

  .landing-main {
    padding-top: 24px;
  }

  .report-page main,
  .subpage-shell-page main {
    padding-top: 24px;
  }

  .landing-page .topbar,
  .subpage-shell-page .topbar,
  .solution-subpage .demo-topbar {
    padding: 14px 0;
  }

  .solution-subpage .subpage-hero {
    padding-top: 28px;
  }

  .solution-subpage .subpage-hero h1 {
    max-width: none;
    font-size: clamp(3rem, 11vw, 4.8rem);
  }

  .solution-subpage .subpage-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .solution-subpage .subpage-actions .button {
    width: 100%;
  }

  .solution-panel-top {
    flex-direction: column;
  }

  .solution-trust-band,
  .solution-detail-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-wrap: wrap;
  }

  .landing-page .site-nav,
  .subpage-shell-page .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
  }

  .landing-page .hero-panel {
    min-height: auto;
    padding-top: 28px;
  }

  .landing-page .hero-copy h1 {
    max-width: none;
    font-size: clamp(3rem, 11vw, 4.8rem);
    line-height: 1.06;
  }

  .landing-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-page .hero-actions .button {
    width: 100%;
  }

  .landing-page .hero-tertiary-links {
    margin-top: 10px;
  }

  .landing-page .quick-links {
    display: none;
  }

  .landing-page .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .landing-page .hero-proof-card {
    padding: 14px 15px;
  }

  .landing-page .hero-proof-card:last-child {
    grid-column: 1 / -1;
  }

  .landing-page .hero-proof-card p {
    display: none;
  }

  .landing-page .hero-proof-card strong {
    font-size: 0.96rem;
    line-height: 1.25;
  }

  .landing-page .analysis-console {
    margin-top: 10px;
  }

  .landing-page .hero-panel::after {
    width: 680px;
    height: 680px;
    right: -110px;
    bottom: -180px;
    opacity: 0.09;
  }

  .landing-page .mission-band::before {
    width: 320px;
    height: 320px;
    opacity: 0.022;
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

  .landing-page .feature-grid,
  .landing-page .step-grid,
  .landing-page .contribution-grid,
  .landing-page .split-section,
  .landing-page .demo-shell,
  .research-bridge-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .demo-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    gap: 12px;
  }

  .brand-wordmark {
    width: 100%;
  }

  .landing-page .topbar-actions,
  .subpage-shell-page .topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .site-nav a {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav a:last-child {
    grid-column: 1 / -1;
  }

  .landing-page .hero-highlights {
    gap: 8px;
  }

  .landing-page .site-nav a {
    justify-content: center;
    padding: 0 14px;
    border-radius: 14px;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.03);
  }

  .landing-page .button.button-compact {
    flex: 1 1 auto;
    justify-content: center;
  }

  .landing-page .site-nav a:hover,
  .landing-page .site-nav a[aria-current] {
    background: rgba(0, 209, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(0, 209, 255, 0.18);
  }

  .landing-page .hero-lead {
    font-size: 1rem;
  }

  .landing-page .hero-copy h1 {
    max-width: 9.2ch;
    font-size: clamp(2.35rem, 12vw, 2.95rem);
    line-height: 1.06;
  }

  .landing-page .hero-copy .headline-line {
    display: block;
  }

  .landing-page .hero-copy .hero-emphasis {
    text-wrap: balance;
    word-break: keep-all;
  }

  .solution-subpage .subpage-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.25rem, 11.2vw, 2.9rem);
    line-height: 1.08;
  }

  .solution-subpage .tech-hero-title {
    max-width: 11.3ch;
  }

  .solution-subpage .badge-row {
    gap: 8px;
  }

  .subpage-hero h1 {
    max-width: 9ch;
    font-size: clamp(2rem, 9.2vw, 2.55rem);
    line-height: 1.02;
  }

  .landing-page .hero-highlights span {
    width: auto;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .landing-page .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .hero-panel::after {
    width: 520px;
    height: 520px;
    right: -120px;
    bottom: -140px;
    opacity: 0.075;
  }

  .landing-page .mission-band::before {
    width: 240px;
    height: 240px;
    opacity: 0.017;
  }

  .hero-proof-card {
    padding: 14px 16px;
  }

  .landing-page .hero-proof-card:last-child {
    grid-column: auto;
  }

  .landing-page .hero-tertiary-link {
    font-size: 0.9rem;
  }

  .landing-page .console-signal-row,
  .landing-page .console-footer {
    display: none;
  }

  .trust-band-shell {
    padding: 28px;
  }

  .trust-band-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-motion .motion-reveal,
  .js-motion .motion-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
