@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
    --paper: #F4EFE2;
    --paper-2: #ECE5D2;
    --card: #FBF8EF;
    --ink: #14141C;
    --ink-2: #1F1F2C;
    --ink-soft: #2D2D3D;
    --muted: #5C5C70;
    --muted-2: #898A9F;
    --line: #D9D2BD;
    --line-soft: #E6DFC9;
    --lime: #C5FF3D;
    --lime-2: #B0F22B;
    --lime-deep: #82BA00;
    --coral: #FF4538;
    --coral-soft: #FFD9D5;
    --cobalt: #2C44FF;
    --cobalt-soft: #D5DAFF;
    --gold: #C9A43A;
    --shadow-card: 0 1px 0 rgba(20, 20, 28, 0.04), 0 6px 24px -10px rgba(20, 20, 28, 0.18);
    --shadow-lift: 0 1px 0 rgba(20, 20, 28, 0.06), 0 18px 40px -16px rgba(20, 20, 28, 0.32);
    --radius-s: 8px;
    --radius: 16px;
    --radius-l: 26px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --display: 'Bricolage Grotesque', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --frame: min(1200px, 100vw - 2.4rem);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
p { margin: 0 0 1rem; }
ol, ul { margin: 0; padding: 0; list-style: none; }

.frame { width: var(--frame); margin-inline: auto; }

.hl-lime {
    background: var(--lime);
    padding: 0.04em 0.18em 0.06em;
    color: var(--ink);
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-style: italic;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(197, 255, 61, 0.22);
    flex-shrink: 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(244, 239, 226, 0.92);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.topbar__inner {
    width: var(--frame);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 14px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    flex-shrink: 0;
}

.logo__mark { width: 30px; height: 30px; object-fit: contain; }

.logo__type {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.42rem;
    letter-spacing: -0.02em;
    line-height: 1;
    font-variation-settings: "opsz" 32;
}

.logo__type i {
    font-style: italic;
    font-weight: 500;
    color: var(--cobalt);
}

.nav-bar {
    display: flex;
    gap: 4px;
}

.nav-bar a {
    padding: 9px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: 999px;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
    position: relative;
}

.nav-bar a:hover {
    background: var(--ink);
    color: var(--lime);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease);
}

.hamburger:hover { background: var(--paper-2); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.sheet {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
}

.sheet.is-open { visibility: visible; pointer-events: auto; }

.sheet__scrim {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 28, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.32s var(--ease);
}

.sheet.is-open .sheet__scrim { opacity: 1; }

.sheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ink);
    color: #fff;
    padding: 12px 22px 32px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.sheet.is-open .sheet__panel { transform: translateY(0); }

.sheet__handle {
    width: 44px;
    height: 4px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    margin: 4px auto 18px;
}

.sheet__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sheet__brand {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.018em;
}

.sheet__brand i {
    font-style: italic;
    font-weight: 500;
    color: var(--lime);
}

.sheet__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.sheet__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.sheet__close:hover {
    background: var(--lime);
    color: var(--ink);
    border-color: var(--lime);
}

.sheet__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 14px 0;
}

.sheet__list a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    letter-spacing: -0.02em;
    line-height: 1;
    color: #fff;
    transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}

.sheet__list a:hover,
.sheet__list a:focus-visible {
    color: var(--lime);
    padding-left: 12px;
    outline: none;
}

.sheet__num {
    font-family: var(--body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: 0.14em;
    width: 32px;
}

.sheet__arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.4rem;
    transition: color 0.2s var(--ease), transform 0.25s var(--ease);
}

.sheet__list a:hover .sheet__arrow,
.sheet__list a:focus-visible .sheet__arrow {
    color: var(--lime);
    transform: translateX(4px);
}

.sheet__sign {
    font-family: var(--display);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 16px 4px 0;
}

body.is-locked { overflow: hidden; }

.hero {
    position: relative;
    padding: clamp(56px, 10vw, 130px) 0 clamp(56px, 9vw, 110px);
    overflow: hidden;
    isolation: isolate;
    background: var(--paper);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 90% 10%, rgba(44, 68, 255, 0.10), transparent 60%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(197, 255, 61, 0.18), transparent 65%);
    pointer-events: none;
    z-index: -1;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: var(--ink);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.hero__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.6rem, 9.4vw, 7rem);
    line-height: 0.96;
    letter-spacing: -0.034em;
    margin: 0 0 clamp(24px, 3.4vw, 36px);
    color: var(--ink);
    font-variation-settings: "opsz" 96;
}

.hero__hl {
    position: relative;
    display: inline-block;
}

.hero__hl::before {
    content: '';
    position: absolute;
    left: -0.04em;
    right: -0.06em;
    bottom: 0.06em;
    top: 0.18em;
    background: var(--lime);
    z-index: -1;
    transform: rotate(-1.2deg);
    border-radius: 4px;
}

