/* ==========================================================================
   Strive4 — Design System
   Hand-built, no framework. Organised: tokens → base → layout → components.

   Brand colour is taken from the Strive4 Keynote template:
     #9772B8  the purple header band
     #E3DAEB  the lavender content-box fill
   --purple-dk is a darkened brand purple used wherever text sits on white,
   because #9772B8 on white is only 3.9:1 — fine for large type and buttons,
   short of AA for body text. Contrast ratios are noted against each token.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --purple:      #9772B8;   /* brand purple; 4.6:1 with --ink on top  */
  --purple-lt:   #B79AD1;   /* 7.2:1 on --aubergine-dk                */
  --purple-soft: #E3DAEB;   /* brand lavender panel fill              */
  --purple-dk:   #6A4790;   /* 7.2:1 on white — links, eyebrows       */

  --aubergine:     #241833;
  --aubergine-dk:  #1E1428;
  --aubergine-dpr: #150E1C;

  --coral: #D2563A;

  /* Neutrals — warmed very slightly toward the purple */
  --ink:    #17131C;
  --ink-2:  #443C4D;
  --ink-3:  #736B7C;
  --paper:  #FCFBFD;
  --mist:   #F2EFF5;
  --mist-2: #E4DEEA;
  --white:  #FFFFFF;

  /* Derived */
  --line:        color-mix(in srgb, var(--ink) 12%, transparent);
  --line-strong: color-mix(in srgb, var(--ink) 22%, transparent);
  --line-light:  rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Outfit", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.13vw, 0.89rem);
  --step-0:  clamp(1rem, 0.96rem + 0.19vw, 1.11rem);
  --step-1:  clamp(1.19rem, 1.11rem + 0.36vw, 1.42rem);
  --step-2:  clamp(1.41rem, 1.28rem + 0.63vw, 1.8rem);
  --step-3:  clamp(1.67rem, 1.46rem + 1.03vw, 2.29rem);
  --step-4:  clamp(1.98rem, 1.66rem + 1.6vw, 2.91rem);
  --step-5:  clamp(2.35rem, 1.87rem + 2.42vw, 3.7rem);
  --step-6:  clamp(2.7rem, 2.05rem + 3.25vw, 4.4rem);

  /* Space */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.5rem;   --sp-6: 2rem;
  --sp-7: 3rem;     --sp-8: 4rem;     --sp-9: 6rem;
  --section: clamp(3.5rem, 8vw, 7.5rem);

  /* Shape */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(30, 20, 40, 0.06), 0 4px 12px rgba(30, 20, 40, 0.05);
  --shadow-md: 0 2px 6px rgba(30, 20, 40, 0.07), 0 14px 34px rgba(30, 20, 40, 0.09);
  --shadow-lg: 0 4px 12px rgba(30, 20, 40, 0.08), 0 28px 64px rgba(30, 20, 40, 0.14);

  --wrap: 1200px;
  --wrap-narrow: 760px;
  --ease: cubic-bezier(0.4, 0.06, 0.15, 1);
  --ease-out: cubic-bezier(0.16, 0.84, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 0.45em;
  text-wrap: balance;
}

h1 { font-size: var(--step-6); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.2; }
h4 { font-size: var(--step-1); line-height: 1.28; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }

img, picture, svg, video { max-width: 100%; display: block; }
img { height: auto; background: var(--mist); }

/* Prose lists. The bottom margin here is for running text only — component
   lists (nav, footer, cards, checklists) must reset it. In a flex row with
   `align-items: center` the browser centres each item's MARGIN box, so an
   item carrying a bottom margin has its text pulled up by half of it while
   `li:last-child` (margin 0) sits at the true centre — which reads as the
   last item being misaligned. See the reset in section 3. */
ul, ol { margin: 0 0 1.15em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }
li:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-7) 0; }

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--aubergine); color: #fff; padding: 0.8rem 1.2rem;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.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;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
/* Component lists opt out of the prose `li` margin. Every list that sets
   `list-style: none` is laid out by flex/grid gap instead, so an inherited
   margin only ever misaligns or double-spaces it. Keep new component lists
   in this selector. */
.nav-links li,
.nav-drawer nav ul li,
.site-footer ul li,
.breadcrumb li,
.hero-badges li,
.contact-list li,
.checklist li,
.crosslist li,
.modules li,
.steps li { margin-bottom: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--section); }
.section-sm { padding-block: clamp(2.5rem, 5.5vw, 4.5rem); }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 620px)  { .g-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .g-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .g-4 { grid-template-columns: repeat(4, 1fr); } }

.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }

