/* ============================================================
   MARKETING COLLATERAL MACHINE — LANDING PAGE
   BOOK-PACKAGING THEME | BLUEPRINT MOTIFS | TERRACOTTA / INK / CREAM
   ============================================================ */

/* --- 1. DESIGN TOKENS & ROOT VARIABLES --- */
:root {
    --bg-main: #F3EFE8;
    /* warm off-white ground, matches book's lower panel */
    --bg-card: #F3EFE8;
    /* clean card surface matching hero background */
    --bg-cream: #FBF9F5;
    /* warm cream surface */
    --bg-surface: #FBF9F5;
    /* warm cream input surface background */
    --bg-dark: #16120F;
    /* near-black, matches book's ink imprint */
    --bg-dark-soft: #221B15;
    /* slightly lifted dark, for dark-panel cards */

    --text-primary: #1C1713;
    /* high contrast primary text */
    --text-secondary: #4A4038;
    /* subtitle & body text */
    --text-muted: #6B6056;
    /* muted context text */
    --text-light: #FBF9F5;
    /* light text on dark surfaces */
    --text-light-muted: #C9BFAF;
    /* muted light text on dark surfaces */

    --terracotta: #B45538;
    /* brand accent, sampled from book's top panel */
    --terracotta-bright: #C96A45;
    /* hover highlight terracotta */
    --terracotta-dark: #8F3E24;
    /* deep terracotta eyebrow/accent */
    --terracotta-deep: #6E2E1A;
    /* darkest terracotta */
    --terracotta-wash: #EFD9CB;
    /* pale terracotta for subtle fills */

    --border-light: rgba(28, 23, 19, 0.12);
    --border-strong: rgba(28, 23, 19, 0.22);
    --border-on-dark: rgba(251, 249, 245, 0.16);

    --font-heading: 'Oswald', 'Antonio', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Instrument Serif', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-label: 'Oswald', 'Inter', sans-serif;

    --shadow-subtle: 0 4px 14px rgba(28, 23, 19, 0.05);
    --shadow-floating: 0 18px 40px -10px rgba(28, 23, 19, 0.22);
    --shadow-stamp: 0 10px 26px -8px rgba(180, 85, 56, 0.45);
}

/* --- 2. GLOBAL RESET & BASE TYPOGRAPHY --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important;
    /* sharp, printed-page edges throughout */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-main) !important;
    background-image: none !important;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: left !important;
    overflow-x: hidden;
}

main,
section,
header,
footer,
article,
div {
    background-color: transparent;
    text-align: left !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
    text-transform: none !important;
    text-align: left !important;
}

