
/* ================================================================
   01. DESIGN TOKENS & BASE STYLES
   Literal colors preserved from the reference design.
   ================================================================ */
:root {
  --color-white:#FFFFFF;
  --color-ink:#010101;
  --color-surface:#F3F4F1;
  --color-dark:#10161B;
  --color-body:#585956;
  --color-muted:#858681;
  --color-accent:#CDF2FF;
  --color-border:#E7E8E4;
  --color-focus:#7B9199;
  --color-hover:#38302E;
  --color-hero-body:#E7E6DE;
  --color-dark-body:#BABDBB;
  
}








:root {
  color-scheme:light;
  --background:var(--color-white);
  --foreground:var(--color-ink);
  --card:var(--color-surface);
  --card-foreground:var(--color-ink);
  --popover:var(--color-white);
  --popover-foreground:var(--color-ink);
  --primary:var(--color-ink);
  --primary-foreground:var(--color-white);
  --secondary:var(--color-surface);
  --secondary-foreground:var(--color-ink);
  --muted:var(--color-surface);
  --muted-foreground:var(--color-muted);
  --accent:var(--color-accent);
  --accent-foreground:var(--color-ink);
  --border:var(--color-border);
  --input:var(--color-surface);
  --ring:var(--color-focus);
  --radius:12px;
  --body:var(--color-body);
  --dark:var(--color-dark);
  --unit:min(.0694444444vw,1.111111px)
}



* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:24px
}

body {
  margin:0;
  background:var(--color-white);
  color:var(--color-ink);
  font-family:Satoshi,Arial,sans-serif;
  font-size:16px;
  font-weight:400;
  -webkit-font-smoothing:antialiased
}

h1,h2,h3,p {
  margin:0
}

h1,h2,h3 {
  font-family:Montreal,Arial,sans-serif;
  font-weight:500
}

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

button,input {
  font:inherit
}

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

button {
  cursor:pointer
}

img {
  display:block;
  max-width:100%
}

button:focus-visible,a:focus-visible,input:focus-visible {
  outline:2px solid var(--color-focus);
  outline-offset:5px
}

::selection {
  background:var(--color-accent);
  color:var(--color-ink)
}

.frame {
  width:calc(100% - 80 * var(--unit));
  max-width:1511px;
  margin-inline:auto
}

.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  z-index:100;
  padding:12px 20px;
  background:white
}

.skip-link:focus {
  top:16px
}



/* 02. HEADER & BUTTONS */
.site-header {
  height:calc(96 * var(--unit));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px
}

.brand {
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  font-family:Satoshi,Arial,sans-serif;
  font-size:calc(18 * var(--unit));
  font-weight:500;
  letter-spacing:1px
}

.brand svg {
  width:calc(17 * var(--unit));
  height:calc(17 * var(--unit));
  stroke-width:1
}

.brand i {
  font-weight:400;
  font-style:italic
}

.desktop-nav {
  display:flex;
  align-items:center;
  gap:calc(32 * var(--unit));
  margin-left:calc(52 * var(--unit))
}

.desktop-nav a {
  font-size:calc(14 * var(--unit));
  color:var(--color-hover);
  transition:opacity .2s
}

.desktop-nav a:hover {
  opacity:.55
}

.header-actions {
  display:flex;
  gap:calc(12 * var(--unit));
  align-items:center
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:calc(14 * var(--unit));
  min-height:calc(48 * var(--unit));
  padding:calc(13 * var(--unit)) calc(21 * var(--unit));
  border:1px solid transparent;
  border-radius:calc(12 * var(--unit));
  font-family:Satoshi,Arial,sans-serif;
  font-size:calc(14 * var(--unit));
  font-weight:500;
  line-height:1.3;
  white-space:nowrap;
  transition:background .2s,transform .2s
}

.button svg {
  width:calc(16 * var(--unit));
  height:calc(16 * var(--unit));
  stroke-width:1.5
}

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

.button-dark:hover {
  background:var(--color-hover)
}

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

.button-light:hover {
  background:var(--color-surface)
}

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

.button-outline:hover {
  background:var(--color-surface)
}

.header-actions .button {
  min-height:calc(40 * var(--unit));
  padding:calc(10 * var(--unit)) calc(18 * var(--unit));
  font-size:calc(13 * var(--unit))
}

.mobile-menu {
  display:none
}



/* 03. HERO */
.hero {
  height:calc(806 * var(--unit));
  position:relative;
  overflow:hidden;
  border-radius:calc(32 * var(--unit));
  margin-bottom:calc(42 * var(--unit));
  background:#55574B
}

.hero-background {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover
}

.hero-shade {
  position:absolute;
  inset:0;
  background:#00000050
}

.hero-person {
  position:absolute;
  right:calc(-48 * var(--unit));
  top:calc(-78 * var(--unit));
  width:calc(818 * var(--unit));
  max-width:none;
  height:auto
}

.hero-content {
  position:absolute;
  inset:auto calc(56 * var(--unit)) calc(58 * var(--unit));
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:calc(50 * var(--unit));
  color:var(--color-white)
}

.hero-copy {
  max-width:calc(860 * var(--unit));
  flex:1
}

.hero h1 {
  font-size:calc(72 * var(--unit));
  line-height:1.05;
  letter-spacing:-.04em;
  color:var(--color-white)
}

.hero-copy>p {
  max-width:calc(638 * var(--unit));
  font-size:calc(20 * var(--unit));
  line-height:1.5;
  color:var(--color-hero-body);
  margin-top:calc(30 * var(--unit))
}

.hero-note {
  flex:0 0 calc(294 * var(--unit));
  padding-bottom:calc(1 * var(--unit))
}

.hero-note-title {
  font-family:Montreal,Arial,sans-serif;
  font-size:calc(29 * var(--unit));
  letter-spacing:-.04em;
  line-height:1.2;
  color:var(--color-white)
}

.hero-note>p {
  font-size:calc(14 * var(--unit));
  line-height:1.5;
  margin-top:calc(12 * var(--unit));
  color:var(--color-white)
}

.hero-note>span:not(.hero-note-title) {
  display:block;
  margin-top:calc(4 * var(--unit));
  font-size:calc(12 * var(--unit));
  color:var(--color-hero-body)
}

.hero-note>.button {
  margin-top:calc(25 * var(--unit))
}



/* 04. OPPORTUNITY */
.opportunity {
  background:var(--color-surface);
  padding:calc(140 * var(--unit)) 0 calc(130 * var(--unit))
}

.opportunity h2 {
  max-width:calc(1230 * var(--unit));
  font-size:calc(40 * var(--unit));
  font-weight:400;
  line-height:1.2;
  letter-spacing:-.045em;
  color:var(--color-muted)
}

.opportunity h2 span {
  color:var(--color-ink)
}

.metrics {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:calc(98 * var(--unit))
}

.metrics>div {
  border-left:1px solid var(--color-border);
  padding:0 calc(30 * var(--unit));
  min-height:calc(145 * var(--unit))
}

.metrics strong {
  font-family:Montreal,Arial,sans-serif;
  font-size:calc(68 * var(--unit));
  line-height:1;
  font-weight:500;
  letter-spacing:-.045em
}

.metrics p {
  color:var(--color-body);
  font-size:calc(16 * var(--unit));
  line-height:1.45;
  margin-top:calc(14 * var(--unit));
  max-width:calc(280 * var(--unit))
}



/* 05. CHALLENGE CARDS */
.challenges {
  padding-top:calc(200 * var(--unit));
  padding-bottom:calc(214 * var(--unit))
}

.challenges h2 {
  font-size:calc(64 * var(--unit));
  letter-spacing:-.045em;
  line-height:1.04
}

.challenge-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:calc(24 * var(--unit));
  margin-top:calc(72 * var(--unit))
}

.challenge-card {
  background:var(--color-surface);
  border-radius:calc(28 * var(--unit));
  min-height:calc(350 * var(--unit));
  padding:calc(32 * var(--unit))
}

.feature-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:calc(54 * var(--unit));
  height:calc(56 * var(--unit));
  background:var(--color-white);
  border-radius:calc(16 * var(--unit));
  margin-bottom:calc(58 * var(--unit))
}

