/* ==========================================================================
   NarneTech.Social — page sections (Conceptual Sketch)
   ========================================================================== */

/* ================================================================ hero === */

.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4rem)); padding-bottom: clamp(2.5rem, 6vw, 4rem); overflow: hidden; }

/* Text block, then the desk scene full width beneath it. */
.hero__head { max-width: 60rem; }

.hero__art { margin-top: clamp(2rem, 4.5vw, 3.5rem); }
/* .note is tilted 1.4deg; across a full-width line that inflates the bounding
   box by ~30px and pushes the caption past the fold. Keep this one level. */
.hero__caption { text-align: center; margin-top: 0.45rem; transform: none; }

/* Two-tier headline: the statement, then the four things on the desk.
   Deliberately smaller than .h-display — five uppercase words set four lines
   and made the hero top-heavy. */
.hero__title {
    margin-bottom: 1.5rem;
    display: grid;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.04;
    text-wrap: balance;
}

.hero__l1 { font-size: clamp(1.95rem, 4.3vw, 3.15rem); display: block; }

.hero__l2 {
    font-size: clamp(0.95rem, 1.85vw, 1.4rem);
    line-height: 1.35;
    letter-spacing: 0.005em;
    display: block;
    color: var(--pencil);
}

/* One pen per item, so the four read as four separate things. */
.hero__w { color: var(--w); }

/* Same token as .brand__dot, so the headline echoes the logo. */
.hero__key { color: var(--red-pen); }

@media (max-width: 560px) {
    .hero__title { gap: 0.55rem; }
    .hero__l2 { line-height: 1.5; }
}
.hero__sub { font-size: clamp(1.05rem, 1.4vw, 1.22rem); }
.hero__cta { margin-top: 2rem; }

.hero__stamp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--red-pen);
    color: var(--red-pen);
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    transform: rotate(-2deg);
    margin-bottom: 1.4rem;
    border-radius: var(--rough-c);
}

/* ----------------------------------------------------- the pinned sheet -- */

.sheet {
    position: relative;
    border: 2px solid var(--ink);
    border-radius: var(--rough-a);
    background: var(--paper);
    padding: 1.5rem 1.35rem 1.25rem;
    box-shadow: var(--shadow-hard);
    transform: rotate(-1.1deg);
}

.sheet__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 2px solid var(--ink); padding-bottom: 0.7rem; margin-bottom: 1rem; }
.sheet__title { font-family: var(--font-display); font-weight: 800; font-size: 1.0625rem; text-transform: uppercase; letter-spacing: -0.01em; }
.sheet__when { font-family: var(--font-hand); font-size: 1rem; color: var(--pencil-soft); }

.line {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    padding-bottom: 0.55rem;
    border-bottom: 1px dashed var(--rule);
}

.line:last-child { border-bottom: 0; padding-bottom: 0; }

@media (max-width: 560px) { .sheet { transform: none; } }

/* ======================================================== audience bar == */

.who-bar { border-block: 2px solid var(--ink); background: var(--paper-2); padding-block: 1.1rem; overflow: hidden; }
/* Seamless loop: the track holds four identical rows and travels exactly
   half its own width, so the halfway state is pixel-identical to the start
   and the reset is invisible. Animating each row by -100% instead left a
   visible gap once the rows were narrower than the viewport. */
.who-bar__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.who-bar__row { display: flex; flex: none; align-items: center; gap: 2.5rem; padding-right: 2.5rem; }
.who-bar:hover .who-bar__track { animation-play-state: paused; }

@keyframes slide {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

.who-bar__item { display: inline-flex; align-items: center; gap: 0.7rem; white-space: nowrap; font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.02em; }
.who-bar__item svg { color: var(--red-pen); flex: none; }

/* =========================================================== section head */

.sec-head { margin-bottom: clamp(2.25rem, 4vw, 3.25rem); max-width: 62ch; }
.sec-head .lede { margin-top: 1.15rem; }
.sec-head--center { text-align: center; margin-inline: auto; }
.sec-head--center .lede { margin-inline: auto; }
.sec-head--center .rough-rule { margin-inline: auto; }

.sec-head--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; max-width: none; }
@media (max-width: 880px) { .sec-head--split { grid-template-columns: 1fr; } }

/* ============================================================= problem == */