/* Big display headlines read like the reference report typography: ultra-bold, condensed, capitalized */
.display-heading {
    font-family: 'Oswald', 'Antonio', 'Impact', sans-serif !important;
    font-size: clamp(3rem, 6.2vw, 5.4rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.045em !important;
    line-height: 0.93 !important;
    -webkit-text-stroke: 2.2px currentColor;
    paint-order: stroke fill;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

p,
span,
li,
label,
input,
button,
a {
    text-align: left !important;
    text-transform: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}

em {
    font-family: var(--font-accent);
    font-style: italic;
}

.ambient-light-1,
.ambient-light-2 {
    display: none !important;
}

/* Highlighting & Underlining */
.hl {
    color: var(--terracotta) !important;
    font-weight: 700;
}

.uline {
    /* plain inline (not inline-block) so the border always hugs just the
       text — an inline-block here was computing a full-container-width
       shrink-to-fit box once the custom webfont swapped in, stretching
       the underline the full width of the page instead of the phrase */
    display: inline;
    color: var(--text-primary);
    border-bottom: 2px solid var(--terracotta);
    padding-bottom: 2px;
}

.uline svg {
    display: none;
}

/* --- 3. BLUEPRINT EYEBROW TAGS --- */
.section-header-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: auto !important;
    text-align: left !important;
}

.section-header-tag span:not(.dim-line),
.eyebrow-text {
    font-family: var(--font-label) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    color: var(--terracotta-dark) !important;
    text-transform: uppercase !important;
    text-align: left !important;
}

.dim-line {
    display: inline-block !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 1px !important;
    background-color: var(--terracotta) !important;
    opacity: 0.85 !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

.dim-line::before,
.dim-line::after {
    content: '' !important;
    position: absolute !important;
    top: -4px !important;
    bottom: -4px !important;
    width: 1px !important;
    background-color: var(--terracotta) !important;
}

.dim-line::before {
    left: 0 !important;
}

.dim-line::after {
    right: 0 !important;
}

/* --- 3B. BOOK-PACKAGING MOTIFS --- */

/* Blueprint section divider: a full-width ruled line, tick marks, running section index —
   echoes the measurement diagram behind "MARKETING" on the book's spine panel. */
.book-divider-wrap {
    width: 100%;
    padding: 2.75rem 0;
    background-color: var(--bg-main);
}

.book-divider {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.book-divider .rule {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(to right,
            var(--border-strong) 0,
            var(--border-strong) 1px,
            transparent 1px,
            transparent 14px);
}

.book-divider .index {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Corner "flag" triangles — lifted straight from the book box's two terracotta corner cuts */
.corner-flag {
    position: relative;
}

.corner-flag::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background: var(--terracotta);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 2;
}

.corner-flag--dual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: var(--terracotta);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 2;
}

/* Round dashed stamp — matches the "For Designers & Architects" stamp on the book cover */
.stamp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    font-family: var(--font-label);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--terracotta);
    border: 1.5px dashed rgba(251, 249, 245, 0.55);
    width: 108px;
    height: 108px;
    line-height: 1.25;
    padding: 0.5rem;
}

/* Full-bleed dark panel — updated to match main hero background */
.panel-dark {
    background-color: var(--bg-main) !important;
    color: var(--text-primary);
    position: relative;
}

/* NOTE: intentionally not a blanket descendant rule — a light "page" card
   (e.g. the offer form) can sit inside a dark panel and must keep dark text.
   Style each dark panel's own direct text (headline, tag, lead) explicitly. */

/* Full-bleed terracotta panel — updated to match main hero background */
.panel-terracotta {
    background-color: var(--bg-main) !important;
    color: var(--text-primary);
    position: relative;
}

/* Same note as .panel-dark above: no blanket descendant color rule here —
   a nested light card must keep dark text. Style direct panel text explicitly. */

.panel-terracotta .dim-line {
    background-color: rgba(255, 255, 255, 0.6) !important;
}

.panel-terracotta .dim-line::before,
.panel-terracotta .dim-line::after {
    background-color: rgba(255, 255, 255, 0.6) !important;
}

