/* ========================================
   A Player Brains — WORKSHOP BOARD AESTHETIC
   Dense, hand-drawn, Taki Moore energy
   ORGANIC, UNEVEN, HUMAN
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Base Colors */
    --color-bg: #FAF9F7;
    --color-bg-warm: #FEF7ED;
    --color-card: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-secondary: #555555;

    /* Taki Moore Highlight Colors - PUNCHY */
    --highlight-yellow: #FACC15;
    --highlight-green: #4ADE80;
    --highlight-blue: #60A5FA;
    --highlight-pink: #FB7185;
    --highlight-orange: #FB923C;
    --highlight-purple: #C084FC;

    /* Sticky Note Colors */
    --sticky-yellow: #FFF9C4;
    --sticky-pink: #FCE4EC;
    --sticky-blue: #E3F2FD;
    --sticky-green: #E8F5E9;
    --sticky-orange: #FFF3E0;
    --sticky-purple: #E9D5FF;

    /* Accent */
    --color-accent: #E85D04;
    --color-accent-hover: #D64D00;
    --color-pin: #DC2626;

    /* Typography */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-hand: 'Caveat', cursive;

    /* Spacing - BIGGER */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1300px;
    --gutter: 2.5rem;

    /* Card */
    --radius: 4px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-card: 3px 4px 0 rgba(0,0,0,0.12);
    --shadow-sticky: 2px 3px 8px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);

    /* Animation */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 200ms ease;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 6px 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    z-index: 10000;
    transition: top 200ms ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--highlight-yellow);
    outline-offset: 2px;
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.25rem; }

/* ========================================
   HIGHLIGHT CLASSES - ROUGH MARKER STROKES
   Imperfect, like actual marker on paper
   ======================================== */

/* Base highlight - rough edges, uneven coverage */
.highlight, mark.highlight {
    background: var(--highlight-yellow);
    padding: 0.1em 0.3em 0.05em 0.2em;
    margin: 0 -0.05em;
    color: inherit;
    border-radius: 1px 3px 2px 1px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Yellow - heavy marker, bleeds bottom-right */
.highlight--yellow {
    background: linear-gradient(95deg, var(--highlight-yellow) 0%, var(--highlight-yellow) 85%, rgba(250, 204, 21, 0.4) 100%);
    padding: 0.15em 0.5em 0.1em 0.2em;
    border-radius: 2px 8px 3px 1px;
    box-shadow: 3px 2px 0 rgba(250, 204, 21, 0.35);
    transform: rotate(-0.5deg);
    display: inline-block;
}

/* Green - quick swipe, tapers left */
.highlight--green {
    background: linear-gradient(88deg, rgba(74, 222, 128, 0.5) 0%, var(--highlight-green) 15%, var(--highlight-green) 100%);
    padding: 0.08em 0.35em 0.12em 0.45em;
    border-radius: 12px 2px 4px 2px;
    transform: rotate(0.3deg);
    display: inline-block;
}

/* Blue - underline style, thick bottom */
.highlight--blue {
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.3) 0%, var(--highlight-blue) 60%);
    padding: 0.05em 0.4em 0.18em 0.3em;
    border-radius: 1px 3px 6px 2px;
    box-shadow: 0 3px 0 rgba(96, 165, 250, 0.25);
    display: inline-block;
}

/* Pink - double-pass, overdrawn */
.highlight--pink {
    background: var(--highlight-pink);
    padding: 0.12em 0.3em 0.08em 0.35em;
    border-radius: 4px 2px 5px 1px;
    box-shadow:
        2px 1px 0 rgba(251, 113, 133, 0.4),
        -1px 2px 0 rgba(251, 113, 133, 0.2);
    transform: rotate(0.7deg);
    display: inline-block;
}

/* Purple - for discovery service */
.highlight--purple {
    background: rgba(168, 85, 247, 0.35);
    padding: 0.1em 0.35em 0.1em 0.3em;
    border-radius: 3px 4px 2px 5px;
    box-shadow: 1px 2px 0 rgba(168, 85, 247, 0.2);
    transform: rotate(-0.3deg);
    display: inline-block;
}

/* Orange - energetic slash, bleeds right hard */
.highlight--orange {
    background: linear-gradient(92deg, var(--highlight-orange) 0%, var(--highlight-orange) 90%, rgba(251, 146, 60, 0.3) 100%);
    padding: 0.1em 0.55em 0.08em 0.15em;
    border-radius: 2px 15px 3px 1px;
    box-shadow: 4px 0 0 rgba(251, 146, 60, 0.35);
    transform: rotate(-0.8deg);
    display: inline-block;
}

/* Purple - solid confident stroke */
.highlight--purple {
    background: var(--highlight-purple);
    padding: 0.1em 0.32em 0.12em 0.28em;
    border-radius: 3px 2px 4px 6px;
    box-shadow: -2px 2px 0 rgba(192, 132, 252, 0.3);
    transform: rotate(0.4deg);
    display: inline-block;
}

/* Extra thick - heavy marker pass */
.highlight--thick {
    padding: 0.18em 0.4em 0.15em 0.3em;
    box-shadow:
        2px 1px 0 rgba(0,0,0,0.05),
        inset 0 -2px 0 rgba(0,0,0,0.03);
}

/* Double pass - overdrawn */
.highlight--double {
    background: var(--highlight-yellow);
    padding: 0.15em 0.35em;
    box-shadow:
        3px 2px 0 rgba(254, 240, 138, 0.6),
        -1px -1px 0 rgba(254, 240, 138, 0.4);
}

/* Solid highlight blocks - for BIG emphasis */
.highlight-block {
    display: inline-block;
    padding: 0.3em 0.7em;
    transform: rotate(-1.5deg);
    border-radius: 3px 5px 4px 6px;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.08);
}
.highlight-block--yellow { background: var(--highlight-yellow); }
.highlight-block--green { background: var(--highlight-green); transform: rotate(1deg); }
.highlight-block--blue { background: var(--highlight-blue); transform: rotate(-0.5deg); }
.highlight-block--pink { background: var(--highlight-pink); transform: rotate(2deg); }
.highlight-block--orange { background: var(--highlight-orange); transform: rotate(-1deg); }

/* Strikethrough with correction - Taki Moore signature */
.correction {
    position: relative;
    display: inline;
}
.correction__old {
    text-decoration: line-through;
    text-decoration-color: var(--color-pin);
    text-decoration-thickness: 3px;
    text-decoration-style: wavy;
    opacity: 0.5;
    white-space: nowrap;
}
.correction__new {
    font-family: var(--font-hand);
    color: var(--color-pin);
    font-size: 1.1em;
    font-weight: 700;
    white-space: nowrap;
}

/* Process section - correction below strikethrough */
.section--process .correction__new {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.25em;
    font-size: 1.3em;
}

/* Hand-drawn underline - WOBBLY */
.hand-underline {
    position: relative;
    display: inline;
}
.hand-underline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -3%;
    right: -3%;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6'%3E%3Cpath d='M0 3 Q 10 1, 20 4 T 40 3 T 60 4 T 80 2 T 100 4' stroke='%23E85D04' stroke-width='3' fill='none'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 6px;
}

/* Hand-drawn circle around text */
.hand-circle {
    position: relative;
    display: inline-block;
}
.hand-circle::before {
    content: '';
    position: absolute;
    inset: -8px -12px;
    border: 3px solid var(--color-accent);
    border-radius: 50% 45% 55% 48%;
    transform: rotate(-2deg);
    opacity: 0.7;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ========================================
   DOODLES & ANNOTATIONS - Analytical markers
   ======================================== */
.doodle {
    position: absolute;
    font-family: var(--font-hand);
    color: var(--color-accent);
    pointer-events: none;
    user-select: none;
}

.doodle--check {
    font-size: 2rem;
    color: #16a34a;
}

.doodle--arrow {
    font-size: 2rem;
}

.doodle--note {
    font-size: 1.4rem;
    max-width: 150px;
    line-height: 1.2;
    font-weight: 700;
}

.doodle--circle {
    font-size: 2.5rem;
    opacity: 0.3;
}

.doodle--box {
    font-size: 2rem;
    opacity: 0.3;
}

.doodle--bracket {
    font-size: 5rem;
    font-weight: 300;
    opacity: 0.2;
}

/* ========================================
   STICKY NOTE - Pinned paper, not crafted
   ======================================== */
.sticky-note {
    background: var(--sticky-yellow);
    padding: var(--space-md) var(--space-lg);
    position: relative;
    box-shadow:
        3px 3px 0 rgba(0,0,0,0.12),
        0 1px 2px rgba(0,0,0,0.08);
    border-radius: 1px;
}

.sticky-note--pink { background: var(--sticky-pink); }
.sticky-note--blue { background: var(--sticky-blue); }
.sticky-note--green { background: var(--sticky-green); }
.sticky-note--orange { background: var(--sticky-orange); }

/* ========================================
   STICKY NOTE CLUSTERS - Grouped 6-packs
   Coming from outside page, slanted, with dead space
   ======================================== */
body {
    position: relative;
    overflow-x: hidden;
}

.note-clusters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Each cluster is a 3x2 grid of notes on a slant */
.note-cluster {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 145px);
    grid-template-rows: repeat(2, 145px);
    gap: 10px;
    opacity: 0.45;
}