.hero__hl i {
    font-style: normal;
    color: var(--coral);
}

.hero__deck {
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    line-height: 1.55;
    max-width: 60ch;
    color: var(--ink-soft);
    margin: 0 0 clamp(32px, 4vw, 50px);
    font-weight: 400;
}

.hero__row {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 36px);
    flex-wrap: wrap;
}

.stamp {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-9deg);
    border: 2px dashed var(--lime);
    flex-shrink: 0;
    transition: transform 0.4s var(--ease);
}

.stamp:hover { transform: rotate(0deg) scale(1.04); }

.stamp__inner {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.82rem;
    text-align: center;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.25;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

.hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.hero__meta li + li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--coral);
    border-radius: 50%;
    margin-left: -8px;
}

.ticker {
    background: var(--ink);
    color: #fff;
    padding: 18px 0;
    border-block: 2px solid var(--lime);
    overflow: hidden;
    position: relative;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 38s linear infinite;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker__group {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    flex-shrink: 0;
}

.ticker__item {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    letter-spacing: -0.005em;
    color: rgba(255, 255, 255, 0.86);
    white-space: nowrap;
}

.ticker__item b {
    font-weight: 700;
    color: var(--lime);
    margin-right: 4px;
}

.ticker__sep {
    color: var(--coral);
    font-size: 0.7rem;
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .ticker__track { animation: none; }
}

.slab {
    padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
    background: var(--paper);
}

.slab__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}

.slab__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cobalt);
    margin-bottom: 22px;
}

.slab__big {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
    font-variation-settings: "opsz" 72;
}

.slab__body {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.72;
}

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

.chapter {
    padding: clamp(72px, 10vw, 140px) 0;
}

.chapter--paper { background: var(--paper); border-block: 1px solid var(--line); }
.chapter--cream { background: var(--paper-2); }

.chapter--ink {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    overflow: hidden;
}

.chapter--ink::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse 80% 80% at 70% 30%, rgba(197, 255, 61, 0.10), transparent 60%);
    pointer-events: none;
}

.chap-head {
    margin-bottom: clamp(40px, 5vw, 68px);
    max-width: 780px;
    display: grid;
    gap: 16px;
}

.chap-head__no {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--cobalt);
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chap-head__no::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--cobalt);
}

.chap-head__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 5.2vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.028em;
    margin: 0;
    color: var(--ink);
    font-variation-settings: "opsz" 96;
}

.chap-head__lede {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    max-width: 62ch;
}

.chap-head--inv .chap-head__title { color: #fff; }
.chap-head--inv .chap-head__no { color: var(--lime); }
.chap-head--inv .chap-head__no::before { background: var(--lime); }
.chap-head--inv .chap-head__lede { color: rgba(255, 255, 255, 0.65); }

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.chip {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    background: var(--card);
    transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chip--on {
    background: var(--ink);
    color: var(--lime);
    border-color: var(--ink);
}

.permits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    counter-reset: permit;
}

.permit {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    position: relative;
}

.permit:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: var(--shadow-lift);
}

.permit__no {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--ink);
    font-variation-settings: "opsz" 96;
}

.permit__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.permit__name {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    line-height: 1.15;
    letter-spacing: -0.018em;
    margin: 0;
    color: var(--ink);
    font-variation-settings: "opsz" 36;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.badge--lime { background: var(--lime); color: var(--ink); }
.badge--coral { background: var(--coral); color: #fff; }

.permit__by {
    font-style: italic;
    color: var(--cobalt);
    font-size: 0.92rem;
    margin: 0;
}

.permit__body {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}

.permit__lead {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-size: 0.84rem;
}

.permit__lead span {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--muted);
}

.permit__lead b {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: -0.012em;
}

.layers {
    display: grid;
    gap: 12px;
}

.layer {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px 22px;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    align-items: start;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.layer:hover {
    background: rgba(197, 255, 61, 0.04);
    border-color: rgba(197, 255, 61, 0.4);
}

.layer__check {
    grid-row: span 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.layer__name {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    letter-spacing: -0.018em;
    margin: 0 0 8px;
    color: #fff;
}

.layer__body {
    grid-column: 2;
}

.layer__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.65;
}

.layer__body b {
    color: #fff;
    font-weight: 600;
}

.layer__pill {
    grid-column: 2;
    align-self: start;
    margin-top: 6px;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(197, 255, 61, 0.12);
    border: 1px solid rgba(197, 255, 61, 0.3);
    color: var(--lime);
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: -0.005em;
    border-radius: 999px;
    width: max-content;
    max-width: 100%;
}

.callout {
    padding: clamp(64px, 9vw, 130px) 0;
    background: var(--lime);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}

.callout::before {
    content: '§';
    position: absolute;
    top: -50px;
    right: -20px;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(20rem, 40vw, 38rem);
    line-height: 1;
    color: rgba(20, 20, 28, 0.06);
    pointer-events: none;
    font-weight: 700;
}

.callout__inner { position: relative; }

.callout__pre {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: var(--ink);
}

.callout__big {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(16px, 3vw, 32px);
    align-items: start;
    max-width: 56ch;
    font-variation-settings: "opsz" 72;
}

.callout__num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(7rem, 18vw, 14rem);
    line-height: 0.78;
    letter-spacing: -0.06em;
    color: var(--ink);
    font-variation-settings: "opsz" 144;
    flex-shrink: 0;
}

.callout__txt { padding-top: clamp(8px, 2vw, 28px); }

.callout__txt .hl-lime {
    background: var(--ink);
    color: var(--lime);
    font-style: italic;
}

.callout__sub {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 62ch;
}

.hottake {
    padding: clamp(56px, 8vw, 110px) 0;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--ink-2);
}