.surface-dark {
  background: var(--aubergine-dk);
  color: #DED5E6;
}
.surface-dark h1, .surface-dark h2, .surface-dark h3, .surface-dark h4 { color: #fff; }
.surface-dark .muted { color: rgba(222, 213, 230, 0.66); }
.surface-dark a { color: #fff; }

.surface-mist { background: var(--mist); }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-dk);
  margin: 0 0 var(--sp-4);
}
.surface-dark .eyebrow { color: var(--purple-lt); }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-2);
}
.surface-dark .lede { color: rgba(222, 213, 230, 0.85); }

.small { font-size: var(--step--1); }
.muted { color: var(--ink-3); }
.strong { font-weight: 600; }

.num {
  font-family: var(--font-display);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--purple);
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.005em;
  padding: 0.86rem 1.6rem;
  border: 0; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-dark  { --btn-bg: var(--aubergine); --btn-fg: #fff; }
.btn-light { --btn-bg: #fff; --btn-fg: var(--aubergine); }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: currentColor;
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.surface-dark .btn-ghost { box-shadow: inset 0 0 0 1.5px var(--line-light); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px currentColor, var(--shadow-sm); }

.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.82rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: var(--step-0); }

.btn-wa { --btn-bg: #1FA855; --btn-fg: #fff; }
.btn-wa:hover { box-shadow: 0 10px 24px rgba(31, 168, 85, 0.32); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  color: var(--purple-dk); text-decoration: none;
}
.link::after { content: "→"; transition: transform 0.18s var(--ease-out); }
.link:hover::after { transform: translateX(4px); }
.surface-dark .link { color: var(--purple-lt); }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 251, 253, 0.86);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); padding-block: 0.8rem;
}

.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
  flex: 0 1 auto; min-width: 0;   /* must be allowed to shrink, or it pushes the
                                     nav actions off-screen on narrow phones */
}
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.16rem; letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 0.64rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* On narrow phones the strapline and the header CTA both give way — the fixed
   mobile action bar at the bottom already carries the call to action. */
@media (max-width: 559px) {
  .site-header .brand-sub { display: none; }
  .site-header .nav-actions > .btn { display: none; }
}
.site-footer .brand-sub { display: block; }

.nav-links {
  display: none; list-style: none; margin: 0; padding: 0;
  gap: 1.5rem; align-items: center;
}
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.92rem;
  text-decoration: none; color: var(--ink-2);
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;          /* never break a label across two lines */
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--purple); }
@media (min-width: 1120px) { .nav-links { display: flex; } }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0;
  background: transparent; border: 1.5px solid var(--line-strong);
  border-radius: 999px; cursor: pointer; color: inherit;
}
@media (min-width: 1120px) { .nav-toggle { display: none; } }

.nav-toggle-bars { position: relative; width: 18px; height: 12px; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 1.8px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 5px; }
.nav-toggle-bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--aubergine-dk); color: #fff;
  padding-top: 6.5rem; padding-bottom: var(--sp-7);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
}
.nav-drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-drawer nav ul { list-style: none; margin: 0; padding: 0; }
.nav-drawer nav a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--step-3); text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line-light);
}
.nav-drawer .idx {
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--purple-lt); font-variant-numeric: tabular-nums;
}
.nav-drawer-foot { margin-top: var(--sp-7); display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--aubergine-dk);
  color: #fff;
  padding-block: clamp(4rem, 11vw, 8.5rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 620px at 78% 12%, rgba(151, 114, 184, 0.30), transparent 62%),
    radial-gradient(760px 520px at 8% 92%, rgba(183, 154, 209, 0.16), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { max-width: 16ch; }
.hero .lede { max-width: 54ch; color: rgba(255, 255, 255, 0.82); }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem;
  margin-top: var(--sp-6); padding: 0; list-style: none;
  font-size: 0.84rem; color: rgba(255, 255, 255, 0.72);
}
.hero-badges li { display: flex; align-items: center; gap: 0.45rem; margin: 0; }
.hero-badges li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-lt); flex: none;
}

.page-hero {
  background: var(--aubergine-dk); color: #fff;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 460px at 82% 6%, rgba(151, 114, 184, 0.26), transparent 62%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 20ch; }
.page-hero .lede { max-width: 60ch; color: rgba(255, 255, 255, 0.82); }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none;
  margin: 0 0 var(--sp-5); padding: 0;
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.6);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.4rem; opacity: 0.5; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   8. Section headings
   -------------------------------------------------------------------------- */
.section-head { max-width: 60ch; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; gap: 0.7rem; }
.card-body > h3 { margin: 0; }
.card-body > p { margin: 0; }
.card-foot { margin-top: auto; padding-top: var(--sp-4); }

