/* ==========================================================================
   wran.gl — shared design system

   Structure follows Odyssey's actual pattern: sections are inset rounded
   PANELS floating in white space (border-radius on the section itself,
   margin around it, per-section background override) rather than
   full-bleed bands or hairline-bordered boxes. Cards are filled surfaces,
   not outlines. Buttons are pills. Type is a fluid clamp() scale.

   Palette is wran.gl's own: navy + coral on white.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --navy:        #0C2D5E;
  --navy-dark:   #081E40;
  --navy-deep:   #051430;
  --coral:       #E8765A;
  --coral-dark:  #D45F42;
  --coral-soft:  #FBEDE8;
  --coral-line:  #F2D5C9;

  /* Ground — white base keeps the coral from reading as cream+terracotta */
  --paper:     #FFFFFF;
  --cream:     #F7F6F3;
  --line:      #E6E3DC;

  /* Text */
  --ink:        var(--navy);
  --text:       #38414F;
  --text-muted: #6B7486;

  /* Panel surfaces — the core of the aesthetic */
  --surface-1: var(--coral-soft);
  --surface-2: var(--cream);
  --surface-3: var(--navy);

  /* Type */
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: clamp(1rem, 0.15vw + 0.96rem, 1.0938rem);
  --fs-md:   clamp(1.1875rem, 0.45vw + 1.09rem, 1.4375rem);
  --fs-lg:   clamp(1.625rem, 1.1vw + 1.36rem, 2.25rem);
  --fs-xl:   clamp(2.125rem, 2.2vw + 1.6rem, 3.25rem);
  --fs-xxl:  clamp(2.75rem, 4vw + 1.75rem, 4.75rem);

  /* Geometry — Odyssey's generous radius, pill buttons */
  --radius-panel: clamp(1.25rem, 2.2vw, 2.25rem);
  --radius:       1.25rem;
  --radius-sm:    0.75rem;
  --radius-pill:  3rem;

  /* Rhythm */
  --section-y:  clamp(4rem, 6.5vw, 7rem);
  --panel-pad:  clamp(2.25rem, 4.5vw, 4.25rem);
  --gap:        1.25rem;
  --container: 100%;
  --container-narrow: min(1180px, 92vw);
  --container-pad: clamp(1rem, 4vw, 4rem);

  --lift:   0 2px 6px rgba(8,30,64,0.05), 0 24px 60px rgba(8,30,64,0.12);
  --lift-sm: 0 1px 3px rgba(8,30,64,0.05), 0 10px 26px rgba(8,30,64,0.08);
  --transition: 0.22s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.62;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
h1 { font-size: var(--fs-xxl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-md); }

p { max-width: 68ch; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 0.375rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--container-pad); }
.container-narrow { max-width: var(--container-narrow); }

/* --------------------------------------------------------------------------
   3. Sections as inset rounded panels
   -------------------------------------------------------------------------- */
section { padding-block: var(--section-y); }

/* A panelled section: the .container becomes a big rounded coloured block
   floating in white space, with air on every side. */
section.alt-bg,
section.cx,
section.contact-section {
  padding-block: 0;
  margin-block: var(--section-y);
  background: none;
}
section.alt-bg > .container,
section.cx > .container,
section.contact-section > .container {
  --panel-bg: var(--surface-1);
  background: var(--panel-bg);
  border-radius: var(--radius-panel);
  padding: var(--panel-pad);
  max-width: var(--container);
}
section.cx > .container { --panel-bg: var(--navy); }
section.contact-section > .container {
  --panel-bg: linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 100%);
}

/* Alternate panel tint so consecutive panels don't read as one block */
section.alt-bg.tint-cream > .container { --panel-bg: var(--cream); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 1.125rem;
}
.section-title { margin-bottom: 1rem; text-wrap: balance; }
.section-subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  max-width: 62ch;
  margin-bottom: 3.25rem;
  line-height: 1.5;
}
.section-head-center { text-align: center; }
.section-head-center .section-subtitle { margin-inline: auto; }

.lede { font-size: var(--fs-md); color: var(--text); line-height: 1.55; }
.muted { color: var(--text-muted); }

