/* Shared by the edition pages and common resources. No external fonts required. */
:root {
    color-scheme: light;
    --paper: #f7f7f2;
    --surface: #ffffff;
    --ink: #192d30;
    --muted: #526368;
    --line: #d4ddda;
    --accent: #9c2450;
    --home: #215e91;
    --home-wash: #edf3f9;
    --studio: #156459;
    --studio-wash: #eaf3ee;
    --radius: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 100%;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-size: 1.0625rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body,
button,
input {
    font-family: inherit;
}
h1,
h2,
h3,
p,
figure {
    margin: 0;
}
h1,
h2,
h3 {
    line-height: 1.12;
    letter-spacing: -0.035em;
    text-wrap: balance;
}
h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.7rem);
    font-weight: 650;
}
h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    font-weight: 650;
}
h3 {
    font-size: 1.35rem;
    font-weight: 650;
}
p + p {
    margin-top: 1rem;
}
a {
    color: var(--accent);
    text-underline-offset: 0.22em;
    text-decoration-thickness: 1px;
}
a:hover {
    text-decoration-thickness: 2px;
}
a,
button,
summary {
    -webkit-tap-highlight-color: transparent;
}
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
    border-radius: 3px;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
ul,
ol {
    padding-left: 1.3rem;
}
li + li {
    margin-top: 0.45rem;
}
code {
    font-size: 0.9em;
    overflow-wrap: anywhere;
}
strong {
    font-weight: 650;
}
[id] {
    scroll-margin-top: 2rem;
}
[hidden] {
    display: none !important;
}
.shell {
    width: min(1120px, calc(100% - 3rem));
    margin-inline: auto;
}
.narrow {
    max-width: 800px;
}
.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: white;
    background: var(--ink);
    transform: translateY(-200%);
}
.skip-link:focus {
    transform: none;
}
.site-header {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}
.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 750;
    letter-spacing: -0.05em;
    flex-shrink: 0;
}
.brand-symbol {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: var(--ink);
    border-radius: 9px;
}
.brand-symbol svg {
    width: 25px;
    height: 25px;
    fill: white;
}
.primary-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 1.4rem;
    font-size: 0.9375rem;
}
.primary-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--muted);
    text-decoration: none;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}