/* Individual notes in cluster */
.cluster-note {
    width: 145px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.7rem;
    line-height: 1.15;
    border-radius: 1px;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

/* Individual note rotations for messy look */
.cluster-note:nth-child(1) { transform: rotate(-3deg); }
.cluster-note:nth-child(2) { transform: rotate(2deg); }
.cluster-note:nth-child(3) { transform: rotate(-1deg); }
.cluster-note:nth-child(4) { transform: rotate(4deg); }
.cluster-note:nth-child(5) { transform: rotate(-2deg); }
.cluster-note:nth-child(6) { transform: rotate(1deg); }

/* Notes with SVG visuals */
.cluster-note svg {
    width: 88%;
    height: 88%;
}

/* Messier text - slight variations */
.cluster-note:nth-child(odd) {
    font-size: 1.1rem;
}
.cluster-note:nth-child(even) {
    font-size: 1.25rem;
}
.cluster-note:nth-child(3n) {
    letter-spacing: 0.5px;
}

/* Colors */
.cluster-note--yellow { background: var(--sticky-yellow); }
.cluster-note--blue { background: var(--sticky-blue); }
.cluster-note--pink { background: var(--sticky-pink); }

/* Base positioning for individual notes */
.cluster-note {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 1;
    opacity: 0.5;
}

/* Individual note positions - manually positioned */
.cluster-note-1 { top: 417px; left: 39px; transform: rotate(-3deg); }
.cluster-note-2 { top: 1264px; left: 147px; transform: rotate(3.9deg); }
.cluster-note-3 { top: 412px; left: 172px; transform: rotate(-2.7deg); }
.cluster-note-4 { top: 876px; left: 1496px; transform: rotate(4deg); }
.cluster-note-5 { top: 545px; left: 113px; transform: rotate(-2.8deg); }
.cluster-note-6 { top: 955px; left: 1577px; transform: rotate(2.1deg); }
.cluster-note-7 { top: 1256px; left: 16px; transform: rotate(4deg); }
.cluster-note-8 { top: 1409px; left: 272px; transform: rotate(3.9deg); }
.cluster-note-9 { top: 1274px; left: 279px; transform: rotate(3.8deg); }
.cluster-note-10 { top: 792px; left: 1574px; transform: rotate(-4deg); }
.cluster-note-11 { top: 1388px; left: 6px; transform: rotate(4.4deg); }
.cluster-note-12 { top: 2182px; left: 1433px; transform: rotate(-3deg); }
.cluster-note-13 { top: 1401px; left: 139px; transform: rotate(4deg); }
.cluster-note-14 { top: 2031px; left: 121px; transform: rotate(2.5deg); }
.cluster-note-15 { top: 2175px; left: 125px; transform: rotate(2deg); }
.cluster-note-16 { top: 2148px; left: -26px; transform: rotate(2deg); }
.cluster-note-17 { top: 2127px; left: 622px; transform: rotate(2deg); }
.cluster-note-18 { top: 2028px; left: 294px; transform: rotate(-2.2deg); }
.cluster-note-19 { top: 1364px; left: 408px; transform: rotate(4deg); }
.cluster-note-20 { top: 2040px; left: 758px; transform: rotate(-3.6deg); }
.cluster-note-21 { top: 1950px; left: -6px; transform: rotate(3deg); }
.cluster-note-22 { top: 4104px; left: 752px; transform: rotate(-4deg); }
.cluster-note-23 { top: 2121px; left: 1554px; transform: rotate(-3deg); }
.cluster-note-24 { top: 2045px; left: 453px; transform: rotate(-3deg); }
.cluster-note-25 { top: 5297px; left: 30px; transform: rotate(-1deg); }
.cluster-note-26 { top: 1997px; left: 606px; transform: rotate(-2deg); }
.cluster-note-27 { top: 5027px; left: 129px; transform: rotate(3deg); }
.cluster-note-28 { top: 2168px; left: 296px; transform: rotate(-2deg); }
.cluster-note-29 { top: 5164px; left: 197px; transform: rotate(2deg); }
.cluster-note-30 { top: 1931px; left: 832px; transform: rotate(-6deg); }
.cluster-note-31 { top: 6208px; left: 1458px; transform: rotate(4deg); }
.cluster-note-32 { top: 2192px; left: 460px; transform: rotate(-2deg); }
.cluster-note-33 { top: 5167px; left: 36px; transform: rotate(0deg); }
.cluster-note-34 { top: 5114px; left: 1499px; transform: rotate(-4deg); }
.cluster-note-35 { top: 5225px; left: 1655px; transform: rotate(2deg); }

/* Hide on smaller screens */
@media (max-width: 1200px) {
    .cluster-note {
        display: none;
    }
}


/* ========================================
   HERO - Workshop aesthetic, BOLD and centered
   ======================================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--gutter);
    position: relative;
    text-align: center;
    background:
        radial-gradient(circle at 20% 30%, rgba(254, 240, 138, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(134, 239, 172, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(253, 186, 116, 0.1) 0%, transparent 50%),
        var(--color-bg);
    overflow: hidden;
}

/* Workshop annotations */
.hero__deco {
    position: absolute;
    pointer-events: none;
    font-family: var(--font-hand);
}

.hero__deco--check {
    bottom: 25%;
    left: 8%;
    font-size: 3rem;
    color: #16a34a;
    opacity: 0.5;
    transform: rotate(-12deg);
}

.hero__deco--arrow-down {
    bottom: 12%;
    right: 25%;
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.5;
    transform: rotate(25deg);
}

.hero__deco--note-1 {
    top: 18%;
    left: 6%;
    font-size: 1.6rem;
    font-weight: 700;
    opacity: 0.6;
    transform: rotate(-8deg);
    color: var(--color-pin);
}

.hero__deco--note-2 {
    top: 30%;
    right: 5%;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.5;
    transform: rotate(6deg);
    background: var(--highlight-yellow);
    padding: 0.3em 0.6em;
    border-radius: 2px;
}

.hero__deco--circle {
    bottom: 35%;
    left: 12%;
    font-size: 4rem;
    opacity: 0.2;
    transform: rotate(-15deg);
    color: var(--highlight-blue);
}

.hero__deco--box {
    top: 40%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.15;
    transform: rotate(8deg);
    color: var(--highlight-green);
}

/* Annotation positioned relative to content */
.hero__annotation {
    position: absolute;
    font-family: var(--font-hand);
    font-size: 1.8rem;
    color: var(--color-accent);
    font-weight: 700;
    pointer-events: none;
}

.hero__annotation--question {
    top: auto;
    bottom: calc(50% + 100px);
    left: calc(50% + 200px);
    transform: rotate(-8deg);
    white-space: nowrap;
}

.hero__content {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

/* Title with stacked lines for drama - MASSIVE */
.hero__title {
    font-size: clamp(5rem, 18vw, 10rem);
    margin-bottom: var(--space-xl);
    line-height: 0.95;
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: -0.04em;
}

.hero__title-line {
    display: block;
    font-size: 0.35em;
    font-weight: 500;
    color: #3d3d3d; /* Darker than --color-text-secondary for better contrast */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.3em;
}

.hero__title-highlight {
    position: relative;
    display: inline-block;
}

.hero__title-highlight .highlight {
    background: var(--highlight-yellow);
    padding: 0.05em 0.2em;
    transform: rotate(-1.5deg);
    display: inline-block;
    border-radius: 2px 6px 3px 8px;
    box-shadow:
        6px 6px 0 rgba(0,0,0,0.1),
        inset 0 -4px 0 rgba(0,0,0,0.05);
}

/* Hand-drawn underline scribble - MORE WOBBLY */
.hero__scribble {
    position: absolute;
    bottom: -14px;
    left: -8%;
    width: 116%;
    height: 28px;
    color: var(--color-accent);
    opacity: 0.6;
}

.hero__title-q {
    font-size: 1.2em;
    color: var(--color-accent);
    margin-left: -0.05em;
    display: inline-block;
    font-weight: 700;
    animation: tilt 2.5s ease-in-out infinite;
    text-shadow: 4px 4px 0 rgba(232, 93, 4, 0.15);
}

@keyframes tilt {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.hero__body {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* CTA with "THIS" arrow annotation - PROMINENT */
.hero__cta-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}

/* THIS arrow - positioned to ACTUALLY POINT at the button */
.hero__this-arrow {
    position: absolute;
    left: -140px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
}

.hero__this-arrow svg {
    width: 80px;
    height: 40px;
}

.hero__this-arrow span {
    font-family: var(--font-hand);
    font-size: 2.2rem;
    font-weight: 700;
    transform: rotate(-10deg);
    white-space: nowrap;
}

/* Main CTA button - UNMISSABLE */
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.75rem 4rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.65rem;
    letter-spacing: -0.01em;
    transition: all 300ms var(--ease);
    box-shadow:
        0 8px 30px rgba(232, 93, 4, 0.5),
        6px 6px 0 rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    transform: rotate(-1deg);
}

/* Hand-drawn circle around the button - IMPERFECT */
.hero__cta::after {
    content: '';
    position: absolute;
    inset: -14px -18px -12px -16px;
    border: 4px solid var(--color-accent);
    border-radius: 55% 48% 52% 45%;
    opacity: 0.4;
    transform: rotate(-1deg);
    animation: wobble-border 4s ease-in-out infinite;
}

@keyframes wobble-border {
    0%, 100% { border-radius: 55% 48% 52% 45%; transform: rotate(-1deg); }
    25% { border-radius: 48% 55% 45% 52%; transform: rotate(1deg); }
    50% { border-radius: 52% 45% 55% 48%; transform: rotate(-2deg); }
    75% { border-radius: 45% 52% 48% 55%; transform: rotate(0deg); }
}

.hero__cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-6px) rotate(1deg) scale(1.03);
    box-shadow:
        0 20px 50px rgba(232, 93, 4, 0.5),
        10px 10px 0 rgba(0,0,0,0.12);
}

