/* ================================================
   structure.css

Contains:
     - Body baseline
     - Navbar structure
     - Footer structure
     - Page width wrappers
     - Shared structural components

   Does NOT contain:
     - Any colours

   ================================================ */


/* ── BODY BASELINE ───────────────────────────── */
body {
    padding-top: 68px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; transition: color 0.2s; }

/* ── PAGE WIDTH WRAPPERS ─────────────────────── */
section { padding: 7rem 2rem; }

.inner {
    max-width: 1100px;
    margin: 0 auto;
}

.inner--narrow {
    max-width: 740px;
    margin: 0 auto;
}

/* ── SECTION LABELS & HEADINGS ───────────────── */
.section-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.93;
    letter-spacing: 0.02em;
    margin-bottom: 1.75rem;
}

.section-title em { font-style: normal; }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.95rem 2rem;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-text {
    display: inline-block;
    font-weight: 500;
    font-size: 0.88rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

/* ── DIVIDER BAND ────────────────────────────── */
.divider {
    padding: 2.5rem 2rem;
    text-align: center;
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.divider-text {
    font-size: clamp(1.05rem, 3vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.04em;
    margin: 0 auto;
    max-width: 700px;
}

/* ── QUOTE BAND ──────────────────────────────── */
.quote-band {
    padding: 3rem 2rem;
    text-align: center;
}

.quote-band blockquote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: 0.03em;
    max-width: 860px;
    margin: 0 auto;
}

.quote-band cite {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 1.2rem;
}

/* ── EXPLAINER GRID ──────────────────────────── */
.explainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 3.5rem;
}

.explainer-item { padding: 2.5rem 2rem; }

.explainer-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    opacity: 0.25;
    margin-bottom: 0.8rem;
}

.explainer-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.explainer-item p { font-size: 0.88rem; line-height: 1.6; }

/* ── STAT STRIP ──────────────────────────────── */
.stat-strip {
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
}

.stat-inner {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat { text-align: center; }

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* ── PLAN CARDS ──────────────────────────────── */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.plan-card {
    border-width: 1px;
    border-style: solid;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

.plan-card:hover:not(.coming-soon) { transform: translateY(-3px); }
.plan-card.coming-soon { opacity: 0.55; pointer-events: none; }

.plan-badge {
    position: absolute;
    top: -1px; left: 2.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
}

.plan-card-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.plan-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.plan-desc { font-size: 0.9rem; margin-bottom: 1.8rem; flex: 1; }

.plan-price-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.plan-price-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.plan-price-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    line-height: 1;
}

.plan-price-val sup {
    font-size: 1.4rem;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.plan-price-sep { width: 1px; height: 3rem; align-self: center; }

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    border-top-width: 1px;
    border-top-style: solid;
    padding-top: 1.5rem;
}

.plan-features li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.87rem;
    padding: 0.45rem 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '→'; flex-shrink: 0; }

/* ── TABLE ───────────────────────────────────── */
.free-table-wrap { margin-top: 3rem; overflow-x: auto; }

table { width: 100%; border-collapse: collapse; border-width: 1px; border-style: solid; }

th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

td {
    padding: 1rem 1.5rem;
    font-size: 0.88rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { margin-top: 3rem; }

details { border-bottom-width: 1px; border-bottom-style: solid; }

summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

summary::-webkit-details-marker { display: none; }

.faq-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.2s;
}

details[open] .faq-icon { transform: rotate(45deg); }
details p { padding: 0 0 1.5rem; font-size: 0.9rem; max-width: 680px; line-height: 1.65; }

/* ── TESTIMONIAL ─────────────────────────────── */
.testimonial {
    border-width: 1px;
    border-style: solid;
    padding: 3rem 3rem 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 7rem;
    opacity: 0.12;
    position: absolute;
    top: 0.5rem; left: 1.75rem;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin: 0 0 1.25rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ════════════════════════════════════════════════
   NAVBAR  —  nav-container namespace
   ════════════════════════════════════════════════ */

.nav-container,
.nav-container *,
.nav-container *::before,
.nav-container *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.nav-container {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    font-family: 'DM Sans', sans-serif;
    border-bottom-width: 2px;
    border-bottom-style: solid;
}

.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-logo {
    height: 28px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 0.4rem 0.75rem;
    border-radius: 3px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.nav-links a:hover { text-decoration: none; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.nav-cta {
    display: inline-block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
}

.menu-toggle { display: none; }

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color 0.2s;
}

.menu-icon span,
.menu-icon span::before,
.menu-icon span::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-icon span         { top: 50%; margin-top: -1px; }
.menu-icon span::before { content: ''; top: -7px; }
.menu-icon span::after  { content: ''; bottom: -7px; top: auto; }

.menu-toggle:checked ~ .nav-right .menu-icon span          { background: transparent !important; }
.menu-toggle:checked ~ .nav-right .menu-icon span::before  { transform: translateX(-50%) translateY(7px) rotate(45deg); }
.menu-toggle:checked ~ .nav-right .menu-icon span::after   { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════════
   FOOTER  —  bs-ft namespace
   ════════════════════════════════════════════════ */

.bs-ft,
.bs-ft *,
.bs-ft *::before,
.bs-ft *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bs-ft {
    border-top-width: 2px;
    border-top-style: solid;
    font-family: 'DM Sans', sans-serif;
}

.bs-ft__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
}

.bs-ft__col {
    padding: 3rem 2.5rem;
    border-right-width: 1px;
    border-right-style: solid;
}

.bs-ft__col:last-child { border-right: none; }

.bs-ft__logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.bs-ft__logo { height: 24px; width: auto; display: block; flex-shrink: 0; }

.bs-ft__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
}

.bs-ft__bio { font-size: 0.85rem; line-height: 1.65; max-width: 300px; }

.bs-ft__heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    display: block;
}

