:root {
    --bg: #090b0e;
    --panel: #11161b;
    --panel-2: #151b21;
    --panel-3: #1b2229;
    --ink: #f4f2ea;
    --text: #d9ded9;
    --muted: #929b9a;
    --line: rgba(230, 238, 232, 0.14);
    --line-strong: rgba(230, 238, 232, 0.26);
    --green: #55e3bd;
    --blue: #6297ff;
    --orange: #ff9d45;
    --yellow: #f5d35f;
    --purple: #b77dff;
    --red: #ff6868;
    --paper: #f4efe5;
    --paper-line: #d9ccba;
    --paper-muted: #5e6562;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --serif: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    --gh-font-heading: var(--sans);
    --gh-font-body: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.58;
}
a {
    color: inherit;
    text-decoration-color: color-mix(in srgb, currentColor 32%, transparent);
    text-underline-offset: 0.18em;
}
img { display: block; max-width: 100%; height: auto; }

.skip-link {
    position: absolute;
    left: 14px;
    top: -52px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 8px;
    color: #06110e;
    background: var(--green);
}
.skip-link:focus { top: 14px; }

.site-head {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 11, 14, 0.92);
    backdrop-filter: blur(16px);
}
.site-head-inner,
.site-foot-inner,
.session-shell,
.session-checklist,
.more-guides,
.archive-head,
.article-head,
.article-shell {
    width: min(1240px, calc(100vw - 40px));
    margin-inline: auto;
}
.site-head-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
}
.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}
.brand-text {
    font-size: 20px;
    letter-spacing: 0;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 18px;
    color: #c8d0cc;
    font-size: 13px;
    font-weight: 850;
}
.nav a { text-decoration: none; }
.nav a:hover { color: var(--green); }

.workstation {
    overflow-x: hidden;
    padding: clamp(18px, 3vw, 34px) 0 clamp(26px, 4vw, 52px);
    background:
        linear-gradient(90deg, rgba(85, 227, 189, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 76% 20%, rgba(98, 151, 255, 0.12), transparent 28%),
        #090b0e;
    background-size: 72px 72px, 72px 72px, auto, auto;
}
.session-shell {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: linear-gradient(180deg, #12171d, #0c0f13);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}
.transport-bar {
    min-height: 48px;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    background: #0e1216;
}
.transport-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.transport-buttons span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #323b43;
    background: #161c22;
}
.transport-buttons span:nth-child(2) { border-radius: 4px; }
.transport-buttons span:nth-child(3) {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 13px solid #77817e;
    border-right: 0;
    background: transparent;
}
.transport-buttons .record-dot {
    border-color: color-mix(in srgb, var(--red) 72%, #111);
    background: var(--red);
}
.session-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 9px;
    color: var(--ink);
    font-weight: 900;
}
.session-title small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}
.session-readout {
    display: flex;
    gap: 6px;
    color: #bac3bf;
    font-family: var(--mono);
    font-size: 12px;
}
.session-readout span {
    min-width: 42px;
    padding: 5px 7px;
    border: 1px solid #293139;
    border-radius: 6px;
    background: #090c10;
    text-align: center;
}

.studio-grid {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 250px;
    min-height: min(600px, calc(100svh - 132px));
}
.track-list,
.inspector-panel {
    padding: 18px 14px;
    background: #0d1115;
}
.track-list {
    border-right: 1px solid var(--line);
}
.panel-label,
.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.track-list a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 10px;
    border-top: 1px solid var(--line);
    color: #d6ddd9;
    font-weight: 900;
    text-decoration: none;
}
.track-list a:last-child { border-bottom: 1px solid var(--line); }
.track-list a:hover {
    color: #06110e;
    background: var(--green);
}
.arrange-desk {
    position: relative;
    padding: clamp(22px, 3vw, 36px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        #10151a;
    background-size: calc(100% / 7) 100%;
}
.intro-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}
.intro-panel .eyebrow { margin-bottom: -4px; }
h1,
h2,
h3 {
    margin-top: 0;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: 0;
}
.intro-panel h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(40px, 4.4vw, 64px);
}
.intro-panel p:not(.eyebrow) {
    margin: 0;
    max-width: 660px;
    color: #c7cfcb;
    font-size: clamp(16px, 1.28vw, 20px);
    line-height: 1.48;
}
.timeline-ruler {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0 0 8px 98px;
    color: #737e7c;
    font-family: var(--mono);
    font-size: 11px;
}
.arrangement-map {
    display: grid;
    gap: 8px;
}
.lane {
    display: grid;
    grid-template-columns: 86px repeat(8, minmax(54px, 1fr));
    gap: 6px;
    align-items: stretch;
    min-height: 40px;
}
.lane-name {
    display: flex;
    align-items: center;
    padding-left: 2px;
    color: #a8b2af;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.region {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 12px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, currentColor 38%, transparent);
    border-radius: 7px;
    color: #111514;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-shadow: inset 0 -20px 22px rgba(0, 0, 0, 0.12);
}
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.offset-1 { grid-column-start: 3; }
.offset-2 { grid-column-start: 4; }
.region.teal { background: var(--green); }
.region.blue { background: var(--blue); }
.region.orange { background: var(--orange); }
.region.green { background: #9ee66e; }
.region.yellow { background: var(--yellow); }
.region.purple { background: var(--purple); }
.region.gray { background: #aab4bd; }
.region.red { background: var(--red); }

.inspector-panel {
    display: grid;
    align-content: start;
    gap: 16px;
    border-left: 1px solid var(--line);
}
.screen-preview {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: #06080a;
}
.screen-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}
.readout-list {
    display: grid;
    gap: 1px;
    margin: 0;
    background: var(--line);
}
.readout-list div {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 8px;
    padding: 10px;
    background: #11171c;
}
.readout-list dt {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
}
.readout-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
}
.level-meters {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 7px;
    height: 112px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #0a0d10;
}
.level-meters span {
    height: var(--h);
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, var(--yellow), var(--green) 56%, #27675a);
}