.surface-dark .card {
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line-light);
}

.tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase;
  padding: 0.32rem 0.68rem; border-radius: 999px;
  background: var(--purple-soft); color: var(--purple-dk);
  align-self: flex-start;
}
.tag-navy { background: var(--aubergine); color: #fff; }
.tag-lime { background: #EDF6D4; color: #4A6B00; }

/* Feature (icon + text) */
.feature { display: flex; gap: var(--sp-4); align-items: flex-start; }
.feature-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--purple-soft); color: var(--purple-dk);
}
.surface-dark .feature-icon { background: rgba(151, 114, 184, 0.16); color: var(--purple-lt); }
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 { margin: 0 0 0.25em; }
.feature p { margin: 0; font-size: 0.95rem; color: var(--ink-2); }
.surface-dark .feature p { color: rgba(222, 213, 230, 0.75); }

/* --------------------------------------------------------------------------
   10. Editorial split
   -------------------------------------------------------------------------- */
.split { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .split-wide { grid-template-columns: 1.15fr 0.85fr; }
  .split .order-first { order: -1; }
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.panel-tint { background: var(--purple-soft); border-color: transparent; }
.surface-dark .panel { background: rgba(255,255,255,0.045); border-color: var(--line-light); }

/* --------------------------------------------------------------------------
   11. Stats
   -------------------------------------------------------------------------- */
.stats { display: grid; gap: var(--sp-5); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-n {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step-4); line-height: 1;
  color: var(--purple-dk); font-variant-numeric: tabular-nums;
}
.surface-dark .stat-n { color: var(--purple-lt); }
.stat-l { font-size: 0.86rem; color: var(--ink-3); margin-top: 0.4rem; }
.surface-dark .stat-l { color: rgba(222, 213, 230, 0.66); }

/* --------------------------------------------------------------------------
   12. Numbered steps
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
@media (min-width: 700px) { .steps-2 { grid-template-columns: repeat(2, 1fr); } }
.step {
  position: relative; counter-increment: step;
  padding-top: var(--sp-6);
  border-top: 2px solid var(--line);
  margin: 0;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: var(--sp-3); left: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; color: var(--purple-dk);
}
.step h3, .step h4 { margin-top: 0.4rem; }
.step p { margin: 0; color: var(--ink-2); font-size: 0.96rem; }

/* Module list */
.modules { display: grid; gap: var(--sp-4); list-style: none; margin: 0; padding: 0; }
@media (min-width: 760px) { .modules { grid-template-columns: repeat(2, 1fr); } }
.module {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--sp-5); margin: 0;
}
.module-n {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--aubergine); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.module h4 { margin: 0 0 0.3em; }
.module p { margin: 0; font-size: 0.93rem; color: var(--ink-2); }

/* --------------------------------------------------------------------------
   13. Checklist
   -------------------------------------------------------------------------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.checklist li {
  position: relative; padding-left: 1.9rem; margin: 0;
  font-size: 0.96rem; color: var(--ink-2);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--purple-soft);
}
.checklist li::after {
  content: ""; position: absolute; left: 0.36rem; top: 0.72em;
  width: 0.42rem; height: 0.22rem;
  border-left: 2px solid var(--purple-dk);
  border-bottom: 2px solid var(--purple-dk);
  transform: rotate(-45deg);
}
.surface-dark .checklist li { color: rgba(222, 213, 230, 0.82); }
.surface-dark .checklist li::before { background: rgba(151, 114, 184, 0.2); }
.surface-dark .checklist li::after { border-color: var(--purple-lt); }

.crosslist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.crosslist li {
  position: relative; padding-left: 1.9rem; margin: 0;
  font-size: 0.96rem; color: var(--ink-2);
}
.crosslist li::before {
  content: "×"; position: absolute; left: 0.15rem; top: -0.05em;
  font-size: 1.2rem; line-height: 1.5; color: var(--coral); font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. Accordion
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  width: 100%; padding: 1.15rem 0;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-0);
  color: inherit;
}
.acc-icon {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center; position: relative;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.acc-icon::before { width: 10px; height: 1.6px; }
.acc-icon::after { width: 1.6px; height: 10px; transition: opacity 0.2s; }
.acc-btn[aria-expanded="true"] .acc-icon { background: var(--purple-soft); transform: rotate(180deg); }
.acc-btn[aria-expanded="true"] .acc-icon::after { opacity: 0; }
.acc-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}
.acc-panel > div { overflow: hidden; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel .inner { padding-bottom: 1.3rem; color: var(--ink-2); max-width: 68ch; }

/* --------------------------------------------------------------------------
   15. Schedule table
   -------------------------------------------------------------------------- */
