@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap";

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --spacing: .25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  sub {
    bottom: -.25em;
  }
  sup {
    top: -.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea {
    font: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  ::file-selector-button {
    font: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  :where(select:is([multiple],[size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple],[size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px) {
    ::placeholder {
      color: currentColor;
    }
    @supports (color:color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type=button],[type=reset],[type=submit]) {
    appearance: button;
  }
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button {
    height: auto;
  }
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden=until-found])) {
    display: none!important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}

:root {
  --ink: #403a55;
  --paper: #f8f7f8;
  --white: #fff;
  --green: #4b4561;
  --orange: #756b8d;
  --orange-soft: #f0edf4;
  --gold: #9185a8;
  --line: #d9d5df;
  --muted: #6c6778;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Inter, Helvetica Neue, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 30;
  background: #f8f7f8f0;
  border-bottom: 1px solid #403a551f;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(24px, 5vw, 78px);
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  align-items: center;
  gap: 12px;
  display: flex;
}

.brand-mark {
  background: #d7d1df;
  border: 1px solid #403a552e;
  border-radius: 50%;
  flex: 0 0 52px;
  place-items: center;
  width: 52px;
  height: 52px;
  display: grid;
  overflow: hidden;
}

.brand-mark img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.brand strong {
  letter-spacing: .08em;
  font-size: 17px;
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
  font-size: 11px;
  display: block;
}

.site-header nav {
  align-items: center;
  gap: 27px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.site-header nav a:not(.nav-cta):hover {
  color: var(--green);
}

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 18px;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.act-alert {
  background: var(--ink);
  min-height: 62px;
  color: var(--white);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 4vw, 60px);
  padding: 13px clamp(24px, 5vw, 78px);
  display: grid;
}

.act-alert-title {
  letter-spacing: .08em;
  white-space: nowrap;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  display: flex;
}

.act-alert-title > span {
  background: #d4ccdf;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 5px #d4ccdf24;
}

.act-alert p {
  color: var(--white);
  margin: 0;
  font-size: 14px;
}

.act-alert a {
  white-space: nowrap;
  border-bottom: 1px solid #ffffff73;
  align-items: center;
  gap: 18px;
  padding-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.act-alert a:hover {
  border-color: var(--white);
}

.hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  align-items: center;
  gap: clamp(22px, 4vw, 70px);
  min-height: 780px;
  padding: 82px clamp(24px, 5vw, 78px) 72px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #4b456117, #0000 66%);
  border-radius: 50%;
  width: 720px;
  height: 720px;
  position: absolute;
  top: 40px;
  right: -180px;
}

.hero-copy {
  z-index: 2;
  max-width: 760px;
  position: relative;
}

.hero-law {
  color: var(--green);
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin: 0 0 28px;
  display: flex;
}

.hero-law span {
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 700;
}

.hero-law strong {
  letter-spacing: -.04em;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: .95;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--green);
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.eyebrow span {
  background: currentColor;
  width: 38px;
  height: 2px;
  display: inline-block;
}

.eyebrow.light {
  color: var(--white);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  letter-spacing: -.065em;
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: .95;
}

h1 em {
  color: var(--green);
  font-style: normal;
  display: block;
}

.hero-intro {
  color: #5f596c;
  max-width: 700px;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  display: flex;
}

.button {
  border: 1px solid #0000;
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, background .2s, color .2s;
  display: inline-flex;
}

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

.button span {
  font-size: 18px;
}

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

.button-primary:hover {
  background: var(--green);
}

.button-secondary {
  border-color: var(--ink);
  background: 0 0;
}

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

.scope-note {
  max-width: 680px;
  color: var(--muted);
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.5;
}

.hero-visual {
  aspect-ratio: 1;
  z-index: 1;
  justify-self: center;
  width: min(100%, 660px);
  position: relative;
}

.connection-lines {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.connection-lines circle {
  fill: none;
  stroke: #4b45612e;
  stroke-width: 1.5px;
}

.connection-lines circle:first-child {
  stroke-dasharray: 3 7;
}

.connection-lines path {
  fill: none;
  stroke: #403a5552;
  stroke-width: 1.4px;
  stroke-dasharray: 4 5;
}

.article-core {
  aspect-ratio: 1;
  background: var(--white);
  border: 2px solid var(--green);
  text-align: center;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 55px #403a551f;
}

.article-core:before {
  content: "";
  border: 1px solid #4b456140;
  border-radius: 50%;
  position: absolute;
  inset: 10px;
}

.article-core span {
  letter-spacing: .25em;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.article-core strong {
  letter-spacing: -.08em;
  font-size: clamp(88px, 11vw, 150px);
  line-height: .78;
}

.article-core small {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.use-chip {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: 112px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  box-shadow: 0 8px 24px #403a5514;
}

.chip-writing {
  top: 16%;
  left: 8%;
}

.chip-research {
  border-color: #4b456180;
  top: 15%;
  right: 7%;
}

.chip-translation {
  top: 46%;
  right: -1%;
}

.chip-analysis {
  border-color: #756b8d73;
  bottom: 14%;
  right: 9%;
}

.chip-learning {
  border-color: #9185a880;
  bottom: 13%;
  left: 8%;
}

.chip-comms {
  top: 47%;
  left: -2%;
}

.enforcement-note {
  background: var(--orange);
  width: 110px;
  height: 110px;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(30%, -170%);
  box-shadow: 0 15px 35px #4b456138;
}

.enforcement-note strong {
  font-size: 21px;
}

.enforcement-note span {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.25;
}

.proof-strip {
  background: var(--white);
  border: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  margin: 0 clamp(24px, 5vw, 78px);
  display: grid;
  box-shadow: 0 18px 45px #403a5512;
}

.proof-strip div {
  border-right: 1px solid var(--line);
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 18px 24px;
  display: flex;
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.proof-strip strong {
  font-size: 14px;
}

.section-shell {
  padding: 125px clamp(24px, 7vw, 110px);
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  text-align: center;
  margin: 0 auto 64px;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2, .method-copy h2, .clarification h2, .final-cta h2 {
  letter-spacing: -.045em;
  margin-bottom: 24px;
  font-size: clamp(39px, 4.3vw, 68px);
  line-height: 1.02;
}

.section-heading > p:last-child, .method-copy > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.use-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  display: grid;
}

.use-grid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 205px;
  padding: 28px;
  transition: background .2s, transform .2s;
  position: relative;
}

.use-grid article:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.use-grid article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.use-grid h3 {
  margin: 45px 0 10px;
  font-size: 24px;
}

.use-grid p {
  color: var(--muted);
  max-width: 260px;
  font-size: 14px;
  line-height: 1.5;
}

.recognition-line {
  align-items: center;
  gap: 20px;
  margin-top: 38px;
  font-size: 14px;
  display: flex;
}

.recognition-line i {
  background: var(--line);
  flex: 1;
  height: 1px;
  position: relative;
}

.recognition-line i:after {
  content: "";
  background: var(--orange);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: -4px;
  right: 0;
}

.pathways {
  background: var(--white);
}

.institution-panel {
  background: var(--green);
  color: var(--white);
  grid-template-columns: .78fr 1.22fr;
  gap: 65px;
  padding: clamp(38px, 6vw, 78px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.institution-panel:after {
  content: "4";
  color: #ffffff09;
  pointer-events: none;
  font-size: 450px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: -140px;
  right: -20px;
}

.panel-intro, .institution-grid, .institution-offers {
  z-index: 1;
  position: relative;
}

.panel-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--orange);
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
}

.institution-panel .panel-kicker {
  color: var(--white);
}

.panel-intro h2, .individual-copy h2 {
  letter-spacing: -.045em;
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 1.02;
}

.panel-intro > p:not(.panel-kicker) {
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
}

.button-light {
  background: var(--white);
  color: var(--green);
  margin-top: 24px;
}

.institution-grid {
  border-top: 1px solid #ffffff47;
  border-left: 1px solid #ffffff47;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.support-step {
  border-bottom: 1px solid #ffffff47;
  border-right: 1px solid #ffffff47;
  gap: 18px;
  min-height: 225px;
  padding: 24px;
  display: flex;
}

.support-step > span {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.support-step h3 {
  margin: 39px 0 11px;
  font-size: 26px;
}

.support-step p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.55;
}

.institution-offers {
  border-top: 1px solid #ffffff4d;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  display: grid;
}

.institution-offers span {
  color: var(--white);
  padding: 20px 16px 0 0;
  font-size: 12px;
}

.individual-panel {
  background: var(--orange-soft);
  grid-template-columns: .86fr 1.14fr;
  min-height: 620px;
  margin-top: 28px;
  display: grid;
}

.individual-visual {
  background: linear-gradient(145deg, #e7e2ed, #f8f6fa);
  min-height: 530px;
  position: relative;
  overflow: hidden;
}

.individual-visual:before, .individual-visual:after {
  content: "";
  border: 1px solid #756b8d4d;
  border-radius: 50%;
  position: absolute;
}

.individual-visual:before {
  width: 520px;
  height: 520px;
  top: 40px;
  left: -130px;
}

.individual-visual:after {
  width: 390px;
  height: 390px;
  top: 105px;
  left: -65px;
}

.certificate-seal {
  background: var(--white);
  border: 2px solid var(--orange);
  z-index: 2;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 230px;
  display: flex;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 25px 50px #403a5521;
}

.certificate-seal:before {
  content: "";
  border: 1px solid #756b8d59;
  border-radius: 50%;
  position: absolute;
  inset: 11px;
}

.certificate-seal strong {
  letter-spacing: -.06em;
  font-size: 55px;
}

.certificate-seal span {
  color: var(--muted);
  margin-top: 6px;
  font-size: 12px;
}

.learning-path {
  text-transform: uppercase;
  letter-spacing: .12em;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 8%;
  right: 8%;
}

.learning-path i {
  background: #756b8d73;
  flex: 1;
  height: 1px;
}

.individual-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 85px);
}

.individual-copy > p:not(.panel-kicker) {
  color: #5f596c;
  font-size: 17px;
  line-height: 1.65;
}

.individual-copy ul {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 25px;
  margin: 32px 0 36px;
  padding: 0;
  list-style: none;
  display: grid;
}

.individual-copy li {
  border-top: 1px solid #403a552e;
  padding-top: 13px;
  font-size: 13px;
  line-height: 1.4;
}

.panel-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  display: flex;
}

.text-link {
  border-bottom: 1px solid;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
}

.ctdc-method {
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  display: grid;
}

.method-network {
  aspect-ratio: 1.25;
  justify-self: center;
  width: min(100%, 620px);
  position: relative;
}

.method-network svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.method-network svg circle {
  fill: none;
  stroke: #403a5529;
  stroke-width: 2px;
  stroke-dasharray: 4 7;
}

.method-network svg path {
  fill: none;
  stroke: #403a5540;
  stroke-width: 1.5px;
}

.method-core {
  background: var(--ink);
  width: 210px;
  height: 210px;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 50px #403a552e;
}

.method-core strong {
  font-size: 25px;
}

.method-core span {
  color: var(--white);
  margin-top: 6px;
}

.strength {
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  border-radius: 999px;
  min-width: 130px;
  padding: 14px;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  box-shadow: 0 8px 24px #403a5512;
}

.strength-1 {
  top: 0;
  left: 39%;
}

.strength-2 {
  border-color: #4b45616b;
  top: 31%;
  right: 0;
}

.strength-3 {
  border-color: #9185a873;
  bottom: 2%;
  right: 11%;
}

.strength-4 {
  border-color: #756b8d66;
  bottom: 2%;
  left: 6%;
}

.strength-5 {
  border-color: #65568166;
  top: 31%;
  left: 0;
}

.clarification {
  background: var(--ink);
  color: var(--white);
  grid-template-columns: .45fr 1.55fr;
  align-items: center;
  gap: 65px;
  display: grid;
  overflow: hidden;
}

.clarification-number {
  letter-spacing: -.12em;
  color: #ffffff0f;
  font-size: clamp(260px, 32vw, 520px);
  font-weight: 700;
  line-height: .7;
}

.clarification > div:last-child {
  max-width: 860px;
}

.clarification > div:last-child > p:not(.eyebrow) {
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
}

.faq {
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(45px, 8vw, 120px);
  display: grid;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 26px 0;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  display: flex;
}

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

.faq summary span {
  color: var(--orange);
  font-size: 25px;
  font-weight: 400;
  transition: transform .2s;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  color: var(--muted);
  max-width: 720px;
  padding: 0 40px 25px 0;
  line-height: 1.65;
}

.final-cta {
  background: var(--green);
  color: var(--white);
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 60px;
  margin: 0 clamp(24px, 5vw, 78px) 36px;
  padding: clamp(45px, 7vw, 90px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.final-cta:after {
  content: "";
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  width: 520px;
  height: 520px;
  position: absolute;
  top: -280px;
  right: -160px;
  box-shadow: 0 0 0 70px #ffffff06, 0 0 0 140px #ffffff05;
}

.final-cta > * {
  z-index: 1;
  position: relative;
}

.final-cta h2 {
  margin: 0;
}

.final-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  display: flex;
}

.button-orange {
  background: var(--orange);
  color: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: #ffffff80;
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--green);
}

.light-link {
  color: var(--white);
  border-color: #ffffff73;
  align-self: flex-start;
  margin-top: 8px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
  gap: 30px;
  padding: 38px clamp(24px, 5vw, 78px) 52px;
  font-size: 12px;
  display: grid;
}

.footer-brand strong {
  color: var(--ink);
  letter-spacing: .08em;
  font-size: 20px;
  display: block;
}

.footer-brand span {
  margin-top: 7px;
  display: block;
}

.footer-links {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-copy {
    max-width: 900px;
  }
  .hero-visual {
    width: min(82vw, 650px);
    margin-top: 15px;
  }
  .institution-panel, .individual-panel, .ctdc-method, .clarification, .faq, .final-cta {
    grid-template-columns: 1fr;
  }
  .institution-panel {
    gap: 45px;
  }
  .individual-visual {
    min-height: 520px;
  }
  .clarification-number {
    display: none;
  }
  .faq {
    gap: 30px;
  }
}

@media (max-width: 760px) {





  .chip-writing {
    top: 10%;
    left: 0%;
}

.chip-research {
    border-color: #4b456180;
    top: 10%;
    right: -2%;
}

  .site-header {
    min-height: 70px;
    position: static;
  }
  .site-header nav a:not(.nav-cta), .brand small {
    display: none;
  }
  .nav-cta {
    padding: 10px 13px;
    font-size: 12px;
  }
  .act-alert {
    grid-template-columns: 1fr auto;
    gap: 9px 18px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .act-alert-title {
    font-size: 14px;
  }
  .act-alert p {
    grid-area: 2 / 1 / auto / -1;
    font-size: 12px;
  }
  .act-alert a {
    grid-area: 1 / 2;
    font-size: 11px;
  }
  .hero {
    min-height: auto;
    padding-top: 55px;
    padding-left: 24px;
    padding-right: 24px;
  }
  h1 {
    font-size: clamp(30px, 7vw, 44px);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero-intro {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-visual {
    width: min(85vw, 360px);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1;
  }
  .use-chip {
   min-width: 82px;
        padding: 5px 6px;
        font-size: 8px;
  }
     .chip-comms {
        left: -12%;
        top: 46%;
    }
     .chip-translation {
        right: -12%;
        top: 47%;
    }
    .chip-analysis {
    bottom: 12%;
    right: 0%;
}
  .enforcement-note {
    width: 80px;
    height: 80px;
    right: 4%;
    transform: translate(20%, -120%);
  }
  .enforcement-note strong {
    font-size: 12px;
  }
  .enforcement-note span {
    font-size: 8.5px;
    margin-top: 2px;
  }
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-strip div:nth-child(2) {
    border-right: 0;
  }
  .proof-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .section-shell {
    padding-top: 88px;
    padding-bottom: 88px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .use-grid article {
    min-height: 175px;
    padding: 21px;
  }
  .use-grid h3 {
    margin-top: 31px;
  }
  .recognition-line {
    flex-direction: column;
    align-items: flex-start;
  }
  .recognition-line i {
    flex: none;
    width: 100%;
  }
  .institution-panel {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }
  .institution-grid {
    grid-template-columns: 1fr;
  }
  .support-step {
    min-height: 180px;
  }
  .institution-offers {
    grid-template-columns: repeat(2, 1fr);
  }
  .individual-panel {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }
  .individual-copy ul {
    grid-template-columns: 1fr;
  }
  .method-network {
    width: min(85vw, 380px);
    margin-left: auto;
    margin-right: auto;
  }
  .strength-5 {
    left: 2%;
  }
  .strength-2 {
    right: 2%;
  }
  .clarification {
    padding-left: 24px;
    padding-right: 24px;
  }
  .final-cta {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
  .final-cta h2 {
    font-size: clamp(26px, 5.5vw, 38px);
  }
  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }
  .act-alert {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  .act-alert p, .act-alert a {
    grid-area: auto / 1;
  }
  .act-alert a {
    justify-self: start;
  }
  .hero, .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-visual {
    width: min(85vw, 320px);
  }
  .article-core {
    width: 43%;
  }
  .article-core strong {
    font-size: 28px;
  }
  .article-core small {
    margin-top: 14px;
    font-size: 10px;
  }


  .enforcement-note {
   width: 65px;
        height: 65px;
        right: 2%;
        transform: translate(20%, -140%);
  }
  .enforcement-note strong {
    font-size: 15px;
  }
  .enforcement-note span {
    font-size: 6px;
    margin-top: 1px;
  }
  .proof-strip {
    margin-left: 20px;
    margin-right: 20px;
  }
  .proof-strip div {
    min-height: 78px;
    padding: 14px;
  }
  .proof-strip strong {
    font-size: 12px;
  }
  .use-grid {
    grid-template-columns: 1fr;
  }
  .institution-panel {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  .individual-panel {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  .institution-offers {
    grid-template-columns: 1fr;
  }
  .individual-visual {
    min-height: 430px;
  }
  .certificate-seal {
    width: 190px;
    height: 190px;
  }
  .learning-path {
    font-size: 9px;
  }
  .method-network {
    transform: scale(.93);
    width: min(85vw, 320px);
  }
  .strength {
    min-width: 108px;
    padding: 11px;
    font-size: 10px;
  }
  .strength-5 {
    left: 2%;
  }
  .strength-2 {
    right: 2%;
  }
  .method-core {
    width: 170px;
    height: 170px;
  }
  .method-core strong {
    font-size: 21px;
  }
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .button {
    gap: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button, .use-grid article {
    transition: none;
  }
}
