/* ==========================================================================
   NeuroFlow™ — design system
   Palette drawn from the brand mark: sky → violet → rose on deep indigo ink,
   set against warm paper. Newsreader (display serif) + Figtree (body sans).
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

/* ---------- Tokens ---------- */
:root {
    --paper: #fbf9f5;
    --lilac: #f3f0fb;
    --blush: #fbeff3;
    --white: #ffffff;

    --ink: #171331;
    --ink-2: #1f1a3e;
    --ink-3: #2a2352;

    --text: #262040;
    --text-soft: #5b5472;
    --text-inv: #edeaf8;
    --text-inv-soft: rgba(237, 234, 248, 0.72);

    --violet: #5747c0;
    --violet-deep: #43389c;
    --violet-tint: #eeebfa;
    --rose: #c13d73;
    --sky: #3e8fd0;

    --grad: linear-gradient(90deg, #53b2e8 0%, #8b6ce8 50%, #ef6aa4 100%);

    --line: rgba(23, 19, 49, 0.12);
    --line-soft: rgba(23, 19, 49, 0.08);
    --line-inv: rgba(237, 234, 248, 0.16);

    --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
    --font-body: 'Figtree', -apple-system, 'Segoe UI', sans-serif;

    --fs-hero: clamp(2.6rem, 4.6vw + 1rem, 4.7rem);
    --fs-h2: clamp(1.9rem, 2.4vw + 1rem, 2.9rem);
    --fs-h3: clamp(1.25rem, 0.8vw + 1rem, 1.45rem);
    --fs-lg: clamp(1.05rem, 0.35vw + 0.95rem, 1.2rem);
    --fs-sm: 0.875rem;
    --fs-xs: 0.78rem;

    --container: 1160px;
    --narrow: 800px;
    --pad-x: clamp(1.25rem, 5vw, 3rem);
    --pad-section: clamp(4.5rem, 9vw, 7.5rem);
    --radius: 18px;
    --radius-lg: 24px;

    --shadow: 0 10px 32px -12px rgba(23, 19, 49, 0.18);
    --header-h: 76px;
}

/* ---------- Base ---------- */
body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

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

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

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

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

h1 em, h2 em {
    font-style: italic;
    font-weight: 500;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 0.06em; /* keep italic overhang from clipping */
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    z-index: 200;
    padding: 0.7rem 1.2rem;
    background: var(--ink);
    color: var(--text-inv);
    border-radius: 10px;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad-x);
}

/* ---------- Buttons & links ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.55rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.btn-lg { padding: 0.95rem 1.9rem; font-size: 1.02rem; }

.btn-primary {
    background: var(--violet);
    color: #fff;
    box-shadow: 0 8px 22px -8px rgba(87, 71, 192, 0.55);
}
.btn-primary:hover {
    background: var(--violet-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -8px rgba(87, 71, 192, 0.6);
}

.btn-ghost {
    border: 1.5px solid var(--violet);
    color: var(--violet);
    background: transparent;
}
.btn-ghost:hover { background: var(--violet); color: #fff; transform: translateY(-2px); }

.btn-ghost-dark {
    border: 1.5px solid var(--line-inv);
    color: var(--text-inv);
    background: rgba(255, 255, 255, 0.04);
}
.btn-ghost-dark:hover { background: var(--text-inv); color: var(--ink); border-color: var(--text-inv); }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--violet);
}
.btn-link .arrow { transition: transform 0.2s; }
.btn-link:hover .arrow { transform: translateX(4px); }
.btn-link.on-dark { color: var(--text-inv); }

/* ---------- Eyebrow ---------- */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 1.1rem;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: var(--grad);
    flex-shrink: 0;
}
.eyebrow.on-dark { color: #b9a8f5; }
.eyebrow.centered { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 249, 245, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled {
    border-bottom-color: var(--line-soft);
    box-shadow: 0 6px 24px -18px rgba(23, 19, 49, 0.35);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: var(--header-h);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.brand img { width: 40px; height: 40px; }
.brand-word {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand-word em {
    font-style: italic;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brand-word sup { font-size: 0.5em; font-family: var(--font-body); font-weight: 600; color: var(--text-soft); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.nav-item { position: relative; }
.nav-item > a,
.nav-item > button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: background 0.2s, color 0.2s;
}
.nav-item > a:hover,
.nav-item > button:hover { background: var(--violet-tint); color: var(--violet); }

.chev {
    width: 8px; height: 8px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
}
.nav-item.open .chev { transform: rotate(225deg) translateY(-1px); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 250px;
    padding: 0.55rem;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-item.open .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 9px;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text);
}
.nav-dropdown a:hover { background: var(--violet-tint); color: var(--violet); }

.nav-cta { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    padding: 10px;
    border-radius: 10px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.mobile-panel {
    display: none;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: 0.75rem var(--pad-x) 1.5rem;
    border-top: 1px solid var(--line-soft);
    background: var(--paper);
}
.mobile-panel.open { display: block; }
.mobile-group { border-bottom: 1px solid var(--line-soft); }
.mobile-group > a,
.mobile-group > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 0.25rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
}
.mobile-sub { display: none; padding: 0 0.25rem 0.9rem 1rem; }
.mobile-group.open .mobile-sub { display: block; }
.mobile-group.open .chev { transform: rotate(225deg) translateY(-1px); }
.mobile-sub a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-soft);
    font-weight: 500;
}
.mobile-sub a:hover { color: var(--violet); }
.mobile-cta { margin-top: 1.25rem; width: 100%; }

/* ---------- Sections ---------- */
.section { padding-block: var(--pad-section); }
.on-paper { background: var(--paper); }
.on-lilac { background: var(--lilac); }
.on-blush { background: var(--blush); }
.on-ink {
    background: var(--ink);
    color: var(--text-inv);
}
.on-ink h2, .on-ink h3 { color: var(--text-inv); }
.on-ink p { color: var(--text-inv-soft); }

.section-head {
    max-width: 720px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 { font-size: var(--fs-h2); color: var(--ink); margin-bottom: 1.1rem; }
.section-head p { font-size: var(--fs-lg); color: var(--text-soft); }
.on-ink .section-head h2 { color: var(--text-inv); }
.on-ink .section-head p { color: var(--text-inv-soft); }

/* ---------- Flow lines ---------- */
.flow-line { overflow: visible; }
.flow-line path {
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background:
        radial-gradient(900px 480px at 12% -10%, rgba(87, 71, 192, 0.35), transparent 65%),
        radial-gradient(800px 460px at 92% 8%, rgba(193, 61, 115, 0.22), transparent 62%),
        radial-gradient(700px 420px at 55% 115%, rgba(62, 143, 208, 0.18), transparent 60%),
        var(--ink);
    color: var(--text-inv);
    padding-block: clamp(5rem, 10vw, 8.5rem);
}
.hero-inner {
    max-width: 880px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero .eyebrow { justify-content: center; }
.hero h1 {
    font-size: var(--fs-hero);
    color: #fdfcff;
    margin-bottom: 0.5rem;
}
.hero-flow {
    width: min(100%, 720px);
    height: 64px;
    margin-block: clamp(1.4rem, 3vw, 2.2rem);
}
.hero-flow path {
    stroke-width: 3;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: draw 2.4s cubic-bezier(0.45, 0, 0.2, 1) 0.35s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-sub {
    max-width: 640px;
    font-size: var(--fs-lg);
    color: var(--text-inv-soft);
    margin-bottom: 2.4rem;
}
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.4rem;
}

/* ---------- Stats bar ---------- */
.stats-bar {
    background: var(--ink-2);
    color: var(--text-inv);
    border-top: 1px solid var(--line-inv);
    padding-block: 2.4rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.75rem;
}
.stat {
    display: flex;
    flex-direction: column-reverse; /* value (dd) above its label (dt) */
    text-align: center;
    gap: 0.3rem;
}
.stat dd {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 1.4vw + 0.8rem, 1.9rem);
    font-weight: 500;
    color: #fdfcff;
    line-height: 1.15;
}
.stat dt {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-inv-soft);
}

/* ---------- Stuck Achiever ---------- */
.struggle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.9rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.struggle-grid li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1.15rem;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 13px;
    font-weight: 500;
    font-size: 0.97rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.struggle-grid li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.struggle-grid li::before {
    content: "";
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
}

.pullquote {
    max-width: 760px;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #53b2e8, #8b6ce8, #ef6aa4) 1;
    padding-left: clamp(1.4rem, 3vw, 2.2rem);
}
.pullquote blockquote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 1.4vw + 0.9rem, 1.7rem);
    line-height: 1.45;
    color: var(--ink);
}
.pullquote blockquote p::before { content: "\201C"; }
.pullquote blockquote p::after { content: "\201D"; }
.pullquote figcaption {
    margin-top: 0.9rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-soft);
}