.bs-ft__list { list-style: none; }
.bs-ft__item { margin-bottom: 0.6rem; }

.bs-ft__link {
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    transition: color 0.2s;
}
.bs-ft__link:hover { text-decoration: none; }

.bs-ft__soon {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 0.4rem;
}

.bs-ft__bottom {
    border-top-width: 1px;
    border-top-style: solid;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bs-ft__copy { font-size: 0.75rem; }
.bs-ft__copy a { text-decoration: none; transition: color 0.2s; }
.bs-ft__copy a:hover { text-decoration: none; }

.bs-ft__nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
}

.bs-ft__nav-item { display: flex; align-items: center; }

.bs-ft__nav-item + .bs-ft__nav-item::before {
    content: '';
    display: block;
    width: 1px;
    height: 0.8em;
    margin: 0 0.9rem;
    flex-shrink: 0;
}

.bs-ft__nav-link { font-size: 0.75rem; text-decoration: none; transition: color 0.2s; }
.bs-ft__nav-link:hover { text-decoration: none; }


/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {

    /* Navbar */
    .menu-icon { display: flex; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        gap: 0;
        padding: 0.5rem 0;
        z-index: 999;
        border-top-width: 2px;
        border-top-style: solid;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        box-shadow: 0 16px 48px rgba(0,0,0,0.4);
        animation: menuDown 0.2s ease forwards;
        font-family: 'DM Sans', sans-serif;
    }

    .nav-links li { width: 100%; border-bottom-width: 1px; border-bottom-style: solid; }
    .nav-links li:last-child { border-bottom: none; }

    .nav-links a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 0;
        font-size: 0.95rem;
        text-transform: none;
        letter-spacing: 0.03em;
        font-weight: 500;
        text-decoration: none;
    }

    .nav-links a:hover { text-decoration: none; }
    .menu-toggle:checked ~ .nav-links { display: flex; }

    /* Section */
    section { padding: 5rem 1.5rem; }

    /* Explainer */
    .explainer-grid { grid-template-columns: 1fr; }

    /* Plans */
    .plans-grid { grid-template-columns: 1fr; }

    /* Tables */
    table th, table td { padding: 0.8rem 1rem; }

    /* Testimonial */
    .testimonial { padding: 2rem 1.75rem; }

    /* Footer */
    .bs-ft__top { grid-template-columns: 1fr; }

    .bs-ft__col {
        border-right: none;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        padding: 2.5rem 1.5rem;
    }

    .bs-ft__col:last-child { border-bottom: none; }
    .bs-ft__bio { max-width: 100%; }

    .bs-ft__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.5rem;
        gap: 0.6rem;
    }

    .bs-ft__nav { flex-wrap: wrap; gap: 0.75rem; }
    .bs-ft__nav-item + .bs-ft__nav-item::before { display: none; }
}

@keyframes menuDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 901px) {
    .nav-brand-group { margin-right: 1rem; }
}

/* ════════════════════════════════════════════════
   HERO LAYOUT  —  bs-hero namespace
   Shared structure for all pages.
   Background image set inline per page.
   Colours set in theme CSS.
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   HERO LAYOUT  —  bs-hero namespace
   Shared structure for all pages.
   Background image set inline per page.
   Colours set in theme CSS.
   ════════════════════════════════════════════════ */

.bs-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-top: 4px solid var(--hero-border, transparent);
    border-bottom: 4px solid var(--hero-border, transparent);
}

/* Dark overlay — opacity set via theme CSS on ::before */
.bs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Ghost text — top right, outline style */
.bs-hero__ghost {
    position: absolute;
    top: -0.15em;
    right: -0.05em;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 22vw, 280px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.10);
    pointer-events: none;
    user-select: none;
    z-index: 2;
    white-space: nowrap;
}

/* Neon stripe — rightball only */
.bs-hero__stripe {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    z-index: 4;
}

.bs-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2.5rem 3.5rem;
}

.bs-hero__content { max-width: 860px; width: 100%; }

.bs-hero__kicker {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    padding: 4px 10px;
}

.bs-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
}

.bs-hero__title em  { font-style: normal; }
.bs-hero__title mark { padding: 0 6px; display: inline; }

.bs-hero__tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Optional meta row (rightball: tagline + dots side by side) */
.bs-hero__meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Actions row */
.bs-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2rem;
}