/* Notes scattered on a pinboard, each pinned at its own angle. */
.board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 1000px) { .board { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .board { grid-template-columns: 1fr; } }

.pin {
    position: relative;
    border: 2px solid var(--ink);
    border-radius: var(--rough-a);
    background: var(--paper);
    padding: 1.3rem 1.15rem;
    transform: rotate(var(--tilt, -1deg));
    transition: transform var(--snap) var(--ease), box-shadow var(--snap) var(--ease);
}

.pin:nth-child(even) { border-radius: var(--rough-b); }
.pin:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--shadow-hard); }

.pin:nth-child(6n+1) { --c: var(--m1); --c-fill: var(--m1-fill); }
.pin:nth-child(6n+2) { --c: var(--m2); --c-fill: var(--m2-fill); }
.pin:nth-child(6n+3) { --c: var(--m3); --c-fill: var(--m3-fill); }
.pin:nth-child(6n+4) { --c: var(--m4); --c-fill: var(--m4-fill); }
.pin:nth-child(6n+5) { --c: var(--m5); --c-fill: var(--m5-fill); }
.pin:nth-child(6n)   { --c: var(--m6); --c-fill: var(--m6-fill); }

.pin { border-top-width: 7px; border-top-color: var(--c); }
.pin:hover { border-color: var(--c); border-top-width: 7px; }
.pin__n { font-family: var(--font-hand); font-size: 1.15rem; font-weight: 700; color: var(--c); display: block; margin-bottom: 0.35rem; }
.pin__text { font-size: 0.9375rem; line-height: 1.6; color: var(--pencil); }
.pin strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--ink); margin-bottom: 0.45rem; letter-spacing: -0.01em; }

/* ========================================================== convergence = */

.desk { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.9fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 980px) { .desk { grid-template-columns: 1fr; justify-items: center; text-align: center; } }

.desk__mess { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }

.scrap {
    border: 1.5px dashed var(--rule);
    background: var(--paper-2);
    padding: 0.65rem 0.8rem;
    font-size: 0.875rem;
    color: var(--pencil-soft);
    transform: rotate(var(--tilt, 0deg));
    border-radius: var(--rough-c);
    text-decoration: line-through;
    text-decoration-color: var(--red-pen);
    text-decoration-thickness: 1.5px;
}

.desk__arrow { color: var(--kraft); }
.desk__arrow path { stroke-dasharray: 220; stroke-dashoffset: 220; }
.desk.is-in .desk__arrow path { animation: draw 0.9s var(--ease) 0.3s forwards; }
@media (max-width: 980px) { .desk__arrow { transform: rotate(90deg); } }

.desk__one { position: relative; border: 3px solid var(--ink); border-radius: var(--rough-a); background: var(--paper); padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--shadow-hard); max-width: 400px; }
.desk__one h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.desk__one p { color: var(--pencil); font-size: 0.9375rem; }
.desk__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.1rem; }
.desk__tags span { font-family: var(--font-hand); font-size: 0.9375rem; padding: 0.15rem 0.6rem; border: 1.5px solid var(--ink); border-radius: var(--rough-c); }

/* ============================================================= modules == */

.mods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 1000px) { .mods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .mods { grid-template-columns: 1fr; } }

.mod {
    position: relative;
    border: 2px solid var(--ink);
    border-radius: var(--rough-a);
    background: var(--paper);
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform var(--snap) var(--ease), box-shadow var(--snap) var(--ease);
}

.mod:nth-child(3n+2) { border-radius: var(--rough-b); }
.mod:nth-child(3n) { border-radius: var(--rough-c); }
.mod:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }

.mod__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.mod__n {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    color: var(--paper);
    -webkit-text-stroke: 1.5px var(--ink);
    letter-spacing: -0.03em;
}

.mod { position: relative; overflow: hidden; }

.mod__icon { width: 40px; height: 40px; border: 2px solid var(--ink); border-radius: var(--rough-c); display: grid; place-items: center; flex: none; background: var(--c-fill); color: var(--c); }

/* Each card picks a different pen off the desk. */
.mod:nth-child(6n+1) { --c: var(--m1); --c-fill: var(--m1-fill); }
.mod:nth-child(6n+2) { --c: var(--m2); --c-fill: var(--m2-fill); }
.mod:nth-child(6n+3) { --c: var(--m3); --c-fill: var(--m3-fill); }
.mod:nth-child(6n+4) { --c: var(--m4); --c-fill: var(--m4-fill); }
.mod:nth-child(6n+5) { --c: var(--m5); --c-fill: var(--m5-fill); }
.mod:nth-child(6n)   { --c: var(--m6); --c-fill: var(--m6-fill); }

