/**
 * ReelCash — maroon/black cinematic + reward-board accents
 * Replace poster / phone src in index.html when ./images assets are uploaded.
 */

:root {
    --rc-bg-deep: #070306;
    --rc-bg-mid: #12060a;
    --rc-maroon: #2a0a12;
    --rc-ink: #0a0a0a;
    --rc-text: #f8fafc;
    --rc-muted: #a8a29e;
    --rc-orange: #f97316;
    --rc-orange-deep: #c2410c;
    --rc-purple: #7c3aed;
    --rc-purple-deep: #5b21b6;
    --rc-amber: #facc15;
    --rc-gold-a: #fbbf24;
    --rc-gold-b: #f97316;
    --rc-card: rgba(24, 10, 14, 0.72);
    --rc-line: rgba(248, 250, 252, 0.12);
    --rc-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    --rc-radius-lg: 20px;
    --rc-radius-md: 14px;
    --rc-font-display: "Outfit", system-ui, sans-serif;
    --rc-font-body: "DM Sans", system-ui, sans-serif;
    --rc-max: 1120px;
    --rc-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --rc-nav-h: 72px;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: var(--rc-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--rc-text);
    background: var(--rc-bg-deep);
    min-height: 100vh;
}

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

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

button {
    font: inherit;
    cursor: pointer;
}

.rc-root {
    position: relative;
    overflow-x: hidden;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(249, 115, 22, 0.12), transparent 55%),
        radial-gradient(900px 500px at 90% 10%, rgba(124, 58, 237, 0.12), transparent 50%),
        linear-gradient(180deg, #1a0508 0%, var(--rc-bg-deep) 38%, var(--rc-ink) 100%);
}

.rc-veil {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
}

.rc-veil__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.rc-veil__glow--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px;
    background: #7f1d1d;
}

.rc-veil__glow--2 {
    width: 360px;
    height: 360px;
    top: 40%;
    right: -100px;
    background: var(--rc-purple-deep);
}

.rc-veil__glow--3 {
    width: 300px;
    height: 300px;
    bottom: -40px;
    left: 35%;
    background: var(--rc-orange-deep);
}

