:root {
    --bg: #0b0d12;
    --bg-soft: #141925;
    --panel: rgba(17, 21, 31, 0.88);
    --panel-strong: rgba(22, 27, 39, 0.96);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f8f2df;
    --muted: #c6c1b2;
    --gold: #e6bb58;
    --gold-soft: #f3d690;
    --red: #d64545;
    --red-deep: #821c25;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(230, 187, 88, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(214, 69, 69, 0.22), transparent 28%),
        linear-gradient(180deg, #0a0b10 0%, #10141e 42%, #090b11 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.ambient {
    position: absolute;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.45;
    pointer-events: none;
}

.ambient-left {
    top: 5rem;
    left: -10rem;
    background: radial-gradient(circle, rgba(230, 187, 88, 0.4) 0%, rgba(230, 187, 88, 0) 70%);
}

.ambient-right {
    top: 10rem;
    right: -10rem;
    background: radial-gradient(circle, rgba(214, 69, 69, 0.45) 0%, rgba(214, 69, 69, 0) 70%);
}

.site-header,
main,
.site-footer {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-logo-image {
    width: min(100%, 260px);
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 30px rgba(242, 42, 34, 0.18));
}

.brand-mark {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background:
        linear-gradient(145deg, rgba(230, 187, 88, 1), rgba(214, 69, 69, 0.95));
    box-shadow: 0 0 35px rgba(230, 187, 88, 0.35);
    position: relative;
}

.brand-mark::after {
    content: "P";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    color: #1b1207;
}

.brand-copy {
    display: grid;
    gap: 0.15rem;
}

.brand-copy strong {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-copy span,
.hero-text,
.section-heading p,
.benefit-card p,
.plan-card p,
.metrics span,
.site-footer span {
    color: var(--muted);
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
    padding: 0.95rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(11, 14, 20, 0.72);
    backdrop-filter: blur(16px);
}

.site-nav a,
.footer-links a,
.inline-link {
    position: relative;
}

.site-nav a::after,
.footer-links a::after,
.inline-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.18rem;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after,
.inline-link:hover::after {
    transform: scaleX(1);
}

.nav-cta,
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
    padding: 0.9rem 1.3rem;
    background: linear-gradient(135deg, var(--red), #ea6a58);
    box-shadow: 0 10px 30px rgba(214, 69, 69, 0.35);
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    padding: 3.5rem 0 2.5rem;
}

.eyebrow,
.plan-label,
.status-pill,
.card-index {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
}

.eyebrow,
.plan-label,
.card-index {
    color: var(--gold-soft);
}

.hero h1,
.section-heading h2,
.plan-card h3,
.benefit-card h3 {
    margin: 0;
}

.hero h1 {
    max-width: 11ch;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 8vw, 6.6rem);
    line-height: 0.92;
    letter-spacing: 0.03em;
}

.hero-text {
    max-width: 42rem;
    margin: 1rem 0 0;
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.cta {
    min-height: 3.45rem;
    padding: 0.95rem 1.35rem;
}

.cta.primary {
    background: linear-gradient(135deg, var(--red), #f06c54);
    box-shadow: 0 16px 35px rgba(214, 69, 69, 0.28);
}

.cta.secondary {
    background: linear-gradient(135deg, #1a2232, #1d3146);
    border-color: rgba(243, 214, 144, 0.25);
}

.cta.ghost {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.18);
}

.nav-cta:hover,
.cta:hover {
    transform: translateY(-2px);
}

.hero-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.7rem;
}

.hero-strip span,
.status-pill {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 214, 144, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.status-pill {
    color: #201100;
    background: linear-gradient(135deg, var(--gold), #ffd98e);
    border-color: transparent;
}

.hero-preview {
    display: grid;
    gap: 1rem;
}

.preview-card,
.benefit-card,
.plan-card,
.metrics article {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.preview-card {
    border-radius: 1.8rem;
    padding: 1.35rem;
}

.score-card {
    position: relative;
    overflow: hidden;
}

.score-card::before {
    content: "";
    position: absolute;
    inset: auto -15% -35% auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 187, 88, 0.24), rgba(230, 187, 88, 0));
}

.score-card__header,
.score-footer,
.preview-stack,
.metrics,
.benefit-grid,
.plan-grid,
.footer-links {
    display: grid;
}

.score-card__header,
.score-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 1rem;
}

.score-card__header {
    margin-bottom: 1rem;
}

.score-footer {
    margin-top: 1.1rem;
    color: var(--muted);
}

.score-footer span:last-child {
    justify-self: end;
    color: var(--gold-soft);
    font-weight: 700;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.score-grid div {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.score-grid p,
.mini-card p {
    margin: 0 0 0.4rem;
    color: var(--muted);
}

.score-grid strong {
    font-size: 2.5rem;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.04em;
}

.preview-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mini-card strong {
    display: block;
    margin-bottom: 0.4rem;
}

.mini-card.accent {
    background: linear-gradient(160deg, rgba(214, 69, 69, 0.22), rgba(230, 187, 88, 0.14));
}

.metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem auto 0;
}

.metrics article,
.benefit-card,
.plan-card {
    border-radius: 1.5rem;
    padding: 1.4rem;
}

.metrics strong,
.benefit-card h3,
.plan-card h3 {
    display: block;
    margin-bottom: 0.7rem;
}

.benefits,
.plans {
    padding: 5.5rem 0 1.75rem;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 1.8rem;
}

.section-heading h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
}

.benefit-grid,
.plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.plan-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.card-index {
    display: inline-flex;
    margin-bottom: 1rem;
}

.plan-card.featured {
    background:
        linear-gradient(135deg, rgba(230, 187, 88, 0.1), rgba(214, 69, 69, 0.18)),
        var(--panel-strong);
    border-color: rgba(243, 214, 144, 0.24);
}

.inline-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--gold-soft);
}