.panel-terracotta .section-header-tag span:not(.dim-line) {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Hide spine watermark and blueprint measurement tick annotations */
.spine-label,
.blueprint-tick-frame {
    display: none !important;
}

/* --- 4. BUTTONS & CTA STYLING --- */
.btn-primary,
.btn-secondary,
.btn-offer-primary,
.btn-final-primary,
.nav-cta,
button.btn,
a.btn,
.btn-ghost,
[class*="btn-primary"],
[class*="btn-offer"],
[class*="btn-final"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.65rem !important;
    padding: 1rem 1.85rem !important;
    font-family: var(--font-label) !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    color: #FFFFFF !important;
    background-color: var(--terracotta-dark) !important;
    border: 1px solid var(--terracotta-deep) !important;
    box-shadow: 0 10px 24px -8px rgba(143, 62, 36, 0.45) !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    text-align: left !important;
    line-height: 1.3 !important;
    text-transform: uppercase;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-offer-primary:hover,
.btn-final-primary:hover,
.nav-cta:hover,
button.btn:hover,
a.btn:hover,
.btn-ghost:hover,
[class*="btn-primary"]:hover,
[class*="btn-offer"]:hover,
[class*="btn-final"]:hover {
    background-color: var(--terracotta-bright) !important;
    border-color: var(--terracotta) !important;
    box-shadow: 0 14px 28px -8px rgba(201, 106, 69, 0.5) !important;
    transform: translateY(-1px);
}

.btn-primary span,
.btn-secondary span,
.btn-offer-primary span,
.btn-final-primary span,
.nav-cta span {
    color: #FFFFFF !important;
}



.btn-label-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-sub {
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    opacity: 0.9;
}

.btn-arrow,
.btn-secondary-icon,
.btn svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta-group,
.why-now-cta-wrapper,
.for-whom-cta-wrapper,
.systems-cta-wrapper,
.practice-cta-wrapper,
.trust-proof-cta-wrapper,
.faq-cta-wrapper,
.final-cta-wrapper,
.author-cta-wrapper,
.hero-cta,
.machine-takeaway-cta {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin-top: 1.75rem;
}

.hero-visual .cta-group {
    width: 100% !important;
    max-width: 480px !important;
    margin-top: 2.5rem !important;
    justify-content: center !important;
}

.hero-visual #primary-cta-button {
    width: 100% !important;
    padding: 1.15rem 2.5rem !important;
    justify-content: center !important;
    text-align: center !important;
}

.hero-visual #primary-cta-button .btn-label-stack {
    align-items: center !important;
    text-align: center !important;
}

/* --- 5. PAGE CONTAINERS & CARD LAYOUTS --- */
section {
    position: relative;
    padding: 2.5rem 2rem !important;
    width: 100%;
}

div[class*="container"] {
    max-width: 1240px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.matrix-card,
.chapter-card,
.faq-card,
.resonance-card,
.offer-deliverables-card,
.practice-card,
.voice-card,
.shift-card,
.studio-card,
.proof-metric-card,
.author-portrait-card {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-strong) !important;
    padding: 2rem;
    box-shadow: var(--shadow-subtle);
    text-align: left !important;
    width: 100%;
}

/* --- 6. SECTION SPECIFIC COMPONENTS --- */

/* Urgency strip (Header) */
.top-strip {
    display: block;
    width: 100%;
    background: var(--bg-dark) !important;
    color: var(--text-light-muted) !important;
    font-family: var(--font-label);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-align: center !important;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-strip strong {
    color: #FFFFFF !important;
    font-weight: 600;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
}

.hero-section {
    padding: 2.5rem 2rem !important;
    overflow: hidden;
}

.eyebrow-wrapper {
    margin-bottom: 1.75rem !important;
}

.hero-headline {
    font-family: 'Oswald', 'Antonio', 'Impact', sans-serif !important;
    font-size: clamp(3rem, 6.2vw, 5.4rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.045em !important;
    line-height: 0.93 !important;
    text-transform: uppercase !important;
    -webkit-text-stroke: 2.2px currentColor;
    paint-order: stroke fill;
    margin-top: 1.75rem !important;
    margin-bottom: 2rem !important;
}

.hero-subheadline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--terracotta-dark);
    margin-bottom: 1.5rem;
}

