:root {
    --bg-top: #08101b;
    --bg-bottom: #18090c;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.13);
    --surface-glow: rgba(179, 29, 38, 0.20);
    --text-primary: #f7f1e9;
    --text-secondary: rgba(247, 241, 233, 0.82);
    --text-muted: rgba(247, 241, 233, 0.62);
    --accent: #d5303b;
    --accent-strong: #103e7e;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 26px 76px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(16, 62, 126, 0.24), transparent 38%),
        radial-gradient(circle at bottom right, rgba(213, 48, 59, 0.18), transparent 42%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    color: var(--text-primary);
    font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
}

body {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.page-shell {
    width: min(100%, 560px);
    min-height: 100vh;
    padding: 20px 16px 28px;
}

.frame {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.topbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 16px 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge.flag {
    background: linear-gradient(90deg, rgba(16, 62, 126, 0.95) 0 33%, rgba(255,255,255,0.95) 33% 66%, rgba(213,48,59,0.95) 66% 100%);
    color: #0c1320;
}

.badge.accent {
    background: rgba(213, 48, 59, 0.18);
    color: #ffebe4;
}

.hero-card {
    position: relative;
    margin: 14px 16px 0;
    border-radius: 24px;
    overflow: hidden;
    background: #0a0b0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 16px 44px rgba(0, 0, 0, 0.38);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 8, 0.88) 100%);
    pointer-events: none;
}

.hero-media {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    background: #0b0c0f;
}

.hero-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    padding: 16px;
}

.hero-kicker {
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-secondary);
    max-width: 72%;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(16, 62, 126, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.content {
    padding: 18px 18px 22px;
}

.headline {
    margin: 0;
    font-family: Rockwell, Georgia, serif;
    font-size: clamp(30px, 7vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.subheading {
    margin: 12px 0 0;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.42;
}

.proof-card {
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at top left, var(--surface-glow), transparent 46%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.proof-lead {
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.45;
}

.proof-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.proof-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.4;
}

.proof-list li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent), var(--accent-strong));
    box-shadow: 0 0 0 4px rgba(213, 48, 59, 0.16);
}

.proof-bar {
    margin-top: 14px;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
    min-height: 58px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(90deg, #d5303b 0%, #103e7e 100%);
    color: #fff8f4;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow:
        0 14px 34px rgba(16, 62, 126, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta-arrow {
    font-size: 20px;
    line-height: 1;
}

.email-hint {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.footer-note {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.variant-grid {
    display: grid;
    gap: 14px;
    padding: 18px 16px 20px;
}

.variant-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.variant-card img {
    width: 104px;
    height: 132px;
    object-fit: cover;
    border-radius: 14px;
}

.variant-card h2 {
    margin: 8px 0 6px;
    font-size: 20px;
    line-height: 1.05;
}

.variant-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.35;
}

.variant-card strong {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