.hottake::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: -10px;
    font-family: var(--display);
    font-size: clamp(20rem, 38vw, 32rem);
    line-height: 0.75;
    color: rgba(197, 255, 61, 0.08);
    pointer-events: none;
    font-weight: 700;
    font-style: italic;
}

.hottake__inner { position: relative; max-width: 880px; }

.hottake__by {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--display);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.hottake__name {
    margin: 0;
    font-weight: 600;
    font-size: 0.96rem;
    color: #fff;
}

.hottake__role {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hottake__quote {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.4rem, 3.4vw, 2.4rem);
    line-height: 1.25;
    letter-spacing: -0.018em;
    color: #fff;
    margin: 0 0 24px;
    font-variation-settings: "opsz" 72;
    max-width: 28ch;
}

.hottake__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hottake__tags li {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-family: var(--body);
    font-size: 0.78rem;
    color: var(--lime);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.states {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.state {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.state:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: var(--shadow-lift);
}

.state__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.state__abbr {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--lime);
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.state__name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.016em;
    margin: 0;
    color: var(--ink);
}

.state__permit {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
    color: var(--cobalt);
    margin: 0 0 18px;
}

.state__facts {
    display: grid;
    gap: 10px;
}

.state__facts li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    align-items: baseline;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--line);
    font-size: 0.92rem;
}

.state__facts li:last-child { border-bottom: 0; padding-bottom: 0; }

.state__facts span {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
}

.state__facts b {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.94rem;
}

.trio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.trip {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.trip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.trip__letter {
    width: 64px;
    height: 64px;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--display);
    font-weight: 800;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 18px;
    transform: rotate(-4deg);
    transition: transform 0.3s var(--ease);
}

.trip:hover .trip__letter { transform: rotate(0deg) scale(1.06); }

.trip__name {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.3rem, 2.4vw, 1.55rem);
    line-height: 1.15;
    letter-spacing: -0.018em;
    margin: 0 0 10px;
    color: var(--ink);
}

.trip p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--line);
    z-index: 0;
}

.tl {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px 22px;
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.tl__when {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: -0.02em;
    line-height: 1;
    text-align: center;
    font-variation-settings: "opsz" 16;
    border: 2px solid var(--paper);
    box-shadow: 0 0 0 2px var(--lime);
}

.tl__when i {
    font-style: normal;
    margin-right: -1px;
}

.tl h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    margin: 6px 0 6px;
    letter-spacing: -0.018em;
    color: var(--ink);
}

.tl p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
    max-width: 60ch;
}

.tl--day .tl__when {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 0 0 2px var(--coral);
}

.tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tier {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.tier:hover {
    transform: translateY(-3px);
    background: rgba(197, 255, 61, 0.04);
    border-color: rgba(197, 255, 61, 0.4);
}

.tier__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tier__grade {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 2rem;
    flex-shrink: 0;
    letter-spacing: -0.04em;
}

.tier--a .tier__grade { background: var(--lime); color: var(--ink); }
.tier--b .tier__grade { background: var(--gold); color: var(--ink); }
.tier--c .tier__grade { background: var(--coral); color: #fff; }

.tier__lab {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.014em;
    color: #fff;
}

.tier__example {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.02rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 14px;
}

.tier__list {
    display: grid;
    gap: 10px;
}

.tier__list li {
    padding-left: 22px;
    position: relative;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
    line-height: 1.55;
}

.tier__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 2px;
    background: var(--lime);
}

.faq {
    display: grid;
    border-top: 1px solid var(--line);
}

.faq details {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    transition: background 0.2s var(--ease);
}

.faq details[open] { background: var(--card); }

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 4px;
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    line-height: 1.3;
    letter-spacing: -0.018em;
    color: var(--ink);
    transition: color 0.2s var(--ease);
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--cobalt); }

.faq__plus {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    position: relative;
    margin-top: 4px;
    transition: background 0.2s var(--ease), transform 0.32s var(--ease);
}