.session-checklist {
    padding: clamp(42px, 7vw, 84px) 0;
}
.checklist-head {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.45fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 24px;
}
.checklist-head .eyebrow { grid-column: 1 / -1; margin-bottom: -18px; }
.checklist-head h2 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(30px, 3.2vw, 44px);
}
.checklist-head p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}
.sequence-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}
.sequence-list li {
    display: grid;
    grid-template-columns: 70px 190px minmax(0, 1fr);
    gap: 20px;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}
.sequence-list span {
    color: var(--orange);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 900;
}
.sequence-list strong {
    color: var(--ink);
    font-size: 24px;
    line-height: 1.1;
}
.sequence-list p {
    margin: 0;
    color: #b9c2be;
    font-size: 17px;
}

.archive-head {
    padding: clamp(54px, 9vw, 110px) 0 28px;
}
.archive-head h1 {
    margin: 0;
    font-size: clamp(44px, 6vw, 84px);
}
.archive-head p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 19px;
}

.post-section,
.more-guides {
    padding: clamp(44px, 7vw, 84px) 0;
}
.post-grid {
    display: grid;
    gap: 12px;
}
.post-card {
    display: grid;
    grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #11161b;
}
.card-image img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
}
.card-body { padding: 18px; }
.card-meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.card-meta a,
.article-meta a {
    color: var(--green);
    text-decoration: none;
}
.post-card h3 {
    margin: 10px 0 8px;
    color: var(--ink);
    font-size: 24px;
}
.post-card h3 a { text-decoration: none; }
.post-card p {
    margin: 0;
    color: #b6beb8;
    font-size: 15px;
}