/* Footnote */
.bs-hero__footnote {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.bs-hero__fn-line {
    width: 48px;
    height: 1px;
    flex-shrink: 0;
}

.bs-hero__footnote span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ── Ball dots (rightball only) ──────────────── */
.bs-hero__dots {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.bs-hero__dot-wrap,
.bs-hero__dot-pair-wrap {
    position: relative;
    display: flex;
    align-items: center;
    cursor: default;
}

.bs-hero__dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.bs-hero__dot-wrap:hover > .bs-hero__dot,
.bs-hero__dot-pair-wrap:hover .bs-hero__dot { transform: scale(1.7); }

.bs-hero__dot-label {
    position: absolute;
    bottom: calc(100% + 13px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s 0.06s;
    z-index: 20;
}

.bs-hero__dot-label::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
}

.bs-hero__dot-wrap:hover .bs-hero__dot-label,
.bs-hero__dot-pair-wrap:hover .bs-hero__dot-label { opacity: 1; }

.bs-hero__dot-pair { display: flex; gap: 4px; align-items: center; }

.bs-hero__dot-sep {
    width: 1px; height: 20px;
    flex-shrink: 0;
    margin: 0 2px;
}

/* ── Animations ──────────────────────────────── */
@keyframes heroUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bs-hero__kicker  { animation: heroUp 0.45s 0.05s both; }
.bs-hero__title   { animation: heroUp 0.55s 0.15s both; }
.bs-hero__tagline { animation: heroUp 0.55s 0.28s both; }
.bs-hero__meta    { animation: heroUp 0.55s 0.28s both; }
.bs-hero__actions { animation: heroUp 0.55s 0.38s both; }
.bs-hero__footnote { animation: heroUp 0.55s 0.48s both; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
    .bs-hero { min-height: 380px; align-items: center; }
    .bs-hero__inner { padding: 4rem 1.5rem 3rem; }
    .bs-hero__dots  { display: none; }
    .bs-hero__ghost { font-size: clamp(100px, 28vw, 180px); }
}

@media (max-width: 600px) {
    .bs-hero { min-height: 320px; }
}

/* ================================================
   structure.css
   Page-specific styles for fastfocus.html
   
   ================================================ */

/* ── Content sections ── */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.content h3 {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.75rem;
    opacity: 0.7;
}

.content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    margin: 2rem 0 0.75rem;
}

.content p { margin-bottom: 1rem; line-height: 1.7; }
.content p:last-child { margin-bottom: 0; }

/* ── Body CTA ── */
.body-cta {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    margin-top: 1.25rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

/* ── Accent HR ── */
hr.accent {
    border: none;
    height: 1px;
    margin: 1.75rem 0 1.25rem;
}

/* ── Stat strip ── */
.stat-strip {
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
}
.stat-inner {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* ── Divider band ── */
.divider {
    padding: 2.5rem 2rem;
    text-align: center;
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.divider-text {
    font-size: clamp(1.05rem, 3vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.04em;
    margin: 0 auto;
    max-width: 700px;
}

/* ── Callout blocks ── */
.callout {
    padding: 1.25rem 1.5rem;
    border-left: 4px solid;
    margin: 1.5rem 0;
}
.callout--red  { border-color: #BE0F17; }
.callout--gold { border-color: #c9a84c; }
.callout--blue { border-color: #2A4C69; }

/* ── Routines grid ── */
.routines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-width: 1px;
    border-style: solid;
    margin-top: 1.5rem;
}
.routine-item {
    padding: 1.1rem 1.3rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-right-width: 1px;
    border-right-style: solid;
    display: flex;
    gap: 1rem;
    align-items: baseline;
}
.routine-item:nth-child(even) { border-right: none; }
.routine-item:nth-last-child(-n+2) { border-bottom: none; }
.routine-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    opacity: 0.7;
}
.routine-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.routine-text span {
    font-size: 0.82rem;
    opacity: 0.6;
}

/* ── What's included grid ── */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 1.5rem;
}
.included-item {
    border-left: 3px solid;
    padding: 1.25rem 1.5rem;
}
.included-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}
.included-item p {
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.55;
    opacity: 0.65;
}

/* ── Sample section ── */
.sample-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}
.sample-layout img {
    border-width: 1px;
    border-style: solid;
    width: 100%;
}
.sample-steps {
    list-style: none;
    counter-reset: step;
    margin-bottom: 1.5rem;
    padding: 0;
}
.sample-steps li {
    counter-increment: step;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    font-size: 0.95rem;
    padding: 0.6rem 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.sample-steps li:last-child { border-bottom: none; }
.sample-steps li::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #BE0F17;
    flex-shrink: 0;
    line-height: 1.4;
}

/* ── Comparison table wrapper ── */
.comparison-wrap {
    overflow-x: auto;
    margin-top: 1.5rem;
}

/* ── Solo drilling guide list ── */
.guide-list {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}
.guide-list li {
    display: block;
    padding: 0.9rem 0 0.9rem 1.6rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-size: 1rem;
    line-height: 1.65;
    position: relative;
}
.guide-list li:last-child { border-bottom: none; }
.guide-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0.95rem;
    font-size: 0.7rem;
}

/* ── Accordion (FAQ) ── */
.accordion {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding: 1.1rem 0;
    text-align: left;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}
.accordion::after {
    content: '+';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}
.accordion.active::after { transform: rotate(45deg); }
.panel {
    display: none;
    padding: 0.75rem 0 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
}
.panel.open { display: block; }

/* ── Testimonial blocks ── */
.testimonial-block {
    border-width: 1px;
    border-style: solid;
    padding: 2.5rem 3rem 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.testimonial-block::before {
    content: '\201C';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    opacity: 0.12;
    position: absolute;
    top: 0.5rem; left: 1.75rem;
    line-height: 1;
    pointer-events: none;
}
.testimonial-block p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin: 0 0 1.25rem;
}
.testimonial-block cite {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ── Purchase cards ── */
.purchase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.purchase-card {
    border-width: 1px;
    border-style: solid;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s;
    position: relative;
}
.purchase-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}
.price-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    margin: 0.75rem 0 0.25rem;
}
.price-display sup {
    font-size: 1.8rem;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}
.price-note {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0.5;
}
.card-desc {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}
.purchase-card ul {
    text-align: left;
    margin-bottom: 1.75rem;
    padding: 0;
    list-style: none;
    border-top-width: 1px;
    border-top-style: solid;
    padding-top: 1.25rem;
}
.purchase-card ul li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: flex;
    gap: 0.5rem;
}
.purchase-card ul li:last-child { border-bottom: none; }
.purchase-card ul li::before {
    content: '→';
    flex-shrink: 0;
}
.featured-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.75rem;
}

