
/* ================================================================
   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; }

/* Photo themes preserve the original palette, typefaces and corner radii. */
.themes-section { padding-bottom:clamp(64px,8vw,120px); }
.themes-section .eyebrow,.why-section>.eyebrow { margin-bottom:24px; }
.theme-slider { margin-top:clamp(32px,5vw,72px); }
.theme-track { --visible:3; --gap:24px; display:grid; grid-auto-flow:column; grid-auto-columns:calc((100% - (var(--visible) - 1)*var(--gap))/var(--visible)); gap:var(--gap); overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; border-radius:calc(28 * var(--unit)); }
.theme-track::-webkit-scrollbar { display:none; }
.theme-photo-card { min-width:0; position:relative; isolation:isolate; overflow:hidden; border-radius:calc(28 * var(--unit)); min-height:clamp(470px,38vw,580px); display:flex; align-items:flex-end; background:var(--color-dark); color:var(--color-white); scroll-snap-align:start; }
.theme-photo-card>img { position:absolute; z-index:-2; inset:0; width:100%; height:100%; object-fit:cover; }
.theme-photo-card:after { content:""; position:absolute; z-index:-1; inset:0; background:linear-gradient(180deg,rgba(16,22,27,.04) 5%,rgba(16,22,27,.35) 32%,rgba(16,22,27,.94) 67%,var(--color-dark) 100%); }
.theme-card-copy { width:100%; padding:clamp(24px,2.2vw,34px); }
.theme-count { display:inline-block; margin-bottom:18px; padding:7px 11px; background:#ffffff20; border:1px solid #ffffff30; border-radius:var(--radius); font-size:13px; }
.theme-card-copy h3 { font-size:clamp(27px,2.2vw,35px); line-height:1.08; letter-spacing:-.035em; margin-bottom:14px; }
.theme-card-copy p { font-size:16px; line-height:1.5; color:var(--color-hero-body); min-height:0; }
.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; }
.theme-slider-footer { display:flex; justify-content:space-between; align-items:center; margin-top:24px; gap:20px; }
.theme-position { color:var(--color-body); font-size:14px; }
.theme-slider-controls { display:flex; gap:10px; }
.theme-slider-controls button { display:grid; place-items:center; width:48px; height:48px; border:1px solid var(--color-border); border-radius:var(--radius); background:var(--color-white); color:var(--color-ink); }
.theme-slider-controls button:hover:not(:disabled) { background:var(--color-surface); }
.theme-slider-controls button:disabled { opacity:.3; cursor:default; }
.theme-slider-controls svg { width:20px; height:20px; }
.theme-prev svg { transform:rotate(180deg); }
.why-section { padding-top:0; }
.why-section .challenge-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }
.why-section .challenge-card { min-width:0; }
@media(max-width:1100px) {
 .theme-track { --visible:2; }
 .why-section .challenge-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:600px) {
 .theme-track { --visible:1; --gap:16px; border-radius:22px; }
 .theme-photo-card { border-radius:22px; min-height:500px; }
 .theme-card-copy p { min-height:0; }
 .why-section .challenge-grid { grid-template-columns:1fr; }
 .why-section .challenge-card { padding:28px; min-height:260px; }
 .why-section .feature-icon { margin-bottom:36px; }
}