.primary-nav .nav-cta {
    padding: 0.35rem 1rem;
    border: 1px solid var(--ink);
    border-radius: 6px;
    color: var(--ink);
}
.hero {
    padding-block: clamp(3rem, 7vw, 5.5rem) 2.75rem;
}
.eyebrow {
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.eyebrow.home,
.text-home {
    color: var(--home);
}
.eyebrow.studio,
.text-studio {
    color: var(--studio);
}
.status-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.2rem 0.6rem;
    border: 1px solid currentColor;
    border-radius: 99px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    vertical-align: middle;
}
.availability {
    margin-top: 1.25rem;
    color: var(--studio);
    font-size: 0.9375rem;
    font-weight: 650;
}
.hero .lede {
    max-width: 680px;
    margin-top: 1.5rem;
    font-size: clamp(1.125rem, 1.7vw, 1.3rem);
    line-height: 1.6;
    color: var(--muted);
}
.hero-centered {
    text-align: center;
}
.hero-centered .lede {
    margin-inline: auto;
}
.hero-centered h1 {
    max-width: 840px;
    margin-inline: auto;
}
.hero .actions {
    margin-top: 1.75rem;
}
.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.4rem;
}
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0.65rem 1.2rem;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--ink);
    color: white;
    font-size: 1rem;
    font-weight: 650;
    text-decoration: none;
    line-height: 1.4;
    text-align: center;
}
.button:hover {
    background: #304a4f;
    color: white;
    text-decoration: none;
}
.button.secondary {
    background: transparent;
    color: var(--ink);
}
.button.secondary:hover {
    background: #e5ebe8;
}
.button.home {
    background: var(--home);
    border-color: var(--home);
}
.button.studio {
    background: var(--studio);
    border-color: var(--studio);
}
.button.home:hover {
    background: #184971;
}
.button.studio:hover {
    background: #0f4e46;
}
.text-link {
    font-weight: 650;
}
.edition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.edition {
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 3.5vw, 2.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}
.edition.home {
    background: var(--home-wash);
    border-top: 4px solid var(--home);
}
.edition.studio {
    background: var(--studio-wash);
    border-top: 4px solid var(--studio);
}
.edition .eyebrow {
    margin-bottom: 0.8rem;
}
.edition h2 {
    font-size: 2.5rem;
}
.edition .edition-summary {
    margin-top: 1rem;
    font-size: 1.15rem;
    line-height: 1.5;
}
.edition ul {
    padding: 0;
    list-style: none;
    margin: 1.5rem 0 2rem;
}
.edition li {
    position: relative;
    padding-left: 1.4rem;
}
.edition li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    font-weight: 700;
}
.edition .actions {
    margin-top: auto;
}
.edition-note {
    margin-top: 1.2rem;
    color: var(--muted);
    font-size: 0.875rem;
}
.section {
    padding-block: clamp(3rem, 6vw, 5rem);
}
.section + .section {
    border-top: 1px solid var(--line);
}
.section-intro {
    max-width: 700px;
    margin-bottom: 2.25rem;
}
.section-intro p {
    margin-top: 1rem;
    color: var(--muted);
}
.shared-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding-block: 2rem;
    border-bottom: 1px solid var(--line);
}
.shared-strip h2 {
    font-size: 1.0625rem;
    letter-spacing: -0.015em;
}
.shared-strip p {
    margin-top: 0.4rem;
    font-size: 0.9375rem;
    color: var(--muted);
}
.table-region {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
}
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9375rem;
    line-height: 1.5;
}
caption {
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-weight: 650;
    background: #edf0ec;
}
th,
td {
    padding: 0.95rem 1.25rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
thead th {
    font-weight: 700;
    background: #f2f5f2;
}
tbody th {
    font-weight: 550;
    width: 49%;
}
tbody tr:last-child > * {
    border-bottom: 0;
}
.yes {
    color: var(--studio);
    font-weight: 650;
}
.not-included {
    color: var(--muted);
}
.table-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--muted);
}
.resource-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.resource-links a {
    color: var(--ink);
    font-weight: 650;
}
.resource-links p {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.9375rem;
}
.resource-links h3 {
    font-size: 1.2rem;
}
.product-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}
.product-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
}
.product-hero .lede {
    font-size: 1.2rem;
}
.product-shot {
    display: grid;
    place-items: center;
    padding: 1.75rem;
    background: var(--home-wash);
    border: 1px solid #d4e1eb;
    border-radius: var(--radius);
}
.product-shot.studio {
    background: var(--studio-wash);
    border-color: #d2e4d8;
}
.product-shot img {
    width: min(100%, 280px);
    border-radius: 10px;
    box-shadow: 0 12px 28px #192d3020;
}
.product-shot figcaption {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}
.product-shot a:focus-visible {
    outline-offset: 8px;
}
.quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0;
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid var(--line);
}
.quick-facts dt {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.4rem;
}
.quick-facts dd {
    margin: 0;
    font-size: 1rem;
}
.feature-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    padding-block: 2rem;
    border-top: 1px solid var(--line);
}
.feature-row h3 {
    font-size: 1.5rem;
}
.feature-row p {
    color: var(--muted);
}
.feature-row ul {
    margin-block: 1rem 0;
}
.feature-row:first-of-type {
    padding-top: 0;
    border-top: 0;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
}
.feature-grid h3 {
    margin-bottom: 0.75rem;
}
.feature-grid p {
    color: var(--muted);
}
.callout {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.callout p {
    margin-top: 1rem;
    color: var(--muted);
}
.callout .actions {
    margin-top: 1.5rem;
}
.detail-list {
    margin: 0;
}
.detail-list > div {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 2rem;
    padding-block: 1.2rem;
    border-top: 1px solid var(--line);
}
.detail-list dt {
    font-weight: 650;
}
.detail-list dd {
    margin: 0;
    color: var(--muted);
}
.jump-links {
    display: flex;
    gap: 0.3rem 1.25rem;
    flex-wrap: wrap;
    padding-block: 1rem;
    border-block: 1px solid var(--line);
    font-size: 0.9375rem;
}
.jump-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: setup;
}
.steps li {
    counter-increment: setup;
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding-block: 1.8rem;
    margin: 0;
    border-top: 1px solid var(--line);
}
.steps li::before {
    content: counter(setup, decimal-leading-zero);
    color: var(--muted);
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}
.steps p {
    margin-top: 0.7rem;
    color: var(--muted);
}
details {
    border-top: 1px solid var(--line);
    padding-block: 1.25rem;
}
details:last-child {
    border-bottom: 1px solid var(--line);
}
summary {
    cursor: pointer;
    font-weight: 650;
    padding-right: 0.5rem;
    min-height: 32px;
}
details p,
details ul {
    margin-top: 1rem;
    color: var(--muted);
}
.release-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.release-list li {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    padding-block: 2.5rem;
    border-top: 1px solid var(--line);
    margin: 0;
}
.release-list time {
    font-size: 0.9375rem;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}