.mod__n { color: var(--paper); -webkit-text-stroke: 1.5px var(--c); }
.mod:hover { border-color: var(--c); }
.mod__caps svg { color: var(--c); }

/* A coloured spine down the left edge of every card. */
.mod::before {
    content: "";
    position: absolute;
    left: 0; top: 14%; bottom: 14%;
    width: 5px;
    background: var(--c);
    border-radius: 4px;
}

.mod__name { font-size: 1.35rem; text-transform: uppercase; }
.mod__disc { font-family: var(--font-hand); font-size: 1rem; color: var(--pencil-soft); }
.mod__summary { font-size: 0.9375rem; color: var(--pencil); line-height: 1.62; }

.mod__caps { list-style: none; margin: 0.4rem 0 0; padding-top: 0.95rem; border-top: 1px dashed var(--rule); display: grid; gap: 0.45rem; }
.mod__caps li { font-size: 0.875rem; color: var(--pencil); display: grid; grid-template-columns: 16px 1fr; gap: 0.55rem; align-items: start; }
.mod__caps svg { color: var(--green-pen); margin-top: 4px; }

/* ============================================================== the day = */

.day { display: grid; gap: 0; position: relative; }

.day__row {
    display: grid;
    grid-template-columns: 132px 34px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    padding-bottom: 2rem;
}

@media (max-width: 720px) {
    .day__row { grid-template-columns: 26px minmax(0, 1fr); gap: 1rem; }
    .day__when { grid-column: 2; margin-bottom: 0.2rem; }
}

.day__when { font-family: var(--font-hand); font-size: 1.0625rem; color: var(--red-pen); text-align: right; padding-top: 0.1rem; }
@media (max-width: 720px) { .day__when { text-align: left; } }

.day__spine { position: relative; display: grid; justify-items: center; height: 100%; }
.day__row:nth-child(6n+1) { --c: var(--m1); }
.day__row:nth-child(6n+2) { --c: var(--m2); }
.day__row:nth-child(6n+3) { --c: var(--m3); }
.day__row:nth-child(6n+4) { --c: var(--m4); }
.day__row:nth-child(6n+5) { --c: var(--m5); }
.day__row:nth-child(6n)   { --c: var(--m6); }
.day__dot { width: 22px; height: 22px; border: 2px solid var(--c); border-radius: var(--rough-c); background: var(--paper); color: var(--c); display: grid; place-items: center; font-size: 0.625rem; font-weight: 800; flex: none; z-index: 1; }
.day__when { color: var(--c); }
.day__line { position: absolute; top: 24px; bottom: -22px; width: 2px; background: repeating-linear-gradient(to bottom, var(--rule) 0 6px, transparent 6px 12px); }
.day__row:last-child .day__line { display: none; }

.day__body h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: 0.3rem; }
.day__body p { color: var(--pencil); font-size: 0.9375rem; line-height: 1.62; max-width: 60ch; }
.day__mod { font-family: var(--font-body); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pencil-soft); border: 1.5px solid var(--rule); padding: 0.1rem 0.45rem; border-radius: var(--rough-c); display: inline-block; margin-bottom: 0.5rem; }

/* ============================================================= roadmap == */

/* Dashed = drawn but not built. The visual language does the honesty work. */
.roadmap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 820px) { .roadmap { grid-template-columns: 1fr; } }

.soon {
    position: relative;
    border: 2.5px dashed var(--kraft);
    border-radius: var(--rough-b);
    background: transparent;
    padding: 1.7rem 1.5rem;
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.soon__status { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-hand); font-size: 1.0625rem; color: var(--kraft-text); }
.soon__status i { width: 9px; height: 9px; border-radius: 50%; background: var(--kraft); display: block; flex: none; }
.soon h3 { font-size: 1.3rem; text-transform: uppercase; }
.soon p { color: var(--pencil); font-size: 0.9375rem; line-height: 1.62; }

.honest-note { display: flex; gap: 0.85rem; align-items: flex-start; margin-top: 1.75rem; padding: 1.1rem 1.25rem; border: 2px solid var(--ink); border-radius: var(--rough-c); background: var(--paper-2); }
.honest-note svg { color: var(--red-pen); flex: none; margin-top: 2px; }
.honest-note p { font-size: 0.9375rem; color: var(--pencil); }