.hero-lead,
.hero-body {
    font-size: 1.06rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 420px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content,
.hero-wrapper {
    width: 100%;
}

/* On desktop, float the book visual into its own lane inside the grid via order + absolute-ish column;
   kept in normal flow but restyled as a framed "product shot" */
.hero-visual,
.visual-image-wrapper,
.visual-frame {
    position: relative;
    width: 100%;
    text-align: left;
}

.hero-visual {
    grid-row: 1;
}

.hero-grid {
    grid-template-areas: "content visual";
}

.hero-content {
    grid-area: content;
}

.hero-visual {
    grid-area: visual;
    max-width: 620px;
    justify-self: center;
}

.visual-frame {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-book-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.visual-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.visual-caption,
.author-portrait-caption {
    font-size: 0.8rem;
    font-family: var(--font-label);
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.floating-metric-badge {
    position: absolute;
    bottom: 62px;
    right: -20px;
    background: var(--terracotta);
    color: #FFFFFF;
    padding: 0.85rem 1.15rem;
    box-shadow: var(--shadow-stamp);
    z-index: 2;
    text-align: left !important;
    border: 1px solid var(--terracotta-dark);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.metric-label {
    font-family: var(--font-label);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}

.arch-stamp {
    position: absolute;
    top: -18px;
    left: -18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    font-family: var(--font-label);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--bg-dark);
    border: 1.5px dashed rgba(251, 249, 245, 0.5);
    width: 88px;
    height: 88px;
    line-height: 1.2;
    padding: 0.4rem;
}

.trust-bar {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.1rem !important;
    margin-top: 2rem !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    max-width: max-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.avatar-stack,
.avatar-group {
    display: flex !important;
    align-items: center !important;
}

.avatar,
.av-1,
.av-2,
.av-3,
.av-4 {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    color: #FFFFFF !important;
    font-family: var(--font-label) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--bg-main) !important;
    margin-left: -10px !important;
    box-shadow: 0 2px 5px rgba(28, 23, 19, 0.12) !important;
}

.av-1 { background-color: #B45538 !important; }
.av-2 { background-color: #8F3E24 !important; }
.av-3 { background-color: #6E2E1A !important; }
.av-4 { background-color: #4A4038 !important; }

.avatar:first-child,
.av-1:first-child {
    margin-left: 0 !important;
}

.trust-text {
    font-size: 0.88rem !important;
    color: var(--text-primary) !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

.trust-stars {
    color: #D97706 !important;
    letter-spacing: 0.1em !important;
    font-size: 0.95rem !important;
}

/* Truth Section */
.truth-section {
    background-color: var(--bg-main);
}

.truth-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 1.25rem;
    max-width: 900px;
}

.truth-subheadline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--terracotta-dark);
    margin-bottom: 1.1rem;
}

.truth-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 780px;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    width: 100%;
}

.matrix-card-title {
    font-family: var(--font-label);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta-dark);
    margin-bottom: 1.4rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.matrix-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.matrix-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.96rem;
    color: var(--text-secondary);
}

.matrix-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.matrix-icon.cross {
    stroke: #A8402A;
}

.matrix-icon.check {
    stroke: #3E6B4A;
}

.know-card,
.see-card {
    padding: 2rem;
}

/* Contrast Banner — styled as the book's dark cover panel */
.contrast-banner {
    padding: 2.5rem 2.75rem;
    margin: 3rem 0;
    width: 100%;
    border-left: none !important;
}

.contrast-tag {
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta-bright) !important;
    margin-bottom: 0.9rem;
    display: block;
}

.contrast-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--terracotta-dark) !important;
    max-width: 780px;
}

/* Algorithm & Machine Block */
.algo-explanation-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-left: 3px solid var(--terracotta);
    padding: 1.85rem 2.1rem;
    margin-bottom: 2.25rem;
    width: 100%;
}

.algo-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.65;
}

.machine-block {
    margin: 2.5rem 0;
    width: 100%;
}

.machine-title {
    font-family: var(--font-label);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta-dark);
    margin-bottom: 0.9rem;
}

.machine-lead {
    font-size: 1.18rem;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
    max-width: 800px;
}

.pipeline-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin: 2rem 0;
    width: 100%;
}

.step-pill {
    padding: 0.7rem 1.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.step-pill.highlight {
    background: var(--terracotta) !important;
    color: #FFFFFF !important;
    border-color: var(--terracotta-dark) !important;
}

.pipeline-arrow {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 1.1rem;
}

.machine-takeaway {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    padding: 2rem 2.25rem;
    margin-top: 2.25rem;
    width: 100%;
}

.machine-takeaway p {
    font-size: 1.05rem;
}

.machine-takeaway-cta {
    width: 100% !important;
    margin-top: 1.5rem;
    display: flex !important;
}

.machine-takeaway-cta .btn-primary,
.machine-takeaway-cta a {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* Why Now Section — presented as two facing "spine" panels */
.why-now-section {
    background-color: var(--bg-main);
}

.why-now-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.why-now-eyebrow {
    font-family: var(--font-accent) !important;
    font-style: italic;
    font-weight: 400 !important;
    font-size: 1.35rem !important;
    color: var(--terracotta-dark) !important;
    margin-bottom: 2rem !important;
}

.why-now-lead {
    font-size: 1.08rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 780px;
}

.shift-block {
    margin: 3rem 0;
    width: 100%;
}

.shift-header-tag {
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta-dark);
    margin-bottom: 1.5rem;
    display: block;
}

.shift-grid,
.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    width: 100%;
}

