@font-face {
    font-family: "Archivo Black";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/archivo-black-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Archivo Black";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/archivo-black-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --brand: #0a7d3a;
    --brand-dark: #065a28;
    --accent: #ffb400;
    --ink: #0e1a14;
    --muted: #5b6b62;
    --bg: #f5f8f4;
    --card: rgba(255, 255, 255, 0.92);
    --shadow: 0 30px 80px -20px rgba(8, 36, 18, 0.45);
    --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.stage {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(1.25rem, 4vw, 3rem);
    isolation: isolate;
}

.stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-image) center/cover no-repeat;
    filter: saturate(1.05);
    z-index: -2;
}

.stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 80% 10%, rgba(255, 180, 0, 0.22), transparent 60%),
        linear-gradient(180deg, rgba(6, 30, 16, 0.55) 0%, rgba(6, 30, 16, 0.78) 100%);
    z-index: -1;
}

.card {
    width: min(960px, 100%);
    background: var(--card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius);
    padding: clamp(1.75rem, 4vw, 3.5rem);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: grid;
    gap: 1.75rem;
}

.eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    align-self: start;
    padding: 0.45rem 0.95rem;
    background: linear-gradient(90deg, rgba(10, 125, 58, 0.12), rgba(10, 125, 58, 0.18), rgba(10, 125, 58, 0.12));
    color: var(--brand-dark);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 0 0 0 rgba(10, 125, 58, 0.35);
    animation: eyebrow-pulse 2.6s ease-in-out infinite;
}

.eyebrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%, transparent 100%);
    transform: translateX(-120%);
    animation: eyebrow-shine 3.4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.eyebrow > * { position: relative; z-index: 2; }

.eyebrow i {
    animation: eyebrow-tap 2.6s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes eyebrow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(10, 125, 58, 0.0); }
    50%      { box-shadow: 0 0 0 6px rgba(10, 125, 58, 0.08); }
}

@keyframes eyebrow-shine {
    0%   { transform: translateX(-120%); }
    55%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@keyframes eyebrow-tap {
    0%, 70%, 100% { transform: rotate(0deg); }
    78%           { transform: rotate(-22deg); }
    86%           { transform: rotate(10deg); }
    94%           { transform: rotate(-4deg); }
}

@media (prefers-reduced-motion: reduce) {
    .eyebrow, .eyebrow::before, .eyebrow i { animation: none; }
}

h1 {
    font-family: "Archivo Black", "Helvetica Neue", Impact, system-ui, sans-serif;
    font-size: clamp(2.1rem, 6.2vw, 3.8rem);
    line-height: 1.02;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.015em;
    text-transform: none;
    font-weight: 400;
}

.lede {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--muted);
    margin: 0;
    max-width: 60ch;
}

.features {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem 1.5rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 500;
    color: var(--ink);
}

.features i {
    color: var(--brand);
    width: 1.25rem;
    text-align: center;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    padding-top: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    box-shadow: 0 14px 28px -14px rgba(10, 125, 58, 0.75);
}

.btn-primary:hover { transform: translateY(-1px); }

.btn-ghost {
    color: var(--ink);
    background: transparent;
    border: 1px solid rgba(14, 26, 20, 0.18);
}

.btn-ghost:hover { background: rgba(14, 26, 20, 0.05); }

.foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(14, 26, 20, 0.08);
}

.foot a { color: var(--brand-dark); text-decoration: none; }
.foot a:hover { text-decoration: underline; }

.notify-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.notify-form input[type="email"] {
    flex: 1 1 240px;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(14, 26, 20, 0.18);
    background: #fff;
    font: inherit;
    color: var(--ink);
    min-width: 0;
}

.notify-form input[type="email"]:focus {
    outline: 2px solid var(--brand);
    outline-offset: 1px;
}

.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

.form-error {
    color: #b3261e;
    font-size: 0.85rem;
    margin: 0.25rem 0 0;
    min-height: 1.1em;
    font-weight: 500;
}