.feature-icon svg {
  width:calc(25 * var(--unit));
  height:calc(25 * var(--unit));
  color:var(--color-body)
}

.challenge-card h3 {
  font-size:calc(25 * var(--unit));
  line-height:1.1;
  letter-spacing:-.035em;
  margin-bottom:calc(12 * var(--unit))
}

.challenge-card p {
  font-size:calc(16 * var(--unit));
  line-height:1.48;
  color:var(--color-body)
}



/* 06. HOW IT WORKS */
.how-it-works {
  padding-bottom:calc(215 * var(--unit))
}

.how-copy {
  max-width:calc(820 * var(--unit));
  text-align:center;
  margin:0 auto
}

.how-copy h2 {
  font-size:calc(72 * var(--unit));
  line-height:1.04;
  letter-spacing:-.04em
}

.how-copy>p {
  font-size:calc(18 * var(--unit));
  line-height:1.5;
  max-width:calc(746 * var(--unit));
  margin:calc(26 * var(--unit)) auto 0;
  color:var(--color-body)
}

.how-copy>.button {
  margin-top:calc(24 * var(--unit))
}

.signal-diagram {
  position:relative;
  width:calc(1200 * var(--unit));
  max-width:100%;
  height:calc(340 * var(--unit));
  margin:calc(134 * var(--unit)) auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between
}

.diagram-connections {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none
}

.signal-label {
  background:var(--color-white);
  display:flex;
  align-items:center;
  gap:calc(14 * var(--unit));
  padding:calc(12 * var(--unit)) calc(16 * var(--unit));
  height:calc(60 * var(--unit));
  border:1px solid #EEEEEC;
  border-radius:calc(16 * var(--unit));
  box-shadow:0 5px 12px #10161B08;
  white-space:nowrap;
  font-family:B612,monospace;
  font-size:calc(12 * var(--unit));
  letter-spacing:.055em;
  line-height:1.2;
  color:var(--color-body);
  position:relative;
  z-index:1
}

.signal-input {
  width:calc(320 * var(--unit))
}

.signal-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--color-focus);
  border-radius:50%;
  background:var(--color-accent);
  flex:0 0 calc(32 * var(--unit));
  height:calc(32 * var(--unit));
  color:#3D5A66
}

.signal-icon.warm {
  background:#F4F2E9;
  border-color:#BFC1BC;
  color:var(--color-muted)
}

.signal-icon svg {
  width:calc(16 * var(--unit));
  height:calc(16 * var(--unit));
  stroke-width:1.4
}

.signal-hub {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:calc(220 * var(--unit));
  height:calc(220 * var(--unit));
  background:var(--color-white);
  border:1px solid #EEEEEC;
  border-radius:50%;
  box-shadow:0 24px 28px -12px #10161B29;
  display:flex;
  align-items:center;
  justify-content:center
}

.signal-hub>svg {
  width:62%;
  height:62%;
  stroke:var(--color-muted);
  stroke-width:1.2
}

.signal-outputs {
  width:calc(340 * var(--unit));
  display:flex;
  flex-direction:column;
  gap:calc(60 * var(--unit))
}

.signal-highlight {
  background:var(--color-accent);
  border-color:#C7EAF4
}

.signal-highlight .signal-icon {
  background:transparent;
  border:1px solid var(--color-white);
  color:var(--color-white)
}



/* 07. BENEFITS */
.benefits {
  background:var(--color-surface);
  padding:calc(150 * var(--unit)) 0;
  margin-bottom:calc(40 * var(--unit))
}

.benefits-grid {
  display:grid;
  grid-template-columns:42% 51.5%;
  justify-content:space-between;
  align-items:center
}

.eyebrow {
  display:flex;
  align-items:center;
  gap:calc(10 * var(--unit));
  font-size:calc(13 * var(--unit));
  color:var(--color-body);
  line-height:1.4
}

.eyebrow>span {
  width:calc(5 * var(--unit));
  height:calc(5 * var(--unit));
  border-radius:50%;
  background:currentColor;
  flex-shrink:0
}

.benefits h2 {
  font-size:calc(58 * var(--unit));
  letter-spacing:-.045em;
  line-height:1.03;
  margin-top:calc(25 * var(--unit));
  margin-bottom:calc(22 * var(--unit))
}

.benefit-photo {
  width:100%;
  height:calc(704 * var(--unit));
  object-fit:cover;
  object-position:center;
  border-radius:calc(30 * var(--unit))
}

.benefit-accordion {
  border-top:1px solid var(--color-border)
}

.benefit-accordion [data-slot=accordion-item] {
  border-color:var(--color-border)
}

.benefit-trigger {
  border-radius:0;
  padding:calc(24 * var(--unit)) 0;
  gap:10px;
  align-items:center;
  font-family:Montreal,Arial,sans-serif;
  font-weight:500;
  font-size:calc(22 * var(--unit));
  line-height:1.2;
  letter-spacing:-.025em;
  color:var(--color-ink)
}

.benefit-trigger:hover {
  text-decoration:none
}

.benefit-trigger>svg:last-child {
  display:none
}

.benefit-trigger .benefit-plus {
  height:calc(15 * var(--unit));
  width:calc(15 * var(--unit));
  color:var(--color-body);
  stroke-width:1.5;
  flex-shrink:0;
  transition:transform .25s
}

.benefit-trigger[data-state=open] .benefit-plus {
  transform:rotate(45deg)
}

.benefit-content {
  padding-bottom:calc(20 * var(--unit));
  font-size:calc(17 * var(--unit));
  line-height:1.5;
  color:var(--color-body)
}

.benefit-accordion [data-slot=accordion-item]:last-child {
  border-bottom:1px solid var(--color-border)
}



/* 08. VIDEO STORY */
.story-section {
  background:var(--color-dark);
  padding:calc(160 * var(--unit)) 0 calc(150 * var(--unit));
  color:var(--color-white)
}

.story-section .eyebrow {
  color:var(--color-muted)
}

.story-heading-row {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  margin-top:calc(24 * var(--unit));
  margin-bottom:calc(58 * var(--unit))
}

.story-heading-row h2 {
  font-size:calc(58 * var(--unit));
  line-height:1.05;
  letter-spacing:-.045em;
  color:var(--color-white)
}

.story-heading-row p {
  font-size:calc(17 * var(--unit));
  line-height:1.5;
  color:var(--color-dark-body);
  margin-top:calc(24 * var(--unit))
}

.story-media {
  position:relative;
  aspect-ratio:1.885;
  border-radius:calc(32 * var(--unit));
  overflow:hidden;
  background:#363B39
}

.story-media>img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.65);
  transform-origin:50% 62%
}

.listen-button {
  position:absolute;
  right:calc(32 * var(--unit));
  top:calc(32 * var(--unit));
  display:flex;
  align-items:center;
  gap:calc(8 * var(--unit));
  background:var(--color-white);
  border:0;
  border-radius:calc(24 * var(--unit));
  padding:calc(13 * var(--unit)) calc(20 * var(--unit));
  font-size:calc(14 * var(--unit));
  font-weight:500;
  color:var(--color-ink)
}

.listen-button svg {
  width:calc(18 * var(--unit));
  height:calc(18 * var(--unit))
}

.story-result {
  position:absolute;
  bottom:calc(34 * var(--unit));
  left:calc(32 * var(--unit));
  width:calc(418 * var(--unit));
  padding:calc(24 * var(--unit));
  background:var(--color-white);
  color:var(--color-ink);
  border-radius:calc(20 * var(--unit));
  box-shadow:0 8px 16px #10161B0A
}

.story-mini-brand {
  display:inline-block;
  background:var(--color-ink);
  color:var(--color-white);
  font-size:calc(9 * var(--unit));
  letter-spacing:.1em;
  padding:calc(3 * var(--unit)) calc(7 * var(--unit));
  margin-bottom:calc(12 * var(--unit))
}

.story-result p {
  font-family:Montreal,Arial,sans-serif;
  font-size:calc(32 * var(--unit));
  line-height:1.06;
  letter-spacing:-.04em
}