/* ---------- Method ---------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-bottom: 3rem;
}
.pillar {
    background: var(--ink-2);
    border: 1px solid var(--line-inv);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 2.5vw, 2.2rem);
    transition: transform 0.25s, border-color 0.25s;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(139, 108, 232, 0.5); }
.pillar-line { width: 100%; height: 40px; margin-bottom: 1.4rem; }
.pillar-num {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #b9a8f5 !important;
    margin-bottom: 0.5rem;
}
.pillar h3 { font-size: var(--fs-h3); margin-bottom: 0.7rem; }
.pillar p { font-size: 0.97rem; }

.foundation-block {
    border: 1px solid var(--line-inv);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(87, 71, 192, 0.16), rgba(193, 61, 115, 0.1));
    padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
.foundation-lead {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.2vw + 0.9rem, 1.6rem);
    line-height: 1.4;
    color: #fdfcff !important;
    max-width: 780px;
    margin-bottom: 1.6rem;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-cloud li {
    padding: 0.42rem 0.95rem;
    border: 1px solid var(--line-inv);
    border-radius: 999px;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-inv-soft);
}

/* ---------- Shift ---------- */
.shift-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: clamp(1rem, 3vw, 2.2rem);
    max-width: 940px;
}
.shift-col {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 3vw, 2.3rem);
}
.shift-col h3 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 1.2rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--line-soft);
}
.shift-col li {
    display: flex;
    gap: 0.7rem;
    padding-block: 0.55rem;
    font-size: 0.98rem;
}
.shift-col li::before { flex-shrink: 0; font-weight: 700; }
.shift-col.from li { color: var(--text-soft); }
.shift-col.from li::before { content: "✕"; color: var(--rose); }
.shift-col.to {
    border: 1.5px solid rgba(87, 71, 192, 0.35);
    background: linear-gradient(160deg, #ffffff, var(--violet-tint));
    box-shadow: var(--shadow);
}
.shift-col.to h3 { color: var(--violet); border-bottom-color: rgba(87, 71, 192, 0.2); }
.shift-col.to li { font-weight: 500; }
.shift-col.to li::before { content: "✓"; color: var(--violet); }
.shift-arrow {
    align-self: center;
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--violet);
}