/* ── Responsive ── */
@media (max-width: 700px) {
    .purchase-grid                     { grid-template-columns: 1fr; }
    .routines-grid                     { grid-template-columns: 1fr; }
    .routine-item                      { border-right: none; }
    .routine-item:nth-last-child(-n+2) { border-bottom-width: 1px; border-bottom-style: solid; }
    .routine-item:last-child           { border-bottom: none; }
    .included-grid                     { grid-template-columns: 1fr; }
    .sample-layout                     { grid-template-columns: 1fr; }
    .content                           { padding: 3.5rem 1.5rem; }
}

/* ================================================
   FASTFOCUS COLOURS
   All colour rules for fastfocus-specific components.
   Relies on CSS custom properties from default.css.
   ================================================ */

/* ── Content text & links ── */
.content a       { color: var(--b-accent); }
.content a:hover { color: var(--b-accent-hover); }

/* ── Body CTA ── */
.body-cta            { background: var(--b-accent); color: var(--b-ink) !important; }
.body-cta:hover      { background: var(--b-accent-hover); color: var(--b-ink) !important; }

/* ── Accent HR ── */
hr.accent { background: var(--b-accent-dim); }

/* ── Stat strip ── */
.stat-strip { background: var(--b-accent); }
.stat-num   { color: var(--b-ink); }
.stat-label { color: rgba(13,13,13,0.5); }

/* ── Divider ── */
.divider      { background: #1a2e3f; border-color: var(--b-accent-dim); }
.divider-text { color: rgba(245,242,237,0.75); }

/* ── Callout ── */
.callout { background: var(--b-bg-alt); }

/* ── Routines grid ── */
.routines-grid         { border-color: var(--b-accent-dim); }
.routine-item          { border-color: var(--b-accent-dim); }
.routine-num           { color: var(--b-accent); }
.routine-text strong   { color: var(--b-text); }
.routine-text span     { color: var(--b-text); }

/* ── Included grid ── */
.included-item           { border-left-color: var(--b-accent); background: var(--b-bg-alt); }
.included-item h4        { color: var(--b-text); }
.included-item p         { color: var(--b-text-dim); }

/* ── Sample layout ── */
.sample-layout img       { border-color: var(--b-accent-dim); }
.sample-steps li         { border-bottom-color: var(--b-accent-dim); color: var(--b-text); }

/* ── Guide list ── */
.guide-list li           { border-bottom-color: var(--b-accent-dim); color: var(--b-text); }
.guide-list li::before   { color: var(--b-accent); }

/* ── Accordion (FAQ) ── */
.accordion               { color: var(--b-text); border-bottom-color: var(--b-accent-dim); }
.accordion:hover         { color: var(--b-accent); }
.accordion::after        { color: var(--b-accent); }
.panel                   { color: var(--b-text-dim); }

/* ── Testimonial blocks ── */
.testimonial-block           { border-color: var(--b-accent-dim); }
.testimonial-block::before   { color: var(--b-accent); }
.testimonial-block p         { color: rgba(245,242,237,0.8); }
.testimonial-block cite      { color: var(--b-accent); }

/* ── Table colours (comparison) ── */
table              { border-color: var(--b-accent-dim); }
thead tr           { background: var(--b-accent-dimmer); }
th                 { color: var(--b-accent); border-bottom-color: var(--b-accent-dim); }
td                 { color: var(--b-text-dim); border-bottom-color: var(--b-accent-dimmer); }
tbody tr:hover td  { background: rgba(201,168,76,0.03); color: var(--b-text); }

/* ── Purchase cards ── */
.purchase-grid             { }
.purchase-card             { border-color: var(--b-accent-dim); }
.purchase-card.featured    { background: #141414; border-color: var(--b-accent); }
.purchase-card h3          { color: var(--b-text); }
.price-display             { color: var(--b-accent); }
.price-note                { color: var(--b-text); }
.card-desc                 { color: var(--b-text); }
.purchase-card ul          { border-top-color: var(--b-accent-dim); }
.purchase-card ul li       { color: var(--b-text-dim); border-bottom-color: var(--b-accent-dimmer); }
.purchase-card ul li::before { color: var(--b-accent); }
.featured-badge            { background: var(--b-accent); color: var(--b-ink); }

/* ── Section separator (phillip.html) ── */
.content + .content {
    border-top: 1px solid var(--b-accent-dim);
    padding-top: 4rem;
}

/* ================================================
   UTILITY CLASSES — inline style replacements
   ================================================ */

/* ── Text widths ── */
.text-body    { max-width: 680px; }
.text-body-sm { max-width: 620px; }
.text-body-xs { max-width: 580px; }

/* ── Body text paragraphs ── */
.body-text {
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.body-text--lg { margin-bottom: 2rem; }
.body-text--xl { margin-bottom: 2.5rem; }
.body-text--last { margin-bottom: 0; }

/* ── Section with dark alt background ── */
.section--dark { background: var(--b-bg-alt); }
.section--darker { background: var(--b-bg-alt2); }
.section--purchase { background: #111111; }

/* ── Inline list style resets ── */
.list-plain {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-plain li { padding: 0.4rem 0; }

/* ── Highlighted list items ── */
.list-accent li { color: var(--b-accent); font-weight: 500; }

/* ── Inline margin utilities ── */
.mt-sm  { margin-top: 0.5rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2rem; }
.mt-xl  { margin-top: 2.5rem; }

/* ── Button display helpers ── */
.btn-block { display: block; text-align: center; cursor: default; }
.btn-mt    { margin-top: 0.5rem; display: inline-block; }

/* ── Image in body content ── */
.body-img { margin: 1rem 0; max-width: 480px; }

/* ── Small note text ── */
.note-text {
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.75rem;
}

/* ── Section nav dropdown (rightball) ── */
.section-nav__dropdown { display: none; }

/* ── Specialised balls heading ── */
.spec-balls-label {
    font-family: var(--font-c);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 28px 0 0;
}

.spec-balls-grid { margin-top: 8px; }

/* ── Poster grid ── */
.poster-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 24px;
}

.poster-grid__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poster-grid__item img {
    display: block;
    width: 200px;
    height: auto;
    border: 1px solid #ddd;
    transition: opacity 0.2s;
}

.poster-grid__item a:hover img { opacity: 0.85; }

.poster-grid__caption {
    font-size: 0.82rem;
    font-style: italic;
    margin: 0;
    width: 200px;
}

/* ── Ball card colour variable passing ── */
.ball-card--blue   { --bcard-color: var(--dot-blue); }
.ball-card--red    { --bcard-color: var(--dot-red); }
.ball-card--white  { --bcard-color: var(--dot-white); }
.ball-card--yellow { --bcard-color: var(--dot-yellow); }
.ball-card--green  { --bcard-color: var(--dot-green); }
.ball-card--grey   { --bcard-color: #999; }
.ball-card--span   { grid-column: 1 / -1; }

/* ── Bounce bar fills ── */
.bounce-bar__fill--95  { width: 95%; }
.bounce-bar__fill--78  { width: 78%; }
.bounce-bar__fill--58  { width: 58%; }
.bounce-bar__fill--42  { width: 42%; }
.bounce-bar__fill--26  { width: 26%; }


/* ════════════════════════════════════════════════
   TESTIMONIALS PAGE
   ════════════════════════════════════════════════ */

.testimonials-section { padding: 7rem 2rem; }
.testimonials-section .inner { max-width: 1100px; margin: 0 auto; }

.testimonials-intro { max-width: 680px; margin-bottom: 4rem; }
.testimonials-intro p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.75rem; }

.service-heading {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.service-heading h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.03em;
    line-height: 1;
}

.service-heading p { font-size: 0.85rem; font-style: italic; }

.t-card {
    border-left-width: 3px;
    border-left-style: solid;
    padding: 1.5rem 0 1.5rem 1.75rem;
    margin-bottom: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.t-card:last-child { border-bottom: none; }

.t-card p { font-size: 1rem; font-style: italic; line-height: 1.75; margin-bottom: 0.75rem; }

.t-card cite {
    display: block;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.t-card img { margin: 1rem 0; max-width: 480px; width: 100%; border-width: 1px; border-style: solid; }

.t-card .phillip-note { font-size: 0.85rem; font-style: italic; margin-top: 0.5rem; }
.t-card .phillip-note strong { font-style: normal; }

.t-empty { font-style: italic; font-size: 0.9rem; padding: 1rem 0; }

.testimonial-group { margin-bottom: 5rem; }
.testimonial-group:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
    .testimonials-section { padding: 5rem 1.5rem; }
    .service-heading { flex-direction: column; gap: 0.25rem; }
}


/* ════════════════════════════════════════════════
   DISCORD PAGE
   ════════════════════════════════════════════════ */

.disc-section { padding: 5rem 2rem; }
.disc-section .inner { max-width: 860px; margin: 0 auto; }

.disc-section__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.85rem;
}

.disc-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 0.92;
    margin-bottom: 1.25rem;
}

.disc-section__body { font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 640px; }

.disc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.disc-cols__video { position: relative; aspect-ratio: 16/9; width: 100%; }

.disc-cols__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 2px;
}

.disc-join {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    transition: background 0.2s;
    margin-top: 1.5rem;
}

.disc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    margin: 2.5rem 0;
}

.disc-card { padding: 2rem 1.5rem; }

.disc-card__icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }

.disc-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.disc-card__desc { font-size: 0.88rem; line-height: 1.6; }

.disc-faq { margin-top: 2rem; }
.disc-faq__item { border-bottom-width: 1px; border-bottom-style: solid; }

.disc-faq__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.2s;
}

.disc-faq__icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.disc-faq__item.open .disc-faq__icon { transform: rotate(45deg); }

.disc-faq__answer {
    display: none;
    padding: 0 0 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 680px;
}

.disc-faq__item.open .disc-faq__answer { display: block; }

@media (max-width: 768px) {
    .disc-cols { grid-template-columns: 1fr; }
    .disc-section { padding: 3.5rem 1.5rem; }
}


/* ════════════════════════════════════════════════
   BETTERPRACTICE PAGE
   ════════════════════════════════════════════════ */

.feature-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem; }

.feature-pill {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
}

.video-wrap { position: relative; aspect-ratio: 16/9; width: 100%; margin: 2rem 0; }

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-style: solid;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.screenshots-grid img { width: 100%; height: auto; display: block; border-width: 1px; border-style: solid; }

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.download-card { border-width: 1px; border-style: solid; padding: 2.5rem; text-align: center; }

.download-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.download-card img { max-width: 200px; margin: 0 auto; display: block; }

.download-note { text-align: center; margin-top: 2rem; font-size: 0.85rem; font-style: italic; }

@media (max-width: 900px) {
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
    .download-grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* ════════════════════════════════════════════════
   CHALLENGES PAGE
   ════════════════════════════════════════════════ */

.chall-explainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 3.5rem;
}