/* "Or see how we help" - MORE PROMINENT */
.hero__scroll {
    font-family: var(--font-hand);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--transition);
    margin-top: var(--space-sm);
}

.hero__scroll:hover {
    color: var(--color-accent);
}

.hero__scroll-arrow {
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ========================================
   SECTION TITLES - DRAMATIC
   ======================================== */
.section__title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    letter-spacing: -0.03em;
    line-height: 1;
}

.section__subtitle {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    max-width: 800px;
    line-height: 1.6;
}

/* Section annotations - margin notes */
.section__annotation {
    position: absolute;
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 700;
}

/* ========================================
   SERVICES - Evidence Board with STICKY NOTES
   ======================================== */
.section--services {
    padding: calc(var(--space-xl) + 45px) 0 calc(var(--space-lg) + 45px);
    background: #F5F3EE;
    position: relative;
}

.section--services .container {
    max-width: 1600px;
    padding: 0 var(--gutter);
}

.section--services .section__header {
    margin-bottom: calc(var(--space-lg) + 35px);
    position: relative;
}

/* Subtle texture */
.section--services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Doodles in services section */
.section--services .doodle--note-1 {
    bottom: 20%;
    left: 5%;
    transform: rotate(-5deg);
    opacity: 0.5;
}

.section--services .doodle--box-1 {
    top: 15%;
    right: 8%;
    transform: rotate(5deg);
    opacity: 0.25;
}

.section--services .doodle--circle-1 {
    top: 25%;
    left: 10%;
    transform: rotate(-12deg);
    color: var(--highlight-blue);
}

/* Evidence board layout - equal weight cards */
.evidence-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(310px, 1fr));
    gap: calc(var(--space-lg) + 10px);
    position: relative;
    align-items: stretch;
    margin-top: 15px;
}

/* Secondary cards container - no longer needed for layout */
.evidence-board__secondary {
    display: contents;
}

/* Connector arrow between cards - HAND DRAWN, MORE VISIBLE */
.evidence-board__connector {
    position: absolute;
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 100px;
    color: var(--color-accent);
    opacity: 0.6;
    display: none;
}

@media (min-width: 901px) {
    .evidence-board__connector {
        display: block;
    }
}

/* Service cards - Equal-weight style */
.service-card {
    background: var(--sticky-yellow);
    border-radius: var(--radius);
    padding: 2.9rem 2.3rem;
    box-shadow: var(--shadow-sticky);
    cursor: pointer;
    transition: all 300ms var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 345px;
    text-decoration: none;
    color: inherit;
}

/* All cards - sizing */
.service-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.service-card__tagline {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

.service-card__body {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card__hint {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition);
    margin-top: auto;
    font-weight: 600;
}

.service-card:hover .service-card__hint {
    color: var(--color-accent-hover);
    transform: translateX(4px);
}

/* Card color variations */
.service-card--featured {
    background: var(--sticky-yellow);
    transform: rotate(-1.5deg);
}

.service-card--apps {
    background: var(--sticky-blue);
    transform: rotate(1.5deg);
}

.service-card--coaching {
    background: var(--sticky-pink);
    transform: rotate(-1deg);
}

.service-card--discovery {
    background: var(--sticky-purple);
    transform: rotate(0.5deg);
}

.service-card--discovery:hover {
    transform: rotate(0.5deg) translateY(-6px) scale(1.02);
}

/* Card icon */
.service-card__icon {
    display: block;
    font-size: 2.4rem;
    margin-bottom: 0.3rem;
    filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.1));
}

/* Badge styling */
.service-card__badge {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--highlight-orange);
    padding: 0.4rem 1.2rem;
    font-family: var(--font-hand);
    font-size: 1.15rem;
    font-weight: 700;
    transform: rotate(3deg);
    border-radius: var(--radius);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.15);
    z-index: 2;
}

.service-card__badge--purple {
    background: var(--highlight-purple);
    color: white;
}

.service-card__badge--pink {
    background: var(--sticky-pink);
    color: var(--color-text);
}

/* Price note (smaller text) */
.service-card__price-note {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Duration display */
.service-card__duration {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.3rem;
}

/* Price preview */
.service-card__price {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

/* Margin note on card */
.service-card__margin-note {
    position: absolute;
    font-family: var(--font-hand);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
}

/* Margin note positions per card */
.service-card--featured .service-card__margin-note {
    bottom: 20px;
    right: -15px;
    transform: rotate(8deg);
}

.service-card--coaching .service-card__margin-note {
    top: 15px;
    right: -10px;
    transform: rotate(-5deg);
    color: #9333EA;
}


/* ========================================
   EVIDENCE BOARD EXPANSION (Modal style)
   ======================================== */
.evidence-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1), visibility 400ms;
}

.evidence-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.evidence-detail {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.95) rotate(-1deg);
    z-index: 1001;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    visibility: hidden;
    transition: all 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.evidence-detail.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

/* Main expanded card - Pinned paper style */
.evidence-detail__main {
    background: var(--sticky-yellow);
    border-radius: 2px;
    padding: var(--space-xl);
    box-shadow:
        8px 8px 0 rgba(0,0,0,0.18),
        0 0 0 4px var(--color-accent);
    position: relative;
}

.evidence-detail__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 48px;
    height: 48px;
    border: none;
    background: var(--color-bg);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.evidence-detail__close:hover {
    background: var(--color-accent);
    color: white;
}

.evidence-detail__header {
    margin-bottom: var(--space-lg);
    padding-right: var(--space-2xl);
}

.evidence-detail__title {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.evidence-detail__tagline {
    font-family: var(--font-hand);
    font-size: 1.6rem;
    color: var(--color-text-secondary);
}

/* Pinned note cards within the detail view - 2x2 GRID */
.evidence-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.evidence-note {
    padding: var(--space-md) var(--space-lg);
    box-shadow:
        4px 4px 0 rgba(0,0,0,0.12),
        0 1px 2px rgba(0,0,0,0.06);
    border-radius: 1px;
    position: relative;
}

.evidence-note--price {
    background: var(--sticky-orange);
    transform: rotate(1.7deg);
}

.evidence-note--includes {
    background: var(--sticky-green);
    transform: rotate(-2.3deg);
}

.evidence-note--for-you {
    background: var(--sticky-blue);
    transform: rotate(0.8deg);
}

.evidence-note--cta {
    background: var(--color-accent);
    transform: rotate(-1.5deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.evidence-note--cta .evidence-note__label {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-sm);
}

.evidence-note__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 200ms var(--ease);
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.evidence-note__cta-button:hover {
    transform: translateY(-3px) rotate(1deg);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.15);
}

.evidence-note__label {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    opacity: 0.8;
}

.evidence-note__price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.evidence-note ul {
    margin: 0;
    padding-left: 1rem;
}

.evidence-note li {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.4;
}


/* ========================================
   YOU OWN EVERYTHING - Ownership Section
   Three-column comparison layout
   ======================================== */
.section--ownership {
    padding: var(--space-3xl) 0;
    background: #F5F3EE;
    position: relative;
    overflow: visible;
}

.ownership__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
}

.ownership__grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1.1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

/* Column base styles */
.ownership__column {
    background: white;
    border-radius: 8px;
    padding: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.ownership__column-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid #eee;
}

/* Their Way - red/gray theme */
.ownership__column--theirs {
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

.ownership__column-title--theirs {
    color: #888;
    border-bottom-color: #ddd;
}

.ownership__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}

.ownership__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-family: var(--font-body);
    font-size: 20px;
}

.ownership__list--theirs li {
    color: #666;
}

.ownership__x {
    color: #dc2626;
    font-weight: 700;
    font-size: 22px;
}

.ownership__note {
    font-family: var(--font-hand);
    font-size: 24px;
    font-style: italic;
    margin-top: auto;
    padding-top: var(--space-sm);
}

.ownership__note--theirs {
    color: #999;
}

/* Our Way - green theme */
.ownership__column--ours {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid #86efac;
    transform: scale(1.02);
    z-index: 2;
    padding: var(--space-xl);
}