/* ---------- Programs / pathways ---------- */
.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    align-items: stretch;
}
.path-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 2.5vw, 2.2rem);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.path-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad);
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.path-audience {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 0.6rem;
}
.path-card h3 { font-size: var(--fs-h3); color: var(--ink); margin-bottom: 0.8rem; }
.path-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.45;
    color: var(--violet-deep);
    padding-left: 0.9rem;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #53b2e8, #8b6ce8, #ef6aa4) 1;
    margin-bottom: 0.9rem;
}
.path-desc { font-size: 0.96rem; color: var(--text-soft); margin-bottom: 1rem; }
.path-points { display: grid; gap: 0.5rem; margin-bottom: 1.4rem; }
.path-points li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.93rem;
    color: var(--text);
}
.path-points li::before {
    content: "✓";
    flex-shrink: 0;
    width: 21px; height: 21px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--violet-tint);
    color: var(--violet-deep);
    font-weight: 700;
    font-size: 0.72rem;
    margin-top: 2px;
}
.path-cta { margin-top: auto; width: 100%; }

/* ---------- Practitioners ---------- */
.prac-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.prac-row h2 { font-size: var(--fs-h2); color: var(--ink); margin-bottom: 1.1rem; }
.prac-lead { font-size: var(--fs-lg); color: var(--text-soft); max-width: 540px; }
.prac-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-block: 1.7rem; }
.prac-tags li {
    padding: 0.42rem 1rem;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text);
}
.prac-art .flow-line { width: 100%; height: clamp(140px, 22vw, 220px); }

/* ---------- Wall of Love ---------- */
.wall-grid {
    columns: 3;
    column-gap: 1.3rem;
}
.w-card {
    break-inside: avoid;
    margin-bottom: 1.3rem;
    background: var(--ink-2);
    border: 1px solid var(--line-inv);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: border-color 0.25s;
}
.w-card:hover { border-color: rgba(139, 108, 232, 0.5); }
.w-card blockquote p { font-size: 1rem; color: var(--text-inv); }
.w-card blockquote p::before {
    content: "\201C";
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    line-height: 0.6;
    margin-bottom: 0.7rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.w-card figcaption {
    margin-top: 1rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: #b9a8f5;
}
.w-card figcaption::before { content: "— "; }

/* ---------- Stories ---------- */
.featured-quote {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.featured-quote blockquote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.25rem, 1.3vw + 0.95rem, 1.65rem);
    line-height: 1.55;
    color: var(--ink);
}
.featured-quote blockquote p::before { content: "\201C"; }
.featured-quote blockquote p::after { content: "\201D"; }
.featured-quote figcaption {
    margin-top: 1.3rem;
    font-weight: 600;
    font-size: var(--fs-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--violet);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.story-card {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    transition: transform 0.25s, box-shadow 0.25s;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.role-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1rem;
    background: var(--violet-tint);
    color: var(--violet);
    border-radius: 999px;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.story-card h3 { font-size: var(--fs-h3); color: var(--ink); margin-bottom: 0.6rem; }
.story-card p { font-size: 0.97rem; color: var(--text-soft); }

/* ---------- Resources ---------- */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.r-card {
    --accent: var(--violet);
    position: relative;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem 1.5rem;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.r-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}
.r-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.r-card:nth-child(4n + 1) { --accent: #3e8fd0; }
.r-card:nth-child(4n + 2) { --accent: #8b6ce8; }
.r-card:nth-child(4n + 3) { --accent: #c13d73; }
.r-card:nth-child(4n + 4) { --accent: #2c8c74; }
.r-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.r-card h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.45rem; }
.r-card p { font-size: 0.93rem; color: var(--text-soft); }

/* ---------- Founder ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}
.about-photo { position: relative; }
.about-photo::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border-radius: var(--radius-lg);
    background: var(--grad);
    opacity: 0.25;
    z-index: 0;
}
.about-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.about-body h2 { font-size: var(--fs-h2); color: var(--ink); margin-bottom: 1.3rem; }
.about-body > p { color: var(--text-soft); margin-bottom: 1.1rem; max-width: 62ch; }
.cred-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.7rem; }
.cred-pills li {
    padding: 0.42rem 0.95rem;
    background: var(--violet-tint);
    border-radius: 999px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--violet-deep);
}

/* ---------- Assessment ---------- */
.assessment {
    background:
        radial-gradient(800px 420px at 18% 0%, rgba(87, 71, 192, 0.4), transparent 62%),
        radial-gradient(700px 400px at 85% 100%, rgba(193, 61, 115, 0.24), transparent 60%),
        var(--ink);
}
.assessment-inner {
    max-width: 680px;
    text-align: center;
}
.assessment h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.assessment-inner > p { font-size: var(--fs-lg); }

.assessment-cta { margin-top: 2rem; }
.assess-note {
    margin-top: 1.1rem;
    font-size: var(--fs-sm);
    color: rgba(237, 234, 248, 0.55) !important;
}

/* ---------- Assessment wizard ---------- */
.quiz-section {
    background:
        radial-gradient(700px 380px at 15% 0%, rgba(87, 71, 192, 0.08), transparent 60%),
        radial-gradient(600px 340px at 90% 100%, rgba(193, 61, 115, 0.06), transparent 60%),
        var(--paper);
    padding-block: clamp(2.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
}
.quiz-head { margin-bottom: 1.6rem; }

.quiz-card {
    max-width: 620px;
    margin-inline: auto;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(1.6rem, 4vw, 2.6rem);
    min-height: 540px;
    display: flex;
    flex-direction: column;
}

.quiz-progress {
    height: 5px;
    background: var(--line-soft);
    border-radius: 3px;
    margin-bottom: 1.8rem;
    visibility: hidden;
}
.quiz-progress.visible { visibility: visible; }
.quiz-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--grad);
    border-radius: 3px;
    transition: width 0.35s ease;
}

#quizApp { display: flex; flex-direction: column; flex: 1; }
#quizApp.anim { animation: quiz-slide 0.35s ease; }
@keyframes quiz-slide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}
.q-screen, #quizApp { min-height: 0; }
.q-screen { display: flex; flex-direction: column; flex: 1; }
.q-content { flex: 1; }

.q-heading {
    font-size: clamp(1.35rem, 1.2vw + 1rem, 1.65rem);
    color: var(--ink);
    margin-bottom: 0.9rem;
}
.q-sub { font-size: var(--fs-sm); color: var(--text-soft); margin-bottom: 1.3rem; }
.q-body p { font-size: 0.98rem; color: var(--text-soft); margin-bottom: 0.8rem; }
.q-text { font-size: 0.98rem; color: var(--text-soft); margin-bottom: 0.6rem; }
.q-text.emphasis { color: var(--violet-deep); font-weight: 600; }

.q-list { margin: 0.5rem 0 1rem; }
.q-list li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.98rem;
    padding-block: 0.35rem;
}
.q-list li::before { content: "✓"; color: var(--violet); font-weight: 700; flex-shrink: 0; }

.q-options, .q-checks { display: flex; flex-direction: column; gap: 0.6rem; }
.q-option, .q-check {
    width: 100%;
    text-align: left;
    padding: 0.9rem 1.1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 13px;
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.q-option:hover, .q-check:hover {
    border-color: var(--violet);
    background: var(--violet-tint);
    transform: translateY(-1px);
}
.q-check { display: flex; align-items: center; gap: 0.75rem; }
.q-check.checked { border-color: var(--violet); background: var(--violet-tint); }
.q-box {
    width: 19px; height: 19px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    font-size: 12px;
    color: #fff;
}
.q-check.checked .q-box { background: var(--violet); border-color: var(--violet); }

.q-action {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 1.4rem;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    background: var(--violet);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 22px -8px rgba(87, 71, 192, 0.55);
}
.q-action:hover:not(:disabled) { background: var(--violet-deep); transform: translateY(-2px); }
.q-action:disabled { opacity: 0.7; cursor: wait; }

.q-input { margin-top: 0.4rem; }
.q-input label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--violet-deep);
    margin-bottom: 0.5rem;
}
.q-input input[type="email"] {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--paper);
}
.q-input input[type="email"]:focus { border-color: var(--violet); outline: none; }
.q-input input[type="text"] { position: absolute; left: -9999px; width: 1px; height: 1px; } /* honeypot */
.q-privacy { font-size: var(--fs-xs); color: var(--text-soft); margin-top: 0.8rem; }
.q-error {
    display: none;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--rose);
    margin-top: 0.8rem;
}
.q-error.show { display: block; }
.q-noscript { margin-top: 1rem; font-weight: 600; color: var(--rose); }
.q-noscript a { text-decoration: underline; }

