/* ============================================================
   htmlstyles.css — Neuronal Tuning static pages
   All selectors are namespaced (.nt-* or scoped under .nt-body)
   ============================================================ */

@font-face {
  font-family: "NT Sans";
  src: url("/fonts/nt-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NT Sans";
  src: url("/fonts/nt-sans-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NT Sans";
  src: url("/fonts/nt-sans-bold.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NT Sans";
  src: url("/fonts/nt-sans-extrabold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --nt-blue: #0A1B3D;
  --nt-blue-deep: #060F26;
  --nt-red: #B91C1C;
  --nt-white: #ffffff;
  --nt-muted: rgba(255,255,255,0.78);
  --nt-line: rgba(255,255,255,0.16);
  --nt-dark-text: #111827;
  --nt-light-bg: #f7f7f5;
  --nt-paper: #fafaf7;
  --nt-rule: rgba(10,27,61,0.18);
  --nt-font: "NT Sans", Arial, Helvetica, sans-serif;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

.nt-body * {
  box-sizing: border-box;
}

.nt-body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  font-family: var(--nt-font);
  background: var(--nt-blue);
  color: var(--nt-white);
  line-height: 1.55;
  letter-spacing: 0.015em;
  overflow-x: hidden;
}

.nt-body a {
  color: inherit;
  text-decoration: none;
}

.nt-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Hero ---------- */

.nt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  min-height: 730px;
  background: var(--nt-blue);
  position: relative;
  overflow: hidden;
}

.nt-hero-main {
  padding-top: clamp(76px, 8vw, 112px);
  padding-right: clamp(36px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
  padding-left: clamp(36px, 7vw, 104px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.nt-hero-brain-orb {
  position: absolute;
  top: clamp(42px, 6vw, 86px);
  right: clamp(24px, 5vw, 76px);
  width: clamp(150px, 16vw, 260px);
  height: clamp(150px, 16vw, 260px);
  margin: 0;
  border-radius: 999px;
  overflow: hidden;
  opacity: 0.94;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    0 28px 70px -34px rgba(0,0,0,0.75),
    0 0 110px -42px rgba(255,255,255,0.28);
}

.nt-hero-brain-orb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
  transform: scale(1.08);
}

.nt-eyebrow,
.nt-h1,
.nt-claim,
.nt-subclaim,
.nt-cta-row,
.nt-affiliations {
  position: relative;
  z-index: 1;
}

.nt-eyebrow {
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nt-muted);
  margin: 0 0 clamp(26px, 3vw, 38px);
  font-weight: 700;
}

.nt-h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 900;
  max-width: 820px;
}

.nt-claim {
  margin-top: clamp(42px, 4vw, 62px);
  font-size: clamp(24px, 3.2vw, 46px);
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 900;
  max-width: 820px;
}

.nt-subclaim {
  margin-top: clamp(30px, 3vw, 44px);
  margin-bottom: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.45;
  color: var(--nt-muted);
  max-width: 820px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(42px, 4vw, 58px);
  align-items: center;
}

.nt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 2px solid var(--nt-white);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.nt-button.nt-primary {
  background: var(--nt-white);
  color: var(--nt-blue);
}

.nt-button.nt-primary:hover {
  background: transparent;
  color: var(--nt-white);
}

.nt-button.nt-secondary:hover {
  background: var(--nt-white);
  color: var(--nt-blue);
}

.nt-hero-side {
  background: var(--nt-red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
  position: relative;
  z-index: 2;
}

/* ---------- Affiliations strip ---------- */

.nt-affiliations {
  margin-top: clamp(72px, 7vw, 96px);
  padding-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid var(--nt-line);
  max-width: 100%;
}

.nt-affiliations-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nt-muted);
  margin-bottom: clamp(22px, 3vw, 32px);
  font-weight: 800;
}

.nt-affiliations-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(24px, 3vw, 38px);
}

.nt-affiliations-row img {
  display: block;
  height: 68px;
  width: auto;
  max-width: 240px;
  background: var(--nt-white);
  padding: 12px 18px;
  border-radius: 8px;
  object-fit: contain;
}

/* ---------- Side words ---------- */

.nt-side-words {
  width: 100%;
  max-width: 200px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 900;
}

.nt-side-words span {
  display: block;
  margin: 0 0 10px;
}

/* ---------- Organizations seam ---------- */

.nt-organizations-seam {
  background: var(--nt-light-bg);
  color: var(--nt-dark-text);
  padding: 0 8vw;
  border-top: 1px solid rgba(10,27,61,0.08);
  border-bottom: 1px solid rgba(10,27,61,0.08);
}

.nt-organizations-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 0 42px;
}