/* Inverted (navy panel) treatment */
.invert, .cx, .contact-section { color: #C2CEE2; }
.invert h1, .invert h2, .invert h3, .invert h4,
.cx h1, .cx h2, .cx h3, .cx h4,
.contact-section h2 { color: #FFFFFF; }
.cx .section-subtitle, .contact-section .section-subtitle { color: #A9B8D2; }
.cx .eyebrow, .contact-section .eyebrow { color: #F6C5B6; }

/* --------------------------------------------------------------------------
   4. Buttons — pills
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.9375rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn-primary { background: var(--navy); color: #FFFFFF; }
.btn-primary:hover { background: var(--navy-dark); }

.btn-accent { background: var(--coral); color: #FFFFFF; }
.btn-accent:hover { background: var(--coral-dark); }

.btn-outline { background: transparent; color: var(--navy); border-color: rgba(12,45,94,0.28); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #FFFFFF; }

.cx .btn-primary, .contact-section .btn-primary { background: var(--coral); }
.cx .btn-primary:hover, .contact-section .btn-primary:hover { background: var(--coral-dark); }
.cx .btn-outline, .contact-section .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,0.34); }
.cx .btn-outline:hover, .contact-section .btn-outline:hover { background: #FFFFFF; color: var(--navy); border-color: #FFFFFF; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.link-arrow { font-weight: 600; color: var(--coral-dark); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.link-arrow:hover { color: var(--navy); }

/* --------------------------------------------------------------------------
   5. Header / nav
   -------------------------------------------------------------------------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.875rem var(--container-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo img { height: 40px; display: block; }

nav ul { display: flex; align-items: center; gap: 1.125rem; }
nav a {
  font-size: var(--fs-xs);
  font-weight: 500;
  white-space: nowrap;
  color: var(--text);
  padding-block: 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
nav a:hover { color: var(--coral-dark); border-bottom-color: var(--coral); }
nav .nav-cta a {
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.125rem;
  font-weight: 600;
}
nav .nav-cta a:hover { background: var(--coral); color: #FFFFFF; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  font-size: 1.25rem;
  background: transparent; color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.menu-toggle:hover { background: var(--coral-soft); border-color: var(--coral-line); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(3rem, 5vw, 5rem) 0; overflow: hidden; }
.hero > .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .hero > .container { grid-template-columns: 1fr; } }
.hero-inner { max-width: none; }
.hero h1 { margin-bottom: 1.5rem; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--coral); }
.hero .lede { max-width: 54ch; margin-bottom: 2.25rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--coral-soft);
  border: 1px solid var(--coral-line);
  color: var(--coral-dark);
  border-radius: var(--radius-pill);
  padding: 0.4375rem 1.0625rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--coral);
  animation: pulse-dot 2.4s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(232,118,90,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(232,118,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,118,90,0); }
}

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm); color: var(--text-muted);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-proof svg { width: 15px; height: 15px; color: var(--coral); flex: none; }

/* Product shot */
.hero-shot { max-width: none; margin: 0; position: relative; }
@media (max-width: 900px) { .hero-shot { max-width: 640px; margin: 2.5rem auto 0; } }
.mock-window {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: var(--lift);
  overflow: hidden;
  animation: rise 0.85s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.mock-bar {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #DBD8D0; }
.mock-bar i:nth-child(1) { background: var(--coral); }
.mock-url {
  flex: 1; max-width: 260px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs); color: var(--text-muted);
  padding: 0.25rem 0.875rem; text-align: center;
}
.mock-body { display: grid; grid-template-columns: 195px 1fr; }
.mock-side { background: var(--navy-dark); padding-block: 1.125rem; }
.side-brand {
  font-family: var(--font-display); font-size: 1.0625rem; color: #FFFFFF;
  padding: 0 1.125rem 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 0.625rem;
}
.side-item {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.5625rem 1.125rem;
  font-size: var(--fs-xs); font-weight: 500; color: #8FA0BE;
}
.side-item i { width: 15px; height: 15px; border-radius: 0.3125rem; background: rgba(255,255,255,0.14); flex: none; }
.side-item.active { color: #FFFFFF; background: rgba(232,118,90,0.18); box-shadow: inset 3px 0 0 var(--coral); }
.side-item.active i { background: var(--coral); }

.mock-main { padding: 1.375rem 1.625rem 1.625rem; background: #FCFBF9; }
.mock-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.125rem; }
.mock-topline h5 { font-size: 1.1875rem; }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--coral); color: #FFFFFF;
  font-size: 0.6875rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.mock-stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.8125rem 1rem; }
.mock-stat .num { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); line-height: 1.1; }
.mock-stat .num.green { color: #1D9E75; }
.mock-stat .lbl { font-size: 0.6875rem; font-weight: 500; color: var(--text-muted); margin-top: 0.125rem; }

.mock-row { margin-bottom: 0.75rem; }
.mock-row .label { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 500; color: var(--text-muted); margin-bottom: 0.3125rem; }
.mock-track { height: 6px; background: #EFEDE8; border-radius: var(--radius-pill); overflow: hidden; }
.mock-fill {
  height: 100%; width: 0; border-radius: var(--radius-pill);
  background: var(--coral);
  animation: fill-bar 1.1s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
.mock-fill.green { background: #1D9E75; }
.mock-rows .mock-row:nth-child(2) .mock-fill { animation-delay: 0.65s; }
.mock-rows .mock-row:nth-child(3) .mock-fill { animation-delay: 0.8s; }
.mock-rows .mock-row:nth-child(4) .mock-fill { animation-delay: 0.95s; }
@keyframes fill-bar { to { width: var(--w); } }

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 0.625rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  font-size: var(--fs-xs); font-weight: 600; color: var(--navy);
  box-shadow: var(--lift-sm);
  animation: chip-float 5s ease-in-out infinite;
}
.float-chip small { display: block; font-weight: 400; color: var(--text-muted); }
.float-chip .chip-icon { width: 30px; height: 30px; flex: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.float-chip svg { width: 15px; height: 15px; }
.chip-cert { top: -16px; right: -8px; animation-delay: 0.2s; }
.chip-cert .chip-icon { background: #E2F4EC; color: #1D9E75; }
.chip-stat { bottom: -16px; left: -10px; animation-delay: 1.6s; }
.chip-stat .chip-icon { background: var(--coral-soft); color: var(--coral-dark); }
@keyframes chip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* --------------------------------------------------------------------------
   7. Statement panel
   -------------------------------------------------------------------------- */
.trust-bar { padding-block: 0; margin-block: var(--section-y); }
.trust-bar > .container {
  background: linear-gradient(122deg, var(--coral) 0%, var(--coral-dark) 100%);
  border-radius: var(--radius-panel);
  padding: var(--panel-pad);
  color: #FFFFFF;
}
.trust-bar p {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: 1.15;
  max-width: 26ch;
  color: #FFFFFF;
  text-wrap: balance;
}
.trust-bar .attrib {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: #FFFFFF;
  margin-top: 0.5rem;
  max-width: 26ch;
  line-height: 1.15;
}

/* --------------------------------------------------------------------------
   8. Cards — filled surfaces, no outlines
   -------------------------------------------------------------------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: var(--gap); }
#portal-variations .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { #portal-variations .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { #portal-variations .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--lift-sm); }
.card h3 { font-size: var(--fs-md); margin-bottom: 0.625rem; }
.card p { font-size: var(--fs-sm); color: var(--text-muted); }

/* Inside a coral panel, cards go white so they read as objects on the panel */
section.alt-bg > .container .card { background: var(--paper); }
section.alt-bg.tint-cream > .container .card { background: var(--paper); }

.card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral-soft); color: var(--coral-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 21px; height: 21px; }

.card-link { display: block; overflow: hidden; padding: 0; }
.card-link img { width: 100%; height: 180px; object-fit: cover; display: block; background: var(--coral-soft); }
.card-link .card-body { padding: 1.5rem 1.75rem; }

/* --------------------------------------------------------------------------
   9. Business lines & verticals
   -------------------------------------------------------------------------- */
.lines { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: var(--gap); }
.line-card {
  background: var(--cream);
  border-radius: var(--radius-panel);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}
.line-card.is-lead {
  background: linear-gradient(162deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #C2CEE2;
}
.line-card.is-lead h3 { color: #FFFFFF; }
.line-card.is-lead .line-kicker { color: #F6C5B6; }
.line-card.is-lead p { color: #A9B8D2; }
.line-kicker {
  display: block;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 0.75rem;
}
.line-card h3 { font-size: var(--fs-lg); margin-bottom: 0.875rem; }
.line-card p { font-size: var(--fs-sm); margin-bottom: 1.75rem; }

.cluster { margin-top: 3rem; }
.cluster-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.875rem; margin-bottom: 0.625rem; }
.cluster-head h3 { font-size: var(--fs-lg); }
.cluster-head .cluster-count {
  font-family: var(--font-body);
  font-size: var(--fs-xs); font-weight: 600;
  color: #FFFFFF; background: var(--coral);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.8125rem;
}
.cluster > p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 1.5rem; }
.vert-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vert-list li {
  font-size: var(--fs-sm); color: var(--text);
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.125rem;
  transition: background var(--transition), color var(--transition);
}
.vert-list li:hover { background: var(--coral-soft); color: var(--coral-dark); }
.vert-list li.is-current { background: var(--navy); color: #FFFFFF; font-weight: 600; }

/* Two primary clusters as side-by-side cards */
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 2.5rem;
  align-items: start;
}
@media (max-width: 860px) { .cluster-grid { grid-template-columns: 1fr; } }
.cluster-grid .cluster {
  margin-top: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--lift-sm);
}

/* --------------------------------------------------------------------------
   10. Seat types
   -------------------------------------------------------------------------- */
.seat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--gap); }
.seat-card { background: var(--paper); border-radius: var(--radius-panel); padding: clamp(1.75rem, 3vw, 2.5rem); }
.seat-card h3 { font-size: var(--fs-md); margin-bottom: 0.375rem; }
.seat-card .seat-note { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 1.5rem; }
.seat-group { margin-bottom: 1.25rem; }
.seat-group h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 0.625rem;
}
.seat-roles { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.seat-roles li {
  font-size: var(--fs-xs); color: var(--text);
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 0.375rem 0.875rem;
}

/* --------------------------------------------------------------------------
   10b. Module lists (English Communication track)
   -------------------------------------------------------------------------- */
.mod-card { background: var(--paper); border-radius: var(--radius); padding: 1.625rem 1.5rem; }
.mod-card h3 { font-size: var(--fs-md); margin-bottom: 0.25rem; }
.mod-card .mod-count {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 1rem;
}
.mod-list li {
  font-size: var(--fs-sm); color: var(--text-muted);
  padding: 0.4375rem 0 0.4375rem 1.125rem;
  position: relative;
}
.mod-list li::before {
  content: ""; position: absolute; left: 0; top: 0.9375rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--coral);
}
.wedge-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); margin-top: 2.5rem; }
.wedge-feat { background: var(--coral-soft); border-radius: var(--radius); padding: 1.5rem 1.625rem; }
.wedge-feat h4 { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 400; color: var(--navy); margin-bottom: 0.5rem; }
.wedge-feat p { font-size: var(--fs-sm); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   10c. Jurisdiction columns — requirement first, then the solve
   -------------------------------------------------------------------------- */
.jur-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); margin-top: 2.5rem; }
@media (max-width: 860px) { .jur-cols { grid-template-columns: 1fr; } }
.jur-col { background: var(--cream); border-radius: var(--radius); padding: 1.625rem 1.5rem; }
section.alt-bg > .container .jur-col { background: var(--paper); }
.jur-flag {
  display: block;
  width: 40px; height: 28px;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 1px rgba(12,45,94,0.14);
}
.jur-col h4 { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 400; color: var(--navy); margin-bottom: 0.1875rem; }
.jur-law {
  display: block;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 0.875rem;
}
.jur-col p { font-size: var(--fs-sm); color: var(--text-muted); }
.req-type {
  display: inline-block;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.1875rem 0.625rem;
  margin-bottom: 0.625rem;
}
.req-type.reg { background: var(--navy); color: #FFFFFF; }
.req-type.bp { background: var(--coral-soft); color: var(--coral-dark); }
.stack-layer.lvl-3 .req-type.bp { background: rgba(255,255,255,0.2); color: #FFFFFF; }
.jur-col p + p { margin-top: 0.75rem; }

.jur-solve {
  background: linear-gradient(162deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-panel);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: var(--gap);
  color: #C2CEE2;
}
.jur-solve h3 { color: #FFFFFF; font-size: var(--fs-lg); margin-bottom: 0.75rem; }
.jur-solve > p { color: #A9B8D2; font-size: var(--fs-sm); max-width: 74ch; }
.jur-solve .solve-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 1.75rem; }
.jur-solve .solve-list h4 { font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600; color: #FFFFFF; margin-bottom: 0.3125rem; }
.jur-solve .solve-list p { font-size: var(--fs-sm); color: #A9B8D2; }
.jur-solve .disclaimer { margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   10d. Jurisdiction switcher + region pages
   -------------------------------------------------------------------------- */
.hero-jur { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 2.25rem; }
.hero-jur-link {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.125rem 0.5rem 0.5rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--navy);
  transition: background var(--transition), transform var(--transition);
}
.hero-jur-link:hover { background: var(--coral-soft); transform: translateY(-2px); }
.hero-jur-link .jur-flag { width: 30px; height: 21px; margin: 0; border-radius: 0.1875rem; }
.hero-jur-lead {
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); width: 100%; margin-bottom: 0.25rem;
}

.region-head { display: flex; align-items: center; gap: 1.125rem; margin-bottom: 1.5rem; }
.region-head .jur-flag { width: 64px; height: 45px; margin: 0; border-radius: 0.375rem; }
.region-head .region-kicker {
  display: block;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-dark);
}
.region-head h1 { font-size: var(--fs-xl); }

.req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--gap); }
.req-item { background: var(--paper); border-radius: var(--radius); padding: 1.625rem 1.5rem; display: flex; flex-direction: column; }
section:not(.alt-bg) > .container .req-item { background: var(--cream); }
.req-item h3 { font-size: var(--fs-md); margin-bottom: 0.25rem; }
.req-basis {
  display: block;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 0.875rem;
}
.req-item > p { font-size: var(--fs-sm); color: var(--text-muted); flex: 1; }
.req-who {
  margin-top: 1.125rem; padding-top: 0.875rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--text-muted);
}
.req-who strong { color: var(--navy); font-weight: 600; }

.region-switch { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 2rem; }
.region-switch a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.125rem 0.5rem 0.5rem;
  font-size: var(--fs-sm); font-weight: 600; color: #FFFFFF;
}
.region-switch a:hover { background: rgba(255,255,255,0.2); }
.region-switch .jur-flag { width: 28px; height: 20px; margin: 0; border-radius: 0.1875rem; }

/* --------------------------------------------------------------------------
   10e. Requirement finder — region > sub-region > industry
   -------------------------------------------------------------------------- */
.wf-step { margin-bottom: 2.5rem; }
.wf-step[hidden] { display: none; }
.wf-label {
  display: block;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 0.875rem;
}
.wf-label .wf-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--coral); color: #FFFFFF;
  font-size: 0.6875rem; margin-right: 0.5rem;
}