.q-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: var(--grad);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.q-intensity {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.3rem;
}
.q-intensity-desc { font-size: 0.95rem; font-style: italic; color: var(--text-soft); margin-bottom: 0.6rem; }
.q-section-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--violet-deep);
    margin: 1.1rem 0 0.45rem;
}
.q-snapshot li { font-size: 0.95rem; color: var(--text-soft); padding-block: 0.2rem; }
.q-snapshot b { color: var(--ink); }
.q-confirm {
    display: none;
    text-align: center;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--violet-deep);
    margin-top: 0.9rem;
}
.q-confirm.show { display: block; }

.quiz-note {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--text-soft);
    margin-top: 1.4rem;
}

/* ---------- Reset plan pages ---------- */
.r-hero {
    background:
        radial-gradient(700px 380px at 18% 0%, rgba(87, 71, 192, 0.09), transparent 60%),
        radial-gradient(600px 340px at 88% 100%, rgba(193, 61, 115, 0.07), transparent 60%),
        var(--paper);
    padding-block: clamp(3rem, 6vw, 5rem) clamp(3.5rem, 7vw, 5.5rem);
}
.r-hero-inner {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.r-hero h1 { font-size: var(--fs-h2); color: var(--ink); margin-top: 0.6rem; }
.r-hero-sub { font-size: var(--fs-lg); color: var(--text-soft); max-width: 620px; margin-top: 0.6rem; }

.r-meaning { padding-block: clamp(3rem, 6vw, 4.5rem); }
.r-card {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(1.6rem, 3.5vw, 2.6rem);
    max-width: 860px;
    margin-inline: auto;
}
.on-ink .r-card h2, .r-card h2 { color: var(--ink); font-size: clamp(1.35rem, 1.4vw + 1rem, 1.8rem); margin-bottom: 0.8rem; }
.on-ink .r-card p { color: var(--text-soft); }
.r-card.light { margin-inline: 0; max-width: none; box-shadow: none; }
.r-card.emphasised {
    border: 1.5px solid rgba(87, 71, 192, 0.35);
    background: linear-gradient(160deg, #ffffff, var(--violet-tint));
}

.r-icon-title { display: flex; gap: 1.1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.r-icon {
    width: 64px; height: 64px;
    flex-shrink: 0;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--lilac), #ece7f8);
    border: 1px solid rgba(87, 71, 192, 0.12);
}
.r-icon svg { width: 44px; height: 44px; overflow: visible; }
.r-icon .stroke { fill: none; stroke: var(--violet); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.r-icon .accent-stroke { fill: none; stroke: var(--rose); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.r-icon .soft-fill { fill: #ede8fa; }
.r-icon .muted-fill { fill: #d9d2ee; }
.r-icon .violet-fill { fill: #7c5ce0; }
.r-icon .accent { fill: var(--rose); }
.r-icon .pulse { animation: r-pulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.r-icon .float { animation: r-float 4.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.r-icon .spin-slow { animation: r-spin 10s linear infinite; transform-origin: center; transform-box: fill-box; }
@keyframes r-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.9; } }
@keyframes r-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1.8px); } }
@keyframes r-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.r-lead { font-size: 1.02rem; color: var(--text-soft); }

.r-bullets { display: grid; gap: 0.65rem; margin-top: 0.5rem; }
.r-bullets li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; color: var(--text); }
.r-bullets li::before {
    content: "✓";
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--violet-tint);
    color: var(--violet-deep);
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 1px;
}
.r-bullets.crossed li::before { content: "✕"; background: #fbe7ef; color: var(--rose); }

.r-quote {
    margin-top: 1.4rem;
    padding: 1.1rem 1.3rem;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #53b2e8, #8b6ce8, #ef6aa4) 1;
    background: var(--lilac);
    border-radius: 0 14px 14px 0;
    font-weight: 600;
    color: var(--ink) !important;
}
.r-quote.light { background: var(--paper); }

.r-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: stretch;
}
.r-grid2.experiment { grid-template-columns: 0.9fr 1.1fr; align-items: start; }

.r-experiment-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--violet-deep);
    margin-bottom: 0.8rem;
}