.ownership__column-title--ours {
    color: #16a34a;
    border-bottom-color: #86efac;
}

.ownership__list--ours li {
    color: #1a1a1a;
    font-weight: 500;
}

.ownership__check {
    color: #16a34a;
    font-weight: 700;
    font-size: 22px;
}

.ownership__extras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: var(--space-md) 0;
    padding-top: var(--space-sm);
    border-top: 1px dashed rgba(34, 197, 94, 0.3);
}

.ownership__extra {
    font-family: var(--font-hand);
    font-size: 20px;
    color: #16a34a;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
}

.ownership__note--ours {
    color: #16a34a;
    font-weight: 500;
}

/* Proof column - new layout */
.ownership__column--proof {
    background: #fefefe;
    display: flex;
    flex-direction: column;
    padding: var(--space-xl);
    overflow: visible;
}

.ownership__proof-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.ownership__proof-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.ownership__proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.ownership__proof-avatar--client {
    background: #8b5cf6;
}

.ownership__proof-avatar--apb {
    background: #E85D04;
}

.ownership__proof-label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
    flex-grow: 1;
}

.ownership__proof-role {
    font-size: 14px;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ownership__proof-role--owner {
    background: #dbeafe;
    color: #1d4ed8;
}

.ownership__proof-role--collab {
    background: #f3f4f6;
    color: #6b7280;
}

.ownership__polaroid {
    position: relative;
    background: white;
    padding: 16px 16px 12px;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.15),
        0 1px 3px rgba(0,0,0,0.1);
    transform: rotate(1deg);
    margin-top: var(--space-sm);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.ownership__polaroid--mini {
    flex-grow: 0;
    padding: 10px 10px 8px;
    margin-top: auto;
}

.ownership__github-visual {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}

.ownership__github-visual .ownership__github-icon {
    font-size: 1.1rem;
}

.ownership__github-visual .ownership__github-repo {
    font-weight: 600;
    color: #0969da;
}

.ownership__polaroid-pin {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #ef4444 0%, #b91c1c 100%);
    border-radius: 50%;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 -2px 4px rgba(0,0,0,0.2);
}

.ownership__polaroid-pin::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}

.ownership__polaroid-inner {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: var(--space-md);
    flex-grow: 1;
}

/* GitHub mockup */
.ownership__github {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
}

.ownership__github-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
}

.ownership__github-icon {
    font-size: 1.2rem;
}

.ownership__github-repo {
    font-weight: 600;
    color: #0969da;
}

.ownership__github-access {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ownership__github-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
}

.ownership__github-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.ownership__github-avatar--client {
    background: #8b5cf6;
}

.ownership__github-avatar--apb {
    background: #E85D04;
}

.ownership__github-name {
    flex-grow: 1;
    color: #1f2937;
    font-size: 17px;
}

.ownership__github-role {
    font-size: 14px;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ownership__github-role--owner {
    background: #dbeafe;
    color: #1d4ed8;
}

.ownership__github-role--collab {
    background: #f3f4f6;
    color: #6b7280;
}

.ownership__polaroid-caption {
    font-family: var(--font-hand);
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

/* Footer */
.ownership__footer {
    font-family: var(--font-hand);
    font-size: 22px;
    font-style: italic;
    text-align: center;
    color: #555;
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px dashed #ddd;
}

/* Responsive - mobile stack */
@media (max-width: 900px) {
    .section--ownership {
        max-height: none;
        padding: var(--space-xl) 0;
    }

    .ownership__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .ownership__column--ours {
        transform: none;
        order: -1;
    }

    .ownership__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .ownership__column {
        padding: var(--space-md);
    }

    .ownership__extras {
        flex-direction: column;
    }

    .ownership__footer {
        font-size: 1rem;
    }
}


/* ========================================
   PROCESS - Hand-drawn CIRCLED numbers
   ======================================== */
.section--process {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-warm);
    position: relative;
    overflow: hidden;
}

.section--process .container {
    max-width: 1200px;
}

.section--process .section__header {
    margin-bottom: var(--space-2xl);
    position: relative;
    text-align: left;
}

.section--process .section__subtitle {
    margin-bottom: 2.5em;
    max-width: none;
    white-space: nowrap;
}

/* Doodles in process section */
.section--process .doodle--arrow-1 {
    top: 30%;
    right: 5%;
    font-size: 2.5rem;
    transform: rotate(-30deg);
    opacity: 0.3;
}

.section--process .doodle--note-2 {
    top: 20%;
    left: 8%;
    transform: rotate(-8deg);
    opacity: 0.4;
    font-weight: 700;
}

.section--process .doodle--box-1 {
    top: 45%;
    right: 4%;
    transform: rotate(-5deg);
    color: var(--highlight-green);
    opacity: 0.25;
}

/* Process as 2x2 grid STICKY NOTE cards */
.process-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Hand-drawn connecting arrows - hidden for cleaner look */
.process-board__connectors {
    display: none;
}

.process-connector {
    stroke: var(--color-accent);
    stroke-width: 3;
    stroke-dasharray: 12 8;
    fill: none;
    opacity: 0.5;
}

.process-card {
    background: var(--color-card);
    border-radius: 1px;
    padding: var(--space-lg) var(--space-xl);
    box-shadow:
        4px 4px 0 rgba(0,0,0,0.12),
        0 1px 2px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease;
}

.process-card:hover {
    box-shadow:
        6px 8px 0 rgba(0,0,0,0.1),
        0 4px 12px rgba(0,0,0,0.08);
    z-index: 5;
}

.process-card:nth-of-type(1) {
    transform: rotate(-1.7deg);
    background: var(--sticky-yellow);
}

.process-card:nth-of-type(2) {
    transform: rotate(2.3deg);
    background: var(--sticky-green);
}

.process-card:nth-of-type(3) {
    transform: rotate(0.8deg);
    background: var(--sticky-blue);
}

.process-card:nth-of-type(4) {
    transform: rotate(-2.1deg);
    background: var(--sticky-pink);
}

/* Hand-drawn circled number - SVG STYLE, IMPERFECT */
.process-card__number {
    position: absolute;
    top: -22px;
    right: 25px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-hand);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    background: var(--color-bg);
    border-radius: 50%;
    box-shadow: 2px 3px 6px rgba(0,0,0,0.15);
}

/* Hand-drawn circle - WOBBLY SVG */
.process-card__number::after {
    content: '';
    position: absolute;
    inset: -6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 76 76'%3E%3Cellipse cx='38' cy='38' rx='34' ry='32' stroke='%23E85D04' stroke-width='4' fill='none' transform='rotate(-5 38 38)'/%3E%3C/svg%3E") center/contain no-repeat;
}

.process-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.process-card__body {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.65;
}

/* Result label for last step - celebratory */
.process-card__result {
    display: inline-block;
    background: linear-gradient(135deg, var(--highlight-green) 0%, #34D399 100%);
    padding: 0.4rem 0.85rem;
    font-family: var(--font-hand);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: var(--space-md);
    transform: rotate(1.5deg);
    border-radius: 3px 5px 4px 6px;
    box-shadow: 2px 2px 0 rgba(52, 211, 153, 0.3);
    color: #065F46;
}

/* ========================================
   ABOUT - Workshop board with DENSE annotations
   ======================================== */
.section--about {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-warm);
    position: relative;
}

.section--about .container {
    max-width: 1000px;
}

/* Doodles */
.section--about .doodle--check-1 {
    top: 10%;
    right: 8%;
    font-size: 2.5rem;
    transform: rotate(12deg);
    opacity: 0.4;
}

.section--about .doodle--bracket-1 {
    top: 35%;
    left: 3%;
    transform: rotate(-5deg);
    color: var(--color-text-secondary);
}

.section--about .doodle--note-3 {
    bottom: 30%;
    right: 6%;
    transform: rotate(8deg);
    opacity: 0.45;
    font-weight: 700;
}

.about__board {
    position: relative;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.about__main {
    font-size: 1.25rem;
    line-height: 1.85;
}

.about__main p {
    margin-bottom: var(--space-lg);
}

/* Margin annotations - BIGGER hand-scribbled notes */
.about__annotations {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding-top: var(--space-sm);
    min-width: 180px;
}

.about__note {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--color-accent);
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    line-height: 1.35;
    font-weight: 700;
}

.about__note--1 {
    transform: rotate(-3deg);
}

.about__note--2 {
    transform: rotate(2deg);
    margin-left: var(--space-md);
}

.about__note-arrow {
    font-size: 1.5rem;
    margin-right: 0.2rem;
}

/* Floating animation for notes */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-6px) rotate(-2deg); }
}

@keyframes float-alt {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-7px) rotate(3deg); }
}

.about__note--1 {
    animation: float 4s ease-in-out infinite;
}

.about__note--2 {
    animation: float-alt 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Before/After Diagram - HAND-DRAWN STYLE */
.about__diagram {
    margin: var(--space-2xl) 0;
}

.diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    padding: var(--space-xl);
    background: var(--color-card);
    border-radius: 1px;
    box-shadow:
        4px 4px 0 rgba(0,0,0,0.1),
        0 1px 2px rgba(0,0,0,0.05);
    border: 2px solid rgba(0,0,0,0.1);
    position: relative;
}