.story-caption {
  position:absolute;
  bottom:calc(36 * var(--unit));
  right:calc(30 * var(--unit));
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:calc(9 * var(--unit));
  color:var(--color-white);
  text-shadow:0 1px 5px var(--color-dark)
}

.story-caption strong {
  font-weight:500;
  font-size:calc(16 * var(--unit))
}

.story-caption span {
  font-size:calc(12 * var(--unit));
  color:#D9DAD5
}



/* 09. VALUE */
.value-section {
  padding-block:calc(192 * var(--unit));
  display:grid;
  grid-template-columns:49% 44.5%;
  justify-content:space-between;
  align-items:center
}

.value-copy h2 {
  font-size:calc(55 * var(--unit));
  letter-spacing:-.045em;
  line-height:1.04
}

.value-copy>p {
  font-size:calc(18 * var(--unit));
  line-height:1.5;
  max-width:calc(580 * var(--unit));
  margin-top:calc(24 * var(--unit));
  color:var(--color-body)
}

.value-copy>.button {
  margin-top:calc(28 * var(--unit))
}

.value-photo {
  width:100%;
  height:calc(758 * var(--unit));
  object-fit:cover;
  object-position:center;
  border-radius:calc(32 * var(--unit))
}



/* 10. DEMO FORM */
.demo-section {
  height:calc(722 * var(--unit));
  position:relative;
  overflow:hidden;
  border-radius:0 0 calc(32 * var(--unit)) calc(32 * var(--unit));
  display:flex;
  align-items:center;
  padding:calc(56 * var(--unit))
}

.phone-background {
  position:absolute;
  inset:0;
  overflow:hidden;
  background:#1A1615
}

.phone-background>img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 50%
}

.demo-card {
  position:relative;
  background:var(--color-white);
  border-radius:calc(24 * var(--unit));
  width:calc(518 * var(--unit));
  padding:calc(48 * var(--unit));
  box-shadow:0 8px 24px #10161B0A
}

.demo-card>p {
  font-size:calc(16 * var(--unit));
  line-height:1.4;
  color:var(--color-body);
  margin-bottom:calc(16 * var(--unit))
}

.demo-card h2 {
  font-size:calc(56 * var(--unit));
  line-height:1.02;
  letter-spacing:-.04em
}

.demo-card form {
  margin-top:calc(32 * var(--unit))
}

.email-field {
  background:var(--color-surface);
  border-radius:calc(8 * var(--unit));
  display:flex;
  gap:calc(8 * var(--unit));
  padding:calc(4 * var(--unit));
  align-items:center;
  min-height:calc(60 * var(--unit))
}

.email-field input {
  background:transparent;
  border:0;
  outline:none;
  min-width:0;
  flex:1;
  padding:calc(10 * var(--unit));
  font-size:calc(14 * var(--unit));
  color:var(--color-ink);
  width:100%
}

.email-field input::placeholder {
  color:var(--color-muted)
}

.email-field:focus-within {
  outline:2px solid var(--color-focus);
  outline-offset:2px
}

.email-field .button {
  font-size:calc(12 * var(--unit));
  min-height:calc(48 * var(--unit));
  padding:calc(12 * var(--unit)) calc(16 * var(--unit));
  border-radius:calc(9 * var(--unit))
}

.form-note {
  font-size:calc(12 * var(--unit));
  line-height:1.5;
  color:var(--color-muted);
  margin-top:calc(16 * var(--unit))
}



/* 11. FOOTER */
.site-footer {
  padding-top:calc(12 * var(--unit))
}

.footer-main {
  display:grid;
  grid-template-columns:1.45fr 1fr 1fr 1fr;
  gap:calc(46 * var(--unit));
  padding-bottom:calc(52 * var(--unit))
}

.footer-brand .brand {
  font-size:calc(17 * var(--unit))
}

.footer-brand p {
  font-size:calc(14 * var(--unit));
  color:var(--color-body);
  line-height:1.9;
  margin-top:calc(12 * var(--unit))
}

.footer-column {
  display:flex;
  flex-direction:column;
  gap:calc(12 * var(--unit));
  font-size:calc(14 * var(--unit));
  line-height:1.35;
  color:var(--color-body)
}

.footer-column h3 {
  font-size:calc(15 * var(--unit));
  font-weight:500;
  margin-bottom:calc(4 * var(--unit));
  color:var(--color-ink)
}

.footer-column a:hover,.footer-brand p a:hover {
  text-decoration:underline;
  text-underline-offset:4px
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  border-top:1px solid var(--color-border);
  padding:calc(22 * var(--unit)) 0 calc(60 * var(--unit));
  font-size:calc(12 * var(--unit));
  color:var(--color-body)
}

.footer-bottom>div {
  display:flex;
  gap:calc(24 * var(--unit))
}

.footer-bottom button {
  border:0;
  background:none;
  padding:0;
  color:inherit;
  font-size:inherit
}

.footer-bottom button:hover {
  text-decoration:underline
}



/* 12. DIALOGS */
.civic-dialog {
  max-width:640px!important;
  border:1px solid var(--color-border);
  border-radius:24px!important;
  padding:36px!important;
  background:var(--color-white);
  max-height:85dvh;
  overflow-y:auto
}

.civic-dialog [data-slot=dialog-title] {
  font-size:36px;
  font-weight:500;
  letter-spacing:-.045em;
  line-height:1.05
}

.civic-dialog [data-slot=dialog-description] {
  font-size:15px;
  color:var(--color-body);
  line-height:1.5;
  margin-top:8px
}

.civic-dialog .button {
  font-size:14px;
  padding:14px 20px;
  min-height:46px;
  border-radius:10px
}

.civic-dialog .button svg {
  height:16px;
  width:16px
}

.dialog-prose {
  font-size:16px;
  color:var(--color-body);
  line-height:1.65;
  display:grid;
  gap:18px
}

.dialog-prose .button {
  justify-self:start;
  margin-top:6px
}

.sample-brief {
  border:1px solid var(--color-border);
  border-radius:16px;
  overflow:hidden;
  margin-top:10px
}

.brief-heading {
  padding:18px;
  background:var(--color-surface);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px
}

.brief-heading .brand {
  font-size:12px;
  gap:4px
}

.brief-heading .brand svg {
  width:14px;
  height:14px
}

.brief-heading>span {
  font-family:B612,monospace;
  font-size:10px;
  display:flex;
  align-items:center;
  gap:5px
}

.brief-heading>span svg {
  width:14px;
  height:14px
}

.sample-brief article {
  padding:24px
}

.brief-tag {
  background:var(--color-accent);
  padding:6px 10px;
  border-radius:6px;
  font-size:12px
}

.sample-brief h3 {
  font-size:28px;
  letter-spacing:-.035em;
  line-height:1.1;
  margin:22px 0 14px
}

.sample-brief p {
  font-size:14px;
  color:var(--color-body);
  line-height:1.55
}

.brief-detail {
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-top:20px
}

.brief-detail>svg {
  width:16px;
  height:16px;
  flex-shrink:0;
  margin-top:3px
}

.brief-detail strong {
  font-weight:500;
  color:var(--color-ink)
}

.sample-brief .brief-note {
  font-size:12px;
  padding:16px 24px;
  border-top:1px solid var(--color-border)
}

.mobile-sheet {
  background:white;
  padding:24px
}

.mobile-sheet nav {
  display:grid;
  gap:12px;
  padding:16px
}

.mobile-sheet nav>a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:20px;
  padding:14px 0;
  border-bottom:1px solid var(--color-border)
}

.mobile-sheet nav>a>svg {
  width:18px
}

.mobile-sheet .brand {
  font-size:18px
}

.mobile-sheet .brand svg {
  width:18px;
  height:18px
}



/* 13. RESPONSIVE RULES */
@media(min-width:1600px) {
  .hero {
  height:896px
}


}


