/* =========================================================================
   SEA CHANGE HEALTH PROFESSIONALS — Design System
   Coastal · calm · trustworthy. "We Deliver. We Communicate. We Care."
   ========================================================================= */

:root {
  /* =======================================================================
     TWO SOURCE COLOURS — set these to your real brand colours (hex is fine)
     and the entire site re-tones automatically. Use the on-page colour dial
     to try yours live, or edit these two lines.
     ======================================================================= */
  --brand:      #1b7cb8;   /* PRIMARY brand colour — Sea Change ocean blue */
  --warm:       #16a6dc;   /* ACCENT / call-to-action — bright cyan-blue */

  /* --- Everything below DERIVES from the two above (no need to touch) --- */
  --brand-deep: color-mix(in oklab, var(--brand) 80%, #07121a);  /* dark sections */
  --brand-ink:  color-mix(in oklab, var(--brand) 48%, #050d13);  /* darkest bars */
  --aqua:       color-mix(in oklab, var(--brand), white 42%);     /* light accent on dark */
  --seafoam:    color-mix(in oklab, var(--brand) 15%, white);     /* pale tint blocks */
  --warm-soft:  color-mix(in oklab, var(--warm) 30%, white);      /* warm wash */

  --ink:        #344247;   /* primary text — charcoal, matches logo wordmark */
  --ink-soft:   #54636a;   /* secondary text */
  --ink-faint:  #7c8a91;   /* tertiary / captions */

  --sand:       #f7f6f3;   /* page background */
  --paper:      #ffffff;   /* cards */
  --line:       #e4e6e7;   /* hairline borders */
  --line-soft:  #eef0f0;

  --accent:     var(--brand);
  --accent-deep: var(--brand-deep);

  /* --- Type --- */
  --font-display: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* fluid type scale */
  --t-hero:  clamp(2.6rem, 1.2rem + 5.4vw, 5.4rem);
  --t-h1:    clamp(2.1rem, 1.2rem + 3.2vw, 3.6rem);
  --t-h2:    clamp(1.7rem, 1.1rem + 2.1vw, 2.6rem);
  --t-h3:    clamp(1.28rem, 1.0rem + 1.0vw, 1.6rem);
  --t-lead:  clamp(1.08rem, 0.98rem + 0.5vw, 1.32rem);
  --t-body:  1.0625rem;
  --t-sm:    0.9rem;
  --t-xs:    0.78rem;

  /* --- Space & shape --- */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px oklch(0.4 0.04 232 / 0.06), 0 2px 6px oklch(0.4 0.04 232 / 0.05);
  --shadow:    0 4px 12px oklch(0.4 0.04 232 / 0.07), 0 14px 38px oklch(0.4 0.04 232 / 0.09);
  --shadow-lg: 0 8px 22px oklch(0.4 0.04 232 / 0.10), 0 30px 70px oklch(0.4 0.04 232 / 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }

/* density driver (Tweaks) */
[data-density="cozy"]    { --section-y: clamp(3rem, 6vw, 5rem); }
[data-density="default"] { --section-y: clamp(4rem, 8vw, 7rem); }
[data-density="airy"]    { --section-y: clamp(5.5rem, 11vw, 10rem); }
body { --section-y: clamp(4rem, 8vw, 7rem); }

/* =========================================================================
   LAYOUT
   ========================================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1360px; }
.section { padding-block: var(--section-y); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 1.6em; height: 2px; border-radius: 2px;
  background: var(--accent); opacity: 0.7;
}
.eyebrow.center::before { display: none; }

.lead { font-size: var(--t-lead); color: var(--ink-soft); line-height: 1.55; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95em 1.5em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background-color: var(--accent); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-warm { background-color: var(--warm); color: #fff; box-shadow: var(--shadow-sm); }
.btn-warm:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-light { background: oklch(1 0 0 / 0.14); color: var(--paper); border-color: oklch(1 0 0 / 0.3); backdrop-filter: blur(8px); }
.btn-light:hover { background: oklch(1 0 0 / 0.22); transform: translateY(-2px); }
.btn-onlight { background-color: var(--paper); color: var(--accent-deep); box-shadow: var(--shadow-sm); }
.btn-onlight:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { font-size: 1.05rem; padding: 1.05em 1.8em; }

/* =========================================================================
   PILLS / CHIPS / BADGES
   ========================================================================= */
.chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--t-sm); font-weight: 600;
  padding: 0.5em 0.95em; border-radius: 100px;
  background: var(--seafoam); color: var(--accent-deep);
}
.chip-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* =========================================================================
   CARDS
   ========================================================================= */
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line); }