.diagram__label {
    font-family: var(--font-hand);
    font-size: 1.25rem;
    font-weight: 700;
    position: absolute;
    top: -14px;
    padding: 0.2em 0.6em;
    background: var(--color-bg-warm);
}

.diagram__label--before {
    left: var(--space-lg);
    color: var(--color-pin);
}

.diagram__label--after {
    right: var(--space-lg);
    color: #16a34a;
}

.diagram__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-lg) var(--space-xl);
    border-radius: 1px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 300ms var(--ease);
    box-shadow:
        3px 3px 0 rgba(0,0,0,0.12),
        0 1px 2px rgba(0,0,0,0.06);
}

.diagram__box--bottleneck {
    background: var(--sticky-pink);
    transform: rotate(-2.7deg);
}

.diagram__box--throughput {
    background: var(--sticky-green);
    transform: rotate(2.3deg);
}

.diagram__box:hover {
    transform: scale(1.1) rotate(0deg);
}

.diagram__icon {
    font-size: 2.5rem;
}

/* Sketched icons instead of emoji */
.diagram__icon--bottleneck,
.diagram__icon--throughput {
    width: 48px;
    height: 48px;
}

.diagram__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-accent);
}

.diagram__arrow svg {
    width: 80px;
    height: 32px;
}

.diagram__arrow-label {
    font-family: var(--font-hand);
    font-size: 1.15rem;
    font-weight: 700;
}

/* Tagline - Pinned note */
.about__tagline {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--sticky-yellow);
    padding: var(--space-md) var(--space-lg);
    display: inline-block;
    transform: rotate(-1.3deg);
    border-radius: 1px;
    position: relative;
    box-shadow:
        4px 4px 0 rgba(0,0,0,0.12),
        0 1px 2px rgba(0,0,0,0.06);
    transition: transform 300ms var(--ease);
}

.about__tagline:hover {
    transform: rotate(0.5deg) scale(1.02);
}

/* ========================================
   THE METHOD™ - Cork board with polaroid cards
   Workshop aesthetic - warm, creative, human
   ======================================== */
.section--method {
    background:
        /* Cork board texture */
        radial-gradient(circle at 20% 30%, rgba(180, 140, 100, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(160, 120, 80, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(140, 100, 60, 0.1) 0%, transparent 45%),
        /* Base cork color */
        linear-gradient(135deg, #D4B896 0%, #C4A882 50%, #B89B72 100%);
    background-color: #C9A87C;
    padding: 0;
    overflow: visible;
    position: relative;
}

/* Cork texture overlay */
.section--method::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(139, 90, 43, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(100, 60, 20, 0.05) 2px, transparent 2px);
    background-size: 12px 12px, 20px 20px;
    background-position: 0 0, 6px 6px;
    pointer-events: none;
}

.method {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    position: relative;
    z-index: 1;
}

/* LEFT: Cork Board with Polaroids */
.method__corkboard {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    position: relative;
}

/* Red string connections - conspiracy board style */
.method__strings {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 520px;
    max-height: 440px;
    pointer-events: none;
    z-index: 0;
}

.method__string {
    fill: none;
    stroke: #EF4444;
    stroke-width: 3.5;
    stroke-dasharray: 10 5;
    opacity: 0.85;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

/* Polaroid container - triangle layout */
.method__polaroids {
    position: relative;
    width: 500px;
    height: 420px;
    padding: 20px;
    margin: 10px;
    overflow: visible;
}

/* Individual Polaroid Cards */
.method__polaroid {
    position: absolute;
    width: 162px;
    background: white;
    padding: 11px 11px 9px 11px;
    border-radius: 2px;
    box-shadow:
        4px 6px 12px rgba(0, 0, 0, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

/* Polaroid positions - triangle formation (spread out) */
.method__polaroid--sense {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
}

.method__polaroid--steer {
    bottom: 0;
    left: -25px;
    transform: rotate(3deg);
    z-index: 1;
}

.method__polaroid--shape {
    bottom: 0;
    right: -25px;
    transform: rotate(-3deg);
    z-index: 1;
}

/* Push Pin */
.method__pin {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    background: radial-gradient(circle at 30% 30%, #FF6B6B 0%, #DC2626 60%, #991B1B 100%);
    border-radius: 50%;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 10;
    transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Pin highlight dot */
.method__pin::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 6px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Polaroid inner content */
.method__polaroid-inner {
    display: flex;
    flex-direction: column;
}

/* Polaroid "photo" area */
.method__polaroid-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 1px;
}

.method__polaroid-image--sense {
    background: linear-gradient(135deg, #DBEAFE 0%, #93C5FD 100%);
}

.method__polaroid-image--steer {
    background: linear-gradient(135deg, #DCFCE7 0%, #86EFAC 100%);
}

.method__polaroid-image--shape {
    background: linear-gradient(135deg, #FED7AA 0%, #FDBA74 100%);
}

.method__polaroid-icon {
    font-size: 3.2rem;
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.15));
}

/* Polaroid caption area */
.method__polaroid-caption {
    text-align: center;
    padding: 6px 0;
}

.method__polaroid-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.method__polaroid--sense .method__polaroid-label { color: #2563EB; }
.method__polaroid--steer .method__polaroid-label { color: #16A34A; }
.method__polaroid--shape .method__polaroid-label { color: #EA580C; }

.method__polaroid-desc {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: #555;
    line-height: 1.2;
}

/* Animation: Cycling polaroid focus */
/* Each card takes a turn being "lifted" and focused */
.method__polaroid--sense {
    animation: focusSense 12s ease-in-out infinite;
}

.method__polaroid--steer {
    animation: focusSteer 12s ease-in-out infinite;
}

.method__polaroid--shape {
    animation: focusShape 12s ease-in-out infinite;
}

/* Pin pop animations */
.method__polaroid--sense .method__pin {
    animation: pinPopSense 12s ease-in-out infinite;
}

.method__polaroid--steer .method__pin {
    animation: pinPopSteer 12s ease-in-out infinite;
}

.method__polaroid--shape .method__pin {
    animation: pinPopShape 12s ease-in-out infinite;
}

/* SENSE: Active 0-33% */
@keyframes focusSense {
    0%, 5% {
        transform: translateX(-50%) rotate(-2deg) scale(1);
        z-index: 3;
    }
    8%, 28% {
        transform: translateX(-50%) translateY(10px) rotate(0deg) scale(1.12);
        z-index: 10;
        box-shadow: 8px 12px 24px rgba(0, 0, 0, 0.3);
    }
    33%, 100% {
        transform: translateX(-50%) rotate(-2deg) scale(1);
        z-index: 1;
    }
}

@keyframes pinPopSense {
    0%, 5% { transform: translateX(-50%) translateY(0) scale(1); }
    6%, 7% { transform: translateX(-50%) translateY(-8px) scale(1.2); }
    8%, 28% { transform: translateX(-50%) translateY(0) scale(1); }
    29%, 30% { transform: translateX(-50%) translateY(-6px) scale(1.15); }
    33%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
}

/* STEER: Active 33-66% */
@keyframes focusSteer {
    0%, 33% {
        transform: rotate(3deg) scale(1);
        z-index: 1;
    }
    36%, 38% {
        transform: rotate(3deg) scale(1);
        z-index: 3;
    }
    41%, 61% {
        transform: translateY(-20px) rotate(0deg) scale(1.12);
        z-index: 10;
        box-shadow: 8px 12px 24px rgba(0, 0, 0, 0.3);
    }
    66%, 100% {
        transform: rotate(3deg) scale(1);
        z-index: 1;
    }
}

@keyframes pinPopSteer {
    0%, 36% { transform: translateX(-50%) translateY(0) scale(1); }
    38%, 39% { transform: translateX(-50%) translateY(-8px) scale(1.2); }
    41%, 61% { transform: translateX(-50%) translateY(0) scale(1); }
    62%, 63% { transform: translateX(-50%) translateY(-6px) scale(1.15); }
    66%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
}

/* SHAPE: Active 66-100% */
@keyframes focusShape {
    0%, 66% {
        transform: rotate(-3deg) scale(1);
        z-index: 1;
    }
    69%, 71% {
        transform: rotate(-3deg) scale(1);
        z-index: 3;
    }
    74%, 94% {
        transform: translateY(-20px) rotate(0deg) scale(1.12);
        z-index: 10;
        box-shadow: 8px 12px 24px rgba(0, 0, 0, 0.3);
    }
    97%, 100% {
        transform: rotate(-3deg) scale(1);
        z-index: 1;
    }
}

@keyframes pinPopShape {
    0%, 69% { transform: translateX(-50%) translateY(0) scale(1); }
    71%, 72% { transform: translateX(-50%) translateY(-8px) scale(1.2); }
    74%, 94% { transform: translateX(-50%) translateY(0) scale(1); }
    95%, 96% { transform: translateX(-50%) translateY(-6px) scale(1.15); }
    97%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
}

/* RIGHT: Content - adjusted for light background */
.method__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) 0;
    color: var(--color-text);
}

.method__label {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
}

.method__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.method__description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.method__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 300ms var(--ease);
    width: fit-content;
    box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.15);
}

.method__cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 5px 7px 0 rgba(0, 0, 0, 0.12);
}

/* ========================================
   TESTIMONIALS - Vertical Notepad Carousel
   Two-column layout with 3D page flip
   ======================================== */
.section--testimonials {
    padding: calc(var(--space-xl) + 120px) 80px calc(var(--space-lg) + 120px);
    background: var(--color-bg);
    position: relative;
    overflow: visible;
    isolation: isolate; /* Create stacking context */
}

/* Two-column layout */
.testimonials-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter) 0 0;
    align-items: center;
}

/* LEFT: Intro content */
.testimonials__intro {
    padding-right: var(--space-md);
    min-width: 550px;
    max-width: 650px;
    margin-left: -100px;
}

.testimonials__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    white-space: normal;
}

.testimonials__desc {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: var(--space-lg);
}

.testimonials__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    transition: all 250ms var(--ease);
    box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.15);
}