/* ============================================================ india band = */

.india { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 820px) { .india { grid-template-columns: 1fr; } }

.why { border: 2px solid var(--ink); border-radius: var(--rough-a); background: var(--paper); padding: 1.6rem 1.5rem; display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start; transition: transform var(--snap) var(--ease), box-shadow var(--snap) var(--ease); }
.why:nth-child(even) { border-radius: var(--rough-b); }
.why:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-hard); }
.why:nth-child(4n+1) { --c: var(--m3); --c-fill: var(--m3-fill); }
.why:nth-child(4n+2) { --c: var(--m4); --c-fill: var(--m4-fill); }
.why:nth-child(4n+3) { --c: var(--m2); --c-fill: var(--m2-fill); }
.why:nth-child(4n)   { --c: var(--m1); --c-fill: var(--m1-fill); }
.why:hover { border-color: var(--c); }
.why__icon { width: 40px; height: 40px; border: 2px solid var(--ink); border-radius: var(--rough-c); display: grid; place-items: center; background: var(--c-fill); color: var(--c); }
.why h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.35rem; }
.why p { font-size: 0.9375rem; color: var(--pencil); line-height: 1.62; }

/* ============================================================= pricing == */

.billing-switch { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.9rem; margin-top: 1.6rem; }

.toggle { display: inline-flex; align-items: center; padding: 0.28rem; border: 2px solid var(--ink); border-radius: var(--rough-c); background: var(--paper); position: relative; }
.toggle__btn { border: 0; background: transparent; padding: 0.5rem 1.15rem; font-family: var(--font-body); font-size: 0.875rem; font-weight: 700; color: var(--pencil); cursor: pointer; position: relative; z-index: 1; transition: color var(--snap) var(--ease); white-space: nowrap; }
.toggle__btn.is-on { color: var(--btn-fg); }
/* A default width matters: JS sizes this to the active button, but without it
   the pill had no width at all and the selected label rendered paper-on-paper. */
.toggle__pill { position: absolute; top: 0.28rem; bottom: 0.28rem; left: 0.28rem; width: calc(50% - 0.28rem); background: var(--btn-bg); border-radius: var(--rough-c); transition: transform var(--snap) var(--ease), width var(--snap) var(--ease); z-index: 0; }

.toggle__save { font-family: var(--font-hand); font-size: 1.0625rem; color: var(--green-pen); transform: rotate(-2deg); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; margin-top: clamp(2.25rem, 4vw, 3rem); }
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.plan { position: relative; border: 2px solid var(--ink); border-radius: var(--rough-a); background: var(--paper); padding: 1.8rem 1.55rem; display: flex; flex-direction: column; gap: 1.05rem; transition: transform var(--snap) var(--ease), box-shadow var(--snap) var(--ease); }
.plan:nth-child(1) { --c: var(--m3); }
.plan:nth-child(2) { border-radius: var(--rough-b); --c: var(--m1); }
.plan:nth-child(3) { border-radius: var(--rough-c); --c: var(--m4); }
.plan { border-top-width: 7px; border-top-color: var(--c); }
.plan:hover { border-color: var(--c); border-top-width: 7px; }
.plan__seats { color: var(--c); }
.plan:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-hard); }
.plan--featured { border-width: 3px; box-shadow: var(--shadow-hard); }

.plan__flag { position: absolute; top: -14px; left: 50%; translate: -50% 0; background: var(--red-pen); color: var(--flag-fg); font-family: var(--font-body); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; white-space: nowrap; transform: rotate(-1.5deg); border-radius: var(--rough-c); }

.plan__name { font-size: 1.5rem; text-transform: uppercase; }
.plan__aud { font-family: var(--font-hand); font-size: 1rem; color: var(--pencil-soft); margin-top: 0.15rem; }
.plan__tagline { font-size: 0.9375rem; color: var(--pencil); line-height: 1.6; }