.wf-choices { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.wf-choice {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600;
  color: var(--navy); background: var(--cream);
  border: 2px solid transparent; border-radius: var(--radius-pill);
  padding: 0.5625rem 1.25rem; cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.wf-choice .jur-flag { width: 26px; height: 18px; margin: 0; border-radius: 0.1875rem; }
.wf-choice:hover { background: var(--coral-soft); }
.wf-choice[aria-pressed="true"] { background: var(--navy); color: #FFFFFF; border-color: var(--navy); }

/* US tile grid */
.state-grid {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 0.25rem;
  max-width: 640px;
}
.state-tile {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
  color: var(--text-muted); background: var(--cream);
  border: 2px solid transparent; border-radius: 0.375rem;
  cursor: pointer; padding: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.state-tile:hover { transform: scale(1.12); z-index: 2; }
.state-tile[data-depth="1"] { background: #F6CFC2; color: #A8462C; }
.state-tile[data-depth="2"] { background: var(--coral); color: #FFFFFF; }
.state-tile[aria-pressed="true"] { border-color: var(--navy); color: var(--navy); background: #FFFFFF; }
.state-tile.is-blank { visibility: hidden; pointer-events: none; }

.wf-legend { display: flex; flex-wrap: wrap; gap: 1.125rem; margin-top: 1.125rem; font-size: var(--fs-xs); color: var(--text-muted); }
.wf-legend span { display: inline-flex; align-items: center; gap: 0.4375rem; }
.wf-key { width: 13px; height: 13px; border-radius: 0.25rem; background: var(--cream); flex: none; }
.wf-key.k1 { background: #F6CFC2; }
.wf-key.k2 { background: var(--coral); }

/* Homepage jurisdiction maps showcase */
.maps-showcase { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: flex-start; justify-content: center; margin-top: 2.5rem; }
.map-col { display: flex; flex-direction: column; gap: 0.875rem; }
.map-cap { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.map-cap .jur-flag { width: 26px; height: 18px; border-radius: 0.15rem; }
a.state-tile { text-decoration: none; }

/* Result stack */
.wf-result { margin-top: 1rem; }
.wf-empty { font-size: var(--fs-sm); color: var(--text-muted); }
.stack-layer { border-radius: var(--radius); padding: 1.5rem 1.625rem; margin-bottom: 0.75rem; background: var(--paper); }
.stack-layer.lvl-1 { background: var(--paper); }
.stack-layer.lvl-2 { background: var(--coral-soft); }
.stack-layer.lvl-3 { background: linear-gradient(162deg, var(--navy) 0%, var(--navy-deep) 100%); color: #C2CEE2; }
.stack-layer.lvl-3 h3, .stack-layer.lvl-3 .stack-kicker { color: #FFFFFF; }
.stack-layer.lvl-3 .stack-kicker { color: #F6C5B6; }
.stack-layer.lvl-3 li { color: #C2CEE2; border-bottom-color: rgba(255,255,255,0.14); }
.stack-layer.lvl-3 li strong { color: #FFFFFF; }
/* Appointments — a bordered cream panel so named roles read as a different kind
   of obligation from the requirement layers above. */
.stack-layer.lvl-4 { background: var(--cream); border: 1px solid var(--coral); }
.stack-layer.lvl-4 .stack-kicker { color: var(--coral-dark); }
.stack-kicker {
  display: block; font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 0.3125rem;
}
.stack-layer h3 { font-size: var(--fs-md); margin-bottom: 1.25rem; }

/* Results render as a card grid — roughly quarter-width on desktop —
   so a long requirement set scans horizontally instead of as one column. */
.stack-layer ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.75rem;
  align-items: start;
}
/* Sparse layers get wider cards — a lone requirement at fifth-width reads as
   a narrow ribbon of text. Three or more fall back to the dense grid. */
.stack-layer ul[data-n="1"] { grid-template-columns: minmax(0, 1fr); max-width: 46%; }
.stack-layer ul[data-n="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 72%; }
.stack-layer ul li {
  font-size: var(--fs-sm); color: var(--text-muted);
  background: rgba(255,255,255,0.72);
  border-radius: var(--radius-sm);
  padding: 1.125rem 1.125rem 1.25rem;
  border-bottom: none;
}
.stack-layer.lvl-1 ul li { background: var(--cream); }
.stack-layer.lvl-3 ul li { background: rgba(255,255,255,0.09); }
.stack-layer.lvl-4 ul li { background: var(--paper); }
.stack-layer ul li strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 0.3125rem; line-height: 1.3; }
.stack-layer ul li .req-type { margin-bottom: 0.5rem; }
.stack-count {
  display: inline-block; font-family: var(--font-body);
  font-size: var(--fs-xs); font-weight: 600;
  background: rgba(12,45,94,0.09); color: var(--navy);
  border-radius: var(--radius-pill); padding: 0.1875rem 0.6875rem; margin-left: 0.5rem;
}
.stack-layer.lvl-3 .stack-count { background: rgba(255,255,255,0.18); color: #FFFFFF; }

@media (max-width: 860px) {
  .stack-layer ul[data-n="1"], .stack-layer ul[data-n="2"] { max-width: none; }
  .stack-layer ul[data-n="2"] { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .state-grid { gap: 0.1875rem; }
  .state-tile { font-size: 0.5625rem; border-radius: 0.25rem; }
}

/* --------------------------------------------------------------------------
   10f. Plan builder — headcount by function, no figures
   -------------------------------------------------------------------------- */
.cfg-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--gap); align-items: start; }
.cfg-group { margin-bottom: 2rem; }
.cfg-group h3 {
  font-family: var(--font-body);
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 0.875rem;
}
.cfg-role {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem 0.875rem 1.125rem;
  margin-bottom: 0.5rem;
}
.cfg-role-name { font-size: var(--fs-sm); font-weight: 600; color: var(--navy); }
.cfg-role-meta { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 0.125rem; }
.cfg-stepper { display: flex; align-items: center; gap: 0.375rem; flex: none; }
.cfg-step {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-family: var(--font-body);
  color: var(--navy); background: var(--cream);
  border: none; border-radius: 50%; cursor: pointer;
}
.cfg-step:hover { background: var(--coral-soft); color: var(--coral-dark); }
.cfg-qty {
  width: 52px; text-align: center;
  padding: 0.375rem 0.25rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--navy);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  -moz-appearance: textfield;
}
.cfg-qty::-webkit-outer-spin-button, .cfg-qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cfg-summary {
  position: sticky; top: 90px;
  background: linear-gradient(162deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-panel);
  padding: 1.75rem;
  color: #C2CEE2;
}
.cfg-summary h3 { color: #FFFFFF; font-size: var(--fs-md); margin-bottom: 1.125rem; }
.cfg-lines { margin-bottom: 1.125rem; }
.cfg-lines li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: var(--fs-sm); color: #C2CEE2;
  padding: 0.4375rem 0; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cfg-lines li:last-child { border-bottom: none; }
.cfg-empty { color: #8FA0BE; font-size: var(--fs-sm); }
.cfg-tier {
  display: flex; justify-content: space-between;
  font-size: var(--fs-sm); color: #FFFFFF; font-weight: 600;
  padding: 0.5rem 0; border-top: 1px solid rgba(255,255,255,0.2);
}
.cfg-tier span:last-child { color: #F6C5B6; }
.cfg-total-note { font-size: var(--fs-xs); color: #8FA0BE; margin: 1rem 0 1.25rem; line-height: 1.5; }
.cfg-summary .btn { width: 100%; margin-bottom: 0.5rem; }

@media (max-width: 860px) {
  .cfg-grid { grid-template-columns: 1fr; }
  .cfg-summary { position: static; }
}

/* --------------------------------------------------------------------------
   10g. Course library (courses.html)
   -------------------------------------------------------------------------- */
.jur-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.jur {
  display: inline-flex; align-items: center; gap: 0.4375rem;
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 0.4375rem 0.9375rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--navy);
}
.jur svg { width: 14px; height: 14px; color: var(--coral); flex: none; }
.lib-meta-line { color: var(--text-muted); font-size: var(--fs-sm); font-weight: 500; margin-top: 1.25rem; }

.course-card { display: flex; flex-direction: column; }
.course-tag {
  display: inline-flex; align-items: center; gap: 0.375rem; align-self: flex-start;
  background: var(--coral-soft); color: var(--coral-dark);
  border-radius: var(--radius-pill); padding: 0.3125rem 0.75rem;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.02em; margin-bottom: 1rem;
}
.course-tag svg { width: 14px; height: 14px; }
.course-tag.is-reg { background: var(--navy); color: #FFFFFF; }
.course-card h3 { font-size: var(--fs-md); margin-bottom: 0.25rem; }
.course-card .audience { color: var(--text-muted); font-size: var(--fs-xs); font-weight: 600; margin: 0 0 0.625rem; }
.course-card > p { flex: 1; font-size: var(--fs-sm); color: var(--text-muted); }
.std-chips { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 1rem; }
.std-chip {
  font-size: var(--fs-xs); font-weight: 600; color: var(--navy);
  background: var(--cream); border-radius: var(--radius-pill);
  padding: 0.25rem 0.625rem;
}
section.alt-bg > .container .std-chip { background: var(--paper); }
.course-meta {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-top: 1.125rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs); font-weight: 500; color: var(--text-muted);
}
.course-meta span { display: inline-flex; align-items: center; gap: 0.375rem; }
.course-meta svg { width: 14px; height: 14px; color: var(--coral); flex: none; }

/* --------------------------------------------------------------------------
   10h. Training paths (paths.html)
   -------------------------------------------------------------------------- */
.lp-legend { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; font-size: var(--fs-sm); color: var(--text-muted); }
.lp-legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.lp-dot, .lp-legend i { width: 9px; height: 9px; border-radius: 50%; flex: none; display: inline-block; }
.dot-safeguarding { background: var(--coral); }
.dot-business { background: var(--navy); }
.dot-coaching { background: #1D9E75; }
.dot-safety { background: #C99A2E; }
.dot-athlete { background: #6B5CA5; }
.dot-hospitality { background: var(--coral-dark); }

.lp-region-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.875rem; margin-bottom: 1.75rem; }
.lp-region-head h2 { font-size: var(--fs-lg); }
.lp-phase {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral-dark); background: var(--coral-soft);
  border-radius: var(--radius-pill); padding: 0.1875rem 0.75rem;
}
.lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--gap); }
.lp-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-panel);
  padding: 1.75rem;
}
section.alt-bg > .container .lp-card { background: var(--paper); }
.lp-head { margin-bottom: 1.125rem; }
.lp-role { font-family: var(--font-display); font-size: var(--fs-md); color: var(--navy); margin-bottom: 0.5rem; }
.lp-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.lp-jur, .lp-status {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: var(--fs-xs); font-weight: 600;
  border-radius: var(--radius-pill); padding: 0.25rem 0.6875rem;
}
.lp-jur { background: var(--cream); color: var(--navy); }
.lp-jur svg { width: 12px; height: 12px; color: var(--coral); flex: none; }
.lp-status { background: var(--accent-soft, #E5EBE4); color: #1D7A57; }

.lp-modules { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.125rem; }
.lp-mod { display: flex; align-items: center; gap: 0.75rem; background: var(--cream); border-radius: var(--radius-sm); padding: 0.625rem 0.875rem; }
.lp-idx { width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--navy); color: #FFFFFF; font-size: 0.6875rem; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.lp-mod-main { flex: 1; min-width: 0; }
.lp-mod-title { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); font-weight: 600; color: var(--navy); }
.lp-mod-meta { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 0.125rem; }
.lp-insert { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55; padding-top: 0.25rem; }
.lp-insert b { color: var(--navy); font-weight: 600; }
.lp-foot { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.125rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: var(--fs-xs); font-weight: 600; color: var(--text-muted); }
.lp-foot span { display: inline-flex; align-items: center; gap: 0.375rem; }
.lp-foot svg { width: 14px; height: 14px; color: var(--coral); flex: none; }

/* --------------------------------------------------------------------------
   11. Disclaimer
   -------------------------------------------------------------------------- */
.disclaimer {
  border-left: 3px solid var(--coral);
  padding: 0.375rem 0 0.375rem 1.125rem;
  margin-top: 2.25rem;
  font-size: var(--fs-xs); line-height: 1.6;
  color: var(--text-muted);
  max-width: 74ch;
}
.disclaimer strong { color: var(--navy); font-weight: 600; }
.cx .disclaimer, .invert .disclaimer, .jur-solve .disclaimer { color: #A9B8D2; border-left-color: var(--coral); }
.cx .disclaimer strong, .invert .disclaimer strong, .jur-solve .disclaimer strong { color: #FFFFFF; }

/* --------------------------------------------------------------------------
   12. Feature rows, segments, steps
   -------------------------------------------------------------------------- */
.platform-text { font-size: var(--fs-base); color: var(--text); max-width: 70ch; margin-bottom: 2.5rem; }

.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }
.feature-row div {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  line-height: 1.15;
  color: var(--navy);
  background: var(--coral-soft);
  border-radius: var(--radius);
  padding: 1.625rem 1.5rem;
}

.segment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); margin-top: 2rem; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap); margin-top: 3.5rem; }
.step { background: var(--cream); border-radius: var(--radius); padding: 1.75rem 1.5rem; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #FFFFFF;
  font-family: var(--font-display); font-size: 1.375rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
}
.step h4 { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 400; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: var(--fs-sm); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   13. Pricing — no numbers surfaced
   -------------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); align-items: stretch; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-panel);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.price-card.featured {
  background: linear-gradient(168deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #A9B8D2;
}
.price-card.featured h3, .price-card.featured .price-amount { color: #FFFFFF; }
.price-card.featured .price-period { color: #F6C5B6; }
.price-card.featured ul li { color: #C2CEE2; border-bottom-color: rgba(255,255,255,0.14); }

.price-card h3 { font-size: var(--fs-md); margin-bottom: 1.25rem; }
.price-amount { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--navy); line-height: 1.1; }
.price-period { font-size: var(--fs-xs); color: var(--coral-dark); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.75rem; }
.price-card ul { margin-bottom: 2rem; flex: 1; }
.price-card ul li {
  position: relative;
  font-size: var(--fs-sm); color: var(--text-muted);
  padding: 0.6875rem 0 0.6875rem 1.625rem;
  border-bottom: 1px solid var(--line);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 1rem;
  width: 14px; height: 14px;
  background-color: var(--coral);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
}
.price-card .btn { width: 100%; }

.pricing-note {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  font-size: var(--fs-sm); color: var(--text-muted);
}
.pricing-note strong { color: var(--navy); font-weight: 600; }

/* --------------------------------------------------------------------------
   14. About / FAQ
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); margin-top: 2.5rem; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }

.faq-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); align-items: start; }
@media (max-width: 860px) { .faq-list { grid-template-columns: 1fr; } }
.faq-item {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 0.75rem;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--lift-sm); }
.faq-item h4 { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 400; color: var(--navy); margin-bottom: 0.5rem; }
.faq-item p { font-size: var(--fs-sm); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   15. Contact / form / footer
   -------------------------------------------------------------------------- */
form { max-width: 560px; display: grid; gap: 0.875rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
input, textarea, select {
  width: 100%;
  padding: 0.9375rem 1.125rem;
  font-family: inherit; font-size: var(--fs-sm);
  color: var(--text);
  background: rgba(255,255,255,0.96);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input::placeholder, textarea::placeholder { color: #9AA1AF; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,118,90,0.32); }
textarea { min-height: 130px; resize: vertical; }
form .btn { justify-self: start; border: none; }

footer { background: var(--navy-deep); color: #8FA0BE; padding-block: 3rem; font-size: var(--fs-sm); }
footer a { color: #C2CEE2; }
footer a:hover { color: var(--coral); }
.footer-wrap { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: flex-start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-legal { max-width: 64ch; font-size: var(--fs-xs); color: #6E7E9B; margin-top: 1.75rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   16. Course showcase (navy panel)
   -------------------------------------------------------------------------- */
.cx { overflow: hidden; }
.cx-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #F6C5B6; margin-bottom: 1.125rem;
}
.cx-sub { font-size: var(--fs-md); color: #A9B8D2; max-width: 60ch; margin-bottom: 0; line-height: 1.5; }

.cx-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--gap); margin-top: 3rem; }
.cx-stat { background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 1.375rem 1.25rem; }
.cx-stat .n { font-family: var(--font-display); font-size: clamp(2.25rem, 3vw, 3rem); color: #FFFFFF; line-height: 1; }
.cx-stat .l { font-size: var(--fs-xs); color: #8FA0BE; margin-top: 0.5rem; }

.cx-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 3rem 0 1.75rem; }
.cx-tab {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  color: #C2CEE2;
  background: rgba(255,255,255,0.07);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.6875rem 1.1875rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cx-tab svg { width: 15px; height: 15px; }
.cx-tab .cx-count { font-size: 0.6875rem; color: #F6C5B6; }
.cx-tab:hover { color: #FFFFFF; background: rgba(255,255,255,0.13); }
.cx-tab.active { background: linear-gradient(122deg, var(--coral) 0%, var(--coral-dark) 100%); color: #FFFFFF; }
.cx-tab.active .cx-count { color: rgba(255,255,255,0.85); }

.cx-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--gap); }
.cx-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.625rem 1.5rem;
  opacity: 0; transform: translateY(14px);
  transition: background var(--transition), transform var(--transition);
}
.cx-panel.in .cx-card { animation: cx-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.cx-panel.in .cx-card:nth-child(1) { animation-delay: .04s; }
.cx-panel.in .cx-card:nth-child(2) { animation-delay: .1s; }
.cx-panel.in .cx-card:nth-child(3) { animation-delay: .16s; }
.cx-panel.in .cx-card:nth-child(4) { animation-delay: .22s; }
.cx-panel.in .cx-card:nth-child(5) { animation-delay: .28s; }
.cx-panel.in .cx-card:nth-child(6) { animation-delay: .34s; }
@keyframes cx-in { to { opacity: 1; transform: none; } }
.cx-card:hover { background: rgba(232,118,90,0.16); }
.cx-card .cx-num { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; color: var(--coral); }
.cx-card h4 { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 400; color: #FFFFFF; margin: 0.5rem 0; line-height: 1.12; }
.cx-card > p { font-size: var(--fs-sm); color: #8FA0BE; }
.cx-meta {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-top: 1.125rem; padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: var(--fs-xs); color: #8FA0BE;
}
.cx-meta span { display: inline-flex; align-items: center; gap: 0.375rem; }
.cx-meta svg { width: 13px; height: 13px; color: var(--coral); flex: none; }

/* Mask lives on the marquee only — the label sits outside it so the
   edge fade doesn't clip the text. */
.cx-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  overflow: hidden;
}
.cx-mlabel { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #8FA0BE; margin-top: 3.5rem; margin-bottom: 1.125rem; }
.cx-track { display: flex; gap: 0.625rem; width: max-content; animation: cx-scroll 34s linear infinite; }
.cx-marquee:hover .cx-track { animation-play-state: paused; }
.cx-chip {
  white-space: nowrap; font-size: var(--fs-xs); color: #C2CEE2;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.0625rem;
}
@keyframes cx-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cx-cta { margin-top: 3rem; }

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .mock-body { grid-template-columns: 158px 1fr; }
  .chip-cert { top: -12px; right: 0; }
  .chip-stat { bottom: -12px; left: 0; }
}

@media (max-width: 1080px) {
  nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  nav.open { max-height: 34rem; }
  nav ul { flex-direction: column; align-items: stretch; gap: 0; padding-block: 0.5rem; }
  nav ul li a { display: block; padding: 0.875rem var(--container-pad); font-size: var(--fs-base); border-bottom: 1px solid var(--cream); }
  nav .nav-cta a { border-radius: 0; background: none; color: var(--coral-dark); }
  nav .nav-cta a:hover { background: var(--coral-soft); color: var(--coral-dark); }
  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  :root { --container-pad: 1.125rem; --panel-pad: 1.5rem; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-stats { grid-template-columns: 1fr; }
  .float-chip { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .mock-fill { width: var(--w); }
  .cx-panel .cx-card { opacity: 1; transform: none; }
}

/* logo aspect fix */
.logo img{width:auto!important}