.testimonials__cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.12);
}

/* RIGHT: Carousel area */
.testimonials__carousel {
    position: relative;
    overflow: visible;
}

/* Cork/wood surface behind notepad */
.notepad-surface {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    overflow: visible;
}

/* Wrapper for notepad + arrows on desktop */
.notepad-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* The vertical notepad - 1.5x size */
.notepad {
    position: relative;
    width: 480px;
    background: #FFFEF8;
    border-radius: 6px 6px 8px 8px;
    box-shadow:
        0 12px 60px rgba(0,0,0,0.18),
        0 3px 12px rgba(0,0,0,0.1),
        5px 0 0 #f5f5f0,
        10px 0 0 #eeede8,
        15px 0 0 #e8e7e2;
    transform: rotate(2deg);
    cursor: pointer;
    overflow: visible;
}

/* Spiral binding at TOP - 1.5x size */
.notepad__spiral {
    position: absolute;
    top: -18px;
    left: 15px;
    right: 15px;
    height: 36px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
}

.notepad__ring {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #666 0%, #444 50%, #333 100%);
    border-radius: 50%;
    position: relative;
    box-shadow:
        inset 0 3px 6px rgba(0,0,0,0.5),
        0 3px 4px rgba(0,0,0,0.3);
}

.notepad__ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #FFFEF8;
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

/* 3D Book/Pages container - 1.5x size */
.notepad__book {
    position: relative;
    min-height: 680px;
    perspective: 1200px;
    transform-style: preserve-3d;
    padding: 45px 36px 36px;
    overflow: visible;
}

/* Individual page with 3D flip - 1.5x padding */
.notepad__page {
    position: absolute;
    inset: 0;
    padding: 45px 36px 36px;
    transform-origin: top center;
    backface-visibility: hidden;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.notepad__page--active {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Page rip-off animation - two phases: TEAR (0.3s) then FALL (0.6s) */
.notepad__page--ripping {
    animation: pageRipFall 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    z-index: 100; /* Above everything while animating */
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    isolation: isolate;
}

@keyframes pageRipFall {
    /* === PHASE 1: TEAR (0% - 33% = 0.3s) === */
    /* No shrink, no fade during tear - full size throughout */
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    11% {
        transform: translateY(-3px) translateX(6px) rotate(0.5deg) scale(1);
        opacity: 1;
    }
    22% {
        transform: translateY(-6px) translateX(10px) rotate(1deg) scale(1);
        opacity: 1;
    }
    /* Tear complete - still full size, full opacity */
    33% {
        transform: translateY(-8px) translateX(14px) rotate(1.5deg) scale(1);
        opacity: 1;
    }

    /* === PHASE 2: FALL (33% - 100% = 0.6s) === */
    /* Smooth continuous fall - shrink and fade start later */
    40% {
        transform: translateY(15px) translateX(20px) rotate(2deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(55px) translateX(30px) rotate(2.5deg) scale(1);
        opacity: 1;
    }
    60% {
        transform: translateY(100px) translateX(42px) rotate(3deg) scale(0.98);
        opacity: 0.9;
    }
    70% {
        transform: translateY(150px) translateX(52px) rotate(3.5deg) scale(0.95);
        opacity: 0.7;
    }
    80% {
        transform: translateY(195px) translateX(60px) rotate(4deg) scale(0.92);
        opacity: 0.45;
    }
    90% {
        transform: translateY(230px) translateX(66px) rotate(4deg) scale(0.88);
        opacity: 0.2;
    }
    100% {
        transform: translateY(260px) translateX(70px) rotate(4deg) scale(0.85);
        opacity: 0;
    }
}

/* Torn edge effect - jagged top border reveals RIGHT to LEFT as it tears */
.notepad__page--ripping .notepad__paper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 8px;
    background:
        linear-gradient(135deg, #FFFEF8 4px, transparent 4px) 0 0,
        linear-gradient(-135deg, #FFFEF8 4px, transparent 4px) 8px 0;
    background-size: 16px 8px;
    background-repeat: repeat-x;
    clip-path: inset(0 100% 0 0); /* Start: hidden from right */
    animation: tornEdgeReveal 0.25s ease-out forwards;
}

@keyframes tornEdgeReveal {
    /* Tear reveals from RIGHT to LEFT */
    0% {
        clip-path: inset(0 100% 0 0); /* Fully hidden on right */
    }
    100% {
        clip-path: inset(0 0 0 0); /* Fully revealed */
    }
}

/* Paper surface */
.notepad__paper {
    position: relative;
    height: 100%;
    background: #FFFEF8;
    border-radius: 2px;
}

/* Ruled lines - 1.5x spacing */
.notepad__ruled-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 38px,
        #e0ddd5 38px,
        #e0ddd5 39px
    );
    pointer-events: none;
}

/* Red margin line - 1.5x position */
.notepad__ruled-lines::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(220, 120, 120, 0.5);
}

/* Page content - 1.5x sizes */
.notepad__content {
    position: relative;
    z-index: 1;
    padding: 15px 15px 15px 75px;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.notepad__content--centered {
    text-align: center;
    padding-left: 36px;
    padding-right: 36px;
    align-items: center;
}

/* Quote styling - 1.5x fonts */
.notepad__quote {
    font-family: var(--font-hand);
    font-size: 1.75rem;
    line-height: 1.65;
    color: #333;
    margin: 0 0 var(--space-lg);
    border: none;
    padding: 0;
    flex-grow: 1;
}

.notepad__quote--small {
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    flex-grow: 0;
}

/* Author - 1.5x */
.notepad__author {
    font-family: var(--font-hand);
    font-size: 1.35rem;
    color: #777;
    margin-top: auto;
    padding-top: var(--space-lg);
}

/* Stats - 1.5x */
.notepad__stat {
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: #333;
    background: var(--highlight-yellow);
    padding: 9px 20px;
    margin: var(--space-md) 0;
    transform: rotate(-1deg);
}

.notepad__stat .stat-arrow {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.2em;
}

/* Big numbers - 1.5x */
.notepad__big-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.75rem;
    font-weight: 700;
    color: #22c55e;
    margin: var(--space-lg) 0;
    line-height: 1;
}

.notepad__big-number--orange {
    color: var(--color-accent);
}

.notepad__big-label {
    font-size: 1.35rem;
    font-weight: 500;
    color: #666;
}

/* Badges - 1.5x */
.notepad__badge {
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--highlight-green);
    padding: 8px 20px;
    margin-bottom: var(--space-md);
    transform: rotate(-2deg);
}

.notepad__badge--pink {
    background: var(--highlight-pink);
}

.notepad__badge--blue {
    background: var(--highlight-blue);
}

/* Result title - 1.5x */
.notepad__result-title {
    font-family: var(--font-hand);
    font-size: 1.85rem;
    font-weight: 700;
    margin: var(--space-md) 0 var(--space-lg);
    line-height: 1.3;
}