.commercial-inner {
    border-width: 1px;
    border-style: solid;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.commercial-inner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.commercial-inner p { font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.7; }

.commercial-quote { border-left-width: 3px; border-left-style: solid; padding-left: 1.5rem; }

.commercial-quote blockquote { font-size: 1rem; font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.commercial-quote blockquote strong { font-style: normal; }

.commercial-quote cite {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
}

@media (max-width: 900px) {
    .chall-explainer-grid { grid-template-columns: 1fr; }
    .commercial-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
}


/* ════════════════════════════════════════════════
   PROJECTS PAGE
   ════════════════════════════════════════════════ */

.projects-section { padding: 6rem 2rem; }

.project-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.project-sep {
    width: 60%;
    margin: 6rem auto;
    border: none;
    border-top-width: 1px;
    border-top-style: solid;
}

.project-block--img-left  .project-block__image   { order: 1; }
.project-block--img-left  .project-block__content { order: 2; }
.project-block--img-right .project-block__content { order: 1; }
.project-block--img-right .project-block__image   { order: 2; }

.project-block__image { position: relative; }

.screenshot-wrap { position: relative; outline-offset: 8px; outline-width: 2px; outline-style: solid; }
.screenshot-wrap img { display: block; width: 100%; height: auto; border-width: 1px; border-style: solid; }

.screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(201,168,76,0.03) 20px, rgba(201,168,76,0.03) 21px);
}

.screenshot-placeholder__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.project-block__tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
    padding: 0.25em 0.85em;
    margin-bottom: 1.25rem;
}

.project-block__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.project-block__desc { font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }

.project-block--dev { opacity: 0.5; }

@media (max-width: 900px) {
    .projects-section { padding: 4rem 1.5rem; }
    .project-block { grid-template-columns: 1fr; gap: 2.5rem; }
    .project-sep { margin: 4rem auto; }
    .project-block--img-left  .project-block__content,
    .project-block--img-right .project-block__content { order: 1; }
    .project-block--img-left  .project-block__image,
    .project-block--img-right .project-block__image   { order: 2; }
}


/* ════════════════════════════════════════════════
   SHARED: HOW IT WORKS STEPS & INCLUDED LIST
   (used by performreview, technicalreview, personalised, videoconsults)
   ════════════════════════════════════════════════ */

.how-it-works { counter-reset: steps; }

.how-step {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.how-step:last-child { border-bottom: none; }

.how-step__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    width: 2rem;
    text-align: right;
}

.how-step__text { font-size: 0.95rem; line-height: 1.65; }
.how-step__text strong { }
.how-step__text a { }

.included-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }

.included-list li {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.included-list li:last-child { border-bottom: none; }
.included-list li::before { content: '→'; flex-shrink: 0; }


/* ════════════════════════════════════════════════
   SHARED: PURCHASE / CONSULT CARDS
   (used by performreview, personalised, videoconsults)
   ════════════════════════════════════════════════ */

.purchase-section { }

.purchase-grid,
.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.purchase-card,
.consult-card {
    border-width: 1px;
    border-style: solid;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.purchase-card__label,
.consult-card__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.purchase-card__title,
.consult-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.purchase-card__duration,
.consult-card__duration { font-size: 0.85rem; margin-bottom: 0.75rem; }

.purchase-card__desc,
.consult-card__desc { font-size: 0.9rem; font-style: italic; margin-bottom: 2rem; line-height: 1.6; flex: 1; }

.purchase-card__price,
.consult-card__price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.purchase-card__price sup,
.consult-card__price sup {
    font-size: 1.8rem;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.purchase-card__cta,
.consult-card__cta { margin-top: auto; }

.purchase-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    border-top-width: 1px;
    border-top-style: solid;
    padding-top: 1.25rem;
}

.purchase-card__features li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.88rem;
    padding: 0.35rem 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.purchase-card__features li:last-child { border-bottom: none; }
.purchase-card__features li::before { content: '→'; flex-shrink: 0; }

.stripe-wrap { display: flex; justify-content: center; }

.turnaround-note,
.booking-note,
.purchase-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .purchase-grid,
    .consult-grid { grid-template-columns: 1fr; }
    .purchase-card,
    .consult-card { padding: 2.5rem 2rem; }
}


/* ════════════════════════════════════════════════
   SHARED: TESTIMONIAL ITEMS
   (used by performreview)
   ════════════════════════════════════════════════ */

.testimonial-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }

.testimonial-item {
    border-left-width: 3px;
    border-left-style: solid;
    padding: 1.25rem 1.5rem;
}

.testimonial-item p { font-size: 1rem; font-style: italic; line-height: 1.7; margin-bottom: 0.75rem; }

.testimonial-item cite {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
}


/* ════════════════════════════════════════════════
   PERSONALISED PAGE
   ════════════════════════════════════════════════ */

.plan-types { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2.5rem 0; }

.plan-type { border-width: 1px; border-style: solid; padding: 2rem; }

.plan-type__label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.plan-type__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.plan-type__desc { font-size: 0.9rem; line-height: 1.7; }

@media (max-width: 900px) {
    .plan-types { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════
   TECHNICAL REVIEW PAGE
   ════════════════════════════════════════════════ */

.coming-soon-banner {
    border-width: 1px;
    border-style: solid;
    padding: 2rem 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.coming-soon-banner p { font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; }

.coming-soon-banner__label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
    .coming-soon-banner { padding: 2rem 1.5rem; }
}


/* ════════════════════════════════════════════════
   VIDEO CONSULTS PAGE
   ════════════════════════════════════════════════ */

.platform-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem; }

.platform-pill {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
}


/* ════════════════════════════════════════════════
   PRACTICE PLANS PAGE
   ════════════════════════════════════════════════ */

.app-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.app-text p { font-size: 1rem; margin-bottom: 1rem; line-height: 1.7; }

.app-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.8rem 0 2.5rem; }