@media(max-width:1000px) and (min-width:761px) {
  .desktop-nav {
  gap:16px;
  margin-left:0
}

.desktop-nav a {
  font-size:12px
}

.site-header {
  gap:16px
}

.header-actions .button {
  font-size:11px
}

.hero-copy>p {
  font-size:15px
}

.challenge-card p {
  font-size:13px
}

.challenge-card {
  min-height:290px
}

.metrics p {
  font-size:13px
}

.how-copy>p,.value-copy>p {
  font-size:15px
}

.benefit-content {
  font-size:13px
}

.story-heading-row p {
  font-size:14px
}

.footer-column,.footer-brand p {
  font-size:12px
}

.footer-bottom {
  font-size:11px
}


}


@media(max-width:760px) {
  
 :root {
  --unit:1px
}

.frame {
  width:calc(100% - 40px)
}

.site-header {
  height:78px;
  gap:16px
}

.brand {
  font-size:16px;
  letter-spacing:.7px
}

.brand svg {
  width:17px;
  height:17px
}

.desktop-nav,.header-actions {
  display:none
}

.mobile-menu {
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid var(--color-border);
  background:white;
  border-radius:12px
}

.mobile-menu svg {
  width:21px;
  height:21px
}

.button {
  font-size:14px;
  min-height:46px;
  padding:13px 20px;
  gap:12px;
  border-radius:10px
}

.button svg {
  width:16px;
  height:16px
}

.desktop-break {
  display:none
}


 .hero {
  height:720px;
  border-radius:24px;
  margin-bottom:24px
}

.hero-background {
  object-position:42% center
}

.hero-person {
  width:620px;
  max-width:none;
  right:-204px;
  top:-20px
}

.hero-shade {
  z-index:1;
  background:linear-gradient(180deg,#10161B00 26%,#10161B30 40%,#10161BD9 100%)
}

.hero-content {
  z-index:2;
  inset:auto 24px 32px;
  display:block
}

.hero h1 {
  font-size:44px;
  letter-spacing:-.05em;
  line-height:1.04;
  max-width:420px
}

.hero-copy>p {
  font-size:16px;
  line-height:1.55;
  margin-top:22px;
  max-width:440px
}

.hero-note {
  margin-top:24px
}

.hero-note-title,.hero-note>p,.hero-note>span:not(.hero-note-title) {
  display:none
}

.hero-note>.button {
  margin:0
}


 .opportunity {
  padding:64px 0
}

.opportunity h2 {
  font-size:28px;
  line-height:1.2;
  letter-spacing:-.035em
}

.metrics {
  margin-top:40px;
  gap:26px;
  grid-template-columns:1fr
}

.metrics>div {
  padding:0 0 0 20px;
  min-height:auto;
  display:grid;
  grid-template-columns:115px 1fr;
  align-items:center;
  gap:18px
}

.metrics strong {
  font-size:42px
}

.metrics p {
  font-size:14px;
  line-height:1.45;
  margin-top:0
}


 .challenges {
  padding-top:80px;
  padding-bottom:80px
}

.challenges h2 {
  font-size:36px;
  line-height:1.06
}

.challenges h2 br {
  display:none
}

.challenge-grid {
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:34px
}

.challenge-card {
  padding:22px 18px;
  border-radius:22px;
  min-height:300px
}

.feature-icon {
  height:44px;
  width:44px;
  border-radius:12px;
  margin-bottom:34px
}

.feature-icon svg {
  height:22px;
  width:22px
}

.challenge-card h3 {
  font-size:23px;
  line-height:1.05;
  letter-spacing:-.03em;
  margin-bottom:14px
}

.challenge-card p {
  font-size:14px;
  line-height:1.5
}


 .how-it-works {
  padding-bottom:80px
}

.how-copy {
  max-width:540px
}

.how-copy h2 {
  font-size:39px;
  line-height:1.06;
  letter-spacing:-.045em
}

.how-copy h2 br {
  display:none
}

.how-copy>p {
  font-size:16px;
  line-height:1.55;
  margin-top:22px
}

.how-copy>.button {
  margin-top:24px
}

.signal-diagram {
  width:100%;
  height:408px;
  margin-top:54px;
  flex-direction:column;
  justify-content:space-between;
  gap:20px
}

.diagram-connections {
  display:none
}

.signal-diagram:before {
  content:"";
  position:absolute;
  top:40px;
  bottom:40px;
  border-left:2px dashed #BFC1BC;
  left:50%;
  z-index:0
}

.signal-label {
  height:46px;
  font-size:10px;
  padding:8px 12px;
  border-radius:12px;
  gap:12px;
  white-space:normal
}

.signal-input {
  width:270px;
  max-width:100%
}

.signal-icon {
  flex-basis:28px;
  height:28px
}

.signal-icon svg {
  height:14px;
  width:14px
}

.signal-hub {
  width:112px;
  height:112px;
  top:136px;
  box-shadow:0 15px 24px -8px #10161B29
}

.signal-outputs {
  width:285px;
  max-width:100%;
  gap:12px
}

.signal-outputs .signal-label {
  height:46px
}


 .benefits {
  padding:64px 0;
  margin-bottom:24px
}

.benefits-grid {
  grid-template-columns:1fr;
  gap:36px
}

.eyebrow {
  font-size:12px;
  gap:8px
}

.eyebrow>span {
  width:4px;
  height:4px
}

.benefits h2 {
  font-size:39px;
  margin-top:22px;
  margin-bottom:28px
}

.benefit-trigger {
  font-size:21px;
  padding:22px 0;
  line-height:1.2
}

.benefit-trigger .benefit-plus {
  height:16px;
  width:16px
}

.benefit-content {
  font-size:16px;
  padding-bottom:20px;
  line-height:1.5
}

.benefit-photo {
  height:auto;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:24px
}


 .story-section {
  padding:64px 0
}

.story-heading-row {
  align-items:flex-start;
  flex-direction:column;
  gap:24px;
  margin-top:22px;
  margin-bottom:32px
}

.story-heading-row h2 {
  font-size:39px;
  line-height:1.04
}

.story-heading-row p {
  font-size:16px;
  margin-top:22px;
  line-height:1.5
}

.story-media {
  aspect-ratio:4/5;
  border-radius:24px
}

.story-media>img {
  object-position:48% center
}

.listen-button {
  top:18px;
  right:16px;
  font-size:12px;
  padding:10px 15px;
  border-radius:24px;
  gap:7px
}

.listen-button svg {
  width:15px;
  height:15px
}

.story-result {
  bottom:66px;
  left:16px;
  width:244px;
  padding:20px;
  border-radius:16px
}

.story-result p {
  font-size:28px;
  line-height:1.04
}

.story-mini-brand {
  font-size:8px;
  padding:3px 6px;
  margin-bottom:10px
}

.story-caption {
  bottom:18px;
  left:20px;
  right:20px;
  gap:3px;
  align-items:flex-start
}

.story-caption strong {
  font-size:13px
}

.story-caption span {
  font-size:11px
}


 .value-section {
  padding-block:80px;
  grid-template-columns:1fr;
  gap:40px
}

.value-copy h2 {
  font-size:38px;
  letter-spacing:-.04em;
  line-height:1.06
}

.value-copy h2 br {
  display:none
}

.value-copy>p {
  font-size:16px;
  line-height:1.55;
  margin-top:22px
}

.value-copy>.button {
  margin-top:24px
}

.value-photo {
  height:auto;
  aspect-ratio:4/5;
  border-radius:24px;
  object-position:center
}


 .demo-section {
  height:650px;
  border-radius:24px;
  padding:20px;
  align-items:flex-end
}

.phone-background>img {
  object-fit:cover;
  object-position:65% 0
}

.demo-card {
  width:100%;
  padding:30px 24px;
  border-radius:20px
}

.demo-card>p {
  font-size:14px;
  line-height:1.45;
  margin-bottom:16px
}

.demo-card h2 {
  font-size:43px;
  line-height:1.02
}

.demo-card form {
  margin-top:28px
}

.email-field {
  min-height:54px;
  padding:4px;
  gap:4px;
  border-radius:8px
}

.email-field input {
  font-size:13px;
  padding:8px
}

.email-field .button {
  font-size:11px;
  min-height:44px;
  padding:10px 11px;
  border-radius:7px
}

.form-note {
  font-size:12px;
  margin-top:12px
}


 .site-footer {
  padding-top:40px
}

.footer-main {
  grid-template-columns:repeat(3,1fr);
  gap:32px 18px;
  padding-bottom:36px
}

.footer-brand {
  grid-column:1/-1
}

.footer-brand .brand {
  font-size:17px
}

.footer-brand p {
  font-size:14px;
  line-height:1.8;
  margin-top:12px
}

.footer-column {
  font-size:12px;
  gap:13px;
  line-height:1.45
}

.footer-column h3 {
  font-size:14px;
  margin-bottom:4px
}

.footer-bottom {
  padding:24px 0 36px;
  font-size:11px;
  align-items:flex-start;
  flex-direction:column;
  gap:18px
}

.footer-bottom>div {
  gap:24px
}

.civic-dialog {
  padding:28px 22px!important;
  max-width:calc(100% - 32px)!important
}

.civic-dialog [data-slot=dialog-title] {
  font-size:31px
}

.brief-heading {
  flex-wrap:wrap
}

.sample-brief article {
  padding:20px
}

.sample-brief h3 {
  font-size:26px
}

.mobile-sheet .button {
  justify-content:center;
  color:var(--color-white);
  padding:14px 20px;
  font-size:16px
}



}


@media(max-width:380px) {
  .hero {
  height:690px
}

.hero h1 {
  font-size:39px
}

.hero-content {
  inset-inline:20px
}

.challenge-grid {
  grid-template-columns:1fr
}

.challenge-card {
  min-height:250px;
  padding:26px
}

.feature-icon {
  margin-bottom:30px
}

.challenge-card p {
  font-size:16px
}

.metrics>div {
  grid-template-columns:98px 1fr;
  gap:12px
}

.metrics strong {
  font-size:37px
}

.how-copy h2 {
  font-size:36px
}

.demo-card {
  padding:26px 20px
}

.email-field {
  flex-wrap:wrap
}

.email-field input {
  min-height:42px;
  flex-basis:100%
}

.email-field .button {
  width:100%
}

.footer-main {
  gap:28px 12px
}


}


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

*,*:before,*:after {
  animation:none!important;
  transition:none!important
}


}