.r-tracker {
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 3vw, 2rem);
    background: linear-gradient(160deg, rgba(87, 71, 192, 0.12), rgba(193, 61, 115, 0.08));
    border: 1px solid rgba(87, 71, 192, 0.14);
}
.r-tracker-label {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--white);
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--violet-deep);
    margin-bottom: 0.5rem;
}
.r-tracker-hint { font-size: var(--fs-xs); color: var(--text-soft); margin-bottom: 1rem; }
.r-days { display: grid; gap: 0.55rem; }
.r-day {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0.55rem 0.7rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text);
    text-align: left;
    transition: background 0.2s;
}
.r-day:hover { background: #fff; }
.r-day-dot {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(87, 71, 192, 0.3);
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--text-soft);
    transition: 0.2s;
}
.r-day.done .r-day-dot { background: var(--violet); border-color: var(--violet); color: #fff; }
.r-progress {
    height: 9px;
    border-radius: 999px;
    background: rgba(87, 71, 192, 0.14);
    overflow: hidden;
    margin-top: 1.1rem;
}
.r-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: var(--grad);
    transition: width 0.35s ease;
}

.r-insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.r-insight {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 2.5vw, 1.9rem);
    transition: transform 0.25s, box-shadow 0.25s;
}
.r-insight:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.r-number {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--violet);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.9rem;
}
.r-insight h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.5rem; }
.r-insight p { font-size: 0.95rem; color: var(--text-soft); }

.r-workbook { margin-top: 1.4rem; width: 100%; }
.r-workbook-note {
    margin-top: 0.6rem;
    font-size: var(--fs-xs);
    color: var(--text-soft);
    text-align: center;
}

.r-retake { text-decoration: underline; text-underline-offset: 3px; }
.r-retake:hover { color: #fff; }

@media (max-width: 768px) {
    .r-grid2, .r-grid2.experiment { grid-template-columns: 1fr; }
    .r-insights { grid-template-columns: 1fr; }
    .r-icon-title { flex-direction: column; }
}

/* ---------- About page ---------- */
.a-hero {
    background:
        radial-gradient(800px 440px at 15% -5%, rgba(87, 71, 192, 0.35), transparent 62%),
        radial-gradient(700px 400px at 90% 15%, rgba(193, 61, 115, 0.22), transparent 60%),
        var(--ink);
}
.a-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.a-hero h1 { font-size: clamp(2.6rem, 4vw + 1rem, 4.2rem); color: #fdfcff; margin-bottom: 1.2rem; }
.a-hero-sub { font-size: var(--fs-lg); color: var(--text-inv-soft); max-width: 560px; margin-bottom: 2rem; }
.a-hero-ctas { justify-content: flex-start; }

.a-portrait { max-width: 420px; margin-left: auto; }
.a-portrait img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.a-quote-card {
    margin-top: -2.2rem;
    margin-inline: 1rem;
    position: relative;
    background: var(--paper);
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow);
}
.a-quote-card blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--ink);
}

.a-note {
    background: linear-gradient(135deg, var(--ink), var(--ink-3));
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.a-note::after {
    content: "";
    position: absolute;
    right: -110px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83, 178, 232, 0.22), transparent 65%);
}
.a-note > * { position: relative; z-index: 1; }
.a-note h2 { font-size: var(--fs-h2); color: #fdfcff; margin-bottom: 1.1rem; max-width: 780px; }
.a-note p { color: var(--text-inv-soft); max-width: 760px; margin-bottom: 0.9rem; font-size: var(--fs-lg); }
.a-note-ctas { justify-content: flex-start; margin-top: 1.6rem; }

.a-journey { padding-top: 0; }
.a-scenes { max-width: 900px; }
.a-scene {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: clamp(1.2rem, 3vw, 2.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.a-year {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(38, 32, 64, 0.18);
    text-align: right;
}
.a-year.gold {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.85;
}
.a-kicker {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.6rem;
}
.a-scene-copy h3 {
    font-size: clamp(1.35rem, 1.6vw + 0.9rem, 1.9rem);
    color: var(--ink);
    margin-bottom: 0.9rem;
}
.a-scene-copy p { color: var(--text-soft); margin-bottom: 0.8rem; max-width: 68ch; }
.a-pull {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 1.3vw + 0.9rem, 1.55rem);
    line-height: 1.35;
    color: var(--ink) !important;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #53b2e8, #8b6ce8, #ef6aa4) 1;
    padding-left: 1.2rem;
    margin-top: 1.2rem;
}
.a-soft-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
    margin-top: 1.2rem;
}
.a-soft-list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text);
}
.a-soft-list li::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--grad);
    margin-top: 7px;
    flex-shrink: 0;
}