.table-wrap {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--white);
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 0.94rem; }
thead th {
  background: var(--mist); text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-2);
  padding: 0.85rem 1.1rem; white-space: nowrap;
}
tbody td { padding: 0.95rem 1.1rem; border-top: 1px solid var(--line); vertical-align: top; }
tbody tr:hover { background: var(--mist); }

/* --------------------------------------------------------------------------
   16. Quote
   -------------------------------------------------------------------------- */
.quote { position: relative; padding-left: var(--sp-6); border-left: 3px solid var(--purple); }
.quote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--step-2); line-height: 1.35; letter-spacing: -0.015em;
}
.quote cite { display: block; margin-top: var(--sp-4); font-size: 0.88rem; font-style: normal; color: var(--ink-3); }
.surface-dark .quote cite { color: rgba(222, 213, 230, 0.66); }

/* --------------------------------------------------------------------------
   17. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; }
.input, .textarea, .select {
  width: 100%; padding: 0.8rem 1rem;
  font: inherit; font-size: 0.98rem; color: inherit;
  background: var(--white);
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  transition: border-color 0.18s;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--purple); }
.textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23736B7C' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.5rem; }
@media (min-width: 620px) { .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); } }
.form-note { font-size: 0.8rem; color: var(--ink-3); line-height: 1.55; }

/* --------------------------------------------------------------------------
   18. Contact blocks
   -------------------------------------------------------------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-5); }
.contact-list li { display: flex; gap: var(--sp-4); align-items: flex-start; margin: 0; }
.contact-list .feature-icon { width: 40px; height: 40px; }
.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   19. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--aubergine-dk), #3A2650 55%, var(--purple-dk));
  color: #fff; border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 54ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: var(--sp-5); }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--aubergine-dpr); color: #C9BFD4;
  padding-block: var(--sp-8) var(--sp-6);
  margin-top: var(--section);
}
.site-footer h3 {
  color: #fff; font-size: 0.78rem; letter-spacing: 0.13em;
  text-transform: uppercase; margin-bottom: var(--sp-4);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer a { color: inherit; text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .brand-sub { color: rgba(201, 191, 212, 0.6); }
.site-footer .brand-name { color: #fff; }

.footer-grid { display: grid; gap: var(--sp-7); }
@media (min-width: 700px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.socials { display: flex; gap: 0.6rem; margin-top: var(--sp-5); }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-light);
}
.socials a:hover { background: rgba(255, 255, 255, 0.08); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-5);
  border-top: 1px solid var(--line-light);
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  align-items: center; justify-content: space-between;
  font-size: 0.84rem; color: rgba(201, 191, 212, 0.7);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.1rem; }

/* --------------------------------------------------------------------------
   21. Mobile action bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 0.6rem; padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(252, 251, 253, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; }
.mobile-bar .btn-wa { flex: none; padding-inline: 0.75rem; }
.mobile-bar .btn-wa svg { width: 20px; height: 20px; }
@media (min-width: 1120px) { .mobile-bar { display: none; } }
@media (max-width: 1119px) { .site-footer { padding-bottom: 5.5rem; } }

/* --------------------------------------------------------------------------
   22. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); }
.js .reveal { transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   23. Notice / callout
   -------------------------------------------------------------------------- */
.notice {
  border-left: 3px solid var(--purple);
  background: var(--purple-soft);
  padding: var(--sp-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 0.94rem;
}
.notice strong { font-family: var(--font-display); }

/* --------------------------------------------------------------------------
   24. Wordmark
   The logo sets STRIVE4 in caps with a smaller, baseline-aligned 4.
   -------------------------------------------------------------------------- */
.brand-name {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.brand-4 {
  font-size: 0.72em;
  letter-spacing: 0;
}
.brand-mark { color: var(--ink); }
.surface-dark .brand-mark,
.site-footer .brand-mark,
.nav-drawer .brand-mark { color: var(--purple-lt); }
.site-header .brand:hover .brand-mark { color: var(--purple-dk); }

/* --------------------------------------------------------------------------
   25. Figures
   -------------------------------------------------------------------------- */
.figure { margin: 0; }
.figure img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.figure figcaption {
  margin-top: var(--sp-4);
  font-size: 0.86rem;
  color: var(--ink-3);
}
.surface-dark .figure figcaption { color: rgba(222, 213, 230, 0.66); }

/* --------------------------------------------------------------------------
   26. Card tag row — duration + difficulty side by side
   -------------------------------------------------------------------------- */
.card-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.card-tags .tag { align-self: auto; }
