:root {
    color-scheme: light;
    --page-bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --text: #1e293b;
    --text-strong: #0f172a;
    --muted: #64748b;
    --muted-soft: #94a3b8;
    --line: #e2e8f0;
    --line-strong: #cbd5e1;
    --blue: #3b82f6;
    --blue-dark: #1d4ed8;
    --blue-soft: #eff6ff;
    --green: #15803d;
    --green-soft: #dcfce7;
    --dark: #18181b;
    --dark-hover: #27272a;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--page-bg);
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--page-bg);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    padding: 1rem 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue);
    flex: 0 0 auto;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-strong);
}

.hero {
    padding: 7rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--page-bg) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge,
.eyebrow,
.release-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #bfdbfe;
    border-radius: 9999px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge svg,
.release-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    margin: 0 0 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 span,
.release-hero-title span {
    color: var(--blue);
}

.hero p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--muted);
    font-size: 1.25rem;
}

.hero-buttons,
.cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0.625rem 1.25rem;
    border: 0;
    border-radius: 8px;
    background: var(--dark);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn:hover,
.button:hover {
    background: var(--dark-hover);
}

.btn-primary {
    background: var(--dark);
    color: #ffffff;
}

.btn-secondary,
.button-secondary {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
}

.btn-secondary:hover,
.button-secondary:hover {
    border-color: var(--line-strong);
    background: var(--page-bg);
}

.btn-large {
    min-height: 50px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.download-info {
    margin: 1rem 0 0;
    color: var(--muted-soft);
    font-size: 0.875rem;
}

.teaser-page {
    position: relative;
    overflow: clip;
}

.teaser-hero {
    position: relative;
    padding: 5.5rem 1.5rem 3rem;
    color: #f8fafc;
    background:
        radial-gradient(circle at top, rgba(56, 189, 248, 0.22), transparent 28rem),
        linear-gradient(180deg, #06131f 0%, #071a26 45%, #0b2231 100%);
}

.teaser-hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.teaser-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.75;
}

.teaser-orb-primary {
    top: 7rem;
    left: max(-4rem, 10vw);
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.65) 0%, rgba(34, 211, 238, 0) 72%);
    animation: teaserFloat 9s ease-in-out infinite;
}

.teaser-orb-secondary {
    right: 6vw;
    bottom: 4rem;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(59, 130, 246, 0) 72%);
    animation: teaserFloat 12s ease-in-out infinite reverse;
}

.teaser-grid-glow {
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background:
        linear-gradient(180deg, rgba(8, 15, 26, 0) 0%, rgba(8, 15, 26, 0.82) 100%),
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(0deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: auto, 4rem 4rem, 4rem 4rem;
    transform: perspective(30rem) rotateX(72deg) scale(1.4);
    transform-origin: center bottom;
    opacity: 0.55;
}

.teaser-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.9fr);
    gap: 2rem;
    align-items: end;
    max-width: 1200px;
    margin: 0 auto;
}

.teaser-copy {
    max-width: 42rem;
}

.teaser-badge {
    margin-bottom: 1rem;
    border-color: rgba(125, 211, 252, 0.36);
    background: rgba(8, 47, 73, 0.72);
    color: #bae6fd;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.12);
}

.teaser-kicker {
    margin: 0 0 0.75rem;
    color: #38bdf8;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.teaser-title {
    margin: 0;
    color: #f8fafc;
    font-size: clamp(3.8rem, 10vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.teaser-title span {
    display: block;
    color: #67e8f9;
    text-shadow: 0 0 24px rgba(103, 232, 249, 0.35);
}

.teaser-description {
    max-width: 40rem;
    margin: 1.5rem 0 0;
    color: rgba(226, 232, 240, 0.86);
    font-size: 1.14rem;
}

.teaser-actions {
    justify-content: flex-start;
    margin-top: 2rem;
}

.teaser-actions .btn-primary {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #eff6ff;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
}

.teaser-actions .btn-primary:hover {
    background: linear-gradient(135deg, #22d3ee, #1d4ed8);
}

.teaser-actions .btn-secondary {
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.48);
    color: #e2e8f0;
}

.teaser-actions .btn-secondary:hover {
    border-color: rgba(186, 230, 253, 0.55);
    background: rgba(15, 23, 42, 0.72);
}

.teaser-bullets {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 1.75rem 0 0;
    list-style: none;
}

.teaser-bullets li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(226, 232, 240, 0.85);
}

.teaser-bullets li::before {
    content: "";
    position: absolute;
    top: 0.58rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #67e8f9, #3b82f6);
    box-shadow: 0 0 12px rgba(103, 232, 249, 0.6);
}

.launch-panel {
    padding: 1.5rem;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(7, 26, 38, 0.92) 0%, rgba(9, 31, 47, 0.82) 100%);
    box-shadow: 0 28px 55px rgba(2, 8, 23, 0.32);
    backdrop-filter: blur(14px);
}