.faq__plus::before,
.faq__plus::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--lime);
    transition: transform 0.25s var(--ease);
}

.faq__plus::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq__plus::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq details[open] .faq__plus {
    background: var(--lime);
    transform: rotate(135deg);
}

.faq details[open] .faq__plus::before,
.faq details[open] .faq__plus::after { background: var(--ink); }

.faq__body {
    padding: 0 4px 24px;
    max-width: 70ch;
}

.faq__body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.cta {
    padding: clamp(48px, 7vw, 90px) 0 clamp(72px, 10vw, 120px);
    background: var(--paper);
}

.cta__panel {
    background: var(--ink);
    border-radius: var(--radius-l);
    padding: clamp(40px, 6vw, 76px);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 2px solid var(--lime);
}

.cta__panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse 100% 100% at 100% 0%, rgba(197, 255, 61, 0.18), transparent 65%);
    pointer-events: none;
}

.cta__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 18px;
}

.cta__kicker::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--lime);
}

.cta__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4.4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    max-width: 22ch;
    font-variation-settings: "opsz" 96;
}

.cta__copy {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 56ch;
}

.cta__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
    white-space: nowrap;
}

.btn__arrow {
    font-size: 1.1rem;
    transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--lime {
    background: var(--lime);
    color: var(--ink);
}

.btn--lime:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px -8px rgba(197, 255, 61, 0.5);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--lime);
    color: var(--lime);
}

.footnote {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
    padding: 38px 0 32px;
    font-size: 0.88rem;
    border-top: 2px solid var(--lime);
}

.footnote__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    justify-content: space-between;
    align-items: center;
}

.footnote__brand {
    font-family: var(--display);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.012em;
}

.footnote__brand i {
    font-style: italic;
    font-weight: 500;
    color: var(--lime);
}

.footnote__line { margin: 0; }

.footnote__link {
    color: var(--lime);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease);
}

.footnote__link:hover { border-color: var(--lime); }

@media (min-width: 640px) {
    .slab__grid { grid-template-columns: 1.05fr 1fr; gap: 60px; }
    .permits { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .states { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .trio { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .tiers { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (min-width: 980px) {
    .permits { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .states { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .trio { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 899px) {
    .nav-bar { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 540px) {
    .topbar__inner { padding-block: 10px; gap: 10px; }
    .logo__type { font-size: 1.22rem; }
    .logo__mark { width: 28px; height: 28px; }
    .stamp { width: 88px; height: 88px; }
    .stamp__inner { font-size: 0.72rem; }
    .permit { padding: 24px 22px; }
    .layer { padding: 20px 18px; grid-template-columns: 46px 1fr; gap: 12px 16px; }
    .layer__check { width: 46px; height: 46px; font-size: 1.3rem; }
    .state { padding: 22px 20px; }
    .trip { padding: 26px 22px; }
    .trip__letter { width: 54px; height: 54px; font-size: 1.65rem; }
    .cta__panel { padding: 32px 24px; border-radius: var(--radius); }
    .timeline::before { left: 22px; }
    .tl { grid-template-columns: 46px 1fr; gap: 14px 16px; }
    .tl__when { width: 46px; height: 46px; font-size: 0.78rem; }
    .tier { padding: 26px 22px; }
    .tier__grade { width: 48px; height: 48px; font-size: 1.6rem; }
    .ticker__group { gap: 20px; padding-right: 20px; }
    .ticker__item { font-size: 0.92rem; }
    .callout__big { grid-template-columns: 1fr; gap: 6px; }
    .callout__num { font-size: clamp(8rem, 30vw, 12rem); }
    .callout__txt { padding-top: 0; }
}

@media (max-width: 380px) {
    :root { --frame: min(1200px, 100vw - 1.6rem); }
    .hero__title { font-size: clamp(2.2rem, 11vw, 3.2rem); }
    .layer__pill { font-size: 0.78rem; padding: 5px 12px; }
    .state__facts li { grid-template-columns: 1fr; gap: 4px; padding-bottom: 12px; }
    .hottake__tags li { font-size: 0.72rem; }
}

@media (orientation: landscape) and (max-height: 540px) {
    .hero { padding: 44px 0 48px; }
    .chapter { padding: 52px 0; }
    .slab { padding: 40px 0 24px; }
    .callout { padding: 48px 0; }
    .hottake { padding: 44px 0; }
    .sheet__panel { max-height: 96vh; padding: 10px 18px 22px; }
    .sheet__list a { font-size: 1.4rem; padding: 10px 4px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .ticker__track { animation: none !important; }
}

:focus-visible {
    outline: 2px solid var(--cobalt);
    outline-offset: 3px;
    border-radius: 4px;
}

.sheet :focus-visible { outline-color: var(--lime); }