.a-foundation-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.a-stars { display: grid; gap: 1.6rem; position: relative; counter-reset: star; }
.a-stars li {
    position: relative;
    padding-left: 3.4rem;
    counter-increment: star;
}
.a-stars li::before {
    content: "0" counter(star);
    position: absolute;
    left: 0;
    top: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 0 0 7px rgba(139, 108, 232, 0.14);
}
.a-stars li::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -1.6rem;
    width: 1px;
    background: linear-gradient(rgba(139, 108, 232, 0.5), rgba(239, 106, 164, 0.2));
}
.a-stars li:last-child::after { display: none; }
.a-stars b {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fdfcff;
    margin-bottom: 0.25rem;
}
.a-stars span { font-size: var(--fs-sm); color: var(--text-inv-soft); font-weight: 500; }

.a-foundation-copy h3 {
    font-size: clamp(1.5rem, 2vw + 0.9rem, 2.2rem);
    color: #fdfcff;
    margin-bottom: 1rem;
}
.a-foundation-copy p { color: var(--text-inv-soft); margin-bottom: 0.9rem; }
.a-callout {
    margin: 1.4rem 0;
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius);
    border: 1px solid var(--line-inv);
    background: linear-gradient(120deg, rgba(87, 71, 192, 0.22), rgba(193, 61, 115, 0.14));
}
.a-callout b {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fdfcff;
    margin-bottom: 0.5rem;
}
.a-callout span { color: var(--text-inv-soft); font-size: 0.98rem; }

.a-bridge {
    margin-top: 2.2rem;
    max-width: 820px;
    margin-inline: auto;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--ink), var(--ink-3));
    color: var(--text-inv);
    text-align: center;
    padding: clamp(1.8rem, 4vw, 2.6rem);
    box-shadow: var(--shadow);
}
.a-bridge b {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2vw + 0.8rem, 2rem);
    color: #fdfcff;
    margin-bottom: 0.6rem;
}
.a-bridge span { color: var(--text-inv-soft); font-size: 1rem; }

.a-creds-section { padding-top: 0; }
.a-creds-grid, .a-faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.a-creds-grid h2, .a-faq-grid h2 { font-size: var(--fs-h2); color: var(--ink); margin-bottom: 1rem; }
.a-creds-lead { font-size: var(--fs-lg); color: var(--text-soft); }
.a-creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.a-cred {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 1.2rem 1.3rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.a-cred:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.a-cred b {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 0.35rem;
}
.a-cred span { font-size: var(--fs-sm); color: var(--text-soft); font-weight: 500; }

.a-faq details { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.a-faq details:last-child { border-bottom: 1px solid var(--line); }
.a-faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
}
.a-faq summary::-webkit-details-marker { display: none; }
.a-faq summary::after { content: "+"; font-size: 1.4rem; color: var(--violet); line-height: 1; }
.a-faq details[open] summary::after { content: "–"; }
.a-faq details p { margin-top: 0.8rem; font-size: 0.97rem; color: var(--text-soft); }

.founder-more { margin-top: 1.6rem; }

@media (max-width: 920px) {
    .a-hero-grid, .a-foundation-grid, .a-creds-grid, .a-faq-grid { grid-template-columns: 1fr; }
    .a-portrait { margin-inline: auto; }
}
@media (max-width: 560px) {
    .a-scene { grid-template-columns: 1fr; gap: 0.6rem; }
    .a-year { text-align: left; }
    .a-soft-list { grid-template-columns: 1fr; }
    .a-creds { grid-template-columns: 1fr; }
}

/* ---------- Method page ---------- */
.m-hero-inner { max-width: 780px; margin-inline: auto; }
.m-hero h1 { font-size: clamp(2.4rem, 4vw + 1rem, 4rem); color: #fdfcff; margin-bottom: 1.6rem; }
.m-intro p { color: var(--text-inv-soft); font-size: var(--fs-lg); margin-bottom: 0.9rem; }
.m-beat {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 1.4vw + 1rem, 1.7rem);
    color: #fdfcff !important;
    padding-block: 0.4rem;
}
.m-truth {
    font-weight: 600;
    color: #fdfcff !important;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #53b2e8, #8b6ce8, #ef6aa4) 1;
    padding-left: 1.1rem;
    margin-block: 1.3rem !important;
}
.m-what { max-width: 720px; }
.m-what p { font-size: var(--fs-lg); color: var(--text-soft); margin-bottom: 0.9rem; }
.m-what strong { color: var(--violet-deep); }

.m-steps { display: grid; gap: 1.4rem; max-width: 860px; }
.m-step {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.7rem, 3.5vw, 2.6rem);
    box-shadow: 0 10px 32px -18px rgba(23, 20, 49, 0.15);
}
.m-step-line { width: min(100%, 300px); height: 34px; margin-bottom: 1.2rem; }
.m-step-num {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 0.3rem;
}
.m-step h3 {
    font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
    color: var(--ink);
    margin-bottom: 0.7rem;
}
.m-step-lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.15rem, 1vw + 0.9rem, 1.4rem);
    color: var(--violet-deep);
    margin-bottom: 1rem;
}
.m-step p { color: var(--text-soft); margin-bottom: 0.8rem; max-width: 66ch; }
.m-step-close { color: var(--ink) !important; font-weight: 600; }
.m-questions { display: grid; gap: 0.5rem; margin: 0.4rem 0 1rem; }
.m-questions li {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--ink);
}
.m-questions li::before { content: "— "; color: var(--rose); }