.shift-card,
.studio-card {
    position: relative;
}

.shift-badge,
.studio-badge {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    margin-bottom: 1.1rem;
    border: 1px solid var(--border-strong);
}

.then-card .shift-badge,
.studio-a .studio-badge {
    background: var(--bg-main);
    color: var(--text-muted);
}

.now-card .shift-badge,
.studio-b .studio-badge {
    background: var(--terracotta);
    color: #FFFFFF;
    border-color: var(--terracotta-dark);
}

.shift-list,
.studio-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.shift-item,
.studio-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.96rem;
}

.shift-icon {
    width: 18px;
    height: 18px;
    stroke: var(--terracotta);
    flex-shrink: 0;
    margin-top: 3px;
}

.algo-explanation-box+.manifesto-box,
.manifesto-box {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 2.25rem 2.5rem;
    margin: 2.5rem 0;
    width: 100%;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    border-left: 3px solid var(--terracotta);
}

/* For Whom Section */
.for-whom-section {
    background-color: var(--bg-main);
}

.for-whom-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 1.25rem;
    max-width: 900px;
}

.for-whom-subtitle,
.why-now-lead,
.trust-proof-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 800px;
}

.resonance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.resonance-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    padding: 1.4rem 1.6rem;
}

.resonance-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
}

.resonance-text {
    font-size: 1.03rem;
    color: var(--text-primary);
    line-height: 1.55;
}

.distinction-banner {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-strong) !important;
    border-left: 3px solid var(--terracotta) !important;
    padding: 1.85rem 2.2rem;
    margin: 2.5rem 0;
    width: 100%;
}

.distinction-text {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-primary) !important;
    line-height: 1.65;
}

/* Systems Section — the "table of contents" of the book */
.systems-section {
    background-color: var(--bg-main);
}

.systems-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 1.25rem;
    max-width: 900px;
}

.systems-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 800px;
}

.systems-inside-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: var(--bg-dark);
    color: #FFFFFF;
    font-family: var(--font-label);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
    width: 100%;
    margin-top: 2rem;
}

.chapter-card {
    position: relative;
    padding-top: 2.25rem;
}

.chapter-header {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.chapter-num,
.chapter-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
}

.chapter-title {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.chapter-desc {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.chapter-card.featured-full {
    background-color: var(--bg-dark) !important;
    border-color: var(--bg-dark) !important;
}

.chapter-card.featured-full .chapter-num {
    color: var(--terracotta-bright);
}

.chapter-card.featured-full .chapter-title,
.chapter-card.featured-full h4 {
    color: var(--text-light);
}

.chapter-card.featured-full .chapter-desc {
    color: var(--text-light-muted);
}

.chapter-card.featured-full::before {
    background: var(--terracotta-bright);
}

/* Practice Section */
.practice-section {
    background-color: var(--bg-main);
}

.practice-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 1.25rem;
    max-width: 900px;
}

.practice-eyebrow {
    font-family: var(--font-accent) !important;
    font-style: italic;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: var(--terracotta-dark) !important;
    margin-bottom: 2rem !important;
}

.practice-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    width: 100%;
}

.practice-card {
    border-left: 3px solid var(--terracotta) !important;
}

.practice-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Author Section */
.author-section {
    background-color: var(--bg-main);
}

.author-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
}

.author-name-title {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    margin-bottom: 1.5rem;
}