.nt-organizations-title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--nt-blue);
  font-weight: 900;
}

.nt-organizations-title a {
  color: var(--nt-red);
  border-bottom: 1px solid rgba(185,28,28,0.32);
  padding-bottom: 2px;
}

.nt-organizations-title a:hover {
  border-bottom-color: var(--nt-red);
}

.nt-organizations-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  align-items: stretch;
}

.nt-organization-logo {
  background: var(--nt-white);
  border: 1px solid rgba(10,27,61,0.12);
  border-radius: 8px;
  min-height: 112px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nt-organization-logo img {
  display: block;
  max-width: 100%;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- Light section ---------- */

.nt-section {
  background: var(--nt-light-bg);
  color: var(--nt-dark-text);
  padding: 84px 8vw 92px;
}

.nt-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.nt-section-label {
  color: var(--nt-red);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}

.nt-h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 900px;
  font-weight: 900;
}

.nt-lead {
  margin-top: 28px;
  max-width: 860px;
  font-size: clamp(19px, 1.65vw, 26px);
  line-height: 1.5;
  color: #2b2f38;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.nt-card {
  background: var(--nt-white);
  border: 1px solid rgba(10,27,61,0.12);
  padding: 30px;
  min-height: 260px;
}

.nt-card-number {
  color: var(--nt-red);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nt-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--nt-blue);
  font-weight: 900;
}

.nt-card p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: #303642;
  letter-spacing: 0.01em;
}

/* ---------- When section ---------- */

.nt-when-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.nt-when-head .nt-lead {
  margin-top: 22px;
}

.nt-when-figure {
  margin: 0;
}

.nt-when-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin-left: auto;
}

.nt-when-figure figcaption {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #555a66;
  font-style: italic;
  text-align: right;
  max-width: 520px;
  margin-left: auto;
}

/* ---------- Dark section ---------- */

.nt-dark-section {
  background: var(--nt-blue);
  color: var(--nt-white);
  padding: 92px 8vw;
  border-top: 1px solid var(--nt-line);
  border-bottom: 1px solid var(--nt-line);
}

.nt-dark-section .nt-lead {
  color: var(--nt-muted);
}

.nt-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.nt-signal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--nt-line);
}

.nt-signal-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--nt-line);
}

.nt-signal-list strong {
  color: var(--nt-white);
  font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: 900;
}

.nt-signal-list span {
  color: var(--nt-muted);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.nt-red-line {
  width: 80px;
  height: 6px;
  background: var(--nt-red);
  margin: 0 0 28px;
}

/* ---------- Intervention example ---------- */

.nt-bypass-section {
  background:
    linear-gradient(135deg, rgba(10,27,61,0.98), rgba(6,15,38,1));
  color: var(--nt-white);
  padding: 92px 8vw;
  border-top: 1px solid var(--nt-line);
  border-bottom: 1px solid var(--nt-line);
}

.nt-bypass-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.nt-bypass-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: end;
}

.nt-bypass-lead {
  margin: 0;
  max-width: 620px;
  color: var(--nt-muted);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nt-bypass-panel {
  margin-top: 48px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: clamp(30px, 4vw, 48px);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.75);
}

.nt-bypass-question {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(27px, 3vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-weight: 900;
  color: var(--nt-white);
}

.nt-bypass-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.nt-bypass-grid article {
  border-top: 3px solid var(--nt-red);
  padding-top: 18px;
}

.nt-bypass-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: var(--nt-white);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nt-bypass-grid p {
  margin: 14px 0 0;
  color: var(--nt-muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ---------- Portrait block ---------- */

.nt-portrait-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 28px;
}

.nt-portrait-figure {
  margin: 0;
}

.nt-portrait-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(10,27,61,0.12);
}

.nt-portrait-figure figcaption {
  margin-top: 14px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nt-red);
  font-weight: 900;
}