.plan__price { display: flex; align-items: baseline; gap: 0.35rem; padding-top: 1.05rem; border-top: 2px solid var(--ink); }
.plan__amount { font-family: var(--font-display); font-size: 2.7rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__per { font-size: 0.875rem; color: var(--pencil-soft); }
.plan__billed { font-size: 0.8125rem; color: var(--pencil-soft); min-height: 2.7em; margin-top: 0.45rem; }
.plan__seats { font-family: var(--font-hand); font-size: 1rem; color: var(--red-pen); }

.plan__features { list-style: none; margin: 0; padding: 1.05rem 0 0; border-top: 1px dashed var(--rule); display: grid; gap: 0.55rem; flex: 1; }
.plan__features li { font-size: 0.875rem; color: var(--pencil); display: grid; grid-template-columns: 17px 1fr; gap: 0.55rem; align-items: start; line-height: 1.5; }
.plan__features svg { color: var(--green-pen); margin-top: 3px; }
.plan__features li.is-heading { font-family: var(--font-hand); font-size: 1rem; color: var(--ink); grid-template-columns: 1fr; }
.plan .btn { width: 100%; }

/* ============================================================ personas == */

.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .people { grid-template-columns: 1fr; } }

.person { position: relative; border: 2px solid var(--ink); border-radius: var(--rough-b); background: var(--paper); padding: 1.75rem 1.55rem; display: grid; gap: 0.7rem; align-content: start; transition: transform var(--snap) var(--ease), box-shadow var(--snap) var(--ease); }
.person:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-hard); }
.person:nth-child(3n+1) { --c: var(--m4); }
.person:nth-child(3n+2) { --c: var(--m3); }
.person:nth-child(3n)   { --c: var(--m2); }
.person { border-top-width: 7px; border-top-color: var(--c); }
.person:hover { border-color: var(--c); border-top-width: 7px; }
.person__size { font-family: var(--font-hand); font-size: 1.0625rem; color: var(--c); }
.person h3 { font-size: 1.3rem; text-transform: uppercase; }
.person p { font-size: 0.9375rem; color: var(--pencil); line-height: 1.62; }
.person__plan { margin-top: 0.3rem; padding-top: 0.95rem; border-top: 1px dashed var(--rule); font-size: 0.8125rem; color: var(--pencil-soft); }
.person__plan b { color: var(--ink); }

/* ================================================================= faq == */

.faq { display: grid; border-top: 2px solid var(--ink); max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px dashed var(--rule); }
.faq__item:last-child { border-bottom: 2px solid var(--ink); }

.faq__q { list-style: none; cursor: pointer; padding: 1.3rem 3rem 1.3rem 0; position: relative; transition: color var(--snap) var(--ease); }
.faq__q h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; text-transform: none; letter-spacing: -0.01em; display: inline; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--red-pen); }

.faq__q::before, .faq__q::after { content: ""; position: absolute; right: 0.5rem; top: 50%; background: var(--red-pen); transition: transform var(--snap) var(--ease), opacity var(--snap) var(--ease); }
.faq__q::before { width: 15px; height: 2.5px; margin-top: -1.25px; }
.faq__q::after { width: 2.5px; height: 15px; margin-top: -7.5px; right: 0.89rem; }
.faq__item[open] .faq__q::after { transform: rotate(90deg); opacity: 0; }

.faq__a { padding: 0 3rem 1.4rem 0; color: var(--pencil); font-size: 0.9375rem; line-height: 1.72; }

/* ================================================================ cta === */

.cta-band { position: relative; }
.cta-band__inner { position: relative; border: 3px solid var(--ink); border-radius: var(--rough-a); background: var(--paper); padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3rem); text-align: center; box-shadow: var(--shadow-hard); }
.cta-band .h-section { max-width: 20ch; margin-inline: auto; }
.cta-band .lede { margin-inline: auto; margin-top: 1.1rem; }
.cta-band .btn-row { justify-content: center; margin-top: 1.9rem; }
.cta-band__note { margin-top: 1.1rem; font-family: var(--font-hand); font-size: 1.0625rem; color: var(--pencil-soft); }

/* ============================================================= contact == */

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-hand); font-size: 1.0625rem; color: var(--ink); }

.field input, .field select, .field textarea {
    width: 100%;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: var(--rough-c);
    padding: 0.75rem 0.9rem;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: box-shadow var(--snap) var(--ease);
}

.field textarea { resize: vertical; min-height: 128px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--pencil-soft); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: var(--shadow-hard); }
.field .err { font-size: 0.8125rem; color: var(--red-pen); }
.field input.input-validation-error, .field textarea.input-validation-error, .field select.input-validation-error { border-color: var(--red-pen); }