/* Before/After metrics - 1.5x */
.notepad__before-after {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.notepad__metric {
    text-align: center;
}

.notepad__metric-label {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 6px;
}

.notepad__metric-value {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
}

.notepad__metric-value--struck {
    color: #999;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 4px;
}

.notepad__metric-value--highlight {
    background: var(--highlight-green);
    padding: 5px 14px;
}

.notepad__arrow {
    font-size: 2.75rem;
    color: #555;
    font-family: var(--font-hand);
}

/* Polaroids - 1.5x */
.notepad__polaroid {
    display: inline-block;
    background: white;
    padding: 12px 12px 40px;
    box-shadow: 4px 6px 16px rgba(0,0,0,0.15);
    transform: rotate(-3deg);
    margin-bottom: var(--space-lg);
}

.notepad__polaroid--large {
    padding: 15px 15px 45px;
    transform: rotate(-2deg);
}

.notepad__polaroid--small {
    padding: 9px 9px 32px;
    transform: rotate(3deg);
    float: right;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.notepad__polaroid-inner {
    background: #f8f8f8;
    width: 110px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notepad__polaroid--large .notepad__polaroid-inner {
    width: 165px;
    height: 125px;
}

.notepad__polaroid--small .notepad__polaroid-inner {
    width: 85px;
    height: 70px;
}

.notepad__chart {
    width: 100%;
    height: 100%;
}

.notepad__polaroid-icon {
    font-size: 3.5rem;
}

.notepad__polaroid--small .notepad__polaroid-icon {
    font-size: 2.5rem;
}

.notepad__polaroid-caption {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-top: 8px;
}

/* Sticky note - 1.5x */
.notepad__sticky {
    position: absolute;
    top: 0;
    right: -15px;
    width: 120px;
    height: 120px;
    background: var(--sticky-yellow);
    padding: 15px;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.12);
    transform: rotate(6deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.notepad__sticky-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.notepad__sticky-label {
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: #555;
}

/* Checkmarks - 1.5x */
.notepad__checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: var(--space-lg) 0;
}

.notepad__check {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: #22c55e;
}

/* ROI stat - 1.5x */
.notepad__roi {
    margin: var(--space-xl) 0;
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
}

.notepad__roi-label {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: #666;
}

.notepad__roi-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: #22c55e;
    border-bottom: 5px solid var(--highlight-yellow);
    padding-bottom: 3px;
}

/* Navigation arrows - OUTSIDE notepad, large - 1.5x */
.notepad-nav {
    width: 72px;
    height: 72px;
    background: white;
    border: 3px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.notepad-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.notepad-nav:hover svg {
    color: white;
}

.notepad-nav svg {
    width: 34px;
    height: 34px;
    color: #555;
    transition: color 0.25s ease;
}

/* Mobile arrows container - hidden on desktop */
.notepad-arrows-mobile {
    display: none;
}

/* Page dots - larger, below notepad - 1.5x */
.notepad__dots {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: var(--space-xl);
}

.notepad__dot {
    width: 16px;
    height: 16px;
    background: rgba(0,0,0,0.15);
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease;
}

.notepad__dot:hover {
    background: rgba(0,0,0,0.3);
    transform: scale(1.15);
}

.notepad__dot--active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.25);
    box-shadow: 0 3px 10px rgba(232, 93, 4, 0.4);
}

/* Responsive testimonials */
@media (max-width: 1100px) {
    .notepad {
        width: 400px;
    }

    .notepad__book {
        min-height: 560px;
    }

    .notepad__content {
        min-height: 480px;
    }
}

@media (max-width: 900px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .testimonials__intro {
        padding-right: 0;
    }

    .testimonials__title {
        font-size: 2.5rem;
    }

    .testimonials__desc {
        font-size: 1.25rem;
    }

    .notepad {
        width: 360px;
    }

    .notepad__book {
        min-height: 520px;
        padding: 35px 28px 28px;
    }

    .notepad__content {
        min-height: 440px;
        padding: 12px 12px 12px 60px;
    }

    .notepad__quote {
        font-size: 1.5rem;
    }
}

@media (max-width: 700px) {
    .section--testimonials {
        padding: var(--space-lg) 0 var(--space-md);
    }

    /* Mobile: Stack layout with CTA at bottom */
    .testimonials-layout {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
    }

    .testimonials__intro {
        order: 1;
    }

    .testimonials__carousel {
        order: 2;
    }

    /* Hide CTA in intro, show mobile version at bottom */
    .testimonials__cta {
        order: 3;
        margin-top: var(--space-sm);
    }

    .notepad-surface {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-xs) 0;
    }

    /* Mobile: Notepad wrapper stacks vertically */
    .notepad-wrapper {
        flex-direction: column;
        gap: var(--space-md);
    }

    .notepad {
        width: min(320px, 90vw);
        transform: rotate(0deg);
        order: 1;
    }

    .notepad__book {
        min-height: 420px;
        padding: 28px 20px 20px;
    }

    .notepad__page {
        padding: 28px 20px 20px;
    }

    .notepad__content {
        padding: 8px 8px 8px 45px;
        min-height: 350px;
    }

    .notepad__quote {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .notepad__quote--small {
        font-size: 1.1rem;
    }

    .notepad__spiral {
        top: -14px;
        padding: 0 12px;
    }

    .notepad__ring {
        width: 20px;
        height: 20px;
    }

    .notepad__ring::before {
        width: 8px;
        height: 8px;
    }

    /* Arrows container - side by side below notepad */
    .notepad-arrows {
        display: flex;
        gap: var(--space-md);
        order: 2;
    }

    .notepad-nav {
        width: 48px;
        height: 48px;
    }

    .notepad-nav svg {
        width: 22px;
        height: 22px;
    }

    /* Hide desktop arrows, show mobile arrows */
    .notepad-wrapper .notepad-nav {
        display: none;
    }

    .notepad-arrows-mobile {
        display: flex;
        gap: var(--space-md);
        justify-content: center;
    }

    /* Smaller dots on mobile */
    .notepad__dots {
        order: 3;
        gap: 12px;
        margin-top: var(--space-sm);
    }

    .notepad__dot {
        width: 10px;
        height: 10px;
    }

    .notepad__dot--active {
        transform: scale(1.2);
    }

    /* Fix content clipping - scale down elements */
    .notepad__sticky {
        width: 70px;
        height: 70px;
        right: -5px;
        top: -5px;
    }

    .notepad__sticky-number {
        font-size: 1.8rem;
    }

    .notepad__sticky-label {
        font-size: 0.65rem;
    }

    .notepad__polaroid {
        max-width: 100px;
    }

    .notepad__polaroid--small {
        float: none;
        margin: 0 0 var(--space-xs) 0;
        max-width: 80px;
    }

    .notepad__polaroid--large {
        max-width: 120px;
    }

    .notepad__big-number {
        font-size: 2rem;
    }

    .notepad__big-label {
        font-size: 1rem;
    }

    .notepad__roi {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .notepad__roi-value {
        font-size: 2rem;
    }

    .notepad__stat {
        font-size: 1.1rem;
        padding: 6px 12px;
    }

    .notepad__badge {
        font-size: 1rem;
        padding: 5px 12px;
    }

    .notepad__result-title {
        font-size: 1.3rem;
    }

    .notepad__before-after {
        gap: var(--space-sm);
        flex-wrap: wrap;
        justify-content: center;
    }

    .notepad__metric-value {
        font-size: 1.3rem;
    }

    .notepad__checks {
        gap: var(--space-xs);
    }

    .notepad__check {
        font-size: 1rem;
    }

    .notepad__ruled-lines {
        background: repeating-linear-gradient(
            to bottom,
            transparent,
            transparent 32px,
            #e0ddd5 32px,
            #e0ddd5 33px
        );
    }

    .notepad__ruled-lines::before {
        left: 45px;
    }
}

/* ========================================
   CTA - UNMISSABLE
   ======================================== */
.section--cta {
    padding: var(--space-3xl) 0;
    background: var(--color-accent);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Hand-drawn decorations - BIGGER, MORE */
.section--cta::before {
    content: '→';
    position: absolute;
    top: 15%;
    left: 4%;
    font-size: 8rem;
    font-family: var(--font-hand);
    opacity: 0.12;
    transform: rotate(-20deg);
}

.section--cta::after {
    content: '✓';
    position: absolute;
    bottom: 15%;
    right: 4%;
    font-size: 7rem;
    font-family: var(--font-hand);
    opacity: 0.12;
    transform: rotate(15deg);
}

/* Additional CTA decorations */
.section--cta .cta__deco-arrow {
    position: absolute;
    bottom: 30%;
    left: 10%;
    font-size: 3rem;
    font-family: var(--font-hand);
    opacity: 0.15;
    transform: rotate(-10deg);
}

.section--cta .container {
    max-width: 850px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-bottom: var(--space-md);
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
}

.cta__title .highlight {
    background: rgba(255,255,255,0.25);
    padding: 0.05em 0.2em;
    border-radius: 2px 4px 3px 5px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.cta__body {
    font-family: var(--font-hand);
    font-size: 2.5rem;
    opacity: 0.95;
    margin-bottom: var(--space-xl);
}

.cta__button {
    display: inline-block;
    padding: 1.75rem 5rem;
    background: white;
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.01em;
    transition: all 300ms var(--ease);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        6px 6px 0 rgba(0,0,0,0.15);
    position: relative;
    transform: rotate(-1deg);
}

/* Hand-drawn circle around CTA button */
.cta__button::after {
    content: '';
    position: absolute;
    inset: -12px -16px -10px -14px;
    border: 3px solid white;
    border-radius: 52% 48% 55% 45%;
    opacity: 0.4;
    transform: rotate(1deg);
}

.cta__button:hover {
    transform: translateY(-6px) rotate(1deg) scale(1.05);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.35),
        10px 10px 0 rgba(0,0,0,0.1);
}

/* ========================================
   HAND-DRAWN VISUAL ELEMENTS
   ======================================== */

/* SVG arrow styles */
.hand-arrow {
    stroke: var(--color-accent);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Doodle elements */
.doodle-star {
    display: inline-block;
    color: var(--color-accent);
    font-size: 1.4em;
    font-family: var(--font-hand);
}

.doodle-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3em;
    height: 1.3em;
    background: var(--highlight-green);
    border-radius: 50%;
    font-size: 0.85em;
}

/* Hand-drawn arrow SVG */
.hand-drawn-arrow {
    color: var(--color-accent);
    opacity: 0.6;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .evidence-board {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .service-card {
        transform: none !important;
    }

    .process-board {
        grid-template-columns: 1fr;
    }

    .process-board__connectors {
        display: none;
    }

    .process-card {
        transform: none !important;
    }

    .hero__this-arrow {
        display: none;
    }

    .hero__annotation--question {
        display: none;
    }

    .service-card__margin-note {
        display: none;
    }

    .doodle {
        display: none;
    }

    /* Method section - tablet */
    .method {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .method__corkboard {
        padding: var(--space-lg) var(--space-md);
    }

    .method__polaroids {
        width: 380px;
        height: 340px;
        padding: 20px;
        margin: 15px;
    }

    .method__polaroid {
        width: 115px;
    }

    .method__content {
        padding: var(--space-lg) var(--space-lg) var(--space-xl);
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .evidence-board {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 700px) {
    :root {
        --gutter: 1.5rem;
        --space-3xl: 5rem;
    }

    html {
        font-size: 16px;
    }

    .hero {
        min-height: 70vh;
        padding: var(--space-xl) var(--gutter);
    }

    .hero__title {
        font-size: clamp(3.5rem, 16vw, 5.5rem);
    }

    .hero__title-line {
        font-size: 0.4em;
        letter-spacing: 0.1em;
    }

    .hero__cta-wrapper {
        margin-bottom: var(--space-md);
    }

    .hero__cta {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem;
    }

    .hero__cta::after {
        inset: -10px -14px -8px -12px;
        border-width: 3px;
    }

    .hero__scroll {
        font-size: 1.4rem;
    }

    /* Hide decorative elements on mobile */
    .hero__deco {
        display: none;
    }

    .evidence-detail {
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
    }

    .evidence-detail__main {
        padding: var(--space-lg);
    }

    .evidence-notes {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .evidence-note {
        padding: var(--space-md);
    }

    .evidence-detail__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

    /* About section mobile */
    .about__content {
        grid-template-columns: 1fr;
    }

    .about__annotations {
        display: none;
    }

    .diagram {
        padding: var(--space-lg);
        gap: var(--space-md);
    }

    .diagram__box {
        padding: var(--space-md) var(--space-lg);
    }

    .diagram__arrow svg {
        width: 50px;
    }

    .about__tagline {
        font-size: 1.25rem;
        padding: var(--space-sm) var(--space-md);
    }

    .cta__button {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem;
    }

    .cta__button::after {
        display: none;
    }

    /* Method section - mobile */
    .method__corkboard {
        padding: var(--space-md);
    }

    .method__polaroids {
        width: 300px;
        height: 280px;
        padding: 15px;
        margin: 10px;
    }

    .method__polaroid {
        width: 95px;
        padding: 8px 8px 6px 8px;
    }

    .method__polaroid-icon {
        font-size: 1.8rem;
    }

    .method__polaroid-label {
        font-size: 0.75rem;
    }

    .method__polaroid-desc {
        font-size: 0.85rem;
    }

    .method__pin {
        width: 16px;
        height: 16px;
        top: -6px;
    }

    .method__strings {
        display: none;
    }

    .method__content {
        padding: var(--space-md) var(--space-md) var(--space-xl);
    }

    .method__label {
        font-size: 1.2rem;
    }

    .method__title {
        font-size: 1.75rem;
    }

    .method__description {
        font-size: 1.1rem;
    }

    .method__cta {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
}

/* ========================================
   DELIGHT - Animations & Micro-interactions
   ======================================== */

/* Hero entrance - dramatic reveal */
.hero__title {
    animation: heroReveal 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title-line {
    animation: fadeSlideUp 600ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both;
}

.hero__body {
    animation: fadeSlideUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 400ms both;
}

.hero__cta-wrapper {
    animation: fadeSlideUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 600ms both;
}

.hero__scroll {
    animation: fadeSlideUp 600ms cubic-bezier(0.16, 1, 0.3, 1) 800ms both;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero decorations fade in with delay */
.hero__deco {
    animation: fadeIn 800ms cubic-bezier(0.16, 1, 0.3, 1) 1000ms both;
}

.hero__deco--note-2 {
    animation-delay: 1100ms;
}

.hero__deco--circle {
    animation-delay: 1200ms;
}

.hero__deco--box {
    animation-delay: 1300ms;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: var(--target-opacity, 0.5); }
}

/* Scroll-triggered entrance animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children - targets process cards specifically */
.stagger-children > .process-card {
    opacity: 0;
    transform: translateY(30px) rotate(-1deg);
    transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.is-visible > .process-card:nth-of-type(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0) rotate(-1.7deg); }
.stagger-children.is-visible > .process-card:nth-of-type(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0) rotate(2.3deg); }
.stagger-children.is-visible > .process-card:nth-of-type(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0) rotate(0.8deg); }
.stagger-children.is-visible > .process-card:nth-of-type(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0) rotate(-2.1deg); }

/* Card press effect - satisfying "picked up" feel */
.service-card:active {
    transform: scale(0.98) rotate(0deg) translateY(2px) !important;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1) !important;
    transition: all 80ms ease;
}

/* Service card lift on hover - like picking up a note */
.service-card {
    transition: all 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    box-shadow:
        8px 12px 0 rgba(0,0,0,0.12),
        0 4px 20px rgba(0,0,0,0.08) !important;
    z-index: 10;
}

/* Process card number wiggle on hover */
.process-card:hover .process-card__number {
    animation: wiggle 400ms ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-8deg); }
    25% { transform: rotate(8deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Highlight pulse on hover - SUBTLE */
.highlight:hover {
    filter: brightness(1.05);
}

/* CTA button shine effect */
.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transition: left 600ms ease;
    z-index: -1;
    border-radius: 8px;
}

.hero__cta:hover::before {
    left: 100%;
}

/* Cursor fun - custom cursor on interactive elements */
.service-card,
.process-card,
.diagram__box {
    cursor: pointer;
}

/* Badge wobble */
.service-card__badge {
    transition: transform 200ms ease;
}

.service-card:hover .service-card__badge {
    animation: badge-wobble 350ms ease;
}

@keyframes badge-wobble {
    0%, 100% { transform: rotate(3deg); }
    50% { transform: rotate(-3deg) scale(1.08); }
}

/* Scroll hint pulse */
.hero__scroll-arrow {
    animation: bounce 2s infinite, pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 12px rgba(232, 93, 4, 0.6); }
}

/* Focus visible states */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: var(--radius);
}

/* ========================================
   HARDENING — Production Resilience
   Text overflow, accessibility, edge cases
   ======================================== */

/* --- Text Overflow Protection --- */
.service-card__tagline,
.notepad__quote,
.testimonials__desc,
.method__description,
.hero__body {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Prevent flex/grid item overflow */
.service-card,
.ownership__column,
.discovery-card,
.process-card,
.evidence-note,
.notepad__content {
    min-width: 0;
}

/* Long text truncation for titles */
.service-card__title,
.evidence-detail__title {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Quote line clamping for very long quotes */
.notepad__quote {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Enhanced Focus Visibility --- */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.service-card:focus-visible,
.notepad:focus-visible,
.notepad__dot:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: var(--radius);
}

/* High contrast focus for dark backgrounds */
.section--cta a:focus-visible,
.section--cta button:focus-visible {
    outline-color: white;
}

/* --- Screen Reader Only (for live regions) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    .stagger-children > .process-card {
        opacity: 1;
        transform: none;
    }

    /* Disable hero animations */
    .hero__title,
    .hero__title-line,
    .hero__body,
    .hero__cta-wrapper,
    .hero__scroll,
    .hero__deco {
        animation: none;
        opacity: 1;
        transform: none;
    }

    /* Disable page rip animation - instant switch */
    .notepad__page--ripping {
        animation: none;
        opacity: 0;
        visibility: hidden;
    }

    /* Disable method polaroid cycling */
    .method__polaroid,
    .method__pin {
        animation: none;
    }

    /* Disable floating notes */
    .about__note {
        animation: none;
    }

    /* Disable bounce/pulse effects */
    .hero__scroll-arrow,
    .hero__title-q {
        animation: none;
    }

    /* Disable note cluster floating */
    .note-cluster {
        animation: none;
    }
}

/* --- High Contrast Mode Support --- */
@media (forced-colors: active) {
    .highlight,
    mark.highlight {
        background: Mark;
        color: MarkText;
    }

    .service-card,
    .process-card,
    .evidence-note {
        border: 2px solid CanvasText;
    }

    .hero__cta,
    .method__cta,
    .testimonials__cta,
    .cta__button {
        border: 2px solid ButtonText;
    }
}