.app-pill {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
}

.app-visual {
    border-width: 1px;
    border-style: solid;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
}

.app-visual::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    pointer-events: none;
}

.app-visual img { max-width: 100%; display: block; margin: 0 auto; border-radius: 2px; }
.app-visual p { font-size: 0.75rem; margin-top: 1rem; font-style: italic; }

.pricing-table-section { }
.pricing-matrix { margin-top: 3.5rem; border-width: 1px; border-style: solid; overflow: hidden; }
.pricing-matrix table { border: none; }

.pricing-matrix th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    padding: 1.2rem 2rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.pricing-matrix td { padding: 1.2rem 2rem; font-size: 0.92rem; border-bottom-width: 1px; border-bottom-style: solid; }
.pricing-matrix td:first-child { font-weight: 600; }
.pricing-matrix td.price-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.04em; }
.pricing-matrix td.muted { font-style: italic; font-size: 0.8rem; }
.pricing-note { font-size: 0.8rem; margin-top: 1.5rem; font-style: italic; }

.testimonial-section { }

.testimonial-card { border-width: 1px; border-style: solid; padding: 3.5rem; position: relative; }

.testimonial-card::before {
    content: '\201C';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    opacity: 0.12;
    position: absolute;
    top: 0.5rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-card p { font-size: 1.05rem; line-height: 1.7; font-style: italic; position: relative; z-index: 1; }

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .app-inner { grid-template-columns: 1fr; gap: 3rem; }
    .testimonial-card { padding: 2.5rem 2rem; }
}


/* ════════════════════════════════════════════════
   ANALYSIS PAGE
   ════════════════════════════════════════════════ */

.services-section { padding: 6rem 2rem; }

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-sep {
    width: 60%;
    margin: 6rem auto;
    border: none;
    border-top-width: 1px;
    border-top-style: solid;
}

.service-block--img-left  .service-block__image   { order: 1; }
.service-block--img-left  .service-block__content { order: 2; }
.service-block--img-right .service-block__content { order: 1; }
.service-block--img-right .service-block__image   { order: 2; }

.service-block--dev { opacity: 0.5; }

.service-screenshot-wrap { border-width: 1px; border-style: solid; }
.service-screenshot-wrap img { display: block; width: 100%; height: auto; }

.service-block__tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
    padding: 0.25em 0.85em;
    margin-bottom: 1.25rem;
}

.service-block__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.service-block__desc { font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }

.service-block__pricing {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-width: 1px;
    border-style: solid;
}

.service-block__price { display: flex; flex-direction: column; gap: 0.25rem; }

.service-block__price-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-block__price-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.service-block__price-val sup {
    font-size: 1.4rem;
    vertical-align: top;
    margin-top: 0.4rem;
    display: inline-block;
}

.service-block__price-sep {
    width: 1px;
    align-self: stretch;
}

@media (max-width: 900px) {
    .services-section { padding: 4rem 1.5rem; }
    .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-sep { margin: 4rem auto; }
    .service-block--img-left  .service-block__content,
    .service-block--img-right .service-block__content { order: 1; }
    .service-block--img-left  .service-block__image,
    .service-block--img-right .service-block__image   { order: 2; }
    .service-block__pricing { flex-direction: column; gap: 1.5rem; }
    .service-block__price-sep { width: 100%; height: 1px; align-self: auto; }
}


/* ════════════════════════════════════════════════
   INDEX PAGE
   ════════════════════════════════════════════════ */

/* ── Social proof strip ── */
.proof-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.proof-item {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-right-width: 1px;
    border-right-style: solid;
}

.proof-item:last-child { border-right: none; }

/* ── Quote band ── */
.quote-band {
    padding: 2.5rem 2rem;
    text-align: center;
}

.quote-band blockquote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.04em;
    line-height: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* ── Services grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2.5rem 2rem;
    text-decoration: none;
    transition: background 0.2s;
}

.service-card__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    opacity: 0.15;
}

.service-card__tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.03em;
    line-height: 1;
}

.service-card__desc {
    font-size: 0.88rem;
    line-height: 1.65;
    flex: 1;
}

.service-card__price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
}

.service-card__cta {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-top: 0.5rem;
}

/* ── Why section ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.why-list li {
    padding: 0.9rem 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-size: 0.95rem;
    line-height: 1.65;
}

.why-list li:last-child { border-bottom: none; }

.why-image img { width: 100%; display: block; }
.why-image p { font-size: 0.78rem; font-style: italic; margin-top: 0.75rem; }

/* ── Testimonial strip ── */
.testimonial-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 3rem;
}

.t-mini {
    padding: 2rem 1.75rem;
    border-left-width: 3px;
    border-left-style: solid;
}

.t-mini p {
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.t-mini cite {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
    display: block;
}

/* ── App banner ── */
.app-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    padding: 3rem;
    border-width: 1px;
    border-style: solid;
}

.app-banner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.app-banner p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.app-banner-stat {
    text-align: center;
    flex-shrink: 0;
}

.app-banner-stat .big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: 0.04em;
}