.article {
    background: var(--paper);
    color: #111315;
    padding: clamp(42px, 7vw, 84px) 0;
}
.article-head {
    max-width: 980px;
}
.article-head h1 {
    margin: 14px 0 16px;
    color: #111315;
    font-size: clamp(42px, 7vw, 82px);
}
.article-excerpt {
    max-width: 800px;
    margin: 0;
    color: var(--paper-muted);
    font-size: clamp(18px, 2vw, 23px);
}
.article-image {
    margin: 34px 0 0;
    overflow: hidden;
    border: 1px solid var(--paper-line);
    border-radius: 10px;
    background: #fffaf0;
}
.article-image img {
    width: 100%;
    max-height: 660px;
    object-fit: cover;
}
figcaption {
    padding: 10px 14px;
    color: var(--paper-muted);
    font-size: 13px;
}
.article-shell {
    display: grid;
    grid-template-columns: 190px minmax(0, 780px);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
    margin-top: 46px;
}
.article-rail {
    position: sticky;
    top: 86px;
    display: grid;
    gap: 10px;
    color: var(--paper-muted);
    font-size: 13px;
}
.article-rail a { text-decoration: none; }
.rail-label {
    margin: 0 0 4px;
    color: #111315;
    font-family: var(--mono);
    font-weight: 900;
    text-transform: uppercase;
}
.gh-content {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.78;
}
.gh-content > *:first-child { margin-top: 0; }
.gh-content h2,
.gh-content h3 {
    margin: 2.1em 0 0.55em;
    color: #111315;
    font-family: var(--sans);
    line-height: 1.12;
}
.gh-content h2 { font-size: clamp(30px, 3vw, 42px); }
.gh-content h3 { font-size: 25px; }
.gh-content p,
.gh-content ul,
.gh-content ol { margin: 0 0 1.12em; }
.gh-content li + li { margin-top: 0.35em; }
.gh-content strong { font-weight: 900; }
.gh-content blockquote {
    margin: 1.6em 0;
    padding: 18px 22px;
    border-left: 5px solid var(--orange);
    background: #fff4dd;
    font-family: var(--sans);
    font-size: 17px;
}
.gh-content table {
    width: 100%;
    margin: 1.8em 0;
    border-collapse: collapse;
    font-family: var(--sans);
    font-size: 15px;
}
.gh-content th,
.gh-content td {
    padding: 12px;
    border-bottom: 1px solid var(--paper-line);
    text-align: left;
    vertical-align: top;
}
.gh-content th { background: #e4d7c3; }
.gh-content pre {
    overflow-x: auto;
    padding: 18px;
    border-radius: 8px;
    color: #f8f5ef;
    background: #191b1d;
    font-size: 14px;
}
.gh-content code {
    font-family: var(--mono);
    font-size: 0.9em;
}
.gh-content figure { margin: 2em 0; }
.gh-content .kg-width-wide {
    width: min(980px, calc(100vw - 40px));
    margin-left: 50%;
    transform: translateX(-50%);
}
.gh-content .kg-width-full {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.gh-content .kg-width-full img {
    width: 100%;
    border-radius: 0;
}
.gh-content .kg-image-card img,
.gh-content .kg-card img {
    border: 1px solid var(--paper-line);
    border-radius: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    font-weight: 900;
}

.site-foot {
    border-top: 1px solid var(--line);
    background: #07090b;
}
.site-foot-inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0;
}
.site-foot p {
    max-width: 560px;
    margin: 8px 0 0;
    color: var(--muted);
}
.site-foot nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: #cdd4d0;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .studio-grid {
        grid-template-columns: 130px minmax(0, 1fr);
    }
    .inspector-panel {
        display: none;
    }
    .intro-panel,
    .checklist-head,
    .article-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-head-inner,
    .site-foot-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 7px 12px;
        font-size: 13px;
    }
    .workstation {
        min-height: 0;
        padding-top: 14px;
    }
    .session-shell,
    .site-head-inner,
    .site-foot-inner,
    .session-checklist,
    .more-guides,
    .archive-head,
    .article-head,
    .article-shell {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }
    .session-shell,
    .transport-bar,
    .studio-grid,
    .arrange-desk,
    .arrangement-map,
    .track-list {
        min-width: 0;
        max-width: 100%;
    }
    .workstation .session-shell {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }
    .transport-bar {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }
    .transport-buttons,
    .session-readout {
        display: none;
    }
    .session-title {
        justify-content: flex-start;
    }
    .studio-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .track-list { display: none; }
    .arrange-desk {
        width: 100%;
        padding: 22px 14px 18px;
        overflow: hidden;
    }
    .intro-panel {
        width: 330px;
        max-width: calc(100vw - 52px);
        gap: 14px;
        justify-self: start;
        margin-bottom: 20px;
    }
    .intro-panel .eyebrow { margin-bottom: -4px; }
    .intro-panel h1 {
        width: 100%;
        max-width: 100%;
        font-size: 34px;
        overflow-wrap: anywhere;
    }
    .intro-panel p:not(.eyebrow) {
        width: 100%;
        max-width: 100%;
        font-size: 17px;
        overflow-wrap: anywhere;
    }
    .timeline-ruler {
        display: none;
    }
    .arrangement-map {
        width: 330px;
        max-width: calc(100vw - 52px);
        gap: 10px;
        justify-self: start;
    }
    .lane {
        width: 100%;
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 6px 10px;
        align-items: start;
        min-height: 0;
    }
    .lane-name {
        grid-row: 1 / span 8;
        font-size: 10px;
    }
    .region {
        grid-column: 2;
        width: 100%;
        max-width: 100%;
        padding: 0 9px;
        min-height: 32px;
        font-size: 12px;
    }
    .span-3,
    .span-2 {
        grid-column: 2;
    }
    .offset-1,
    .offset-2 {
        grid-column-start: auto;
    }
    .checklist-head .eyebrow { margin-bottom: -8px; }
    .checklist-head h2 {
        font-size: 32px;
    }
    .sequence-list li {
        grid-template-columns: 44px 1fr;
        gap: 8px 16px;
    }
    .sequence-list p {
        grid-column: 2;
        font-size: 16px;
    }
    .post-card {
        grid-template-columns: 1fr;
    }
    .article-rail {
        position: static;
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--paper-line);
    }
    .article-head h1 { font-size: 38px; }
    .gh-content { font-size: 18px; }
}