.m-again {
    max-width: 640px;
    margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
    text-align: center;
}
.m-again-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.1rem);
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.7rem;
}
.m-again p:last-child { color: var(--text-soft); font-size: var(--fs-lg); }

.m-india {
    max-width: 820px;
    margin-top: 1.6rem;
}
.m-india p {
    font-size: var(--fs-lg);
    color: var(--text-soft);
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #53b2e8, #8b6ce8, #ef6aa4) 1;
    padding-left: 1.2rem;
}

.m-story { max-width: 860px; }
.m-story-copy p { color: var(--text-inv-soft); font-size: var(--fs-lg); margin-bottom: 1rem; }
.m-story-copy .btn-link { margin-top: 0.6rem; }

.m-forme-card {
    max-width: 760px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.7rem, 3.5vw, 2.5rem);
    box-shadow: var(--shadow);
}
.m-forme-close {
    margin-top: 1.4rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--violet-deep);
}

.m-final-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.m-tagline {
    margin-top: 2.2rem;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 1.6vw + 0.9rem, 1.8rem);
    color: #fdfcff !important;
}

.method-more { margin-top: 2rem; text-align: center; }

/* ---------- Practitioners page ---------- */
.pr-hero { text-align: center; }
.pr-hero-inner {
    max-width: 860px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pr-track {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.6rem;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.pr-track span:not(.pr-track-arrow) {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line-inv);
    color: var(--text-inv-soft);
}
.pr-track .lit {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
}
.pr-track-arrow { color: #b9a8f5; font-size: 1rem; }
.pr-h1 {
    font-size: clamp(2.1rem, 3.4vw + 1rem, 3.6rem);
    color: #fdfcff;
}
.pr-h1 em {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: 0.68em;
    line-height: 1.3;
    margin-top: 0.7rem;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--text-inv-soft);
    padding-right: 0;
}
.pr-hero-sub { margin-inline: auto; margin-bottom: 2.2rem; }

.pr-paradox {
    max-width: 860px;
    display: grid;
    counter-reset: paradox;
}
.pr-paradox li {
    counter-increment: paradox;
    position: relative;
    padding: 1.15rem 0.8rem 1.15rem 66px;
    border-top: 1px solid var(--line-soft);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1vw + 0.9rem, 1.35rem);
    line-height: 1.45;
    color: var(--ink);
    transition: background 0.2s;
    border-radius: 10px;
}
.pr-paradox li:hover { background: var(--violet-tint); }
.pr-paradox li::before {
    content: "0" counter(paradox);
    position: absolute;
    left: 0.8rem;
    top: 1.5rem;
    width: 44px;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: right;
}
.pr-paradox li:last-child { border-bottom: 1px solid var(--line-soft); }
.pr-paradox .still { font-style: italic; color: var(--rose); }

.pr-pull {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 1.4vw + 0.9rem, 1.6rem);
    line-height: 1.5;
    color: var(--ink);
    max-width: 680px;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    text-align: center;
    padding-top: 1.8rem;
    position: relative;
}
.pr-pull::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    border-radius: 2px;
    background: var(--grad);
}
.on-ink .pr-pull { color: var(--text-inv); }

.pr-confess-card {
    margin-top: 2rem;
    max-width: 760px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 3.5vw, 2.4rem);
    box-shadow: var(--shadow);
}
.pr-confess-label {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--violet-deep);
    margin-bottom: 1rem;
}
.pr-confess { display: grid; gap: 0.8rem; }
.pr-confess li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.45;
    color: var(--text);
}
.pr-confess li::before { content: "—"; color: var(--rose); font-weight: 700; flex-shrink: 0; font-style: normal; }

.pr-quiet {
    margin-top: 2.2rem;
    max-width: 860px;
    background: var(--blush);
    border: 1px solid rgba(193, 61, 115, 0.15);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.2rem);
}
.pr-quiet .pr-confess-label { color: var(--rose); margin-top: 0; }
.pr-quiet-list { display: grid; gap: 1rem; }
.pr-quiet-list li {
    position: relative;
    padding-left: 1.9rem;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 0.8vw + 0.9rem, 1.25rem);
    line-height: 1.5;
    color: var(--ink);
}
.pr-quiet-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rose);
    font-weight: 700;
}
.pr-quiet-list .still { font-style: italic; color: var(--rose); }

.pr-spec {
    max-width: 720px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.pr-spec-head, .pr-spec-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    gap: 1rem;
}
.pr-spec-head { padding-bottom: 1rem; }
.pr-spec-head .is-chip, .pr-spec-head .isnt-chip {
    justify-self: start;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pr-spec-head .is-chip { justify-self: end; background: var(--violet-tint); color: var(--violet-deep); }
.pr-spec-head .isnt-chip { background: #fbe7ef; color: var(--rose); }
.pr-spec-row {
    padding: 1rem 0;
    border-top: 1px solid var(--line-soft);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.1vw + 0.9rem, 1.5rem);
}
.pr-spec-row .is { text-align: right; font-weight: 600; color: var(--ink); }
.pr-spec-row .isnt { font-style: italic; color: var(--text-soft); }
.pr-spec-row .div {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--grad);
    margin-inline: auto;
}

.pr-outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    max-width: 960px;
}
.pr-outcome-grid li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    font-size: 0.98rem;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pr-outcome-grid li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pr-outcome-grid li::before {
    content: "✓";
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--violet-tint);
    color: var(--violet-deep);
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 1px;
}