.author-portrait-card {
    padding: 1.5rem;
    text-align: left;
    position: relative;
}

.author-portrait-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.author-image,
.visual-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.author-portrait-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-portrait-role {
    font-family: var(--font-label);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.author-bio {
    font-size: 1.06rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.author-bio-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin: 0;
}

.author-bio-item {
    position: relative;
    padding-left: 1.35rem;
}

.author-bio-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 1px;
    background: var(--terracotta);
}

.testimonials-block {
    margin: 4rem 0 0;
    width: 100%;
}

.testimonials-header {
    margin-bottom: 2rem;
}

.testimonials-tag {
    font-family: var(--font-label) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--terracotta-dark) !important;
    margin-bottom: 0.6rem;
    display: block;
}

.testimonials-title {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.empowered-voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.voice-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem;
}

.voice-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.voice-video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.voice-details {
    display: flex;
    flex-direction: column;
}

.voice-name {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.96rem;
}

.voice-location {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Offer Section — the "order the book" panel */
.offer-section {
    background-color: var(--bg-main) !important;
    color: var(--text-primary);
}

.offer-section .section-header-tag span:not(.dim-line) {
    color: var(--terracotta-dark) !important;
}

.offer-section .dim-line,
.offer-section .dim-line::before,
.offer-section .dim-line::after {
    background-color: var(--terracotta) !important;
}

.offer-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 2.5rem;
    max-width: 800px;
    color: var(--text-primary);
}

.offer-grid {
    width: 100%;
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.offer-deliverables-card {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-strong) !important;
    border-top: 4px solid var(--terracotta-dark) !important;
    padding: 2.75rem;
    position: relative;
    box-shadow: var(--shadow-subtle);
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.lead-capture-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.form-group label {
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta-dark) !important;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--border-strong) !important;
    background-color: var(--bg-main) !important;
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--text-primary) !important;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus {
    border-color: var(--terracotta-dark) !important;
    box-shadow: 0 0 0 3px rgba(143, 62, 36, 0.15) !important;
    background-color: var(--bg-main) !important;
}

.form-price-summary {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-strong);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.6rem;
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--terracotta-dark) !important;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--terracotta-dark) !important;
}

.price-context {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

.form-submit-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
}

.form-submit-btn .btn-label-stack {
    align-items: center !important;
}

/* Trust Proof Section */
.trust-proof-section {
    background-color: var(--bg-main);
}

.trust-proof-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 1.25rem;
    max-width: 900px;
}

.proof-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin: 2.5rem 0;
}

.proof-metric-card {
    text-align: left;
    padding: 1.85rem;
    border-top: 3px solid var(--terracotta) !important;
}

.proof-metric-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 0.35rem;
}

.proof-metric-label {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.proof-narrative-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    padding: 2.25rem 2.5rem;
    border-left: 3px solid var(--terracotta);
    margin: 2.5rem 0;
    width: 100%;
}

.proof-narrative-text {
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--text-primary);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-main);
}

.faq-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    width: 100%;
}

.faq-card {
    border-left: 3px solid var(--terracotta) !important;
}

.faq-question {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.85rem;
    color: var(--terracotta-dark);
}

.faq-answer {
    font-size: 0.99rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Final CTA Section — the closing "back cover blurb" */
.final-cta-section {
    background-color: var(--bg-main) !important;
    color: var(--text-primary);
    padding: 2.5rem 2rem !important;
}

.final-cta-section .section-header-tag span:not(.dim-line) {
    color: var(--terracotta-dark) !important;
}

.final-cta-section .dim-line,
.final-cta-section .dim-line::before,
.final-cta-section .dim-line::after {
    background-color: var(--terracotta) !important;
}

.final-cta-headline {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin-bottom: 2rem;
    max-width: 900px;
    color: var(--text-primary);
}

.final-cta-narrative {
    max-width: 780px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.final-cta-narrative p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.closing-quote-box {
    background: var(--bg-dark);
    color: #FFFFFF;
    border-left: none !important;
    padding: 2.25rem 2.5rem;
    margin: 2.25rem 0;
    width: 100%;
    max-width: 780px;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
}

.final-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 1.5rem;
    width: 100%;
    max-width: 680px;
    margin-top: 1.5rem;
    margin-left: auto !important;
    margin-right: auto !important;
}

.roi-badge-box,
.final-cta-section #build-the-machine-button {
    flex: 1 1 260px !important;
    min-height: 80px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.25rem 1.75rem !important;
    box-sizing: border-box !important;
}