.launch-panel-head {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #e0f2fe;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.launch-status-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: #22d3ee;
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.8);
    animation: teaserPulse 2.2s ease-out infinite;
}

.launch-meter {
    margin-top: 1rem;
    padding: 0.35rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.48);
}

.launch-meter-bar {
    display: block;
    width: 82%;
    height: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #22d3ee 0%, #38bdf8 45%, #2563eb 100%);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.launch-stats {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 0;
}

.launch-stats div {
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.launch-stats dt {
    color: #7dd3fc;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.launch-stats dd {
    margin: 0.4rem 0 0;
    color: #f8fafc;
    font-size: 1.05rem;
    font-weight: 600;
}

.launch-note {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.54);
    color: rgba(226, 232, 240, 0.82);
}

.teaser-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 0;
}

.teaser-section-wide {
    padding-bottom: 4.5rem;
}

.teaser-section-heading {
    max-width: 48rem;
}

.teaser-section-heading h2,
.teaser-story h2 {
    margin: 0.6rem 0 0;
    color: var(--text-strong);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.teaser-section-heading p,
.teaser-story p {
    color: var(--muted);
    font-size: 1.05rem;
}

.teaser-eyebrow {
    margin-bottom: 0;
    border-color: #bfdbfe;
}

.teaser-card-grid,
.teaser-dual-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.teaser-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.teaser-card {
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.14), transparent 9rem),
        #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.teaser-card-accent {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 10rem),
        linear-gradient(180deg, #0f172a 0%, #111c31 100%);
    color: #e2e8f0;
}

.teaser-card-accent h3,
.teaser-card-accent p {
    color: inherit;
}

.teaser-card-label {
    color: #38bdf8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.teaser-card h3 {
    margin: 0.8rem 0 0.4rem;
    font-size: 1.25rem;
}

.teaser-card p {
    margin: 0;
    color: var(--muted);
}

.hype-strip {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.16);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(239, 246, 255, 0.9), rgba(224, 242, 254, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hype-strip p {
    margin: 0;
    color: #0f172a;
    text-align: center;
    font-weight: 600;
}

.teaser-dual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.teaser-story {
    padding: 1.8rem;
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.teaser-story-contrast {
    background: linear-gradient(180deg, #082f49 0%, #0f172a 100%);
    border-color: rgba(125, 211, 252, 0.16);
}

.teaser-story-contrast h2,
.teaser-story-contrast p {
    color: #e2e8f0;
}

@keyframes teaserFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -1.4rem, 0);
    }
}

@keyframes teaserPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.8);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }
}