.countdown {
    display: grid;
    gap: 0.5rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.countdown-grid > div {
    background: linear-gradient(180deg, rgba(10, 125, 58, 0.09), rgba(10, 125, 58, 0.02));
    border: 1px solid rgba(10, 125, 58, 0.16);
    border-radius: 14px;
    padding: 0.75rem 0.35rem;
    text-align: center;
    min-width: 0;
}

.countdown-grid span {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.4rem, 5vw, 2.25rem);
    font-weight: 700;
    line-height: 1;
    color: var(--brand-dark);
    font-variant-numeric: tabular-nums;
}

.countdown-grid em {
    font-style: normal;
    display: block;
    margin-top: 0.35rem;
    font-size: clamp(0.6rem, 1.6vw, 0.72rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 24, 14, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    padding: 1rem;
    z-index: 1000;
    animation: modal-fade 0.18s ease;
}

.modal-backdrop[hidden] { display: none; }

@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }

.modal {
    background: #fff;
    border-radius: var(--radius);
    padding: clamp(1.5rem, 5vw, 2.25rem);
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    animation: modal-rise 0.22s cubic-bezier(0.2, 0.7, 0.3, 1);
}

@keyframes modal-rise {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: none; opacity: 1; }
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 12px 24px -12px rgba(10, 125, 58, 0.7);
}

.modal h2 {
    margin: 0 0 0.5rem;
    font-family: "Fraunces", "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 4vw, 1.6rem);
    line-height: 1.2;
}

.modal p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.modal-close {
    appearance: none;
    border: 0;
    background: transparent;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--muted);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.modal-close:hover { background: rgba(14, 26, 20, 0.06); color: var(--ink); }
.modal-close:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ============================================================
   /move landing page
   ============================================================ */
.stage-move { align-items: flex-start; }

.move-card {
    width: min(1080px, 100%);
    gap: 2.25rem;
    scroll-behavior: smooth;
}

.move-hero h1 {
    margin-bottom: 0.6rem;
}

.move-hero .lede {
    max-width: 65ch;
}

.move-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
    margin: 1rem 0 0;
}