.nt-portrait-figure .nt-figcaption-sub {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #2b2f38;
  font-weight: 500;
}

.nt-portrait-text {
  max-width: 720px;
}

.nt-track-record-copy {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.48;
  color: #2b2f38;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.nt-track-record-evidence {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(10,27,61,0.16);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: #4b5563;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ---------- Contact band ---------- */

.nt-contact {
  background: var(--nt-red);
  color: var(--nt-white);
  padding: 92px 8vw;
}

.nt-contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.nt-contact .nt-h2 {
  max-width: 820px;
}

.nt-contact p {
  margin: 24px 0 0;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.45;
  max-width: 860px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nt-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
}

.nt-contact .nt-button {
  border-color: var(--nt-white);
  background: var(--nt-white);
  color: var(--nt-red);
}

.nt-contact .nt-button:hover {
  background: transparent;
  color: var(--nt-white);
}

/* ---------- Footer ---------- */

.nt-footer {
  background: var(--nt-blue-deep);
  color: rgba(255,255,255,0.72);
  padding: 34px 8vw;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.nt-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.nt-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nt-footer-links a:hover {
  color: var(--nt-white);
}

.nt-footer-cookie-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
}

.nt-footer-cookie-button:hover {
  color: var(--nt-white);
}

/* ---------- Cookie banner ---------- */

#nt-cookie-banner {
  position: fixed;
  left: max(20px, env(safe-area-inset-left));
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1000;
  max-width: 720px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  background: var(--nt-blue-deep);
  color: var(--nt-white);
  box-shadow:
    0 28px 70px -24px rgba(0,0,0,0.62),
    0 8px 24px -12px rgba(0,0,0,0.48);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

#nt-cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#nt-cookie-banner .nt-cookie-text {
  flex: 1 1 auto;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.01em;
}

#nt-cookie-banner .nt-cookie-text a {
  color: var(--nt-white);
  border-bottom: 1px solid rgba(255,255,255,0.32);
  padding-bottom: 1px;
}

#nt-cookie-banner .nt-cookie-text a:hover {
  color: var(--nt-white);
  border-bottom-color: var(--nt-red);
}

#nt-cookie-banner .nt-cookie-buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

#nt-cookie-banner .nt-cookie-button {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  background: transparent;
  color: var(--nt-white);
  cursor: pointer;
  font-family: var(--nt-font);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

#nt-cookie-banner .nt-cookie-button:hover {
  background: var(--nt-white);
  border-color: var(--nt-white);
  color: var(--nt-blue);
}

#nt-cookie-banner .nt-cookie-button:active {
  transform: translateY(1px);
}

#nt-cookie-banner .nt-cookie-button.nt-cookie-accept {
  background: var(--nt-red);
  border-color: var(--nt-red);
  color: var(--nt-white);
}

#nt-cookie-banner .nt-cookie-button.nt-cookie-accept:hover {
  background: var(--nt-white);
  border-color: var(--nt-white);
  color: var(--nt-red);
}

/* ============================================================
   Legal pages
   ============================================================ */

.nt-legal-hero {
  background: var(--nt-blue);
  color: var(--nt-white);
  padding: 88px 8vw 56px;
  border-bottom: 1px solid var(--nt-line);
}

.nt-legal-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.nt-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nt-muted);
  font-weight: 700;
}

.nt-crumbs a {
  color: var(--nt-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nt-crumbs a:hover {
  color: var(--nt-white);
  border-bottom-color: var(--nt-red);
}

.nt-crumbs span.nt-sep {
  opacity: 0.4;
}

.nt-legal-h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  max-width: 940px;
}

.nt-legal-h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--nt-red);
  background: var(--nt-white);
  padding: 0 12px;
  border-radius: 4px;
}