/* Refined interactions — same type, palette and rounded geometry. */
.theme-cta-reveal { display:grid; grid-template-rows:1fr; }
.theme-cta-inner { min-height:0; }
.theme-photo-card>img { transition:transform .65s cubic-bezier(.2,.7,.2,1); }
@media(min-width:1101px) and (hover:hover) and (pointer:fine) {
 .theme-cta-reveal { grid-template-rows:0fr; opacity:0; transition:grid-template-rows .4s cubic-bezier(.2,.7,.2,1),opacity .3s; }
 .theme-cta-inner { overflow:hidden; }
 .theme-photo-card:hover .theme-cta-reveal,.theme-photo-card:focus-within .theme-cta-reveal { grid-template-rows:1fr; opacity:1; }
 .theme-photo-card:hover>img,.theme-photo-card:focus-within>img { transform:scale(1.035); }
 .theme-photo-card:focus-within .theme-cta-inner { overflow:visible; }
}
.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); }
 .button-dark:hover { background:var(--color-hover); }
 .button-light:hover,.button-outline:hover { background:var(--color-accent); }
 button:not(:disabled):hover { box-shadow:0 4px 12px #10161b12; }
 .theme-next:hover:not(:disabled) svg { transform:translateX(3px); }
 .theme-prev:hover:not(:disabled) svg { transform:rotate(180deg) translateX(3px); }
 .theme-card-copy .button:hover { transform:none; }
 .benefit-trigger:hover { background:#ffffff80; box-shadow: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; }
.course-intro { color:var(--color-body); font-size:16px; line-height:1.5; margin-bottom:24px; max-width:470px; }
.benefits-grid { align-items:start; }
.benefit-photo { position:sticky; top:24px; height:clamp(440px,43vw,650px); }
.benefit-trigger { justify-content:flex-start; padding:22px 0; transition:background-color .25s; }
.course-count { margin-left:auto; font-family:Satoshi,Arial,sans-serif; font-size:12px; font-weight:400; letter-spacing:0; color:var(--color-body); padding:6px 9px; border-radius:8px; background:var(--color-white); white-space:nowrap; }
.benefit-content ul { list-style:none; counter-reset:course; padding:0; margin:0 0 20px; }
.benefit-content li { counter-increment:course; display:flex; align-items:baseline; gap:13px; border-bottom:1px solid var(--color-border); padding:11px 0; font-size:15px; line-height:1.45; }
.benefit-content li:before { content:counter(course,decimal-leading-zero); flex-shrink:0; color:var(--color-muted); font-size:11px; font-variant-numeric:tabular-nums; }
.benefit-content li+li { margin-top:0; }
.benefit-content>a { display:inline-flex; padding:10px 0; font-size:14px; text-decoration:underline; text-underline-offset:5px; transition:color .25s,transform .25s; }
.benefit-content>a:hover { color:var(--color-focus); transform:translateX(3px); }
@media(max-width:760px) {
 .benefit-photo { position:static; height:360px; }
 .benefit-trigger { font-size:20px; gap:8px; }
 .course-count { font-size:11px; padding:5px 7px; }
}
@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 explorer: a full-width, touch-friendly slide for each theme. */
.course-heading { display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom:36px; }
.course-heading h2 { margin-bottom:0; }
.course-heading>p { max-width:350px; color:var(--color-body); font-size:16px; line-height:1.6; }
.course-pickers { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.course-pickers button { display:flex; align-items:center; gap:14px; border:1px solid var(--color-border); border-radius:var(--radius); padding:13px 18px; font-size:14px; color:var(--color-body); background:transparent; }
.course-pickers button span { font-size:11px; opacity:.7; }
.course-pickers button[aria-pressed="true"] { background:var(--color-ink); color:var(--color-white); border-color:var(--color-ink); }
.course-track { display:grid; grid-auto-flow:column; grid-auto-columns:100%; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; border-radius:calc(28 * var(--unit)); }
.course-track::-webkit-scrollbar { display:none; }
.course-slide { display:grid; grid-template-columns:40% 60%; min-width:0; scroll-snap-align:start; scroll-snap-stop:always; overflow:hidden; border-radius:calc(28 * var(--unit)); background:var(--color-white); }
.course-visual { position:relative; min-height:520px; overflow:hidden; background:var(--color-dark); }
.course-visual img { position:absolute; width:100%; height:100%; object-fit:cover; }
.course-visual:after { content:""; position:absolute; inset:0; background:linear-gradient(transparent 55%,#10161ba6); }
.course-visual-label { position:absolute; z-index:1; bottom:28px; left:28px; right:28px; display:flex; justify-content:space-between; gap:12px; font-size:11px; letter-spacing:.12em; color:var(--color-white); }
.course-detail { min-width:0; padding:clamp(24px,3.4vw,52px); display:flex; flex-direction:column; align-items:flex-start; }
.course-detail-heading { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.course-detail h3 { font-size:clamp(28px,2.6vw,40px); letter-spacing:-.035em; line-height:1.1; }
.course-total { flex-shrink:0; background:var(--color-surface); color:var(--color-body); border-radius:8px; padding:7px 10px; font-size:12px; }
.course-detail ol { list-style:none; counter-reset:programme; margin:24px 0 28px; padding:0; width:100%; }
.course-detail li { counter-increment:programme; display:flex; gap:16px; align-items:baseline; padding:14px 0; border-bottom:1px solid var(--color-border); color:var(--color-body); font-size:16px; line-height:1.4; }
.course-detail li:before { content:counter(programme,decimal-leading-zero); color:var(--color-muted); font-size:11px; flex-shrink:0; }
.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; }
.course-navigation { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:24px; }
.course-status { font-size:14px; color:var(--color-body); }
@media(max-width:1100px) {
 .course-heading { display:block; }
 .course-heading>p { margin-top:22px; max-width:500px; }
 .course-slide { grid-template-columns:34% 66%; }
 .course-detail-heading { align-items:flex-start; flex-direction:column; gap:12px; }
}
@media(max-width:600px) {
 .course-pickers { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
 .course-pickers button { justify-content:space-between; padding:12px; font-size:12px; gap:6px; text-align:left; }
 .course-track,.course-slide { border-radius:22px; }
 .course-slide { grid-template-columns:1fr; grid-template-rows:170px 1fr; }
 .course-visual { min-height:170px; }
 .course-visual-label { bottom:20px; left:24px; right:24px; }
 .course-detail { padding:24px; }
 .course-detail-heading { gap:10px; }
 .course-detail li { font-size:15px; padding:12px 0; }
 .course-detail .button { width:100%; }
 .course-status { font-size:12px; }
}