.roi-badge-box {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-strong) !important;
}

.roi-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta-dark);
    line-height: 1.2;
}

.roi-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    display: block;
    line-height: 1.35;
}

.final-cta-section #build-the-machine-button {
    background-color: var(--terracotta-dark) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--terracotta-deep) !important;
    box-shadow: 0 10px 24px -8px rgba(143, 62, 36, 0.45) !important;
    font-family: var(--font-label) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
}

.final-cta-section #build-the-machine-button:hover {
    background-color: var(--terracotta-bright) !important;
    border-color: var(--terracotta) !important;
}

.final-cta-section .btn-primary span {
    color: #FFFFFF !important;
}

/* Footer — matching header top-strip height & black background */
.site-footer {
    display: block;
    width: 100%;
    background-color: var(--bg-dark) !important;
    padding: 0.6rem 1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center !important;
}

.site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-copyright {
    font-family: var(--font-label);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--text-light-muted) !important;
    text-align: center !important;
}

/* Misc labels used across sections */
.case-study-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.case-study-subtitle {
    font-family: var(--font-label);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
}

.outcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background: var(--bg-main);
    border: 1px solid var(--border-strong);
    font-family: var(--font-label);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.outcome-badge.won {
    background: var(--terracotta);
    color: #FFFFFF;
    border-color: var(--terracotta-dark);
}

.outcome-badge.won .outcome-icon {
    stroke: #FFFFFF;
}

.outcome-icon {
    width: 16px;
    height: 16px;
    stroke: var(--terracotta);
}

.studio-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- 7. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 980px) {
    section {
        padding: 2rem 1.5rem !important;
    }

    .author-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "visual" "content";
        gap: 2.5rem;
    }

    .hero-visual {
        max-width: 300px;
        justify-self: start;
        margin: 0 auto;
    }

    .spine-label {
        display: none;
    }

    .hero-headline {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 1.5rem 1.25rem !important;
    }

    .matrix-grid,
    .chapters-grid,
    .practice-cards-grid,
    .faq-grid,
    .shift-grid,
    .studios-grid,
    .proof-metrics-grid {
        grid-template-columns: 1fr;
    }

    .final-action-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .contrast-quote,
    .closing-quote-box {
        font-size: 1.25rem;
    }

    /* the trailing tick on these eyebrow tags wraps awkwardly at narrow widths — drop it */
    .section-header-tag .dim-line:last-child,
    .eyebrow-wrapper .dim-line:last-child {
        display: none !important;
    }
}

/* --- 8. CONTAINERS & VISUAL FRAMES --- */
.hero-container,
.truth-container,
.why-now-container,
.for-whom-container,
.systems-container,
.practice-container,
.author-container,
.offer-container,
.trust-proof-container,
.faq-container,
.final-cta-container {
    max-width: 1240px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    position: relative;
    z-index: 1;
}

.hero-content,
.hero-wrapper {
    width: 100%;
}

.author-bio-col,
.author-image-col {
    width: 100%;
}

.featured-full,
.final-action-row {
    width: 100%;
}

.roi-text {
    display: block;
}

/* ============================================================
   9. CENTERED, NARROW "LONG-FORM REPORT" LAYOUT
   Reformat pass inspired by kingkong.co/free-report: a single
   centered reading column (not the wider asymmetric grid this
   page used before) with big centered headlines/eyebrows/CTAs.
   Supporting paragraphs stay left-aligned *within* that centered
   column for readability — matching how the reference itself
   sets its body copy — while short pull-quotes center too.
   ============================================================ */