.nt-legal-lede {
  max-width: 820px;
  margin: 0;
  color: var(--nt-muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  font-weight: 500;
}

.nt-legal-body {
  background: var(--nt-paper);
  color: var(--nt-dark-text);
  padding: 80px 8vw 96px;
}

.nt-legal-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.nt-legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  border-top: 1px solid var(--nt-rule);
  padding-top: 14px;
}

.nt-legal-section {
  padding-top: 24px;
}

.nt-legal-section h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 900;
  color: var(--nt-blue);
}

.nt-legal-section h3 {
  margin: 30px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--nt-rule);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nt-red);
  font-weight: 900;
}

.nt-legal-section p {
  margin: 0 0 16px;
  color: #2b2f38;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 500;
}

.nt-legal-section ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #2b2f38;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 500;
}

.nt-legal-section li {
  margin-bottom: 6px;
}

.nt-legal-section strong {
  color: var(--nt-blue);
  font-weight: 700;
}

.nt-legal-section a {
  color: var(--nt-blue);
  border-bottom: 1px solid var(--nt-rule);
  padding-bottom: 1px;
}

.nt-legal-section a:hover {
  color: var(--nt-red);
  border-bottom-color: var(--nt-red);
}

.nt-legal-note {
  margin-top: 56px;
  padding: 22px 24px;
  border-left: 4px solid var(--nt-red);
  background: var(--nt-white);
}

.nt-legal-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #555a66;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
  .nt-organizations-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .nt-hero-brain-orb {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 980px) {
  .nt-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nt-hero-main {
    min-height: 680px;
  }

  .nt-hero-side {
    min-height: 180px;
    justify-content: flex-start;
  }

  .nt-hero-brain-orb {
    top: 40px;
    right: 34px;
    width: 150px;
    height: 150px;
    opacity: 0.72;
  }

  .nt-side-words {
    max-width: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 38px;
  }

  .nt-side-words span {
    margin: 0;
  }

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

  .nt-split {
    grid-template-columns: 1fr;
  }

  .nt-signal-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nt-portrait-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nt-portrait-figure {
    max-width: 480px;
  }

  .nt-when-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .nt-when-figure img,
  .nt-when-figure figcaption {
    margin-left: 0;
  }

  .nt-contact-inner {
    grid-template-columns: 1fr;
  }

  .nt-contact-actions {
    min-width: 0;
  }

  .nt-legal-grid {
    grid-template-columns: 1fr;
  }

  .nt-bypass-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  #nt-cookie-banner {
    max-width: none;
  }
}

@media (max-width: 780px) {
  .nt-organizations-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nt-bypass-grid {
    grid-template-columns: 1fr;
  }

  #nt-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  #nt-cookie-banner .nt-cookie-buttons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .nt-hero-main,
  .nt-section,
  .nt-dark-section,
  .nt-contact,
  .nt-legal-hero,
  .nt-legal-body,
  .nt-organizations-seam,
  .nt-bypass-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nt-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nt-hero-main {
    min-height: 640px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .nt-hero-brain-orb {
    top: 28px;
    right: 22px;
    width: 104px;
    height: 104px;
    opacity: 0.58;
  }

  .nt-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .nt-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .nt-side-words {
    display: block;
    font-size: 42px;
  }

  .nt-side-words span {
    display: block;
    margin-bottom: 4px;
  }

  .nt-affiliations {
    margin-top: 58px;
    padding-top: 30px;
  }

  .nt-affiliations-row {
    gap: 16px;
  }

  .nt-affiliations-row img {
    height: 54px;
    padding: 8px 12px;
  }

  .nt-organizations-inner {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .nt-organization-logo {
    min-height: 116px;
  }

  .nt-organization-logo img {
    max-height: 68px;
  }

  .nt-bypass-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .nt-bypass-panel {
    padding: 26px;
  }

  .nt-bypass-question {
    font-size: 27px;
  }

  .nt-track-record-copy {
    font-size: 18px;
  }

  .nt-track-record-evidence {
    font-size: 15px;
  }

  #nt-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  #nt-cookie-banner .nt-cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  #nt-cookie-banner .nt-cookie-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nt-organizations-row {
    grid-template-columns: 1fr;
  }
}