.panel {
    width: min(900px, calc(100vw - 2rem));
    margin: 4rem auto 0;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.panel.hero {
    text-align: center;
}

.policy-shell {
    padding: 3rem 1.5rem 4rem;
}

.policy-card {
    width: min(960px, calc(100vw - 2rem));
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.policy-content {
    color: var(--text);
}

.policy-content h1,
.policy-content h2,
.policy-content h3 {
    color: var(--text-strong);
    line-height: 1.2;
}

.policy-content h1 {
    margin-top: 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.policy-content h2 {
    margin-top: 2rem;
    font-size: 1.35rem;
}

.policy-content p,
.policy-content li {
    color: var(--muted);
}

.policy-content ul {
    padding-left: 1.25rem;
}

.policy-content code {
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    background: var(--surface-soft);
    color: var(--text-strong);
}

.policy-content a {
    color: var(--blue-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15rem;
}

.stat {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--page-bg);
}

.stat-label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--muted-soft);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.release-page-hero {
    padding: 5rem 1.5rem;
    background: var(--surface);
    text-align: center;
}

.release-hero-container {
    max-width: 700px;
    margin: 0 auto;
}

.release-hero-title {
    margin: 0 0 1.5rem;
    color: var(--text-strong);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    text-wrap: balance;
}

.release-hero-description {
    max-width: 550px;
    margin: 0 auto 2rem;
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

.release-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.release-hero-btn {
    min-height: 54px;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.release-hero-meta {
    color: var(--muted-soft);
    font-size: 0.875rem;
}

.release-archive {
    padding: 5rem 1.5rem;
    background: var(--page-bg);
}

.release-archive-container {
    max-width: 900px;
    margin: 0 auto;
}

.release-archive-header {
    margin-bottom: 3rem;
    text-align: center;
}

.release-archive-header h2 {
    margin: 0 0 0.5rem;
    color: var(--text-strong);
    font-size: 2rem;
    font-weight: 700;
}

.release-archive-header p {
    margin: 0;
    color: var(--muted);
}

.release-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.release-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.release-card::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 0;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    content: "";
    transform: translateY(-50%);
    transition: height 0.2s;
}

.release-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.release-card:hover::before {
    height: 40%;
}

.release-card.latest {
    border-color: #bfdbfe;
    background: linear-gradient(135deg, #fafbff 0%, #f0f7ff 100%);
}

.release-card.latest::before {
    height: 60%;
}

.release-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.release-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--surface-soft), var(--line));
    flex: 0 0 auto;
}

.release-card.latest .release-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.release-icon svg {
    width: 20px;
    height: 20px;
    color: var(--muted);
}

.release-card.latest .release-icon svg {
    color: #ffffff;
}

.release-details {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.25rem;
}

.release-header-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.release-version {
    color: var(--text-strong);
    font-size: 1.0625rem;
    font-weight: 700;
}

.release-latest-badge {
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--green-soft), #bbf7d0);
    color: var(--green);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.release-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    color: var(--muted);
    font-size: 0.8125rem;
    flex-wrap: wrap;
}

.release-meta svg {
    width: 14px;
    height: 14px;
    color: var(--muted-soft);
}

.release-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-download {
    min-height: 40px;
    padding: 0.625rem 1.125rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
}

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

.btn-download svg {
    width: 16px;
    height: 16px;
}

.btn-info {
    width: 40px;
    min-height: 40px;
    padding: 0.625rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
}

.btn-info:hover {
    border-color: var(--line-strong);
    background: var(--page-bg);
    color: var(--text);
}

.btn-info svg {
    width: 18px;
    height: 18px;
}

.release-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.release-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.release-modal {
    width: min(550px, 100%);
    max-height: 80vh;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface);
    transform: scale(0.95);
    transition: transform 0.2s;
}

.release-modal-overlay.active .release-modal {
    transform: scale(1);
}

.release-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.release-modal-header h3 {
    margin: 0;
    color: var(--text-strong);
    font-size: 1.25rem;
    font-weight: 700;
}

.release-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.release-modal-close:hover {
    background: var(--surface-soft);
}

.release-modal-close svg {
    width: 20px;
    height: 20px;
}

.release-modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1.5rem;
}

.release-modal-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.release-modal-body h4 {
    margin: 0 0 0.75rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

.release-modal-notes {
    margin: 0;
    color: #475569;
    font-family: inherit;
    font-size: 0.9375rem;
    white-space: pre-wrap;
    word-break: break-word;
}

code {
    padding: 0.1rem 0.25rem;
    border-radius: 4px;
    background: var(--surface-soft);
}

@media (max-width: 768px) {
    .header-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .teaser-hero {
        padding: 4.5rem 1.5rem 2.5rem;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .hero h1,
    .release-hero-title {
        font-size: 2rem;
    }

    .hero p,
    .release-hero-description {
        font-size: 1rem;
    }

    .hero-buttons,
    .cta-row {
        align-items: center;
        flex-direction: column;
    }

    .teaser-actions {
        align-items: stretch;
    }

    .teaser-actions .btn {
        width: 100%;
    }

    .release-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .release-card::before {
        display: none;
    }

    .release-info {
        gap: 0.75rem;
    }

    .release-icon {
        width: 40px;
        height: 40px;
    }

    .release-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-download {
        flex: 1 1 auto;
    }

    .policy-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
}

@media (max-width: 980px) {
    .teaser-shell,
    .teaser-card-grid,
    .teaser-dual-grid {
        grid-template-columns: 1fr;
    }

    .launch-panel {
        max-width: 34rem;
    }
}