.app-banner-stat span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ── FAQ list ── */
.faq-list details {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    cursor: pointer;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

.faq-list details[open] .faq-icon { transform: rotate(45deg); }

.faq-list details p {
    padding: 0.75rem 0 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ── CTA band ── */
.cta-band {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-band h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.93;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.cta-band p {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

.btn-dark,
.btn-ghost-dark {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    margin: 0.4rem;
}

.btn-ghost-dark {
    display: inline-block;
    margin-top: 1rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .services-grid       { grid-template-columns: 1fr; }
    .why-grid            { grid-template-columns: 1fr; gap: 3rem; }
    .testimonial-strip   { grid-template-columns: 1fr; }
    .app-banner          { grid-template-columns: 1fr; gap: 2rem; }
    .proof-strip         { flex-direction: column; align-items: center; }
    .proof-item          { border-right: none; border-bottom-width: 1px; border-bottom-style: solid; width: 100%; text-align: center; }
    .proof-item:last-child { border-bottom: none; }
}


/* ── HERO BORDER ─────────────────────────────── */



/* ════════════════════════════════════════════════
   ANALYSIS PAGE
   ════════════════════════════════════════════════ */

.services-section { padding: 6rem 2rem; }

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-sep {
    width: 60%;
    margin: 6rem auto;
    border: none;
    border-top-width: 1px;
    border-top-style: solid;
}

.service-block--img-left  .service-block__image   { order: 1; }
.service-block--img-left  .service-block__content { order: 2; }
.service-block--img-right .service-block__content { order: 1; }
.service-block--img-right .service-block__image   { order: 2; }

.service-block--dev { opacity: 0.5; }

.service-screenshot-wrap { border-width: 1px; border-style: solid; }
.service-screenshot-wrap img { display: block; width: 100%; height: auto; }

.service-block__tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
    padding: 0.25em 0.85em;
    margin-bottom: 1.25rem;
}

.service-block__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.service-block__desc { font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }

.service-block__pricing {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-width: 1px;
    border-style: solid;
}

.service-block__price { display: flex; flex-direction: column; gap: 0.25rem; }

.service-block__price-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-block__price-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.service-block__price-val sup {
    font-size: 1.4rem;
    vertical-align: top;
    margin-top: 0.4rem;
    display: inline-block;
}

.service-block__price-sep { width: 1px; align-self: stretch; }

@media (max-width: 900px) {
    .services-section { padding: 4rem 1.5rem; }
    .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-sep { margin: 4rem auto; }
    .service-block--img-left  .service-block__content,
    .service-block--img-right .service-block__content { order: 1; }
    .service-block--img-left  .service-block__image,
    .service-block--img-right .service-block__image   { order: 2; }
    .service-block__pricing { flex-direction: column; gap: 1.5rem; }
    .service-block__price-sep { width: 100%; height: 1px; align-self: auto; }
}


/* ════════════════════════════════════════════════
   ARTICLES PAGE
   ════════════════════════════════════════════════ */

.article-wrap {
    max-width: 740px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    width: 100%;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    line-height: 1.75;
}

.article-wrap a { text-decoration: underline; transition: color 0.2s; }
.article-wrap img { margin: 2.5rem 0; }

.article-wrap h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom-width: 2px;
    border-bottom-style: solid;
}

.article-wrap h2:first-child { margin-top: 0; }

.article-wrap > ul:not(.artlist) {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-wrap > ul:not(.artlist) li {
    margin: 0;
    font-size: 1rem;
    border-left-width: 3px;
    border-left-style: solid;
    padding: 1rem 1.25rem;
    transition: background 0.2s, border-color 0.2s;
}

.article-wrap > ul:not(.artlist) li a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.2rem;
}

.article-wrap ul.artlist--rec {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    counter-reset: rec;
}

.article-wrap ul.artlist--rec li {
    border-bottom: none;
    padding: 0;
    counter-increment: rec;
}

.article-wrap ul.artlist--rec li a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-top-width: 3px;
    border-top-style: solid;
    border-left: 0.5px solid rgba(0,0,0,0.08);
    border-right: 0.5px solid rgba(0,0,0,0.08);
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    text-decoration: none;
    transition: filter 0.15s;
    height: 100%;
}

.article-wrap ul.artlist--rec li a:hover { filter: brightness(0.96); }

.article-wrap ul.artlist--rec li a::before {
    content: counter(rec, decimal-leading-zero);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    flex-shrink: 0;
    line-height: 1;
    width: 28px;
}

.article-wrap ul.artlist--rec li a span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

#myUL.artlist { display: block; margin: 0 0 2.5rem; }
#myUL.artlist li { border-bottom-width: 1px; border-bottom-style: solid; }
#myUL.artlist li:last-child { border-bottom: none; }

#myUL.artlist li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    border: none;
    border-radius: 3px;
    background: transparent;
    height: auto;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.15s, color 0.2s;
}

#myUL.artlist li a::before { display: none; }

#myUL.artlist li a::after {
    content: '→';
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: color 0.2s, transform 0.2s;
}

#myUL.artlist li a span { font-weight: 400; color: inherit; font-size: inherit; }
#myUL.artlist li a:hover::after { transform: translateX(3px); }

#myInput {
    width: 100%;
    padding: 0.75rem 1rem;
    margin: 0.75rem 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
}

@media (max-width: 600px) {
    .article-wrap ul.artlist--rec { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .article-wrap { padding: 2rem 1.5rem 3rem; }
}


/* ════════════════════════════════════════════════
   UTILITY — structural additions from this session
   ════════════════════════════════════════════════ */

.proof-strip { border-bottom-width: 1px; border-bottom-style: solid; }
.services-grid { border-width: 1px; border-style: solid; }
.chall-explainer-grid { border-width: 1px; border-style: solid; }
.text-accent-sm { font-size: 0.8rem; margin-bottom: 1.5rem; }
.list-accent li { font-weight: 500; }

.screenshot-placeholder::before {
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, var(--placeholder-stripe) 20px, var(--placeholder-stripe) 21px);
}

.poster-grid__item img {
    border-width: 1px;
    border-style: solid;
}