div[class*="container"] {
    max-width: 760px !important;
}

.book-divider {
    max-width: 760px;
}

/* Eyebrow / blueprint tags always center as a block, in any parent context
   (flex-column section container, or plain block flow inside the hero) */
.section-header-tag,
.eyebrow-wrapper {
    display: flex !important;
    width: max-content !important;
    max-width: 100%;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Big display headlines + short accent lines center; long paragraphs stay left */
.display-heading,
.hero-subheadline,
.truth-subheadline,
.why-now-eyebrow,
.practice-eyebrow,
.author-name-title,
.testimonials-title,
.form-title,
.case-study-title,
.case-study-subtitle {
    width: 100%;
    text-align: center !important;
}

.testimonials-header {
    text-align: center;
}

.systems-inside-badge {
    width: max-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Short pull-quote / emphasis callouts read better centered in a narrow column */
.contrast-banner,
.closing-quote-box,
.manifesto-box {
    text-align: center !important;
}

.distinction-text {
    text-align: center !important;
}

/* CTAs and trust elements center as a row */
.cta-group,
.why-now-cta-wrapper,
.for-whom-cta-wrapper,
.systems-cta-wrapper,
.practice-cta-wrapper,
.trust-proof-cta-wrapper,
.faq-cta-wrapper,
.machine-takeaway-cta,
.trust-bar,
.final-action-row {
    justify-content: center !important;
}

/* Full-width Section CTA Wrappers & Buttons */
.cta-group,
.why-now-cta-wrapper,
.for-whom-cta-wrapper,
.systems-cta-wrapper,
.practice-cta-wrapper,
.trust-proof-cta-wrapper,
.faq-cta-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 2rem;
}

.cta-group .btn-primary,
.cta-group a,
#primary-cta-button,
.why-now-cta-wrapper .btn-primary,
.why-now-cta-wrapper a,
.for-whom-cta-wrapper .btn-primary,
.for-whom-cta-wrapper a,
.systems-cta-wrapper .btn-primary,
.systems-cta-wrapper a,
.practice-cta-wrapper .btn-primary,
.practice-cta-wrapper a,
.trust-proof-cta-wrapper .btn-primary,
.trust-proof-cta-wrapper a,
.faq-cta-wrapper .btn-primary,
.faq-cta-wrapper a {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.cta-group .btn-label-stack,
#primary-cta-button .btn-label-stack {
    align-items: center !important;
    text-align: center !important;
}

/* Hero: stack the book visual under the centered text block instead of
   the old side-by-side grid */
.hero-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas: "content" "visual" !important;
    gap: 3rem !important;
    justify-items: center;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.hero-visual {
    width: 100%;
    max-width: 640px !important;
    justify-self: center !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-visual .visual-frame {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-visual .visual-frame::before,
.hero-visual .visual-frame::after {
    display: none !important;
}

.hero-body,
.hero-lead {
    margin-left: auto;
    margin-right: auto;
}

.spine-label {
    display: none;
}

/* a wide-page marginal flourish — doesn't suit a narrow centered column */

/* Comparison / list grids: single column, stacked, centered in the reading column */
.matrix-grid,
.shift-grid,
.studios-grid,
.chapters-grid,
.faq-grid,
.practice-cards-grid,
.empowered-voices-grid {
    grid-template-columns: 1fr !important;
}

/* Stat tiles: a centered 2-up grid rather than 4 across */
.proof-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

.proof-metric-card {
    text-align: center !important;
}

/* Author: portrait centered above the bio, both stacked in the narrow column */
.author-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
}

.author-image-col {
    order: -1;
    max-width: 620px;
    width: 100%;
}

.author-bio-col {
    text-align: left;
    max-width: 640px;
}

.offer-grid {
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 640px) {
    .hero-content {
        max-width: 100%;
    }

    .proof-metrics-grid {
        grid-template-columns: 1fr !important;
    }
}