.plan-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    margin-top: 0.55rem;
}

.site-footer {
    margin-top: 4.5rem;
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-brand-block {
    display: grid;
    gap: 0.75rem;
    max-width: 24rem;
}

.footer-brand-block strong {
    font-size: 1.05rem;
}

.footer-column {
    display: grid;
    gap: 0.7rem;
}

.footer-title {
    margin: 0 0 0.2rem;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--muted);
}

.footer-column a:hover {
    color: var(--text);
}

.legal-shell {
    min-height: 100vh;
}

.legal-main {
    width: min(980px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 1;
}

.legal-hero,
.legal-card,
.legal-note,
.legal-cta {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.legal-hero,
.legal-card,
.legal-note,
.legal-cta {
    border-radius: 1.8rem;
}

.legal-hero {
    padding: 2rem;
}

.legal-hero h1,
.legal-card h2,
.legal-cta h2 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.03em;
}

.legal-hero h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 0.95;
    max-width: 10ch;
}

.legal-hero p,
.legal-card p,
.legal-card li,
.legal-note p,
.legal-cta p {
    color: var(--muted);
    line-height: 1.7;
}

.legal-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.legal-card,
.legal-note,
.legal-cta {
    padding: 1.5rem;
}

.legal-card h2,
.legal-cta h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 0.95;
}

.legal-card ul {
    margin: 0.8rem 0 0;
    padding-left: 1.15rem;
}

.legal-note {
    margin-top: 1rem;
    background: linear-gradient(135deg, rgba(230, 187, 88, 0.12), rgba(214, 69, 69, 0.15));
    border-color: rgba(243, 214, 144, 0.24);
}

.legal-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.legal-top-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.legal-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 214, 144, 0.2);
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
}

.share-main {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 1;
}

.share-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.4rem;
    align-items: stretch;
}

.share-copy,
.share-visual,
.share-detail,
.share-actions-panel,
.share-proof article {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    border-radius: 1.8rem;
}

.share-copy,
.share-actions-panel,
.share-detail,
.share-proof article {
    padding: 1.6rem;
}

.share-copy h1,
.share-detail h2,
.share-actions-panel h2 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.03em;
}

.share-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.3rem, 7vw, 5.5rem);
    line-height: 0.94;
}

.share-copy p,
.share-detail p,
.share-proof p,
.share-actions-panel p,
.share-stat-label,
.share-stat-copy {
    color: var(--muted);
    line-height: 1.75;
}

.share-copy strong,
.share-detail strong,
.share-proof strong,
.share-actions-panel strong {
    color: var(--text);
}

.share-summary {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-summary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 214, 144, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.share-actions-panel {
    margin-top: 1rem;
}

.share-actions-panel .hero-actions {
    margin-top: 1.2rem;
}

.share-visual {
    padding: 1.25rem;
    display: grid;
    gap: 1rem;
    background:
        linear-gradient(160deg, rgba(214, 69, 69, 0.2), rgba(230, 187, 88, 0.1)),
        var(--panel-strong);
}

.share-scoreboard {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    border-radius: 1.6rem;
    background: rgba(11, 14, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.share-scoreboard::after {
    content: "";
    position: absolute;
    inset: auto -10% -30% auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 187, 88, 0.2), rgba(230, 187, 88, 0));
}

.share-scoreboard-top,
.share-scoreboard-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.share-scoreboard-bottom {
    margin-top: 1.1rem;
}

.share-scoreboard-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.share-scoreboard-grid article {
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.share-scoreboard-grid p,
.share-scoreboard-grid strong {
    margin: 0;
}

.share-scoreboard-grid p {
    color: var(--muted);
}

.share-scoreboard-grid strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 2.4rem;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.04em;
}

.share-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.share-proof article {
    min-height: 100%;
}

.share-proof strong {
    display: block;
    margin-bottom: 0.6rem;
}

.share-detail {
    margin-top: 1rem;
}

.share-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.share-stat {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.share-stat-label {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.share-stat-copy {
    margin: 0;
}

.reveal {
    animation: rise-in 720ms ease both;
}

.delay-1 {
    animation-delay: 120ms;
}

.delay-2 {
    animation-delay: 220ms;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .site-header,
    .hero,
    .metrics,
    .benefit-grid,
    .plan-grid,
    .preview-stack,
    .share-hero,
    .share-proof,
    .share-detail-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        display: grid;
        justify-content: stretch;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        overflow-x: auto;
        white-space: nowrap;
    }

    .hero {
        padding-top: 2rem;
    }

    .brand-logo-image {
        width: min(100%, 220px);
    }

    .hero h1 {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .site-header,
    main,
    .site-footer {
        width: min(100% - 1.25rem, 1180px);
    }

    .site-nav {
        gap: 1rem;
        padding-inline: 1rem;
    }

    .brand-logo-image {
        width: min(100%, 180px);
    }

    .hero-actions {
        grid-auto-flow: row;
    }

    .cta,
    .nav-cta {
        width: 100%;
    }

    .score-card__header,
    .score-footer,
    .score-grid,
    .share-scoreboard-grid {
        grid-template-columns: 1fr;
    }

    .score-footer span:last-child {
        justify-self: start;
    }

    .legal-main {
        width: min(100% - 1.25rem, 980px);
    }

    .share-main {
        width: min(100% - 1.25rem, 1120px);
    }

    .legal-cta {
        display: grid;
    }

    .share-scoreboard-top,
    .share-scoreboard-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}