.release-list h2 {
    font-size: 1.65rem;
}
.release-list p {
    margin-block: 0.85rem;
    color: var(--muted);
}
.release-label {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: var(--studio);
    font-weight: 650;
}
.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 1rem;
}
.footer-inner {
    padding-block: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--muted);
}
.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
}
.footer-inner a {
    color: var(--muted);
}
.footer-inner nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
}
.footer-credit {
    margin-top: 0.6rem;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@media (max-width: 850px) {
    .header-inner {
        flex-wrap: wrap;
        padding-block: 1.1rem;
        gap: 0.5rem;
    }
    .primary-nav {
        gap: 0.25rem 1.2rem;
    }
    .product-hero {
        gap: 2rem;
        grid-template-columns: 1.1fr 0.9fr;
    }
    .product-shot {
        padding: 1.1rem;
    }
    .resource-links {
        gap: 1.5rem;
    }
}
@media (max-width: 640px) {
    body {
        font-size: 1rem;
    }
    .shell {
        width: calc(100% - 2rem);
    }
    .header-inner {
        display: block;
    }
    .primary-nav {
        margin-top: 0.6rem;
        gap: 0.1rem 1.15rem;
        font-size: 0.875rem;
    }
    .primary-nav .nav-cta {
        padding-inline: 0.65rem;
    }
    .hero {
        padding-block: 2.75rem 2rem;
    }
    .hero-centered {
        text-align: left;
    }
    .hero h1 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }
    .edition-grid,
    .product-hero,
    .feature-row,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .edition {
        padding: 1.6rem;
    }
    .edition h2 {
        font-size: 2.2rem;
    }
    .edition .button {
        width: 100%;
    }
    .edition .actions {
        display: block;
    }
    .edition .actions a + a {
        display: inline-block;
        margin-top: 1rem;
    }
    .shared-strip,
    .quick-facts,
    .resource-links {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .shared-strip {
        padding-block: 1.75rem;
    }
    .feature-row {
        gap: 1rem;
    }
    .product-shot img {
        width: 240px;
    }
    th,
    td {
        padding: 0.85rem 0.65rem;
    }
    table {
        font-size: 0.8125rem;
    }
    tbody th {
        width: 45%;
    }
    .detail-list > div {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .release-list li {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding-block: 1.8rem;
    }
    .release-label {
        display: inline;
        margin-left: 0.8rem;
    }
    .footer-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .callout {
        padding: 1.5rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}
@media (forced-colors: active) {
    .button,
    .edition,
    .callout {
        border: 1px solid ButtonText;
    }
    .brand-symbol svg {
        fill: CanvasText;
    }
}
@media print {
    .site-header,
    .site-footer,
    .skip-link,
    .jump-links {
        display: none;
    }
    body {
        background: white;
        color: black;
        font-size: 10pt;
    }
    .shell {
        width: 100%;
    }
    .section {
        padding-block: 1.5rem;
    }
    .hero {
        padding-block: 0 1.5rem;
    }
    .edition,
    .callout,
    .feature-row,
    tr {
        break-inside: avoid;
    }
    .table-region {
        overflow: visible;
    }
    .product-shot img {
        max-height: 300px;
        width: auto;
    }
}
