* {
    box-sizing: border-box;
}

:root {
    --bg: #040507;
    --surface: #0b0e13;
    --surface-soft: #11151d;
    --surface-card: #121720;
    --surface-muted: #191f2a;
    --text: #f5f7fb;
    --text-soft: rgba(245, 247, 251, 0.82);
    --text-muted: rgba(245, 247, 251, 0.54);
    --text-light: #f5f7fb;
    --line: rgba(255, 255, 255, 0.1);
    --line-light: rgba(255, 255, 255, 0.12);
    --blue: #2a6df6;
    --blue-strong: #1857d8;
    --green: #198754;
    --orange: #c77600;
    --red: #c63c35;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.36);
    --radius: 24px;
    --radius-sm: 16px;
    --radius-pill: 999px;
    --max-width: 1160px;
    --font: Inter, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top, rgba(42, 109, 246, 0.14), transparent 24%),
        linear-gradient(180deg, #020305 0%, #090b11 100%);
    color: var(--text);
    font-family: var(--font);
}

body {
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(6, 8, 13, 0.86);
    border-bottom: 1px solid var(--line-light);
}

.site-header-admin {
    background: rgba(10, 13, 20, 0.94);
}

.site-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 128px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: none;
    color: var(--text-light);
}

.brand-text strong,
.brand-text span {
    display: block;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 13px;
    letter-spacing: 0.16em;
}

.brand-text span {
    font-size: 11px;
    opacity: 0.72;
}

.nav-links,
.nav-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links a,
.nav-user span,
.text-button {
    color: var(--text-light);
    font-size: 14px;
}

.button,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
    transform: translateY(-1px);
}

.button {
    background: #fff;
    color: #05070b;
    box-shadow: 0 16px 32px rgba(255, 255, 255, 0.08);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.button-ghost {
    background: transparent;
    color: var(--text-light);
    border-color: var(--line);
}

.site-header .button-ghost {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.16);
}