.home-stage {
    width: min(1320px, calc(100vw - 40px));
    margin: 0 auto;
    padding: clamp(24px, 4vw, 54px) 0 clamp(30px, 5vw, 70px);
}
.visual-hero {
    position: relative;
    min-height: clamp(520px, 70svh, 760px);
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: #0b0f14;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
}
.visual-hero img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 50%;
    filter: saturate(1.08) contrast(1.04) brightness(0.88);
}
.visual-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 9, 11, 0.96) 0%, rgba(7, 9, 11, 0.82) 35%, rgba(7, 9, 11, 0.25) 70%, rgba(7, 9, 11, 0.08) 100%),
        linear-gradient(180deg, rgba(7, 9, 11, 0.1), rgba(7, 9, 11, 0.68));
}
.hero-copy {
    width: min(610px, calc(100% - 44px));
    padding: clamp(42px, 7vw, 92px);
}
.hero-copy .eyebrow {
    margin-bottom: 18px;
}
.hero-copy h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.98;
}
.hero-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 22px 0 0;
    color: #dce3df;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.45;
}
.hero-caption {
    position: absolute;
    left: clamp(28px, 7vw, 92px);
    right: clamp(24px, 4vw, 56px);
    bottom: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: #c7d0cc;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-caption span {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--green) 64%, transparent);
}
.guide-index {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 0 0 clamp(58px, 8vw, 104px);
}
.index-head {
    display: grid;
    grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.45fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 24px;
}
.index-head .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -16px;
}
.index-head h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
}
.index-head p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}
.guide-lines {
    border-top: 1px solid var(--line-strong);
}
.guide-line {
    display: grid;
    grid-template-columns: 140px minmax(260px, 0.48fr) minmax(0, 1fr);
    gap: 22px;
    align-items: baseline;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.line-kicker {
    color: var(--green);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.guide-line h3 {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 32px);
}
.guide-line p {
    margin: 0;
    color: #b8c1bd;
    font-size: 16px;
}

@media (max-width: 860px) {
    .home-stage,
    .guide-index {
        width: calc(100vw - 24px);
    }
    .visual-hero {
        min-height: 610px;
        border-radius: 18px;
    }
    .visual-hero img {
        object-position: 66% 50%;
    }
    .visual-hero::before {
        background:
            linear-gradient(180deg, rgba(7, 9, 11, 0.94) 0%, rgba(7, 9, 11, 0.76) 46%, rgba(7, 9, 11, 0.25) 100%),
            linear-gradient(90deg, rgba(7, 9, 11, 0.74), rgba(7, 9, 11, 0.16));
    }
    .hero-copy {
        width: 100%;
        max-width: 100%;
        padding: 30px 24px 0;
    }
    .hero-copy h1 {
        width: min(300px, calc(100vw - 72px));
        max-width: min(300px, calc(100vw - 72px));
        font-size: 30px;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
    }
    .hero-copy p:not(.eyebrow) {
        width: min(300px, calc(100vw - 72px));
        max-width: min(300px, calc(100vw - 72px));
        font-size: 16px;
        overflow-wrap: break-word;
    }
    .hero-caption {
        left: 24px;
        right: 24px;
        bottom: 22px;
        display: grid;
        gap: 9px;
    }
    .index-head {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .index-head .eyebrow {
        margin-bottom: 0;
    }
    .index-head h2 {
        width: min(310px, calc(100vw - 24px));
        max-width: min(310px, calc(100vw - 24px));
        font-size: 28px;
        overflow-wrap: break-word;
    }
    .index-head p:not(.eyebrow) {
        width: min(310px, calc(100vw - 24px));
        max-width: min(310px, calc(100vw - 24px));
        overflow-wrap: break-word;
    }
    .guide-line {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
    }
}