.form__note { font-size: 0.8125rem; color: var(--pencil-soft); }

.notice { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1.1rem 1.25rem; border: 2px solid var(--green-pen); border-radius: var(--rough-c); background: var(--green-fill); margin-bottom: 2rem; }
.notice__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-pen); flex: none; margin-top: 0.55rem; }
.notice strong { display: block; margin-bottom: 0.2rem; }
.notice p { color: var(--pencil); font-size: 0.9063rem; }

.contact-card { border: 2px solid var(--ink); border-radius: var(--rough-a); background: var(--paper); padding: 1.7rem 1.55rem; display: grid; gap: 1.35rem; box-shadow: var(--shadow-soft); }
.contact-line { display: grid; gap: 0.2rem; }
.contact-line dt { font-family: var(--font-hand); font-size: 1rem; color: var(--red-pen); }
.contact-line dd { margin: 0; font-size: 0.9375rem; }
.contact-line dd a { border-bottom: 1px solid var(--rule); }
.contact-line dd a:hover { border-bottom-color: var(--ink); }
@media (max-width: 1000px) { }
@media (max-width: 600px) { }
@media (max-width: 860px) { }

.timeline { display: grid; border-left: 2px dashed var(--rule); margin-left: 0.5rem; }
.tl-item { position: relative; padding: 0 0 1.85rem 1.75rem; }
.tl-item::before { content: ""; position: absolute; left: -6px; top: 0.5rem; width: 10px; height: 10px; background: var(--red-pen); }
.tl-when { font-family: var(--font-hand); font-size: 1rem; color: var(--pencil-soft); margin-bottom: 0.35rem; }
.tl-item h3 { font-size: 1.0625rem; text-transform: uppercase; margin-bottom: 0.3rem; }
.tl-item p { color: var(--pencil); font-size: 0.9375rem; max-width: 60ch; }
.split .lede { margin-top: 1.1rem; }
@media (max-width: 940px) { }
@media (max-width: 900px) { }
@media (max-width: 540px) { }
@media (max-width: 900px) { }

.err-page { min-height: 72vh; display: grid; place-items: center; text-align: center; padding-top: var(--nav-h); }
.err-code { font-family: var(--font-display); font-size: clamp(3.5rem,11vw,6.5rem); font-weight: 800; color: var(--paper); -webkit-text-stroke: 2px var(--ink); }
.err-page .lede { margin-inline: auto; }
.err-page .btn-row { justify-content: center; }

/* ==========================================================================
   Banners — hand-drawn scenes that draw themselves in on first view.
   All motion is gated on .is-in, so nothing runs off-screen.
   ========================================================================== */

.banner { position: relative; width: 100%; color: var(--ink); }
.banner svg { width: 100%; height: auto; display: block; overflow: visible; }

.banner--desk { max-width: 1200px; margin-inline: auto; }