/* Motion and reference footer */
.story-video  {
   width:100%;
   height:100%;
   object-fit:cover;
   
}


.hero-shade  {
   background:linear-gradient(180deg,#10161B15 10%,#10161B99 75%,#10161BC9 100%);
   
}


.site-footer  {
   padding-top:calc(130 * var(--unit));
   
}


.footer-main  {
   grid-template-columns:1.5fr 1fr 1fr 1fr;
   gap:calc(46 * var(--unit));
   padding-bottom:calc(90 * var(--unit));
   
}


.footer-wordmark  {
   display:flex;
   align-items:center;
   gap:calc(28 * var(--unit));
   width:100%;
   padding-bottom:calc(24 * var(--unit));
   color:#151515;
   
}


.footer-wordmark > svg  {
   width:9%;
   height:auto;
   stroke-width:.8;
   flex-shrink:0;
   
}


.footer-wordmark-text  {
   font-family:Satoshi,Arial,sans-serif;
   font-weight:400;
   font-size:clamp(20px,10.2vw,163px);
   line-height:1;
   letter-spacing:.2em;
   white-space:nowrap;
   
}


.footer-bottom  {
   padding-bottom:calc(22 * var(--unit));
   
}


.motion-char  {
   will-change:transform,opacity;
   
}


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


@media(max-width:760px)  {
  
 .site-footer  {
   padding-top:72px;
   
}


 .footer-main  {
   grid-template-columns:repeat(3,minmax(0,1fr));
   gap:28px 18px;
   padding-bottom:48px;
   
}


 .footer-wordmark  {
   gap:10px;
   padding-bottom:22px;
   
}


 .footer-wordmark-text  {
   font-size:8.4vw;
   
}


 .footer-bottom  {
   padding-bottom:24px;
   
}



}


@media(prefers-reduced-motion:reduce)  {
   .button:hover  {
   transform:none;
   
}

 
}



/* Standalone interactions: native HTML controls */
[hidden] { display:none !important; }
.benefit-trigger { display:flex; width:100%; justify-content:space-between; text-align:left; border:0; background:transparent; }
.benefit-trigger > .benefit-plus:last-child { display:block; }
.benefit-accordion [data-slot="accordion-item"] { border-bottom:1px solid #E7E8E4; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
dialog { color:#010101; border:0; margin:auto; }
dialog::backdrop { background:#10161B99; backdrop-filter:blur(4px); }
.modal-close { display:block; margin:0 0 16px auto; border:0; background:#F3F4F1; padding:8px 12px; border-radius:8px; }
.mobile-navigation { width:min(90vw,380px); padding:24px; border-radius:20px; }
.mobile-navigation nav { display:grid; gap:20px; font-size:20px; }
.civic-dialog h2 { font-size:36px; line-height:1.1; margin-bottom:20px; }
.civic-dialog p { color:#585956; line-height:1.6; margin-bottom:16px; }
.civic-dialog h3 { font-size:24px; margin:18px 0 10px; }

  
/* Formation active — longer French labels */
.theme-link { display:inline-block; margin-top:20px; font-size:14px; text-decoration:underline; text-underline-offset:5px; }
.benefit-content ul { padding-left:20px; margin:0 0 18px; }
.benefit-content li + li { margin-top:8px; }
.footer-wordmark-text { font-size:clamp(12px,6.4vw,100px); }
.footer-column a { overflow-wrap:break-word; }
[id^="theme-"] { scroll-margin-top:30px; }

/* THEME SLIDER — 3 desktop / 2 tablet / 1 mobile */
.theme-section {padding:80px 0 100px;}
.theme-heading {display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:40px;}
.theme-heading h2 {font-size:clamp(32px,4.2vw,62px);line-height:1.04;letter-spacing:-.04em;}
.theme-heading .eyebrow {margin-bottom:16px;}
.theme-controls {display:flex;gap:10px;}
.theme-controls button {width:48px;height:48px;padding:0;font-size:24px;}
.theme-controls button:disabled {opacity:.35;cursor:default;}
.theme-track {display:grid;grid-auto-flow:column;grid-auto-columns:calc((100% - 48px)/3);gap:24px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;overscroll-behavior-x:contain;}
.theme-track::-webkit-scrollbar {display:none;}
.theme-slide {position:relative;isolation:isolate;min-width:0;min-height:540px;display:flex;align-items:flex-end;border-radius:clamp(24px,2vw,32px);overflow:hidden;background:#10161B;color:#FFFFFF;scroll-snap-align:start;}
.theme-slide>img {position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;transition:transform .6s;}
.theme-slide:after {content:'';position:absolute;inset:0;background:linear-gradient(180deg,#10161B00 15%,#10161B88 42%,#10161BF2 72%,#10161B 100%);z-index:-1;}
.theme-card-content {width:100%;padding:26px;}
.theme-card-content h3 {font-size:28px;line-height:1.08;letter-spacing:-.035em;margin:0 0 14px;min-height:60px;}
.theme-card-content p {font-size:16px;line-height:1.5;color:#FFFFFFD9;min-height:96px;margin:0 0 18px;}
.theme-badges {display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px;min-height:56px;align-content:start;}
.theme-badges span {font-size:12px;line-height:1.4;padding:7px 10px;background:#FFFFFF1F;border-radius:999px;}
.theme-card-content .button {width:100%;justify-content:space-between;border-radius:12px;min-height:52px;font-size:14px;}
@media(hover:hover){.theme-slide:hover>img{transform:scale(1.045);}}
@media(max-width:1100px){.theme-track{grid-auto-columns:calc((100% - 24px)/2);}}
@media(max-width:650px){.theme-track{grid-auto-columns:100%;gap:16px;}.theme-section{padding:64px 0;}.theme-heading{align-items:flex-start;flex-direction:column;}.theme-slide{min-height:520px;}.theme-card-content{padding:24px;}}
@media(prefers-reduced-motion:reduce){.theme-slide>img{transition:none;}}

/* CFA — same surfaces and type as the homepage */
.cfa-programmes {display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.cfa-programmes .theme-slide {min-height:590px;}
.cfa-programmes h3 {min-height:92px;}
.cfa-guide,.cfa-faq {padding:60px 0 90px;}
.cfa-guide h2,.cfa-faq h2 {font-size:clamp(32px,4.2vw,62px);line-height:1.06;letter-spacing:-.04em;margin-bottom:40px;}
.cfa-steps {display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.cfa-steps article {background:#F3F4F1;border-radius:28px;padding:32px;}
.cfa-steps span {display:inline-block;padding:10px 14px;background:#CDF2FF;border-radius:12px;margin-bottom:32px;}
.cfa-steps h3 {font-size:25px;line-height:1.15;margin-bottom:18px;}
.cfa-steps p,.cfa-faq p {font-size:16px;line-height:1.6;color:#585956;}
.cfa-faq details {padding:24px 0;border-bottom:1px solid #E7E8E4;}
.cfa-faq summary {cursor:pointer;font-size:20px;}.cfa-faq p {margin-top:16px;max-width:850px;}
@media(max-width:1100px){.cfa-programmes{grid-template-columns:repeat(2,minmax(0,1fr));}.cfa-steps{gap:16px;}.cfa-steps article{padding:24px;}}
@media(max-width:650px){.cfa-programmes,.cfa-steps{grid-template-columns:1fr;}.cfa-programmes .theme-slide{min-height:550px;}.cfa-guide,.cfa-faq{padding:40px 0 60px;}}

:root { --color-white: #FFFFFF; --color-ink: #010101; --color-surface: #F3F4F1; --color-dark: #10161B; --color-body: #585956; --color-muted: #858681; --color-accent: #CDF2FF; --color-border: #E7E8E4; --color-focus: #7B9199; --color-hover: #38302E; --color-hero-body: #E7E6DE; --color-dark-body: #BABDBB; }
:root { color-scheme: light; --background: var(--color-white); --foreground: var(--color-ink); --card: var(--color-surface); --card-foreground: var(--color-ink); --popover: var(--color-white); --popover-foreground: var(--color-ink); --primary: var(--color-ink); --primary-foreground: var(--color-white); --secondary: var(--color-surface); --secondary-foreground: var(--color-ink); --muted: var(--color-surface); --muted-foreground: var(--color-muted); --accent: var(--color-accent); --accent-foreground: var(--color-ink); --border: var(--color-border); --input: var(--color-surface); --ring: var(--color-focus); --radius: 12px; --body: var(--color-body); --dark: var(--color-dark); --unit: min(.0694444444vw,1.111111px); }
.frame { width: calc(100% - 80 * var(--unit)); max-width: 1511px; margin-inline: auto; }
.site-header { height: calc(96 * var(--unit)); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-family: Satoshi, Arial, sans-serif; font-size: calc(18 * var(--unit)); font-weight: 500; letter-spacing: 1px; }
.brand svg { width: calc(17 * var(--unit)); height: calc(17 * var(--unit)); stroke-width: 1; }
.brand i { font-weight: 400; font-style: italic; }
.desktop-nav { display: flex; align-items: center; gap: calc(32 * var(--unit)); margin-left: calc(52 * var(--unit)); }
.desktop-nav a { font-size: calc(14 * var(--unit)); color: var(--color-hover); transition: opacity .2s; }
.desktop-nav a:hover { opacity: 0.55; }
.header-actions { display: flex; gap: calc(12 * var(--unit)); align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: calc(14 * var(--unit)); min-height: calc(48 * var(--unit)); padding: calc(13 * var(--unit)) calc(21 * var(--unit)); border: 1px solid transparent; border-radius: calc(12 * var(--unit)); font-family: Satoshi, Arial, sans-serif; font-size: calc(14 * var(--unit)); font-weight: 500; line-height: 1.3; white-space: nowrap; transition: background .2s,transform .2s; }
.button svg { width: calc(16 * var(--unit)); height: calc(16 * var(--unit)); stroke-width: 1.5; }
.header-actions .button { min-height: calc(40 * var(--unit)); padding: calc(10 * var(--unit)) calc(18 * var(--unit)); font-size: calc(13 * var(--unit)); }
.mobile-menu { display: none; }
.hero-note>.button { margin-top: calc(25 * var(--unit)); }
.how-copy>.button { margin-top: calc(24 * var(--unit)); }
.value-copy>.button { margin-top: calc(28 * var(--unit)); }
.email-field .button { font-size: calc(12 * var(--unit)); min-height: calc(48 * var(--unit)); padding: calc(12 * var(--unit)) calc(16 * var(--unit)); border-radius: calc(9 * var(--unit)); }
.site-footer { padding-top: calc(12 * var(--unit)); }
.footer-main { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: calc(46 * var(--unit)); padding-bottom: calc(52 * var(--unit)); }
.footer-brand .brand { font-size: calc(17 * var(--unit)); }
.footer-brand p { font-size: calc(14 * var(--unit)); color: var(--color-body); line-height: 1.9; margin-top: calc(12 * var(--unit)); }
.footer-column { display: flex; flex-direction: column; gap: calc(12 * var(--unit)); font-size: calc(14 * var(--unit)); line-height: 1.35; color: var(--color-body); }
.footer-column h3 { font-size: calc(15 * var(--unit)); font-weight: 500; margin-bottom: calc(4 * var(--unit)); color: var(--color-ink); }
.footer-column a:hover,.footer-brand p a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--color-border); padding: calc(22 * var(--unit)) 0 calc(60 * var(--unit)); font-size: calc(12 * var(--unit)); color: var(--color-body); }
.footer-bottom>div { display: flex; gap: calc(24 * var(--unit)); }
.footer-bottom button { border: 0px; background: none; padding: 0px; color: inherit; font-size: inherit; }
.footer-bottom button:hover { text-decoration: underline; }
.civic-dialog { max-width: 640px !important; border: 1px solid var(--color-border); border-radius: 24px !important; padding: 36px !important; background: var(--color-white); max-height: 85dvh; overflow-y: auto; }
.civic-dialog [data-slot=dialog-title] { font-size: 36px; font-weight: 500; letter-spacing: -0.045em; line-height: 1.05; }
.civic-dialog [data-slot=dialog-description] { font-size: 15px; color: var(--color-body); line-height: 1.5; margin-top: 8px; }
.civic-dialog .button { font-size: 14px; padding: 14px 20px; min-height: 46px; border-radius: 10px; }
.civic-dialog .button svg { height: 16px; width: 16px; }
.dialog-prose .button { justify-self: start; margin-top: 6px; }
.brief-heading .brand { font-size: 12px; gap: 4px; }
.brief-heading .brand svg { width: 14px; height: 14px; }
.mobile-sheet .brand { font-size: 18px; }
.mobile-sheet .brand svg { width: 18px; height: 18px; }
@media (max-width:1000px) and (min-width:761px){.desktop-nav { gap: 16px; margin-left: 0px; }
.desktop-nav a { font-size: 12px; }
.site-header { gap: 16px; }
.header-actions .button { font-size: 11px; }
.footer-column,.footer-brand p { font-size: 12px; }
.footer-bottom { font-size: 11px; }
}
@media (max-width:760px){:root { --unit: 1px; }
.frame { width: calc(100% - 40px); }
.site-header { height: 78px; gap: 16px; }
.brand { font-size: 16px; letter-spacing: 0.7px; }
.brand svg { width: 17px; height: 17px; }
.desktop-nav,.header-actions { display: none; }
.mobile-menu { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--color-border); background: white; border-radius: 12px; }
.mobile-menu svg { width: 21px; height: 21px; }
.button { font-size: 14px; min-height: 46px; padding: 13px 20px; gap: 12px; border-radius: 10px; }
.button svg { width: 16px; height: 16px; }
.hero-note>.button { margin: 0px; }
.how-copy>.button { margin-top: 24px; }
.value-copy>.button { margin-top: 24px; }
.email-field .button { font-size: 11px; min-height: 44px; padding: 10px 11px; border-radius: 7px; }
.site-footer { padding-top: 40px; }
.footer-main { grid-template-columns: repeat(3,1fr); gap: 32px 18px; padding-bottom: 36px; }
.footer-brand { grid-column: 1/-1; }
.footer-brand .brand { font-size: 17px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 12px; }
.footer-column { font-size: 12px; gap: 13px; line-height: 1.45; }
.footer-column h3 { font-size: 14px; margin-bottom: 4px; }
.footer-bottom { padding: 24px 0px 36px; font-size: 11px; align-items: flex-start; flex-direction: column; gap: 18px; }
.footer-bottom>div { gap: 24px; }
.civic-dialog { padding: 28px 22px !important; max-width: calc(100% - 32px) !important; }
.civic-dialog [data-slot=dialog-title] { font-size: 31px; }
.mobile-sheet .button { justify-content: center; color: var(--color-white); padding: 14px 20px; font-size: 16px; }
}
@media (max-width:380px){.email-field .button { width: 100%; }
.footer-main { gap: 28px 12px; }
}
.site-footer { padding-top: calc(130 * var(--unit)); }
.footer-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: calc(46 * var(--unit)); padding-bottom: calc(90 * var(--unit)); }
.footer-wordmark { display: flex; align-items: center; gap: calc(28 * var(--unit)); width: 100%; padding-bottom: calc(24 * var(--unit)); color: rgb(21, 21, 21); }
.footer-wordmark > svg { width: 9%; height: auto; stroke-width: 0.8; flex-shrink: 0; }
.footer-wordmark-text { font-family: Satoshi, Arial, sans-serif; font-weight: 400; font-size: clamp(20px, 10.2vw, 163px); line-height: 1; letter-spacing: 0.2em; white-space: nowrap; }
.footer-bottom { padding-bottom: calc(22 * var(--unit)); }
.button:hover { transform: translateY(-2px); }
@media (max-width:760px){.site-footer { padding-top: 72px; }
.footer-main { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px 18px; padding-bottom: 48px; }
.footer-wordmark { gap: 10px; padding-bottom: 22px; }
.footer-wordmark-text { font-size: 8.4vw; }
.footer-bottom { padding-bottom: 24px; }
}
@media (prefers-reduced-motion:reduce){.button:hover { transform: none; }
}
[hidden] { display: none !important; }
dialog { color: rgb(1, 1, 1); border: 0px; margin: auto; }
dialog::backdrop { background: rgba(16, 22, 27, 0.6); backdrop-filter: blur(4px); }
.modal-close { display: block; margin: 0px 0px 16px auto; border: 0px; background: rgb(243, 244, 241); padding: 8px 12px; border-radius: 8px; }
.mobile-navigation { width: min(90vw, 380px); padding: 24px; border-radius: 20px; }
.mobile-navigation nav { display: grid; gap: 20px; font-size: 20px; }
.civic-dialog h2 { font-size: 36px; line-height: 1.1; margin-bottom: 20px; }
.civic-dialog p { color: rgb(88, 89, 86); line-height: 1.6; margin-bottom: 16px; }
.civic-dialog h3 { font-size: 24px; margin: 18px 0px 10px; }
.footer-wordmark-text { font-size: clamp(12px, 6.4vw, 100px); }
.footer-column a { overflow-wrap: break-word; }
.theme-card-copy .button { width: 100%; min-height: 50px; margin-top: 10px; font-size: 14px; white-space: normal; }
.theme-card-copy .button svg { width: 18px; height: 18px; flex-shrink: 0; }
.button,button { transition: background-color .25s,color .25s,border-color .25s,box-shadow .25s,transform .25s cubic-bezier(.2,.7,.2,1); }
.button svg,button svg { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
@media (hover:hover){.button:hover { transform: translateY(-2px); box-shadow: 0 7px 16px #10161b14; }
.button:hover svg { transform: translateX(4px); }
.theme-card-copy .button:hover { transform: none; }
.modal-close:hover,.listen-button:hover,.mobile-menu:hover { background: var(--color-accent); }
.footer-bottom button:hover { color: var(--color-focus); transform: translateY(-2px); }
}
.button:active,button:not(:disabled):active { transform: scale(.98); box-shadow: none; }
@media (prefers-reduced-motion:reduce){.button:hover,.button:active,button:not(:disabled):active,.button:hover svg,.theme-photo-card:hover>img,.theme-photo-card:focus-within>img,.benefit-content>a:hover { transform: none; }
}
.course-detail .button { margin-top: auto; min-height: 48px; font-size: 14px; white-space: normal; }
.course-detail .button svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width:600px){.course-detail .button { width: 100%; }
}

.site-header,.site-footer{color:var(--color-ink)}.site-header .button,.site-footer .button{letter-spacing:normal}.site-footer h3{letter-spacing:normal}.site-header svg{fill:none}.civic-dialog{width:min(620px,calc(100% - 32px));max-height:85vh;overflow:auto;border-radius:24px;padding:36px}.site-footer{background:var(--color-white)}.site-header .button-outline{color:var(--color-ink)}


/* Homepage photo cards: 3 / 2 / 1, 10px CTA gap and desktop reveal. */
.theme-track{--cards:3;--gap:24px;display:grid;grid-auto-flow:column;grid-auto-columns:calc((100% - (var(--cards) - 1)*var(--gap))/var(--cards));gap:var(--gap);overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding:0;border-radius:calc(28 * var(--unit));}
.theme-track::-webkit-scrollbar{display:none}.theme-slide{position:relative;isolation:isolate;min-width:0;width:auto;min-height:clamp(470px,38vw,580px);height:auto;display:flex;align-items:flex-end;overflow:hidden;scroll-snap-align:start;border-radius:calc(28 * var(--unit));background:var(--color-dark);color:white;padding:0;}
.theme-slide>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;transition:transform .65s cubic-bezier(.2,.7,.2,1)}
.theme-slide:after{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,#10161b0a 5%,#10161b59 32%,#10161bf0 67%,#10161b 100%)}
.theme-card-content{position:relative;inset:auto;width:100%;padding:clamp(24px,2.2vw,34px);background:none;display:block;}
.theme-card-content h3{min-height:0;font-size:clamp(27px,2.2vw,35px);line-height:1.08;letter-spacing:-.035em;margin:0 0 14px;color:white;}
.theme-card-content p{font-size:16px;line-height:1.5;color:var(--color-hero-body);margin:0;min-height:0;}
.theme-badges{min-height:0;display:flex;gap:8px;margin:0 0 18px;flex-wrap:wrap;}.theme-badges span{padding:7px 11px;background:#ffffff20;border:1px solid #ffffff30;border-radius:12px;color:white;font-size:13px;}
.card-reveal{display:grid;grid-template-rows:1fr}.card-reveal-inner{min-height:0;}.theme-card-content .button{width:100%;min-height:50px;margin:10px 0 0;font-size:14px;white-space:normal;}.theme-card-content .button svg{width:18px;height:18px;flex-shrink:0;}.theme-card-content .button:hover{transform:none}
@media(min-width:1101px) and (hover:hover) and (pointer:fine){.card-reveal{grid-template-rows:0fr;opacity:0;transition:grid-template-rows .4s cubic-bezier(.2,.7,.2,1),opacity .3s}.card-reveal-inner{overflow:hidden}.theme-slide:hover .card-reveal,.theme-slide:focus-within .card-reveal{grid-template-rows:1fr;opacity:1}.theme-slide:focus-within .card-reveal-inner{overflow:visible}.theme-slide:hover>img,.theme-slide:focus-within>img{transform:scale(1.035)}}
@media(max-width:1100px){.theme-track{--cards:2}}@media(max-width:600px){.theme-track{--cards:1;--gap:16px;border-radius:22px}.theme-slide{border-radius:22px;min-height:500px}}
@media(prefers-reduced-motion:reduce){.theme-slide:hover>img,.theme-slide:focus-within>img{transform:none}}
.cfa-details{padding:0 0 110px}.cfa-details>h2{font-size:clamp(36px,4.3vw,64px);letter-spacing:-.045em;line-height:1.08;margin-bottom:40px}.cfa-detail{border-top:1px solid var(--color-border);scroll-margin-top:30px}.cfa-detail:last-child{border-bottom:1px solid var(--color-border)}.cfa-detail summary{list-style:none;display:flex;gap:24px;justify-content:space-between;align-items:center;cursor:pointer;padding:30px 0;font-family:Montreal,Arial,sans-serif;font-size:clamp(24px,2.3vw,34px);letter-spacing:-.03em;line-height:1.15}.cfa-detail summary::-webkit-details-marker{display:none}.cfa-detail summary span{transition:transform .25s}.cfa-detail[open] summary span{transform:rotate(45deg)}.cfa-detail-body{display:grid;grid-template-columns:1fr 1fr;gap:60px;padding:0 0 36px}.cfa-detail-body p{font-size:17px;line-height:1.6;color:var(--color-body);margin-bottom:18px}.cfa-detail-body dl{margin:0;display:grid;gap:16px}.cfa-detail-body dt{font-size:13px;color:var(--color-muted)}.cfa-detail-body dd{margin:4px 0 0;font-size:16px;line-height:1.5}.cfa-detail-body .button{margin-top:12px}.catalogue-theme-link{display:inline-block;margin-top:24px;text-decoration:underline;text-underline-offset:5px}
@media(max-width:760px){.cfa-detail-body{grid-template-columns:1fr;gap:22px}.cfa-detail summary{padding:24px 0}.cfa-details{padding-bottom:70px}}


/* CFA detail pages — original fonts, palette and rounded geometry. */
.cfa-breadcrumb{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px;color:var(--color-body);font-size:12px}.cfa-breadcrumb a:hover{text-decoration:underline;text-underline-offset:4px}.cfa-breadcrumb [aria-current]{color:var(--color-ink)}
.cfa-intro{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(32px,6vw,90px);align-items:center;padding:56px 0 78px}.cfa-intro h1{font-size:clamp(42px,4.8vw,72px);line-height:1.025;letter-spacing:-.045em;margin:24px 0}.cfa-intro-copy>p:not(.eyebrow){font-size:18px;line-height:1.65;color:var(--color-body);max-width:620px}.cfa-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}.cfa-actions .button{font-size:14px;min-height:50px;white-space:normal}.cfa-intro-image{position:relative;margin:0;min-height:500px;border-radius:28px;overflow:hidden;background:var(--color-dark)}.cfa-intro-image img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.cfa-intro-image:after{content:'';position:absolute;inset:0;background:linear-gradient(transparent 45%,#10161bba)}.cfa-intro-image figcaption{position:absolute;z-index:1;bottom:28px;left:28px;right:28px;color:white;display:flex;justify-content:space-between;gap:12px;font-size:12px;letter-spacing:.04em}.cfa-intro .eyebrow{font-size:12px}
.cfa-local-nav{display:flex;gap:30px;border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border);padding:21px 0;font-size:14px;overflow-x:auto;white-space:nowrap}.cfa-local-nav a{transition:color .2s}.cfa-local-nav a:hover{color:var(--color-focus)}
.cfa-topic{padding:90px 0}.cfa-topic h2,.cfa-practical h2,.cfa-apply h2,.cfa-related h2{font-size:clamp(34px,4vw,58px);line-height:1.08;letter-spacing:-.04em;margin-top:20px;max-width:850px}.cfa-topic .topic-lead{color:var(--color-body);font-size:16px;margin-top:20px}.cfa-interest-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:38px}.cfa-interest-grid article{padding:32px;border-radius:26px;background:var(--color-surface)}.cfa-interest-grid .interest-number{display:grid;place-items:center;width:44px;height:44px;background:white;border-radius:12px;margin-bottom:38px;font-size:12px;color:var(--color-body)}.cfa-interest-grid h3{font-size:26px;line-height:1.15;letter-spacing:-.03em}.cfa-interest-grid p{margin-top:14px;color:var(--color-body);font-size:16px;line-height:1.6}
.cfa-practical{background:var(--color-surface);padding:78px 0}.cfa-practical-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:start}.cfa-practical-copy>p:not(.eyebrow){color:var(--color-body);font-size:17px;line-height:1.65;margin-top:22px}.cfa-practical .button{margin-top:28px;font-size:14px;min-height:50px}.cfa-facts{margin:0;background:white;border-radius:26px;padding:16px 30px}.cfa-facts>div{padding:20px 0;border-bottom:1px solid var(--color-border)}.cfa-facts>div:last-child{border:0}.cfa-facts dt{color:var(--color-body);font-size:12px;margin-bottom:7px}.cfa-facts dd{font-size:17px;line-height:1.5;margin:0}.cfa-facts a{text-decoration:underline;text-underline-offset:4px}
.cfa-apply{padding:90px 0}.cfa-apply-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:36px;margin-top:44px}.cfa-apply-grid article{border-left:1px solid var(--color-border);padding-left:24px}.cfa-apply-grid span{font-size:12px;color:var(--color-body)}.cfa-apply-grid h3{font-size:25px;line-height:1.2;letter-spacing:-.025em;margin-top:20px}.cfa-apply-grid p{font-size:16px;color:var(--color-body);line-height:1.6;margin-top:12px}.cfa-booking-band{display:flex;justify-content:space-between;align-items:center;gap:32px;padding:32px;border-radius:24px;background:var(--color-accent);margin-top:48px}.cfa-booking-band p{font-size:15px;line-height:1.6;max-width:590px}.cfa-booking-band strong{display:block;font-family:Montreal,Arial,sans-serif;font-size:26px;font-weight:500;letter-spacing:-.025em;margin-bottom:6px}.cfa-booking-band .button{min-height:50px;font-size:14px;white-space:normal}
.cfa-related{padding:0 0 90px}.cfa-related-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:36px}.cfa-related-card{display:flex;flex-direction:column;align-items:flex-start;background:var(--color-surface);border-radius:24px;padding:30px}.cfa-related-card>span{font-size:12px;color:var(--color-body);margin-bottom:20px}.cfa-related-card h3{font-size:30px;line-height:1.1;letter-spacing:-.03em;margin-bottom:26px}.cfa-related-card .button{margin-top:auto;min-height:48px;font-size:14px;white-space:normal}
body.cfa-overview .hero{height:clamp(450px,41vw,620px)}body.cfa-overview .hero h1{font-size:clamp(42px,4.6vw,68px)}body.cfa-overview .hero-copy>p{font-size:18px}body.cfa-overview .hero-note{flex-basis:260px}body.cfa-overview .hero-content{gap:32px}
@media(max-width:1000px){.cfa-intro{grid-template-columns:1fr 1fr;gap:32px}.cfa-intro h1{font-size:46px}.cfa-intro-image{min-height:460px}.cfa-practical-grid{gap:36px}.cfa-interest-grid{gap:16px}.cfa-interest-grid article{padding:24px}.cfa-interest-grid h3{font-size:24px}.cfa-booking-band{align-items:flex-start;flex-direction:column}}
@media(max-width:760px){.cfa-intro{grid-template-columns:1fr;padding:36px 0 48px}.cfa-intro h1{font-size:44px}.cfa-intro-image{min-height:320px}.cfa-local-nav{gap:24px;font-size:13px}.cfa-interest-grid,.cfa-practical-grid,.cfa-apply-grid,.cfa-related-grid{grid-template-columns:1fr}.cfa-topic,.cfa-apply{padding:60px 0}.cfa-practical{padding:54px 0}.cfa-related{padding-bottom:60px}.cfa-interest-grid .interest-number{margin-bottom:24px}.cfa-interest-grid article{padding:28px}.cfa-booking-band{padding:26px}.cfa-booking-band .button{width:100%}.cfa-related-card h3{font-size:28px}.cfa-intro-copy>p:not(.eyebrow){font-size:16px}.cfa-facts{padding:12px 24px}body.cfa-overview .hero{height:640px}body.cfa-overview .hero-note{flex-basis:auto}}
@media(max-width:380px){.cfa-intro h1{font-size:38px}.cfa-breadcrumb{font-size:11px}.cfa-actions .button{width:100%}}







