:root {
    --bg: #050505;
    --bg-elevated: #0f0f10;
    --panel: rgba(255, 255, 255, 0.05);
    --panel-strong: rgba(255, 255, 255, 0.1);
    --text: #f4f1e8;
    --muted: #bbb4a5;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #f0ea18;
    --accent-deep: #c8b800;
    --accent-soft: rgba(240, 234, 24, 0.18);
    --pink: #e8267a;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(232, 38, 122, 0.22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(240, 234, 24, 0.18), transparent 24%),
        linear-gradient(180deg, #090909 0%, #030303 100%);
    font: 400 16px/1.6 "Avenir Next", "Segoe UI", sans-serif;
}

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

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

.site-shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.site-header,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    margin-bottom: 44px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(16px);
}

.wordmark,
h1,
h2,
h3,
.button {
    font-family: "Arial Black", "Avenir Next Condensed", "Franklin Gothic Heavy", sans-serif;
    letter-spacing: 0.02em;
}

.wordmark {
    font-size: 1rem;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: var(--muted);
}

.site-nav a:hover,
.footer-links a:hover,
.link-tile:hover {
    color: var(--accent);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        rgba(7, 7, 8, 0.88);
    box-shadow: var(--shadow);
}

.hero-copy h1,
.legal-sidebar h1,
.support-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.eyebrow,
.feature-kicker,
.callout-label,
.legal-meta {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.lede,
.hero-copy p,
.section p,
.legal-content p,
.faq-item p,
.contact-card p {
    color: var(--muted);
}

.hero-actions,
.support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-size: 0.92rem;
}

.button-primary {
    color: #111;
    background: var(--accent);
    box-shadow: 0 14px 40px rgba(240, 234, 24, 0.22);
}

.button-primary:hover {
    background: #fff56a;
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
    border-color: var(--accent-soft);
    background: rgba(255, 255, 255, 0.08);
}

.hero-notes,
.legal-content ul {
    padding-left: 20px;
}

.hero-notes li,
.legal-content li {
    margin-bottom: 8px;
    color: var(--muted);
}

.hero-visual {
    position: relative;
}

.phone-frame,
.gallery-card,
.contact-card,
.feature-card,
.faq-item,
.link-tile {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.phone-frame {
    overflow: hidden;
    border-radius: 42px;
}

.phone-frame img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.callout-card {
    position: absolute;
    right: -18px;
    bottom: 18px;
    width: min(320px, 72%);
    padding: 20px;
    border: 1px solid rgba(240, 234, 24, 0.28);
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.82);
}

.callout-text {
    margin: 0;
    color: var(--text);
}

.feature-strip,
.card-grid,
.gallery-grid,
.section-split,
.support-layout {
    display: grid;
}

.feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 64px;
}

.feature-strip article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
}

.feature-strip h2 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.15;
}

.section {
    margin-top: 72px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2,
.section-split h2,
.disclaimer-section h2,
.faq-item h3,
.contact-card strong {
    margin: 0 0 12px;
}

.section-heading h2,
.section-split h2,
.disclaimer-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1;
}

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

.feature-card,
.faq-item,
.contact-card,
.link-tile {
    border-radius: var(--radius-lg);
    padding: 24px;
}

.feature-card h3,
.faq-item h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 16px 18px 18px;
    color: var(--muted);
}

.gallery-card-tall {
    grid-column: span 4;
}

.gallery-card-wide {
    grid-column: span 8;
}

.gallery-card-wide img {
    aspect-ratio: 16 / 9;
}

.gallery-card-tall img {
    aspect-ratio: 4 / 5;
}

.section-split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.stacked-links {
    display: grid;
    gap: 16px;
}

.link-tile {
    display: block;
    border-radius: var(--radius-lg);
}

.link-tile-label {
    display: block;
    margin-bottom: 8px;
    font-family: "Arial Black", "Avenir Next Condensed", "Franklin Gothic Heavy", sans-serif;
    text-transform: uppercase;
}

.link-tile-text {
    color: var(--muted);
}

.disclaimer-section {
    padding: 32px;
    border: 1px solid rgba(240, 234, 24, 0.22);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(240, 234, 24, 0.09), rgba(255, 255, 255, 0.03));
}

.site-footer {
    margin-top: 72px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.footer-title {
    margin: 0 0 6px;
    font-family: "Arial Black", "Avenir Next Condensed", "Franklin Gothic Heavy", sans-serif;
    text-transform: uppercase;
}

.footer-copy {
    margin: 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
}

.site-shell-legal {
    width: min(calc(100% - 32px), 1320px);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.5fr);
    gap: 42px;
}

.legal-sidebar {
    position: sticky;
    top: 112px;
    align-self: start;
}

.legal-content section {
    margin-bottom: 42px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.legal-content h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.legal-content h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
}

.legal-content a,
.faq-item a,
.contact-card a {
    color: var(--accent);
}

.support-layout {
    gap: 56px;
}

.support-hero {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(232, 38, 122, 0.14), rgba(255, 255, 255, 0.02));
}

.faq-list {
    display: grid;
    gap: 16px;
}

@media (max-width: 1080px) {
    .hero,
    .section-split,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .feature-strip,
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card-tall {
        grid-column: span 6;
    }

    .gallery-card-wide {
        grid-column: span 12;
    }

    .legal-sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--max-width));
        padding-top: 16px;
    }

    .site-header,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero,
    .support-hero,
    .disclaimer-section {
        padding: 22px;
    }

    .hero-copy h1,
    .legal-sidebar h1,
    .support-hero h1 {
        font-size: clamp(2.4rem, 14vw, 4rem);
    }

    .feature-strip,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card-tall,
    .gallery-card-wide {
        grid-column: span 12;
    }

    .callout-card {
        position: static;
        width: auto;
        margin-top: 18px;
    }
}