.text-button {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.page-shell {
    flex: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px;
}

.flash {
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    border: 1px solid transparent;
}

.flash-success {
    background: rgba(25, 135, 84, 0.16);
    color: #c9f2de;
    border-color: rgba(25, 135, 84, 0.24);
}

.flash-error {
    background: rgba(198, 60, 53, 0.16);
    color: #ffd8d6;
    border-color: rgba(198, 60, 53, 0.24);
}

.flash-info {
    background: rgba(42, 109, 246, 0.16);
    color: #d7e4ff;
    border-color: rgba(42, 109, 246, 0.24);
}

.hero,
.section-card,
.info-card,
.form-card,
.empty-state,
.review-card {
    border-radius: var(--radius);
}

.hero {
    display: grid;
    gap: 18px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.hero-brand {
    background:
        linear-gradient(135deg, rgba(5, 8, 15, 0.98), rgba(13, 21, 35, 0.94)),
        radial-gradient(circle at top right, rgba(42, 109, 246, 0.36), transparent 38%);
    color: var(--text-light);
    box-shadow: var(--shadow-strong);
}

.hero-soft {
    background: rgba(255, 255, 255, 0.92);
}

.hero-copy {
    display: grid;
    gap: 14px;
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: inherit;
    opacity: 0.64;
}

.hero h1,
.section-card h2,
.info-card h2,
.form-card h2,
.review-card h2 {
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.hero h1 {
    font-size: clamp(2.2rem, 9vw, 4.6rem);
}

.section-card h2,
.info-card h2,
.form-card h2,
.review-card h2 {
    font-size: clamp(1.35rem, 4.8vw, 2rem);
}

.lede,
.hero p,
.info-card p,
.review-section p,
.form-card p {
    margin: 0;
    line-height: 1.65;
    font-size: 15px;
    color: inherit;
}

.hero .lede {
    max-width: 56ch;
    opacity: 0.9;
}

.hero-panel,
.section-card,
.info-card,
.form-card,
.empty-state,
.review-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.hero-panel,
.section-card,
.info-card,
.form-card,
.empty-state,
.review-card {
    padding: 22px;
}

.hero-panel-dark {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.hero-panel-logo {
    width: 158px;
    margin-bottom: 18px;
}

.hero-mini-copy {
    margin: 0;
    line-height: 1.65;
    opacity: 0.9;
}

.hero-actions,
.inline-actions,
.footer-links,
.reward-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.info-strip {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: inherit;
}

.hero-soft .info-strip {
    background: rgba(42, 109, 246, 0.08);
    border-color: rgba(42, 109, 246, 0.1);
    color: var(--text);
}

.pill-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.pill-banner span,
.code-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(16, 19, 26, 0.06);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.hero-brand .code-chip,
.hero-brand .pill-banner span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.section-grid,
.card-grid,
.split-grid,
.stack-grid,
.review-grid,
.mini-stat-grid {
    display: grid;
    gap: 18px;
}

.section-step {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: rgba(42, 109, 246, 0.08);
    color: var(--blue-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.landing-minimal .hero-brand {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px 24px;
    background: transparent;
    box-shadow: none;
}

.landing-minimal {
    background:
        radial-gradient(circle at top, rgba(42, 109, 246, 0.18), transparent 24%),
        linear-gradient(180deg, #030406 0%, #090b11 100%);
    color: var(--text-light);
}

.landing-minimal .hero-copy {
    max-width: 760px;
    margin: 0 auto;
    justify-items: center;
}

.landing-minimal .page-shell {
    max-width: none;
    padding: 0 18px;
}

.landing-minimal .hero-actions {
    justify-content: center;
}

.landing-minimal .button {
    min-width: 220px;
}

.hero-wordmark {
    width: min(220px, 52vw);
    margin-bottom: 4px;
}

.landing-minimal .hero-wordmark {
    width: min(240px, 60vw);
    margin-bottom: 12px;
}

.hero-subtle-link {
    margin: -2px 0 0;
    font-size: 14px;
    opacity: 0.8;
}

.hero-subtle-link a {
    color: var(--text-light);
}

.hero-steps {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.02em;
    opacity: 0.72;
}

.landing-minimal .lede {
    max-width: 34ch;
    font-size: clamp(16px, 2.5vw, 18px);
}

.landing-minimal .site-footer {
    margin-top: 0;
    padding: 0 18px 18px;
}

.footer-inner-minimal {
    display: flex;
    justify-content: center;
    padding-top: 0;
    border-top: 0;
}

.footer-inner-minimal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.44);
}

@media (max-width: 719px) {
    .landing-minimal .hero-brand {
        min-height: calc(100vh - 40px);
    }

    .hero-steps {
        line-height: 1.7;
    }
}

.page-band {
    margin: 0 -18px 24px;
    padding: 32px 18px 22px;
    background:
        radial-gradient(circle at top, rgba(42, 109, 246, 0.16), transparent 34%),
        linear-gradient(180deg, #040507 0%, #090b11 100%);
    color: #fff;
}

.page-band-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.page-band-inner h1 {
    margin: 0;
    font-size: clamp(2rem, 8vw, 3.2rem);
    letter-spacing: -0.04em;
}

.page-band-inner p {
    margin: 10px 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 4.2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.band-logo {
    width: 150px;
    margin: 0 auto 16px;
}

.rate-lockup {
    display: grid;
    justify-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.rate-lockup-number {
    font-size: clamp(4.2rem, 22vw, 8.4rem);
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: -0.12em;
    color: #fff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.rate-lockup-copy {
    font-size: clamp(0.9rem, 3.4vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
    padding-left: 0.36em;
}

.rate-lockup-compact {
    margin-bottom: 14px;
}

.rate-lockup-home {
    margin-bottom: 16px;
}

.rate-lockup-home .rate-lockup-number {
    font-size: clamp(3.8rem, 18vw, 6.6rem);
}

.rate-lockup-compact .rate-lockup-number {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
}

.claim-amount {
    margin-top: 0;
}

.claim-page .page-shell {
    max-width: 1200px;
}

.lookup-shell {
    display: grid;
    gap: 18px;
    max-width: 720px;
    margin: 0 auto 24px;
}

.lookup-card {
    background: rgba(18, 23, 32, 0.96);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lookup-card h2 {
    margin: 0 0 18px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.lookup-card-home {
    padding-top: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.lookup-intro {
    margin-bottom: 20px;
    text-align: center;
}

.claim-layout-primary,
.claim-reward-grid {
    max-width: 1120px;
}

.claim-layout-primary {
    max-width: 760px;
}

.claim-side-stack {
    display: grid;
    gap: 18px;
}

.lookup-card-soft {
    background: rgba(24, 30, 40, 0.98);
}

.lookup-form {
    display: grid;
    gap: 12px;
}

.lookup-form-home {
    grid-template-columns: 1fr;
}

.lookup-form input {
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.lookup-form .button,
.lookup-form .button-secondary {
    width: 100%;
}

.lookup-actions {
    margin-top: 16px;
}

.lookup-note,
.lookup-helper,
.lookup-mini-copy,
.lookup-link {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 14px;
}

.field-note {
    margin: -2px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.lookup-link a {
    color: #fff;
}

.status-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #fff;
    display: inline-block;
    margin-right: 10px;
}

.compact-rows {
    display: grid;
    gap: 10px;
}

.compact-rows div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compact-rows div:last-child {
    border-bottom: 0;
}

.compact-rows span {
    color: var(--text-muted);
}

.compact-rows strong {
    text-align: right;
    overflow-wrap: anywhere;
}

.admin-stack {
    max-width: 980px;
    margin-top: 16px;
}

.admin-section {
    display: grid;
    gap: 14px;
}

.admin-section-head {
    display: grid;
    gap: 6px;
    padding: 0 4px;
}

.admin-section-head h2 {
    margin: 0;
    font-size: 22px;
}

.admin-claim-card .inline-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.admin-claim-card .status-inline {
    align-items: flex-start;
}

.admin-review-form {
    margin-top: 14px;
}

.admin-review-form .button,
.admin-review-form .button-secondary {
    width: 100%;
}

.admin-rate-form {
    margin-top: 10px;
}

.qr-panel {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-code {
    width: min(240px, 100%);
    aspect-ratio: 1;
    border-radius: 18px;
    background: #fff;
    padding: 10px;
}

.admin-login-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(42, 109, 246, 0.16), transparent 24%),
        linear-gradient(180deg, #020305 0%, #0a0d13 100%);
}

.admin-login-page .site-footer {
    display: none;
}

.admin-login-page .page-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    min-height: 100vh;
    padding-top: 32px;
    padding-bottom: 32px;
}

.admin-login-shell {
    width: 100%;
}

.admin-login-grid {
    display: grid;
    gap: 20px;
}

.admin-login-brand,
.admin-login-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
}

.admin-login-brand {
    display: grid;
    gap: 18px;
    padding: 32px;
    background:
        radial-gradient(circle at top right, rgba(42, 109, 246, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(18, 23, 32, 0.96) 0%, rgba(10, 14, 21, 0.96) 100%);
}

.admin-login-logo {
    width: min(220px, 70%);
}

.admin-login-eyebrow {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 247, 251, 0.62);
}

.admin-login-brand h1,
.admin-login-card h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.admin-login-brand h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.98;
}

.admin-login-copy {
    margin: 0;
    max-width: 38ch;
    color: var(--text-soft);
    line-height: 1.7;
}

.admin-login-meta {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.admin-login-meta div {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-login-meta span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.admin-login-meta strong {
    font-size: 1rem;
}

.admin-login-card {
    display: grid;
    gap: 16px;
    padding: 32px;
    background: rgba(18, 23, 32, 0.96);
}

.admin-login-form {
    display: grid;
    gap: 14px;
    margin-top: 4px;
}

.admin-login-form .button {
    width: 100%;
}

@media (min-width: 720px) {
    .lookup-form:not(.lookup-form-home) {
        grid-template-columns: 1fr 1fr auto;
        align-items: center;
    }

    .lookup-form input[type='hidden'] {
        display: none;
    }

    .lookup-form:not(.lookup-form-home) .button {
        width: auto;
        min-width: 150px;
    }

    .lookup-form-home {
        grid-template-columns: minmax(280px, 1.3fr) minmax(220px, 1fr) auto;
        align-items: center;
    }

    .lookup-form-home .field-note {
        grid-column: 1 / -1;
    }

    .lookup-card-home {
        padding: 32px;
    }

    .lookup-intro .lookup-helper {
        max-width: 42ch;
        margin-left: auto;
        margin-right: auto;
    }

    .claim-layout-primary {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .claim-reward-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .claim-side-stack {
        align-content: start;
    }

    .admin-review-form {
        grid-template-columns: 1fr;
    }

    .admin-rate-form {
        grid-template-columns: 1fr auto;
    }

    .admin-login-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
        align-items: stretch;
    }

    .admin-login-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.feature-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    line-height: 1.6;
}

.mini-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-stat {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(16, 19, 26, 0.04);
}

.hero-brand .mini-stat,
.hero-panel-dark .mini-stat {
    background: rgba(255, 255, 255, 0.08);
}

.mini-stat strong {
    font-size: 24px;
    line-height: 1;
}

.mini-stat span {
    font-size: 12px;
    opacity: 0.66;
}

@media (max-width: 560px) {
    .admin-claim-card .inline-actions {
        grid-template-columns: 1fr;
    }
}

.form-card form,
.stack,
.review-form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--text-soft);
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

input::placeholder,
textarea::placeholder {
    color: rgba(245, 247, 251, 0.36);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 2px solid rgba(42, 109, 246, 0.36);
    outline-offset: 2px;
}

.helper-text {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.detail-list {
    display: grid;
    gap: 12px;
}

.detail-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.detail-list span {
    color: var(--text-muted);
}

.detail-list strong {
    text-align: right;
}

.claim-item,
.review-section {
    padding: 18px;
    border-radius: var(--radius-sm);
    background: rgba(16, 19, 26, 0.04);
    border: 1px solid var(--line);
}

.claim-item p,
.review-section p {
    margin-top: 8px;
}

.claim-item-head,
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.review-card {
    display: grid;
    gap: 18px;
}

.review-footer {
    display: grid;
    gap: 16px;
}

.review-notes p {
    margin-top: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.badge-verified {
    background: rgba(42, 109, 246, 0.18);
    color: #d7e4ff;
}

.badge-submitted {
    background: rgba(42, 109, 246, 0.18);
    color: #d7e4ff;
}

.badge-approved {
    background: rgba(25, 135, 84, 0.18);
    color: #c9f2de;
}

.badge-rejected {
    background: rgba(198, 60, 53, 0.18);
    color: #ffd8d6;
}

.accent-card {
    background:
        linear-gradient(135deg, rgba(42, 109, 246, 0.08), rgba(16, 19, 26, 0.02)),
        rgba(255, 255, 255, 0.98);
}

.empty-state {
    text-align: center;
    color: var(--text-muted);
}

.site-footer {
    margin-top: 28px;
    padding: 0 18px 28px;
    color: var(--text-light);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 16px;
}

.footer-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
}

.footer-copy {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

.footer-inner-claim {
    grid-template-columns: 1fr;
}

.footer-links a {
    color: var(--text-soft);
    font-size: 14px;
}

@media (min-width: 720px) {
    .brand-text {
        display: block;
    }

    .hero,
    .section-grid,
    .card-grid,
    .split-grid,
    .review-grid,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-footer {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }
}

@media (min-width: 980px) {
    .page-shell,
    .site-nav {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-brand {
        grid-template-columns: 1.35fr 0.95fr;
        align-items: center;
        min-height: 560px;
        padding: 34px;
    }

    .hero-soft {
        grid-template-columns: 1.3fr 0.95fr;
        align-items: center;
    }

    .section-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid,
    .split-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stack-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .review-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mini-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