/* icon tile */
.itile {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--seafoam); color: var(--accent-deep);
  flex: none;
}
.itile svg { width: 26px; height: 26px; stroke-width: 1.8; }

/* =========================================================================
   IMAGE PLACEHOLDERS (drop real photography here)
   ========================================================================= */
.ph {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg,
      #e9ebec 0 12px,
      #f1f2f3 12px 24px);
  color: var(--ink-faint);
  display: grid; place-items: center;
  min-height: 220px;
}
.ph::after {
  content: attr(data-label);
  font-family: "Hanken Grotesk", monospace;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; opacity: 0.62; text-align: center; padding: 1.5em;
}
.ph-deep {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--brand-deep), black 6%) 0 12px,
      var(--brand-deep) 12px 24px);
  color: color-mix(in oklab, white, var(--brand) 30%);
}

/* =========================================================================
   WAVE DIVIDER
   ========================================================================= */
.wave { display: block; width: 100%; height: auto; }

/* =========================================================================
   UTIL
   ========================================================================= */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
.flex { display: flex; }
.stack > * + * { margin-top: 1rem; }
.muted { color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ===== NAV / TOPBAR / FOOTER ===== */
.topbar { background: var(--brand-ink); color: #cfe0ea; font-size: var(--t-xs); font-weight: 500; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; padding-block: 0.4rem; }
.topbar a { color: inherit; opacity: 0.9; } .topbar a:hover { opacity: 1; }
.topbar .tb-left { display: flex; align-items: center; gap: 0.6rem; }
.topbar .tb-badge { display: inline-flex; align-items: center; gap: 0.45em; background: oklch(1 0 0 / 0.12); padding: 0.3em 0.7em; border-radius: 100px; font-weight: 600; }
.topbar .tb-right { display: flex; align-items: center; gap: 1.2rem; }
.topbar .tb-contact { display: flex; align-items: center; gap: 0.4em; font-weight: 600; }
.topbar .tb-contact svg { width: 14px; height: 14px; }
@media (max-width: 760px) { .topbar .hide-sm { display: none; } }

.nav { position: sticky; top: 0; z-index: 50; background: oklch(0.995 0.004 78 / 0.86); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); }
.nav .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.brandmark { display: flex; align-items: center; flex: none; }
.brandmark .logo { height: 44px; width: auto; display: block; }
.footer .brandmark .logo { height: 40px; filter: brightness(0) invert(1); }
.navlinks { display: flex; align-items: center; gap: 0.3rem; margin-left: auto; }
.navlinks a { font-size: 0.95rem; font-weight: 600; color: var(--ink); padding: 0.6em 0.85em; border-radius: 10px; transition: color 0.2s; }
.navlinks a:hover, .navlinks a.active { background: var(--seafoam); color: var(--accent-deep); }
@media (max-width: 940px) { .navlinks { display: none; } }
@media (max-width: 480px) {
  .nav .wrap { gap: 0.6rem; min-height: 62px; }
  .brandmark .logo { height: 33px; }
  .nav .btn-primary { padding: 0.82em 1.1em; font-size: 0.88rem; }
  .topbar .tb-badge { font-size: 0.72rem; }
}

.shead { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.shead.center { margin-inline: auto; text-align: center; }
.shead h2 { font-size: var(--t-h2); margin-top: 0.55rem; }
.shead p { margin-top: 0.85rem; }

/* ===== HERO ===== */
.chero { background: radial-gradient(125% 130% at 88% -10%, var(--brand) 0%, var(--brand-deep) 50%, var(--brand-ink) 100%); color: #fff; position: relative; overflow: hidden; }
.chero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(oklch(1 0 0 / 0.06) 1px, transparent 1px); background-size: 22px 22px; }
.chero .grid2 { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3rem, 6.5vw, 5.5rem); }
@media (max-width: 880px) { .chero .grid2 { grid-template-columns: 1fr; } }
.chero .badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chero .hero-kicker { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--t-sm); font-weight: 600; padding: 0.5em 1em; border-radius: 100px; background: oklch(1 0 0 / 0.14); border: 1px solid oklch(1 0 0 / 0.22); }
.chero .hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: #6ee7a8; }
.chero .hero-kicker svg { width: 15px; height: 15px; color: #8fd6f5; }
.chero h1 { color: #fff; font-size: clamp(2.7rem, 1rem + 5.2vw, 4.6rem); letter-spacing: -0.03em; margin-top: 1.1rem; max-width: 15ch; }
.chero h1 em { font-style: normal; color: #8fd6f5; }
.chero p.lead { color: #d4e6f2; margin-top: 1.15rem; max-width: 46ch; }
.chero .cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.chero .media { position: relative; }
.chero .media .shot { width: 100%; min-height: clamp(340px, 44vw, 500px); height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.chero .tickbadge { position: absolute; right: 1rem; bottom: 1rem; background: #fff; color: var(--ink); border-radius: 100px; padding: 0.6rem 1rem 0.6rem 0.6rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 0.92rem; }
.chero .tickbadge .tk { width: 26px; height: 26px; border-radius: 50%; background: #1aa463; display: grid; place-items: center; flex: none; }
.chero .tickbadge .tk svg { width: 15px; height: 15px; color: #fff; stroke-width: 3; }
.chero .quotebadge { position: absolute; left: -1.1rem; bottom: 1.5rem; background: #fff; color: var(--ink); border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: var(--shadow-lg); max-width: 280px; display: flex; gap: 0.8rem; align-items: flex-start; }
.chero .quotebadge .av { width: 42px; height: 42px; border-radius: 50%; background-size: cover; background-position: center; flex: none; }
.chero .quotebadge p { font-size: 0.85rem; font-style: italic; line-height: 1.4; }
.chero .quotebadge b { font-size: 0.78rem; color: var(--accent-deep); display: block; margin-top: 0.35rem; font-style: normal; }
@media (max-width: 880px) { .chero .quotebadge { left: 1rem; } }

/* ===== STAT STRIP ===== */
.statstrip { background: var(--brand-ink); border-top: 1px solid oklch(1 0 0 / 0.1); }
.statstrip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 2.2rem; }
@media (max-width: 720px) { .statstrip .wrap { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
.statstrip .st { display: flex; flex-direction: column; gap: 0.5rem; }
.statstrip .st .ic { width: 26px; height: 26px; color: #8fd6f5; }
.statstrip .st b { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: #fff; line-height: 1.15; letter-spacing: -0.01em; }
.statstrip .st span { font-size: var(--t-sm); color: #b9d2e1; }

/* ===== SCRAMBLE vs CALM OS ===== */
.versus { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
@media (max-width: 820px) { .versus { grid-template-columns: 1fr; } }
.vside { padding: clamp(1.8rem, 3.5vw, 2.8rem); }
.vside.scramble { background: var(--brand-ink); color: #fff; }
.vside.calm { background: linear-gradient(180deg, var(--seafoam), var(--paper)); }
.vside .vtag { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4em 0.85em; border-radius: 100px; }
.vside.scramble .vtag { background: oklch(1 0 0 / 0.12); color: #b9d2e1; }
.vside.calm .vtag { background: var(--paper); color: var(--accent-deep); box-shadow: var(--shadow-sm); }
.vside h3 { font-size: clamp(1.5rem, 2.8vw, 1.95rem); margin-top: 1rem; }
.vside.scramble h3 { color: #fff; }
.vside .vsub { font-size: 0.96rem; margin-top: 0.5rem; }
.vside.scramble .vsub { color: #b9d2e1; }
.vside.calm .vsub { color: var(--ink-soft); }
.vlist { list-style: none; margin-top: 1.8rem; display: grid; gap: 1.15rem; }
.vlist li { display: flex; gap: 0.9rem; align-items: flex-start; }
.vlist li .vi { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; margin-top: 0.1rem; }
.vside.scramble .vi { background: oklch(1 0 0 / 0.12); color: #9fb6c5; }
.vside.calm .vi { background: var(--accent); color: #fff; }
.vlist li .vi svg { width: 15px; height: 15px; stroke-width: 2.6; }
.vlist li b { font-size: 1.02rem; display: block; }
.vside.scramble .vlist b { color: #fff; }
.vlist li p { font-size: 0.92rem; margin-top: 0.2rem; }
.vside.scramble .vlist p { color: #acc4d3; }
.vside.calm .vlist p { color: var(--ink-soft); }
.vside.calm .vfoot { margin-top: 2rem; }

/* ===== STABILITY MEETS FLEXIBILITY ===== */
.smf { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(1rem, 3vw, 2.5rem); align-items: stretch; }
@media (max-width: 760px) { .smf { grid-template-columns: 1fr; } }
.smf .col { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.smf .col .lab { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; font-size: 1.15rem; font-family: var(--font-display); color: var(--accent-deep); white-space: nowrap; }
.smf .col .lab svg { width: 22px; height: 22px; }
.smf .col ul { list-style: none; margin-top: 1.1rem; display: grid; gap: 0.8rem; }
.smf .col li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.98rem; color: var(--ink); }
.smf .col li svg { width: 18px; height: 18px; flex: none; margin-top: 0.15em; color: var(--accent); }
.smf .plus { align-self: center; width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 1.6rem; font-weight: 700; flex: none; box-shadow: var(--shadow); }
@media (max-width: 760px) { .smf .plus { justify-self: center; transform: rotate(90deg); } }

/* ===== RHYTHM OF CALM ===== */
.rhythm { background: var(--brand-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 4rem); position: relative; overflow: hidden; }
.rhythm::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(oklch(1 0 0 / 0.06) 1px, transparent 1px); background-size: 22px 22px; }
.rhythm > * { position: relative; z-index: 2; }
.rhythm .eyebrow { color: #8fd6f5; }
.rhythm h2 { color: #fff; font-size: var(--t-h2); margin-top: 0.55rem; }
.rhythm .mantra { color: #8fd6f5; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-top: 0.9rem; }
.rhythm p.intro { color: #cfe2ee; margin-top: 0.9rem; max-width: 60ch; }
.habits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.6rem; }
@media (max-width: 900px) { .habits { grid-template-columns: 1fr 1fr; gap: 1.2rem; } }
@media (max-width: 520px) { .habits { grid-template-columns: 1fr; } }
.habit { background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.12); border-radius: var(--radius); padding: 1.3rem; }
.habit .hic { width: 42px; height: 42px; border-radius: 11px; background: oklch(1 0 0 / 0.1); display: grid; place-items: center; margin-bottom: 0.9rem; }
.habit .hic svg { width: 22px; height: 22px; color: #8fd6f5; }
.habit .hn { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.08em; color: #8fd6f5; }
.habit h3 { color: #fff; font-size: 1.05rem; margin-top: 0.3rem; }
.habit p { font-size: 0.88rem; color: #cfe2ee; margin-top: 0.5rem; line-height: 1.5; }

/* ===== THE PACKAGE ===== */
.pkg-grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: clamp(0.9rem, 1.8vw, 1.3rem); }
.pkg-hero { grid-row: span 2; background: var(--brand-deep); color: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); display: flex; flex-direction: column; }
.pkg-hero .itile { background: oklch(1 0 0 / 0.12); color: #8fd6f5; }
.pkg-hero h3 { color: #fff; font-size: 1.5rem; margin-top: auto; }
.pkg-hero p { color: #cfe2ee; font-size: 0.95rem; margin-top: 0.6rem; }
.pkg { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.5rem; }
.pkg.accentcard { background: var(--seafoam); border-color: transparent; }
.pkg .itile { margin-bottom: 0.9rem; }
.pkg h3 { font-size: 1.12rem; }
.pkg p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.4rem; }
.pkg .pill { display: inline-block; margin-top: 0.7rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-deep); background: var(--paper); padding: 0.3em 0.7em; border-radius: 100px; }
@media (max-width: 860px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .pkg-hero { grid-row: auto; grid-column: 1 / -1; }
}
@media (max-width: 540px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ===== FLEXIBILITY (single column, 3 rows) ===== */
.flexlist { display: grid; gap: 1rem; }
.flexrow { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1.4rem, 2.5vw, 1.9rem) clamp(1.4rem, 3vw, 2.2rem); }
@media (max-width: 720px) { .flexrow { grid-template-columns: 1fr; gap: 1rem; } }
.flexrow .means { display: flex; align-items: center; gap: 0.7rem; min-width: 210px; }
.flexrow .means .mi { width: 46px; height: 46px; border-radius: 12px; background: var(--seafoam); display: grid; place-items: center; flex: none; }
.flexrow .means .mi svg { width: 24px; height: 24px; color: var(--accent-deep); }
.flexrow .means b { font-family: var(--font-display); font-weight: 700; color: var(--accent-deep); font-size: 1.05rem; line-height: 1.15; }
.flexrow blockquote { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.5; color: var(--ink); }
.flexrow .who { display: flex; align-items: center; gap: 0.7rem; min-width: 180px; }
.flexrow .who .av { width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center; background-color: var(--seafoam); flex: none; display: grid; place-items: center; color: var(--accent-deep); font-weight: 700; }
.flexrow .who b { font-size: 0.95rem; }
.flexrow .who span { font-size: 0.82rem; color: var(--ink-faint); display: block; }

/* ===== TESTIMONIALS ===== */
.tq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.9rem, 1.8vw, 1.3rem); }
@media (max-width: 980px) { .tq-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tq-grid { grid-template-columns: 1fr; } }
.tq { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.tq .stars { display: flex; gap: 2px; color: #f0a93a; font-size: 0.95rem; }
.tq blockquote { font-size: 0.98rem; line-height: 1.5; color: var(--ink); }
.tq .who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.tq .who .av { width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center; background-color: var(--seafoam); color: var(--accent-deep); display: grid; place-items: center; font-weight: 700; font-size: 0.95rem; flex: none; }
.tq .who b { font-size: 0.9rem; }
.tq .who span { font-size: 0.8rem; color: var(--ink-faint); display: block; }

/* ===== ROLES ===== */
.roles-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.roles-head .live { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.85rem; font-weight: 600; color: var(--accent-deep); background: var(--paper); padding: 0.45em 0.9em; border-radius: 100px; box-shadow: var(--shadow-sm); }
.roles-head .live .pulse { width: 9px; height: 9px; border-radius: 50%; background: #1aa463; position: relative; }
.roles-head .live .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid oklch(0.62 0.13 155 / 0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(0.7); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.3rem; }
.filters button { font-family: inherit; font-size: 0.88rem; font-weight: 600; padding: 0.6em 1.05em; min-height: 40px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink-soft); cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.filters button:hover { border-color: var(--accent); color: var(--accent); }
.filters button.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.roles { display: grid; gap: 0.8rem; }
.role { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: border-color 0.2s, box-shadow 0.2s; overflow: hidden; }
.role:hover { border-color: var(--line); box-shadow: var(--shadow); }
.role.open { border-color: var(--accent); box-shadow: var(--shadow); }
.role-head { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; display: grid; grid-template-columns: 1fr auto auto; gap: 1rem 1.4rem; align-items: center; padding: 1.25rem 1.5rem; }
.role-tt { grid-column: 1; }
.role h3 { font-size: 1.16rem; }
.role .loc { font-size: 0.88rem; color: var(--ink-faint); margin-top: 0.25rem; display: flex; align-items: center; gap: 0.4em; }
.role .loc svg { width: 14px; height: 14px; flex: none; }
.role .meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.65rem; }
.role .tag { font-size: 0.76rem; font-weight: 600; padding: 0.32em 0.75em; border-radius: 100px; background: var(--seafoam); color: var(--accent-deep); display: inline-flex; align-items: center; gap: 0.35em; }
.role .tag.type { background: color-mix(in oklab, var(--brand) 16%, white); }
.role .tag.type::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.role .sal { grid-column: 2; font-weight: 700; color: var(--ink); font-size: 0.96rem; white-space: nowrap; text-align: right; }
.role .sal small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--ink-faint); letter-spacing: 0.02em; }
.role .chev { grid-column: 3; width: 34px; height: 34px; border-radius: 50%; background: var(--seafoam); display: grid; place-items: center; transition: transform 0.25s var(--ease); flex: none; }
.role .chev svg { width: 16px; height: 16px; color: var(--accent-deep); stroke-width: 2.5; }
.role.open .chev { transform: rotate(180deg); }
.role-detail { display: none; padding: 0 1.5rem 1.5rem; }
.role.open .role-detail { display: block; }
.role-detail .rd-inner { border-top: 1px solid var(--line-soft); padding-top: 1.3rem; }
.role-detail p { font-size: 0.96rem; color: var(--ink-soft); max-width: 70ch; }
.role-detail ul { list-style: none; display: grid; gap: 0.55rem; margin-top: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .role-detail ul { grid-template-columns: 1fr; } .role-head { grid-template-columns: 1fr auto; } .role .sal { grid-column: 1; text-align: left; margin-top: 0.7rem; } .role .chev { grid-column: 2; grid-row: 1; } }
.role-detail li { display: flex; gap: 0.55em; align-items: flex-start; font-size: 0.92rem; color: var(--ink); }
.role-detail li svg { width: 16px; height: 16px; flex: none; margin-top: 0.18em; color: var(--accent); }
.role-detail .rd-foot { margin-top: 1.4rem; display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }
.role-detail .rd-foot .src { font-size: 0.82rem; color: var(--ink-faint); }
.role-note { text-align: center; margin-top: 1.8rem; font-size: 1rem; color: var(--ink-soft); }
.role-note a { color: var(--accent); font-weight: 600; }

/* ===== EXPRESS INTEREST ===== */
.applywrap { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 880px) { .applywrap { grid-template-columns: 1fr; } }
.nextsteps { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.nextstep { display: flex; gap: 0.9rem; align-items: flex-start; }
.nextstep .sn { width: 30px; height: 30px; border-radius: 9px; background: var(--accent); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 0.92rem; flex: none; }
.nextstep b { font-size: 0.98rem; } .nextstep p { font-size: 0.9rem; color: var(--ink-soft); }
.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.form-card .fhint { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .frow { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ink); }
.field label .req { color: var(--warm); }
.field label .opt { color: var(--ink-faint); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; font-family: inherit; font-size: 0.98rem; padding: 0.8em 1em; border: 1.5px solid var(--line); border-radius: 12px; background: var(--sand); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand), transparent 82%); background: var(--paper); }
.field textarea { resize: vertical; min-height: 90px; }
.filebox { border: 1.5px dashed var(--line); border-radius: 12px; padding: 1.1rem; text-align: center; color: var(--ink-faint); font-size: 0.9rem; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.filebox:hover { border-color: var(--accent); background: var(--seafoam); }

/* ===== FOOTER ===== */
.footer { background: var(--brand-ink); color: #b9d2e1; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer a { color: #b9d2e1; } .footer a:hover { color: #fff; }
.footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 820px) { .footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer .cols { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; font-weight: 700; }
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer ul a { font-size: 0.92rem; }
.footer .about p { font-size: 0.92rem; line-height: 1.6; margin: 1rem 0; max-width: 40ch; }
.footer .legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid oklch(1 0 0 / 0.12); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.82rem; color: #8ba9bb; }