.rc-veil__grain {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.rc-wrap {
    width: min(100% - 2.5rem, var(--rc-max));
    margin-inline: auto;
}

/* ---------- Nav ---------- */
.rc-head {
    position: sticky;
    top: 0;
    z-index: 50;
}

.rc-nav {
    transition: background-color 0.25s var(--rc-ease), box-shadow 0.25s var(--rc-ease), border-color 0.25s var(--rc-ease);
    border-bottom: 1px solid transparent;
}

.rc-nav.is-scrolled {
    background: rgba(7, 3, 6, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--rc-line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.rc-nav__bar {
    width: min(100% - 2rem, var(--rc-max));
    margin-inline: auto;
    min-height: var(--rc-nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.5rem;
}

.rc-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.rc-brand:hover {
    opacity: 0.92;
}

.rc-brand__logo {
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(250, 204, 21, 0.2);
}

.rc-brand__logo--sm {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.rc-brand__text {
    font-family: var(--rc-font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.rc-nav__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.rc-nav__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rc-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.rc-nav__links a:hover {
    color: var(--rc-text);
}

.rc-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rc-nav__cta {
    display: none;
}

@media (min-width: 900px) {
    .rc-nav__cta {
        display: inline-flex;
    }

    .rc-nav__links {
        display: flex;
    }
}

@media (max-width: 899px) {
    .rc-nav__links {
        display: none;
    }
}

.rc-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--rc-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--rc-text);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.rc-burger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(248, 250, 252, 0.22);
}

@media (min-width: 900px) {
    .rc-burger {
        display: none;
    }
}

.rc-icon {
    width: 22px;
    height: 22px;
}

.rc-drawer {
    border-top: 1px solid var(--rc-line);
    background: rgba(10, 5, 8, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.rc-drawer ul {
    list-style: none;
    margin: 0;
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.rc-drawer a {
    display: block;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    color: var(--rc-text);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.rc-drawer a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.rc-drawer a:focus-visible,
.rc-nav__links a:focus-visible,
.rc-brand:focus-visible,
.rc-btn:focus-visible {
    outline: 2px solid var(--rc-amber);
    outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.rc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s var(--rc-ease), box-shadow 0.2s var(--rc-ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rc-btn:active {
    transform: translateY(1px);
}

.rc-btn--primary {
    background: linear-gradient(135deg, var(--rc-gold-a), var(--rc-gold-b));
    color: #0a0a0a;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.35);
}

.rc-btn--primary:hover {
    box-shadow: 0 14px 48px rgba(249, 115, 22, 0.45);
}

.rc-btn--gold {
    background: linear-gradient(135deg, #fde68a, var(--rc-gold-b));
    color: #0a0a0a;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 36px rgba(251, 191, 36, 0.35);
}

.rc-btn--gold:hover {
    filter: brightness(1.03);
    box-shadow: 0 16px 44px rgba(251, 191, 36, 0.45);
}

.rc-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--rc-line);
    color: var(--rc-text);
}

.rc-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.rc-btn--outline {
    background: transparent;
    border-color: rgba(248, 250, 252, 0.35);
    color: var(--rc-text);
}

.rc-btn--outline:hover {
    border-color: rgba(248, 250, 252, 0.6);
    background: rgba(255, 255, 255, 0.04);
}

.rc-btn--block {
    width: 100%;
}

.rc-btn--wide {
    min-width: 200px;
}

.rc-btn__icon {
    width: 1.1rem;
    height: 1.1rem;
}

/* Apple mark for App Store CTAs (not the Lucide generic apple). */
.rc-appstore-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    height: auto;
}

.rc-appstore-icon svg {
    display: block;
    width: 1.05rem;
    height: 1.32rem;
}

/* ---------- Hero ---------- */
.rc-hero {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.rc-hero__backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.rc-hero__bgimg {
    position: absolute;
    width: auto;
    max-width: min(520px, 55vw);
    height: auto;
    border-radius: 24px;
    opacity: 0.22;
    filter: blur(2px) saturate(1.1);
    box-shadow: var(--rc-shadow);
}

.rc-hero__bgimg--a {
    top: 6%;
    left: -6%;
    transform: rotate(-8deg);
}

.rc-hero__bgimg--b {
    top: 18%;
    right: -8%;
    transform: rotate(10deg);
}

.rc-hero__bgimg--c {
    bottom: -6%;
    left: 22%;
    transform: rotate(4deg);
    opacity: 0.16;
}

.rc-hero__stage {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, calc(var(--rc-max) + 40px));
    margin-inline: auto;
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.rc-hero__slant {
    display: grid;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    transform: skewY(-2.5deg);
    padding-block: clamp(2rem, 6vw, 4rem);
}

@media (min-width: 960px) {
    .rc-hero__slant {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 2rem 3rem;
    }
}

.rc-hero__copy,
.rc-hero__device {
    transform: skewY(2.5deg);
}

.rc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--rc-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--rc-muted);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rc-eyebrow--dim {
    background: rgba(0, 0, 0, 0.25);
}

.rc-eyebrow__icon {
    width: 1rem;
    height: 1rem;
    color: var(--rc-amber);
}

.rc-hero__title {
    margin: 0 0 1rem;
    font-family: var(--rc-font-display);
    font-weight: 800;
    font-size: clamp(2.25rem, 5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.45);
}

.rc-hero__title-accent {
    background: linear-gradient(90deg, #fff, #fecdd3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rc-hero__lead {
    margin: 0 0 1.5rem;
    max-width: 34rem;
    color: #d6d3d1;
    font-size: 1.05rem;
}

.rc-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.rc-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #0a0a0a;
}

.rc-pill--orange {
    background: var(--rc-orange);
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.45);
}

.rc-pill--purple {
    background: #a78bfa;
    color: #1e1030;
    box-shadow: 0 0 24px rgba(167, 139, 250, 0.45);
}

.rc-pill--amber {
    background: var(--rc-amber);
    box-shadow: 0 0 24px rgba(250, 204, 21, 0.35);
}

.rc-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rc-hero__device {
    display: flex;
    justify-content: center;
    position: relative;
}

.rc-orbit {
    position: absolute;
    inset: 8% 10% auto 10%;
    aspect-ratio: 1;
    pointer-events: none;
}

.rc-orbit__ring {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(248, 250, 252, 0.18);
    animation: rc-spin 48s linear infinite;
}

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

@keyframes rc-spin {
    to {
        transform: rotate(360deg);
    }
}

.rc-phone {
    position: relative;
    width: min(280px, 78vw);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.65));
}

@media (min-width: 960px) {
    .rc-phone {
        width: min(300px, 32vw);
    }
}

.rc-phone__shine {
    position: absolute;
    inset: 6% 8%;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%);
    pointer-events: none;
}

.rc-phone__frame {
    border-radius: 36px;
    padding: 10px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.rc-phone__notch {
    height: 22px;
    width: 38%;
    margin: 0 auto 8px;
    border-radius: 0 0 16px 16px;
    background: #0a0a0a;
}

.rc-phone__screen {
    border-radius: 26px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(0, 0, 0, 0.6);
}

.rc-phone__img {
    width: 100%;
    height: auto;
}

/* ---------- Strip / marquee ---------- */
.rc-strip {
    position: relative;
    z-index: 1;
    scroll-margin-top: calc(var(--rc-nav-h) + 12px);
}

.rc-features .rc-strip {
    padding-block: 0 clamp(2rem, 5vw, 3.5rem);
}

.rc-strip__head {
    margin-bottom: 1.75rem;
    max-width: 46rem;
}

.rc-strip__title {
    margin: 0 0 0.75rem;
    font-family: var(--rc-font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    letter-spacing: -0.02em;
}

.rc-strip__sub {
    margin: 0;
    color: var(--rc-muted);
}

.rc-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.rc-marquee__track {
    display: flex;
    gap: 1.25rem;
    padding: 0.5rem 1.25rem 1rem;
    width: max-content;
}

.rc-card {
    position: relative;
    flex: 0 0 auto;
    width: min(260px, 72vw);
    scroll-snap-align: center;
    border-radius: var(--rc-radius-md);
    overflow: hidden;
    background: var(--rc-card);
    border: 1px solid var(--rc-line);
    transition: transform 0.25s var(--rc-ease), box-shadow 0.25s var(--rc-ease);
    cursor: pointer;
}

.rc-card:hover {
    transform: translateY(-6px) rotate(-2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.rc-card--tilt {
    transform: rotate(-6deg);
}

.rc-card--tilt-alt {
    transform: rotate(5deg);
}

.rc-card--tilt:hover,
.rc-card--tilt-alt:hover {
    transform: translateY(-6px) rotate(-1deg);
}

.rc-card img {
    width: 100%;
    height: auto;
}

.rc-card__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.65rem 0.75rem;
    font-size: 0.72rem;
    color: #e7e5e4;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

/* ---------- Features milestone board ---------- */
.rc-features {
    position: relative;
    z-index: 1;
    padding-block: clamp(3.5rem, 8vw, 6rem);
    scroll-margin-top: calc(var(--rc-nav-h) + 12px);
}

.rc-section-head {
    margin-bottom: 2rem;
    max-width: 40rem;
}

.rc-section-title {
    margin: 0.35rem 0 0;
    font-family: var(--rc-font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    letter-spacing: -0.02em;
}

.rc-milestones {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .rc-milestones {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rc-milestones {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rc-tile {
    position: relative;
    padding: 1.35rem 1.25rem 1.5rem;
    border-radius: var(--rc-radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35));
    border: 1px solid var(--rc-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, transform 0.2s var(--rc-ease);
    cursor: default;
}

.rc-tile:hover {
    border-color: rgba(248, 250, 252, 0.22);
    transform: translateY(-2px);
}

.rc-tile--accent {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.35), rgba(10, 5, 8, 0.9));
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rc-tile__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--rc-amber);
    margin-bottom: 1rem;
}

.rc-tile__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.rc-tile--accent .rc-tile__icon {
    color: #ede9fe;
}

.rc-tile__title {
    margin: 0 0 0.5rem;
    font-family: var(--rc-font-display);
    font-size: 1.05rem;
    font-weight: 700;
}

.rc-tile__text {
    margin: 0;
    color: #d6d3d1;
    font-size: 0.92rem;
}

/* ---------- Download ---------- */
.rc-download {
    position: relative;
    z-index: 1;
    padding-block: clamp(3rem, 7vw, 4.5rem);
}

.rc-download__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 28px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: radial-gradient(800px 200px at 10% 0%, rgba(251, 191, 36, 0.18), transparent 55%),
        linear-gradient(135deg, rgba(42, 10, 18, 0.95), rgba(10, 5, 8, 0.98));
    box-shadow: var(--rc-shadow);
}

@media (min-width: 768px) {
    .rc-download__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.rc-download__title {
    margin: 0 0 0.5rem;
    font-family: var(--rc-font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    letter-spacing: -0.02em;
}

.rc-download__lead {
    margin: 0;
    color: var(--rc-muted);
    max-width: 28rem;
}

.rc-download__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ---------- Footer ---------- */
.rc-foot {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--rc-line);
    padding-block: 2.5rem 2rem;
    background: rgba(0, 0, 0, 0.35);
}

.rc-foot__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rc-foot__grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }

    .rc-foot__copy {
        grid-column: 1 / -1;
    }
}

.rc-foot__brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.rc-foot__brand-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rc-foot__name {
    font-family: var(--rc-font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.rc-foot__tag {
    margin: 0;
    color: var(--rc-muted);
    font-size: 0.92rem;
    max-width: 28rem;
}

.rc-foot__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rc-foot__links a {
    color: #e7e5e4;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rc-foot__links a:hover {
    color: var(--rc-amber);
}

.rc-foot__copy {
    margin: 0;
    color: #78716c;
    font-size: 0.85rem;
}

/* ---------- Modal ---------- */
.rc-modal[hidden] {
    display: none;
}

.rc-modal:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
}

.rc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    cursor: pointer;
}

.rc-modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 420px);
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: var(--rc-radius-lg);
    background: linear-gradient(180deg, #1a0c10, #0a0506);
    border: 1px solid var(--rc-line);
    box-shadow: var(--rc-shadow);
    text-align: center;
}

.rc-modal__x {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--rc-line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--rc-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.rc-modal__x:hover {
    background: rgba(255, 255, 255, 0.1);
}

.rc-modal__x svg {
    width: 1.1rem;
    height: 1.1rem;
}

.rc-modal__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(250, 204, 21, 0.12);
    color: var(--rc-amber);
}

.rc-modal__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.rc-modal__title {
    margin: 0 0 0.5rem;
    font-family: var(--rc-font-display);
    font-size: 1.35rem;
    font-weight: 800;
}

.rc-modal__text {
    margin: 0 0 1.25rem;
    color: var(--rc-muted);
    font-size: 0.95rem;
}
