* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --text: #e0e0e0;
    --accent: #FFF200;
    --muted: #666;
    --card-bg: #111;
    --border: #222;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ---------- Top notification bar ---------- */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: opacity 0.2s;
}

.top-bar:hover {
    opacity: 0.9;
    text-decoration: none;
}

.top-bar strong {
    font-weight: 700;
}

.top-bar__icon,
.top-bar__arrow {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.top-bar__arrow {
    transition: transform 0.2s;
}

.top-bar:hover .top-bar__arrow {
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .top-bar {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
        gap: 0.4rem;
    }
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 4rem 0 3rem;
}

.logo {
    height: 110px;
    width: auto;
    margin: 0 auto 2rem;
    display: block;
}

.tagline {
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero {
    text-align: center;
    padding: 2rem 0 4rem;
    border-bottom: 1px solid var(--border);
}

h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--accent);
}

.subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 1rem;
    line-height: 1.75;
}

.subtitle.lead {
    font-size: 1.15rem;
    color: var(--text);
}

.subtitle.muted-line {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.85;
}

.subtitle.splice-line {
    font-size: 0.95rem;
    color: var(--text);
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card-bg);
}

.subtitle.splice-line a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.subtitle.splice-line a:hover {
    text-decoration: underline;
}

.subtitle strong {
    color: var(--accent);
    font-weight: 700;
}

.notice {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid var(--border);
}

.notice:first-of-type {
    margin-top: 4rem;
}

.notice-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.notice h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.notice p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 1.75rem;
}

.notice-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s, color 0.3s;
}

.notice-cta:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.store-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.store-item__caption {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    text-align: center;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    min-width: 180px;
    height: 64px;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.3s, transform 0.2s;
}

.store-button:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.store-logo {
    display: block;
    width: auto;
}

.store-logo--splice {
    height: 26px;
}

.store-logo--pl {
    height: 22px;
    filter: brightness(0) invert(1);
}

.store-logo--rs {
    height: 22px;
}

.reasons-list {
    list-style: none;
    margin: -0.5rem auto 0;
    padding: 0;
    max-width: 480px;
    text-align: left;
}

.reasons-list li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
}

.reasons-list li:first-child {
    border-top: none;
    padding-top: 0.5rem;
}

.reasons-list li > i {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--accent);
    line-height: 1.2;
}

.reasons-list strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 700;
}

.payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.pay-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text);
    background: #000;
}

.pay-pill i {
    font-size: 1rem;
    color: var(--accent);
}

.faq {
    text-align: left;
}

.faq > .notice-icon,
.faq > h3 {
    text-align: center;
    display: block;
}

.faq h3 {
    margin-bottom: 1.5rem;
}

.faq details {
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.faq details:last-of-type {
    border-bottom: 1px solid var(--border);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.98rem;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s;
}

.faq details[open] > summary::after {
    content: "\2013";
}

.faq summary:hover {
    color: var(--accent);
}

.faq details p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: none;
    text-align: left;
}

.faq details a {
    color: var(--accent);
    text-decoration: none;
}

.faq details a:hover {
    text-decoration: underline;
}

.socials {
    text-align: center;
    padding: 3rem 0 1rem;
}

.socials-label {
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.social-svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
}

footer {
    text-align: center;
    padding: 3rem 0 2rem;
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    header {
        padding: 3rem 0 2rem;
    }

    .notice {
        padding: 2.5rem 1.5rem;
    }
}