.pr-flagship {
    max-width: 940px;
    margin-inline: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 70px -24px rgba(23, 19, 49, 0.35);
    border: 1px solid var(--line-soft);
    background: var(--white);
}
.pr-flagship-head {
    background:
        radial-gradient(600px 300px at 85% 0%, rgba(193, 61, 115, 0.25), transparent 60%),
        radial-gradient(500px 280px at 10% 100%, rgba(83, 178, 232, 0.18), transparent 55%),
        linear-gradient(135deg, var(--ink), var(--ink-3));
    color: var(--text-inv);
    padding: clamp(2rem, 4.5vw, 3.2rem);
}
.pr-flagship-kicker {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b9a8f5;
    margin-bottom: 0.7rem;
}
.pr-flagship-head h2 {
    font-size: clamp(1.9rem, 2.8vw + 1rem, 3rem);
    color: #fdfcff;
    margin-bottom: 0.5rem;
}
.pr-flagship-sub {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.1rem;
}
.pr-flagship-desc {
    font-size: var(--fs-lg);
    color: var(--text-inv-soft);
    max-width: 62ch;
}
.pr-flagship-body { padding: clamp(1.8rem, 4vw, 2.8rem); }
.pr-flagship-block { margin-bottom: clamp(1.6rem, 3vw, 2.2rem); }
.pr-flagship-block h3 {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet-deep);
    margin-bottom: 1rem;
}
.pr-flagship .prac-tags { margin: 0; }
.pr-includes {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem 1.6rem;
}
.pr-flagship-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.1rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line-soft);
}
.pr-flagship-note {
    font-size: var(--fs-sm);
    color: var(--text-soft);
    margin: 0;
}

@media (max-width: 720px) {
    .pr-outcome-grid, .pr-includes { grid-template-columns: 1fr; }
    .pr-paradox li { padding-left: 44px; padding-right: 0.4rem; }
    .pr-paradox li::before { left: 0.3rem; width: 28px; }
    .pr-spec-head, .pr-spec-row { grid-template-columns: 1fr 20px 1fr; }
    .pr-track { flex-wrap: wrap; justify-content: center; }
}

/* ---------- Enquiry form ---------- */
.e-back-row { text-align: center; margin-top: 0.8rem; }
.btn-link .arrow.back { transition: transform 0.2s; }
.btn-link:hover .arrow.back { transform: translateX(-4px); }

.enquiry-card { min-height: 0; }
.enquiry-card .q-heading em {
    font-style: italic;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.enquiry-form { margin-top: 1.2rem; display: grid; gap: 1.1rem; }
.e-field { border: 0; }
.e-field label, .e-field legend {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--violet-deep);
    margin-bottom: 0.45rem;
}
.e-optional { color: var(--text-soft); font-weight: 500; text-transform: none; letter-spacing: 0; }
.e-field input[type="text"],
.e-field input[type="email"],
.e-field input[type="tel"],
.e-field textarea {
    width: 100%;
    padding: 0.85rem 1.05rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--paper);
    resize: vertical;
}
.e-field input:focus, .e-field textarea:focus { border-color: var(--violet); outline: none; }
.e-choices { display: grid; gap: 0.55rem; }
.e-choice {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.e-choice:hover { border-color: var(--violet); }
.e-choice:has(input:checked) { border-color: var(--violet); background: var(--violet-tint); }
.e-choice input { accent-color: var(--violet); width: 17px; height: 17px; }
.form-note {
    display: none;
    margin-top: 1.1rem;
    font-weight: 600;
    text-align: center;
}
.form-note.success { color: #2c8c74; }
.form-note.error { color: var(--rose); }
.form-note.countdown { color: var(--text-soft); font-weight: 500; margin-top: 0.5rem; }
.form-note.countdown a { color: var(--violet); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.form-note.show { display: block; }

/* ---------- Utility pages (404 / error) ---------- */
.utility-page { min-height: 55vh; }
.utility-page h1 { font-size: var(--fs-h2); color: var(--ink); margin-bottom: 1rem; }
.utility-page p { color: var(--text-soft); max-width: 60ch; margin-bottom: 1.5rem; }
.utility-page .hero-ctas { justify-content: flex-start; }

/* ---------- Footer ---------- */
.site-footer {
    background: #110d26;
    color: var(--text-inv-soft);
    padding-block: clamp(3rem, 6vw, 4.5rem) 1.8rem;
    font-size: 0.95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: 2.8rem;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; }
.footer-heading {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b9a8f5;
    margin-bottom: 1rem;
}
.footer-col li { padding-block: 0.28rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line-inv);
    font-size: var(--fs-sm);
}
.footer-social { display: flex; gap: 1.4rem; }
.footer-social a:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */
html.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.in {
    opacity: 1;
    transform: none;
}

@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;
    }
    html.js .reveal { opacity: 1; transform: none; }
    .hero-flow path { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .resource-grid { grid-template-columns: repeat(2, 1fr); }
    .wall-grid { columns: 2; }
    .about-grid { grid-template-columns: 320px 1fr; }
}

@media (max-width: 920px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-cta .btn { display: none; }
    .path-grid { grid-template-columns: 1fr; }
    .prac-row { grid-template-columns: 1fr; }
    .prac-art { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
    .stats-grid .stat:last-child { grid-column: 1 / -1; }
    .pillars { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; }
    .shift-grid { grid-template-columns: 1fr; }
    .shift-arrow { transform: rotate(90deg); justify-self: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { max-width: 420px; }
}

@media (max-width: 560px) {
    .wall-grid { columns: 1; }
    .resource-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; gap: 1.1rem; }
    .struggle-grid { grid-template-columns: 1fr 1fr; }
    .struggle-grid li { font-size: 0.88rem; padding: 0.8rem 0.9rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .quiz-card { min-height: 480px; }
}