/* Type inside the scenes uses the same faces as the page. */
.bd-label {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.bd-amount { font-family: var(--font-display); font-size: 25px; font-weight: 800; letter-spacing: -0.02em; }
.bd-mini { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; }

/* ---- draw-in ---- */

.bd-draw { stroke-dasharray: 1400; stroke-dashoffset: 1400; }

.is-in .bd-draw {
    animation: bd-draw 0.9s var(--ease) forwards;
    animation-delay: var(--d, 0ms);
}

@keyframes bd-draw { to { stroke-dashoffset: 0; } }

/* Rects draw too, but they carry no dash offset until the animation owns them. */
.bd-draw[rx] { stroke-dasharray: 1400; }

/* ---- filled bars and calendar slots ---- */

.bd-fill { transform-box: fill-box; transform-origin: left center; transform: scaleX(0); }
.is-in .bd-fill { animation: bd-fill 420ms var(--ease-back, cubic-bezier(0.34,1.4,0.64,1)) forwards; animation-delay: var(--d, 0ms); }

@keyframes bd-fill { to { transform: scaleX(1); } }

/* ---- the PAID stamp thumps down last ---- */

.bd-stamp { opacity: 0; transform-box: fill-box; transform-origin: center; }
.is-in .bd-stamp { animation: bd-stamp 700ms cubic-bezier(0.2, 1.7, 0.5, 1) 2.1s forwards; }

@keyframes bd-stamp {
    0%   { opacity: 0; transform: scale(2.2) rotate(-12deg); }
    60%  { opacity: 1; transform: scale(0.95) rotate(-6deg); }
    100% { opacity: 1; transform: scale(1) rotate(-6deg); }
}

/* ---- a marker that runs the flow, so direction reads at a glance ---- */

.bd-runner { opacity: 0; transform-box: view-box; }
.is-in .bd-runner { animation: bd-run 9s var(--ease) 2.4s infinite; }

@keyframes bd-run {
    0%,  4%  { transform: translateX(136px);  opacity: 0; }
    7%, 16%  { transform: translateX(136px);  opacity: 1; }
    24%, 34% { transform: translateX(368px);  opacity: 1; }
    42%, 52% { transform: translateX(600px);  opacity: 1; }
    60%, 70% { transform: translateX(832px);  opacity: 1; }
    78%, 94% { transform: translateX(1064px); opacity: 1; }
    100%     { transform: translateX(1064px); opacity: 0; }
}

@media (max-width: 780px) { .bd-runner { display: none; } }

@media (prefers-reduced-motion: reduce) {
    .bd-draw { stroke-dashoffset: 0; }
    .bd-fill { transform: scaleX(1); }
    .bd-stamp { opacity: 1; }
    .bd-runner { opacity: 0; }
}

/* Two compositions of the same scene: landscape on desktop, portrait on
   phones. The landscape one needs ~700px before its labels are legible, so
   below 780px the portrait version is shown instead — no sideways scrolling,
   nothing cropped, nothing shrunk to illegibility. */
.banner--desk-m { display: none; }

@media (max-width: 780px) {
    .banner--desk { display: none; }

    .banner--desk-m {
        display: block;
        max-width: min(420px, 100%);
        margin-inline: auto;
    }
}

/* ==========================================================================
   Hero fills exactly one screen on desktop.
   The text block takes what it needs; the desk scene flexes into whatever
   height is left and letterboxes itself via preserveAspectRatio, so the
   hero can never push past the fold regardless of viewport height.
   Gated on a real desktop viewport — on phones the hero flows normally.
   ========================================================================== */
@media (min-width: 900px) and (min-height: 700px) {
    .hero {
        /* less the marquee strip, so it lands inside the first screen */
        min-height: calc(100svh - 4.6rem);
        display: flex;
        flex-direction: column;
        padding-top: calc(var(--nav-h) + clamp(0.75rem, 2.2vh, 2rem));
        padding-bottom: clamp(0.25rem, 0.8vh, 0.9rem);
    }

    .hero > .shell {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .hero__head { flex: none; }

    .hero__art {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
        margin-top: clamp(0.75rem, 2.2vh, 2rem);
    }

    /* Let the scene keep its own aspect ratio — filling a taller flex box
       letterboxed it and opened a gap above the caption. Instead the width is
       capped against the space actually left below the text, so the drawing
       and its caption stay locked together. */
    .hero__art { flex: 1 1 auto; justify-content: center; }

    .hero__art .banner--desk {
        width: 100%;
        /* 1200:340 viewBox = 3.53:1, so the height budget converts at that ratio */
        max-width: min(1180px, calc((100svh - 31.5rem) * 3.53));
        margin-inline: auto;
    }

    .hero__caption { flex: none; margin-top: 0.25rem; }

    /* tighten the stack so the scene gets the space */
    .hero__stamp { margin-bottom: clamp(0.6rem, 1.6vh, 1.4rem); }
    .hero__title { margin-bottom: clamp(0.6rem, 1.6vh, 1.25rem); gap: 0.45rem; }
    .hero__l1 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
    .hero__l2 { font-size: clamp(0.95rem, 1.55vw, 1.3rem); }
    .hero__sub { font-size: clamp(0.98rem, 1.1vw, 1.08rem); max-width: 56ch; }
    .hero__cta { margin-top: clamp(0.9rem, 2.2vh, 1.75rem); }
}

/* Short laptop screens: give the scene a floor so it never collapses. */
@media (min-width: 900px) and (max-height: 760px) {
    .hero__art .banner--desk { min-height: 210px; }
}

/* Without JS the pill keeps its 50% fallback width, which is narrower than the
   active label — so the overhanging letters would render paper-on-paper.
   .no-js is stripped by site.js on load, so this only ever applies when the
   script genuinely did not run. */
.no-js .toggle__btn.is-on { color: var(--ink); }
.no-js .toggle__pill { opacity: 0.18; }