.move-meta {
    color: var(--muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.move-card h2 {
    font-family: "Archivo Black", "Helvetica Neue", Impact, system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    line-height: 1.15;
    margin: 0 0 0.85rem;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.move-services { display: grid; gap: 1rem; }

.move-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.move-grid li {
    background: rgba(10, 125, 58, 0.05);
    border: 1px solid rgba(10, 125, 58, 0.12);
    border-radius: 16px;
    padding: 1.1rem 1.15rem 1.15rem;
    display: grid;
    gap: 0.45rem;
    align-content: start;
}

.move-grid i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    font-size: 1.05rem;
    box-shadow: 0 8px 18px -10px rgba(10, 125, 58, 0.6);
}

.move-grid h3 {
    margin: 0.2rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
}

.move-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.move-honesty {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    background: rgba(255, 180, 0, 0.12);
    border: 1px solid rgba(255, 180, 0, 0.35);
    border-radius: 16px;
    padding: 1.1rem 1.25rem;
}

.move-honesty > i {
    color: #b87a00;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.move-honesty h2 {
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6a4500;
}

.move-honesty p { margin: 0; color: #4b3700; font-size: 0.92rem; }

.move-form-block { display: grid; gap: 1rem; scroll-margin-top: 1.5rem; }

.move-sub { color: var(--muted); margin: 0; font-size: 0.95rem; }

.move-form {
    display: grid;
    gap: 1.1rem;
    background: #fff;
    border: 1px solid rgba(14, 26, 20, 0.1);
    border-radius: 18px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.35rem;
    font-size: 0.92rem;
    color: var(--ink);
    min-width: 0;
}

.form-field > span,
.form-field > legend {
    font-weight: 600;
    color: var(--ink);
    padding: 0;
}

.req { color: #b3261e; font-style: normal; font-weight: 700; margin-left: 0.15rem; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(14, 26, 20, 0.18);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    min-width: 0;
}

.form-field textarea {
    resize: vertical;
    min-height: 90px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid var(--brand);
    outline-offset: 1px;
    border-color: var(--brand);
}

.check-group {
    border: 1px solid rgba(14, 26, 20, 0.12);
    border-radius: 12px;
    padding: 0.85rem 1rem 1rem;
    margin: 0;
}

.check-group legend {
    padding: 0 0.35rem;
    font-weight: 600;
}

.check-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(10, 125, 58, 0.06);
    border: 1px solid rgba(10, 125, 58, 0.12);
    margin: 0.25rem 0.35rem 0 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.check-group label:has(input:checked) {
    background: rgba(10, 125, 58, 0.18);
    border-color: var(--brand);
    color: var(--brand-dark);
    font-weight: 600;
}

.check-group input[type="checkbox"] { accent-color: var(--brand); }

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    align-items: center;
    margin-top: 0.2rem;
}

.form-fineprint {
    color: var(--muted);
    font-size: 0.85rem;
}

.form-fineprint a { color: var(--brand-dark); }

.move-about p {
    margin: 0 0 0.85rem;
    color: var(--ink);
    line-height: 1.6;
    max-width: 70ch;
}

.move-about p:last-child { margin-bottom: 0; }

.move-faq { display: grid; gap: 0.55rem; }

.move-faq details {
    border: 1px solid rgba(14, 26, 20, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: #fff;
}

.move-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.move-faq summary::after {
    content: "+";
    font-size: 1.25rem;
    color: var(--brand);
    transition: transform 0.15s ease;
}

.move-faq details[open] summary::after { content: "−"; }

.move-faq details p {
    margin: 0.65rem 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.move-secondary-cta {
    margin: 0;
    text-align: center;
}

.move-secondary-cta .btn { width: 100%; max-width: 360px; justify-content: center; }

/* ============================================================
   Coming-soon page (fold-fit two-column layout)
   ============================================================ */
.stage-soon { align-items: center; padding: clamp(0.75rem, 2vw, 1.5rem); }

.card-soon {
    width: min(1100px, 100%);
    gap: 1rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.top-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 0;
}

.eyebrow-compact { padding: 0.35rem 0.75rem; font-size: 0.72rem; }

.countdown-mini {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    font-family: "Fraunces", Georgia, serif;
    color: var(--brand-dark);
    font-variant-numeric: tabular-nums;
}

.countdown-mini > span {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    padding: 0 0.45rem;
    border-right: 1px solid rgba(10, 125, 58, 0.18);
}

.countdown-mini > span:last-child { border-right: 0; padding-right: 0; }
.countdown-mini > span:first-child { padding-left: 0; }

.countdown-mini b {
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1;
}

.countdown-mini em {
    font-style: normal;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 600;
}

.hero-soon { display: grid; gap: 0.5rem; }
.hero-soon h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.85rem);
    line-height: 1.05;
    margin: 0;
}
.hero-soon .lede {
    max-width: 70ch;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.5;
    margin: 0;
}

.body-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 820px) {
    .body-split {
        grid-template-columns: 1.15fr 1fr;
        gap: 1.5rem;
    }
}

.position-board {
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

.position-board > h2 {
    font-family: "Archivo Black", "Helvetica Neue", Impact, system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    line-height: 1.15;
    margin: 0;
    color: var(--ink);
}

.position-panel {
    border: 1px solid rgba(14, 26, 20, 0.1);
    border-radius: 12px;
    padding: 0.7rem 0.85rem 0.85rem;
    background: #fff;
}

.position-panel header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0 0 0.55rem;
}

.position-panel h3 {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.position-panel .count {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.position-panel.is-available { border-left: 3px solid var(--brand); }
.position-panel.is-available h3 { color: var(--brand-dark); }

.position-panel.is-spoken-for { border-left: 3px solid rgba(180, 83, 9, 0.7); background: rgba(255, 247, 237, 0.6); }
.position-panel.is-spoken-for h3 { color: #9a3412; }

.position-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem 0.85rem;
}

.position-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.86rem;
    color: var(--ink);
    min-width: 0;
}

.position-list li i {
    width: 18px;
    text-align: center;
    color: var(--brand);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.position-list li .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.empty-state {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.45;
    font-style: italic;
}

.foot-compact {
    align-items: flex-start;
    gap: 0.5rem 1rem;
    padding-top: 0.65rem;
    font-size: 0.78rem;
}

.disclosure-inline {
    color: var(--muted);
    line-height: 1.45;
    max-width: 60ch;
}

.interest-block { display: grid; gap: 0.85rem; }
.interest-block h2 {
    font-family: "Archivo Black", "Helvetica Neue", Impact, system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    line-height: 1.15;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.interest-sub { color: var(--muted); margin: 0; font-size: 0.95rem; }
.interest-fineprint {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0.5rem 0 0;
}

.role-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 4px;
    border: 1px solid rgba(14, 26, 20, 0.14);
    border-radius: 999px;
    background: rgba(14, 26, 20, 0.04);
    margin: 0;
}

.role-toggle input { position: absolute; opacity: 0; pointer-events: none; }

.role-toggle label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}

.role-toggle input:checked + label {
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 1px 3px rgba(8, 36, 18, 0.12);
}

.role-toggle input:focus-visible + label { outline: 2px solid var(--brand); outline-offset: 2px; }

.role-business-fields { display: grid; gap: 1rem; }
.role-business-fields[hidden] { display: none; }

.disclosure {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
    padding: 0.85rem 1rem;
    background: rgba(14, 26, 20, 0.03);
    border-radius: 10px;
    border-left: 3px solid rgba(10, 125, 58, 0.4);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   /bb bulletin board
   ============================================================ */
.stage-bb { align-items: flex-start; }

.bb-card {
    width: min(1180px, 100%);
    gap: 1.75rem;
}

.bb-hero h1 { margin-bottom: 0.5rem; }
.bb-hero .lede { max-width: 65ch; }

.bb-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
    margin: 0.75rem 0 0;
}

.bb-meta {
    color: var(--muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.bb-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0.1rem 0 0.25rem;
}

.bb-chip {
    --cat-color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(14, 26, 20, 0.12);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.bb-chip i { color: var(--cat-color); font-size: 0.85rem; }
.bb-chip:hover { background: rgba(10, 125, 58, 0.06); }
.bb-chip.is-active {
    background: color-mix(in srgb, var(--cat-color) 18%, white);
    border-color: var(--cat-color);
    color: var(--cat-color);
}
.bb-chip.is-active i { color: var(--cat-color); }

.bb-empty {
    background: rgba(10, 125, 58, 0.05);
    border: 1px dashed rgba(10, 125, 58, 0.3);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    color: var(--muted);
}
.bb-empty i {
    font-size: 1.75rem;
    color: var(--brand);
    margin-bottom: 0.5rem;
    display: block;
}
.bb-empty h2 {
    font-family: "Archivo Black", "Helvetica Neue", Impact, system-ui, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--ink);
    margin: 0 0 0.35rem;
}
.bb-empty p { margin: 0; }

.bb-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.bb-post {
    --cat-color: var(--brand);
    position: relative;
    background: #fffef8;
    border: 1px solid rgba(14, 26, 20, 0.08);
    border-top: 4px solid var(--cat-color);
    border-radius: 14px;
    padding: 1rem 1.1rem 1.1rem;
    display: grid;
    gap: 0.6rem;
    box-shadow: 0 12px 24px -18px rgba(8, 36, 18, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bb-post:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -18px rgba(8, 36, 18, 0.45); }

.bb-post-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.bb-post-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cat-color);
}

.bb-post-pin {
    color: var(--cat-color);
    font-size: 0.85rem;
    transform: rotate(35deg);
    opacity: 0.6;
}

.bb-post-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.bb-post-body {
    color: var(--ink);
    font-size: 0.93rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    max-height: 11.5em;
    overflow: hidden;
    mask-image: linear-gradient(180deg, #000 80%, transparent);
    -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
}

.bb-post-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    margin-top: 0.2rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(14, 26, 20, 0.08);
}

.bb-post-meta {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
}

.bb-dot {
    display: inline-block;
    color: var(--muted);
    opacity: 0.5;
    margin: 0 0.15rem;
}

.btn-reply {
    appearance: none;
    border: 1px solid rgba(10, 125, 58, 0.3);
    background: #fff;
    color: var(--brand-dark);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.12s ease, border-color 0.12s ease;
}
.btn-reply:hover { background: rgba(10, 125, 58, 0.08); border-color: var(--brand); }
.btn-reply:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.bb-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0 0;
}

.bb-pager-meta { color: var(--muted); font-size: 0.85rem; }

.bb-form-block { display: grid; gap: 0.85rem; scroll-margin-top: 1.5rem; }

.bb-sub { color: var(--muted); margin: 0; font-size: 0.95rem; }

.bb-card h2 {
    font-family: "Archivo Black", "Helvetica Neue", Impact, system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    line-height: 1.15;
    margin: 0 0 0.5rem;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.modal-wide { max-width: 560px; text-align: left; padding: clamp(1.4rem, 3vw, 2rem); }
.modal-wide h2 {
    text-align: left;
    font-family: "Archivo Black", "Helvetica Neue", Impact, system-ui, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0 0 0.4rem;
}
.modal-sub { color: var(--muted); font-size: 0.92rem; margin: 0 0 1rem; text-align: left; overflow-wrap: anywhere; }
.modal-wide .move-form { padding: 0; border: 0; background: transparent; }

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 540px) {
    .card { padding: 1.5rem; gap: 1.4rem; }
    .foot { flex-direction: column; align-items: flex-start; }
    .countdown-grid { gap: 0.35rem; }
    .countdown-grid > div { padding: 0.6rem 0.25rem; border-radius: 12px; }
    .notify-form input[type="email"] { flex: 1 1 100%; }
    .notify-form .btn { width: 100%; justify-content: center; }

    .move-card { gap: 1.6rem; }
    .move-cta-row .btn { width: 100%; justify-content: center; }
    .move-grid { grid-template-columns: 1fr; }
    .move-form { padding: 1.1rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-actions .btn { width: 100%; justify-content: center; }
    .form-actions { flex-direction: column; align-items: stretch; }
    .form-fineprint { text-align: center; }
    .move-honesty { grid-template-columns: 1fr; gap: 0.65rem; }
}

@media (max-width: 540px) {
    .card-soon { gap: 1rem; padding: 1.1rem; }
    .top-strip { gap: 0.5rem; }
    .countdown-mini b { font-size: 1rem; }
    .countdown-mini > span { padding: 0 0.3rem; }
    .position-list { grid-template-columns: 1fr; }
    .position-board { gap: 0.55rem; }
    .position-panel { padding: 0.65rem 0.75rem 0.75rem; }
    .role-toggle label { padding: 0.55rem 0.5rem; font-size: 0.85rem; }
    .foot-compact { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
    .bb-card { gap: 1.4rem; }
    .bb-cta-row .btn { width: 100%; justify-content: center; }
    .bb-grid { grid-template-columns: 1fr; }
    .bb-filters { gap: 0.35rem; }
    .bb-chip { font-size: 0.8rem; padding: 0.35rem 0.7rem; }
    .bb-post-foot { flex-direction: column; align-items: stretch; }
    .btn-reply { width: 100%; justify-content: center; }
    .bb-pager { flex-direction: column; align-items: stretch; }
    .bb-pager .btn { width: 100%; justify-content: center; }
    .modal-wide { max-width: none; }
}

@media (max-width: 360px) {
    .countdown-grid em { letter-spacing: 0.05em; }
    .check-group label { width: 100%; margin-right: 0; }
}
