:root {
    --bg: #050708;
    --surface: #0b1012;
    --surface-2: #101719;
    --surface-3: #172124;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.2);
    --border: var(--line);
    --text: #f4fbf8;
    --muted: #a8b9b3;
    --muted-2: #778b85;
    --accent: #28e6a3;
    --cyan: #2bc6ff;
    --gold: #f5c451;
    --shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
    --max: 1180px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 72px 72px;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

.site-nav {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px max(20px, calc((100vw - 1320px) / 2));
    background: rgba(5, 7, 8, 0.82);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-nav.is-scrolled,
.site-nav.menu-open {
    background: rgba(5, 7, 8, 0.96);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px max(20px, calc((100vw - 1320px) / 2));
    background: rgba(5, 7, 8, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-header .site-nav {
    position: static;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.site-header .site-nav > a:not(.nav-cta) {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.site-header .site-nav > a:not(.nav-cta):hover {
    color: var(--text);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    overflow: hidden;
    border-radius: 8px;
    line-height: 0;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.site-header .brand > span:last-child,
.site-footer .brand > span:last-child {
    display: grid;
    gap: 1px;
}

.site-header .brand > span:last-child strong,
.site-footer .brand > span:last-child strong {
    font-size: 15px;
    font-weight: 850;
}

.site-header .brand > span:last-child small,
.site-footer .brand > span:last-child small {
    color: var(--muted-2);
    font-size: 11px;
}

.brand-copy strong {
    font-size: 15px;
    font-weight: 850;
}

.brand-copy small {
    color: var(--muted-2);
    font-size: 11px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.nav-links a,
.footer-links a {
    text-decoration: none;
    transition: color 140ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.site-nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 19px;
    border: 1px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.nav-cta,
.button.primary {
    color: #03110c;
    background: linear-gradient(135deg, var(--accent), #70ffd1);
    box-shadow: 0 8px 28px rgba(40, 230, 163, 0.16);
}

.nav-cta {
    gap: 10px;
    padding-right: 17px;
    border-color: rgba(255, 255, 255, 0.14);
    white-space: nowrap;
    box-shadow: 0 0 0 1px rgba(40, 230, 163, 0.16), 0 10px 32px rgba(40, 230, 163, 0.2);
}

.nav-cta::after {
    content: "->";
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
    transition: transform 150ms ease;
}

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

.button:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.button.primary:hover {
    box-shadow: 0 12px 34px rgba(40, 230, 163, 0.24);
}

.nav-cta:hover {
    box-shadow: 0 0 0 1px rgba(40, 230, 163, 0.34), 0 14px 40px rgba(40, 230, 163, 0.3);
}

.nav-cta:hover::after {
    transform: translateX(3px);
}

.button.secondary:hover {
    border-color: rgba(43, 198, 255, 0.52);
    background: rgba(43, 198, 255, 0.08);
}

.button.full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 88svh;
    display: flex;
    align-items: center;
    padding: 132px max(20px, calc((100vw - var(--max)) / 2)) 70px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #050708 0%, rgba(5, 7, 8, 0.96) 38%, rgba(5, 7, 8, 0.48) 72%, rgba(5, 7, 8, 0.2) 100%),
        linear-gradient(0deg, rgba(5, 7, 8, 0.95) 0%, transparent 42%, rgba(5, 7, 8, 0.6) 100%),
        url("../assets/demo-login-leaderboard.jpg") right center / min(54vw, 760px) auto no-repeat;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    top: 16%;
    right: max(20px, calc((100vw - var(--max)) / 2));
    bottom: 12%;
    width: 1px;
    background: linear-gradient(transparent, rgba(43, 198, 255, 0.55), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(690px, 100%);
}

.eyebrow,
.section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    flex: 0 0 28px;
    background: currentColor;
}

.hero h1,
.section h2,
.final-cta h2 {
    margin: 0;
    max-width: 900px;
    font-size: 76px;
    line-height: 0.98;
    font-weight: 900;
}

.section h2,
.final-cta h2 {
    font-size: 52px;
    line-height: 1.03;
}

.hero-copy {
    max-width: 650px;
    margin: 25px 0 0;
    color: #bdccc7;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-actions.center {
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 620px;
    margin: 44px 0 0;
}

.hero-stats div {
    min-width: 0;
    padding-top: 14px;
    border-top: 2px solid var(--line-strong);
}

.hero-stats div:nth-child(1) {
    border-top-color: rgba(40, 230, 163, 0.72);
}

.hero-stats div:nth-child(2) {
    border-top-color: rgba(43, 198, 255, 0.72);
}

.hero-stats div:nth-child(3) {
    border-top-color: rgba(245, 196, 81, 0.72);
}

.hero-stats dt {
    color: var(--muted-2);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.hero-stats dd {
    margin: 5px 0 0;
    color: var(--text);
    font-size: 21px;
    font-weight: 900;
}

.intro-band {
    padding: 30px max(20px, calc((100vw - var(--max)) / 2));
    background: #09100f;
    border-top: 1px solid rgba(40, 230, 163, 0.2);
    border-bottom: 1px solid var(--line);
}

.intro-band p {
    max-width: 1040px;
    margin: 0;
    color: #d9ebe5;
    font-size: 18px;
    font-weight: 750;
}

.section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 98px 0;
    scroll-margin-top: 82px;
}

.section.split,
.pricing,
.workflow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    gap: 82px;
    align-items: start;
}

.section p {
    color: var(--muted);
    font-size: 17px;
}

.section h2 + p,
.section-head.compact > p:last-child {
    max-width: 680px;
    margin-top: 24px;
}

.section-heading {
    max-width: 780px;
}

.section-heading h1,
.legal-page h1 {
    max-width: 900px;
    margin: 0;
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
}

.section-heading > p {
    max-width: 700px;
    margin-top: 22px;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-card > span:first-child {
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
}

.feature-card .button {
    margin-top: auto;
}

.legal-page {
    max-width: 860px;
    padding-top: 140px;
}

.legal-page h1 {
    margin: 12px 0 14px;
}

.legal-date {
    margin-bottom: 34px;
    color: var(--muted);
}

.legal-section {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.legal-section h2 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.25;
}

.legal-section p,
.legal-section li {
    color: var(--muted);
    line-height: 1.75;
}

.legal-section ul {
    display: grid;
    gap: 8px;
    padding-left: 20px;
}

.legal-section strong {
    color: var(--text);
}

.quiet-panel,
.pricing-table {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-2);
    box-shadow: var(--shadow);
}

.quiet-panel {
    border-top: 2px solid var(--cyan);
}

.quiet-panel h3,
.feature-grid h3,
.pricing-copy h3 {
    margin: 0 0 16px;
    font-size: 21px;
    line-height: 1.2;
}

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

.check-list li {
    position: relative;
    padding-left: 25px;
    color: #d8e6e1;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--accent);
    background: transparent;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 44px;
}

.section-head > p {
    margin: 0;
}

.section-head.compact {
    display: block;
    max-width: 830px;
}

#customization {
    padding-top: 112px;
    border-top: 1px solid var(--line);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.feature-grid article {
    min-height: 206px;
    padding: 26px;
    border: 1px solid var(--line);
    border-top-width: 2px;
    border-radius: 6px;
    background: var(--surface);
}

.feature-grid article:nth-child(3n + 1) {
    border-top-color: rgba(40, 230, 163, 0.72);
}

.feature-grid article:nth-child(3n + 2) {
    border-top-color: rgba(43, 198, 255, 0.72);
}

.feature-grid article:nth-child(3n + 3) {
    border-top-color: rgba(245, 196, 81, 0.72);
}

.feature-grid p {
    margin: 0;
    font-size: 15px;
}

#rewards {
    width: 100%;
    max-width: none;
    padding: 102px max(20px, calc((100vw - var(--max)) / 2));
    background: #081011;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

#rewards .quiet-panel {
    border-top-color: var(--gold);
}

.team-access .feature-grid article {
    min-height: 180px;
}

.demo-section {
    width: 100%;
    max-width: none;
    padding: 104px max(20px, calc((100vw - var(--max)) / 2));
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.demo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: 28px;
    align-items: stretch;
}

.demo-media {
    aspect-ratio: 684 / 618;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: #07090b;
    box-shadow: var(--shadow);
}

.demo-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.demo-steps {
    display: grid;
    grid-template-rows: repeat(3, 1fr) auto;
    gap: 12px;
}

.demo-steps article {
    min-height: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
}

.demo-steps span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    border: 1px solid rgba(40, 230, 163, 0.34);
    border-radius: 6px;
    background: rgba(40, 230, 163, 0.08);
    color: var(--accent);
    font-weight: 900;
}

.demo-steps strong {
    display: block;
    font-size: 17px;
}

.demo-steps p {
    margin: 7px 0 0;
    font-size: 14px;
}

.workflow {
    border-top: 1px solid var(--line);
}

.workflow-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.workflow-list li {
    counter-increment: step;
    position: relative;
    min-height: 104px;
    padding: 24px 24px 24px 72px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
}

.workflow-list li::before {
    content: counter(step);
    position: absolute;
    left: 22px;
    top: 24px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: var(--surface-3);
    color: var(--accent);
    font-weight: 900;
}

.workflow-list strong {
    display: block;
    margin-bottom: 5px;
}

.workflow-list span {
    color: var(--muted);
}

.pricing {
    width: 100%;
    max-width: none;
    padding: 106px max(20px, calc((100vw - var(--max)) / 2));
    background: #0b1012;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.pricing-copy h3 {
    margin-top: 34px;
}

.pricing-table {
    display: grid;
    gap: 18px;
    border-top: 2px solid var(--accent);
}

.pricing-table div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.pricing-table span {
    color: var(--muted);
}

.pricing-table strong {
    max-width: 260px;
    text-align: right;
}

.pricing-table div:first-child strong {
    color: var(--accent);
    font-size: 46px;
    line-height: 1;
}

.pricing-table div:nth-child(2) strong {
    color: var(--cyan);
    font-size: 24px;
}

.pricing-table div:nth-child(3) strong {
    color: #f6e0a8;
}

.use-cases {
    padding-bottom: 80px;
}

.use-case-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.use-case-row span {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    color: #dcece7;
    font-size: 14px;
    font-weight: 750;
}

.final-cta {
    width: 100%;
    margin: 0;
    padding: 100px max(20px, calc((100vw - 930px) / 2));
    text-align: center;
    background: #07100e;
    border-top: 1px solid rgba(40, 230, 163, 0.24);
    border-bottom: 1px solid var(--line);
}

.final-cta .section-kicker {
    justify-content: center;
}

.final-cta h2 {
    margin: 0 auto;
}

.final-cta p {
    max-width: 680px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 32px max(20px, calc((100vw - 1320px) / 2));
    background: #050708;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
    font-size: 14px;
}

@media (max-width: 1060px) {
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 2px;
        padding: 10px;
        border: 1px solid var(--line-strong);
        border-radius: 6px;
        background: rgba(11, 16, 18, 0.99);
        box-shadow: var(--shadow);
    }

    .site-nav.menu-open .nav-links {
        display: flex;
    }

    .nav-links a {
        padding: 11px 12px;
        border-radius: 4px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 920px) {
    .section.split,
    .pricing,
    .workflow,
    .section-head,
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

    .hero {
        min-height: 84svh;
    }

    .hero-backdrop {
        background:
            linear-gradient(180deg, rgba(5, 7, 8, 0.58) 0%, rgba(5, 7, 8, 0.9) 44%, #050708 84%),
            url("../assets/demo-login-leaderboard.jpg") center top / cover no-repeat;
        opacity: 0.76;
    }

    .hero-backdrop::after {
        display: none;
    }

    .hero h1 {
        font-size: 60px;
    }

    .section h2,
    .final-cta h2 {
        font-size: 44px;
    }

    .demo-media {
        width: min(684px, 100%);
        justify-self: center;
    }

    .demo-steps {
        grid-template-rows: none;
    }
}

@media (max-width: 700px) {
    .site-nav {
        min-height: 70px;
        padding: 12px 16px;
    }

    .site-header {
        min-height: 70px;
        padding: 12px 16px;
    }

    .site-header .site-nav {
        display: flex;
        gap: 16px;
    }

    .nav-links {
        left: 16px;
        right: 16px;
    }

    .nav-cta {
        display: none;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .hero {
        min-height: auto;
        padding: 116px 20px 54px;
    }

    .hero h1 {
        font-size: 44px;
        line-height: 1;
    }

    .hero-copy {
        font-size: 17px;
    }

    .hero-actions,
    .hero-actions.center {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-stats {
        gap: 10px;
        margin-top: 36px;
    }

    .hero-stats dd {
        font-size: 17px;
    }

    .intro-band p {
        font-size: 17px;
    }

    .section,
    #rewards,
    .demo-section,
    .pricing {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .section h2,
    .final-cta h2 {
        font-size: 36px;
    }

    .section-heading h1,
    .legal-page h1 {
        font-size: 40px;
    }

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

    .feature-grid article {
        min-height: 0;
    }

    .quiet-panel,
    .pricing-table {
        padding: 24px;
    }

    .pricing-table div {
        display: grid;
        gap: 6px;
    }

    .pricing-table strong {
        max-width: none;
        text-align: left;
    }

    .final-cta {
        padding-top: 76px;
        padding-bottom: 76px;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 430px) {
    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .hero-stats dt {
        font-size: 10px;
    }

    .hero-stats dd {
        font-size: 15px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

/* Community Rewards homepage */
.home-page .site-nav {
    max-width: none;
}

.home-page .hero {
    min-height: 88svh;
    padding-top: 142px;
    padding-bottom: 82px;
}

.home-page .hero-backdrop {
    background:
        linear-gradient(90deg, #050708 0%, rgba(5, 7, 8, 0.98) 40%, rgba(5, 7, 8, 0.55) 64%, rgba(5, 7, 8, 0.06) 100%),
        linear-gradient(0deg, #050708 0%, transparent 32%, rgba(5, 7, 8, 0.34) 100%),
        url("../assets/demo-login-leaderboard.jpg") right 10% center / min(53vw, 720px) auto no-repeat;
}

.home-page .hero-backdrop::before {
    display: none;
}

.home-page .hero-backdrop::after {
    display: none;
}

.home-page .hero-content {
    width: min(700px, 62vw);
}

.home-page .hero h1 {
    max-width: 700px;
    font-size: 72px;
}

.home-page .hero-copy {
    max-width: 625px;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 650px;
    margin: 46px 0 0;
}

.hero-facts div {
    min-width: 0;
    padding-top: 15px;
    border-top: 1px solid var(--line-strong);
}

.hero-facts div:first-child {
    border-top-color: var(--accent);
}

.hero-facts div:nth-child(2) {
    border-top-color: var(--cyan);
}

.hero-facts div:nth-child(3) {
    border-top-color: var(--gold);
}

.hero-facts dt {
    color: var(--muted-2);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.hero-facts dd {
    margin: 5px 0 0;
    color: var(--text);
    font-size: 21px;
    font-weight: 900;
}

.promise-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0 max(20px, calc((100vw - var(--max)) / 2));
    list-style: none;
    background: #09100f;
    border-top: 1px solid rgba(40, 230, 163, 0.2);
    border-bottom: 1px solid var(--line);
}

.promise-strip div {
    min-width: 0;
    padding: 27px 25px;
    border-left: 1px solid var(--line);
}

.promise-strip div:last-child {
    border-right: 1px solid var(--line);
}

.promise-strip strong,
.promise-strip span {
    display: block;
}

.promise-strip strong {
    color: var(--text);
    font-size: 14px;
}

.promise-strip span {
    margin-top: 3px;
    color: var(--muted-2);
    font-size: 12px;
}

.home-section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 112px 0;
    scroll-margin-top: 82px;
}

.home-section h2,
.customization-band h2,
.pricing-band h2 {
    margin: 0;
    max-width: 820px;
    font-size: 50px;
    line-height: 1.04;
    font-weight: 900;
}

.home-section p,
.customization-band p,
.pricing-band p {
    color: var(--muted);
    font-size: 17px;
}

.home-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
    gap: 72px;
    align-items: end;
}

.home-section-head > p {
    margin: 0 0 4px;
}

.system-flow {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 58px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.system-flow li {
    position: relative;
    min-width: 0;
    padding: 21px 16px;
    border-right: 1px solid var(--line);
}

.system-flow li:last-child {
    border-right: 0;
}

.system-flow span,
.system-flow strong {
    display: block;
}

.system-flow span {
    margin-bottom: 5px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
}

.system-flow strong {
    overflow-wrap: anywhere;
    font-size: 13px;
}

.capability-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px;
    margin-top: 50px;
}

.capability-list article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    padding: 29px 0 31px;
    border-top: 1px solid var(--line);
}

.capability-list article:nth-child(-n + 2) {
    border-top-color: var(--line-strong);
}

.capability-number {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line-strong);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
}

.capability-list h3 {
    margin: 2px 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.capability-list p {
    margin: 0;
    font-size: 15px;
}

.customization-band {
    width: 100%;
    padding: 112px max(20px, calc((100vw - var(--max)) / 2));
    scroll-margin-top: 82px;
    background: #081011;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.customization-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 90px;
    align-items: start;
}

.customization-intro {
    position: sticky;
    top: 112px;
}

.customization-intro > p:not(.section-kicker) {
    max-width: 560px;
    margin: 24px 0 0;
}

.customization-intro blockquote {
    margin: 40px 0 0;
    padding: 20px 0 20px 24px;
    border-left: 2px solid var(--accent);
    color: #dcece7;
    font-size: 18px;
    font-weight: 750;
}

.customization-list {
    border-top: 1px solid var(--line-strong);
}

.customization-list article {
    padding: 31px 0 34px;
    border-bottom: 1px solid var(--line);
}

.customization-list article > span {
    display: block;
    margin-bottom: 9px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.customization-list article:nth-child(2) > span {
    color: var(--cyan);
}

.customization-list article:nth-child(3) > span {
    color: var(--accent);
}

.customization-list h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.2;
}

.customization-list p {
    margin: 12px 0 0;
    font-size: 15px;
}

.home-page .demo-section {
    width: min(var(--max), calc(100% - 40px));
    max-width: var(--max);
    display: grid;
    grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
    gap: 72px;
    align-items: center;
    padding: 112px 0;
    background: transparent;
    border: 0;
}

.demo-copy > p:not(.section-kicker) {
    margin: 24px 0 0;
}

.demo-timeline {
    display: grid;
    gap: 0;
    margin: 36px 0 34px;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.demo-timeline li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.demo-timeline li > span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(40, 230, 163, 0.36);
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.demo-timeline strong,
.demo-timeline small {
    display: block;
}

.demo-timeline strong {
    font-size: 15px;
}

.demo-timeline small {
    margin-top: 2px;
    color: var(--muted-2);
    font-size: 12px;
}

.home-page .demo-media {
    position: relative;
    width: 100%;
    aspect-ratio: 684 / 618;
    border-color: var(--line-strong);
    border-top-color: rgba(245, 196, 81, 0.45);
    background: #07090b;
}

.home-page .demo-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.home-page .demo-media figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 13px 15px;
    border: 1px solid var(--line-strong);
    background: rgba(5, 7, 8, 0.92);
    backdrop-filter: blur(12px);
}

.home-page .demo-media figcaption span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-page .demo-media figcaption strong {
    font-size: 13px;
}

.home-page .demo-media figcaption em {
    color: var(--gold);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.pricing-band {
    width: 100%;
    padding: 112px max(20px, calc((100vw - var(--max)) / 2));
    scroll-margin-top: 82px;
    background: #0b1012;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.pricing-inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(440px, 1.28fr);
    gap: 90px;
    align-items: start;
}

.price-lockup {
    padding-top: 4px;
}

.price-label,
.price-lockup > strong {
    display: block;
}

.price-label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.price-lockup > strong {
    margin-top: 8px;
    color: var(--accent);
    font-size: 78px;
    line-height: 1;
    font-weight: 900;
}

.price-lockup > p:last-child {
    max-width: 340px;
    margin: 18px 0 0;
}

.offer-details h2 {
    font-size: 42px;
}

.offer-list {
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-strong);
}

.offer-list li {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 24px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}

.offer-list strong {
    color: var(--text);
}

.offer-list span {
    color: var(--muted);
}

.managed-review {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    margin: 28px 0 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(245, 196, 81, 0.34);
    border-bottom: 1px solid rgba(245, 196, 81, 0.2);
}

.managed-review span,
.managed-review strong {
    display: block;
}

.managed-review span {
    margin-bottom: 3px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.managed-review p {
    margin: 0;
    font-size: 14px;
}

.home-page .final-cta {
    padding-top: 104px;
    padding-bottom: 104px;
    background:
        linear-gradient(rgba(7, 16, 14, 0.94), rgba(7, 16, 14, 0.94)),
        url("../assets/demo-login-leaderboard.jpg") center 32% / cover no-repeat;
}

.home-page .final-cta h2 {
    font-size: 50px;
}

@media (max-width: 1060px) {
    .home-page .hero-content {
        width: min(650px, 68vw);
    }

    .home-page .hero h1 {
        font-size: 62px;
    }

    .home-section-head,
    .customization-inner,
    .home-page .demo-section,
    .pricing-inner {
        gap: 54px;
    }

    .system-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .system-flow li:nth-child(3) {
        border-right: 0;
    }

    .system-flow li:nth-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 920px) {
    .home-page .hero {
        min-height: 82svh;
    }

    .home-page .hero-backdrop {
        background:
            linear-gradient(180deg, rgba(5, 7, 8, 0.36) 0%, rgba(5, 7, 8, 0.86) 48%, #050708 88%),
            url("../assets/demo-login-leaderboard.jpg") center top / cover no-repeat;
        opacity: 0.82;
    }

    .home-page .hero-backdrop::before,
    .home-page .hero-backdrop::after {
        display: none;
    }

    .home-page .hero-content {
        width: min(700px, 100%);
    }

    .home-page .hero h1 {
        font-size: 56px;
    }

    .home-section-head,
    .customization-inner,
    .home-page .demo-section,
    .pricing-inner {
        grid-template-columns: 1fr;
    }

    .home-section-head {
        align-items: start;
    }

    .home-section-head > p {
        max-width: 700px;
    }

    .customization-intro {
        position: static;
    }

    .home-page .demo-section {
        gap: 52px;
    }

    .demo-copy {
        max-width: 700px;
    }

    .home-page .demo-media {
        width: min(684px, 100%);
        justify-self: center;
    }

    .price-lockup > p:last-child {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .home-page .hero {
        min-height: auto;
        padding: 104px 18px 42px;
    }

    .home-page .hero h1 {
        font-size: 40px;
        line-height: 1.02;
    }

    .home-page .eyebrow {
        gap: 8px;
        margin-bottom: 14px;
        font-size: 10px;
        line-height: 1.4;
    }

    .home-page .eyebrow::before {
        width: 20px;
        flex-basis: 20px;
    }

    .home-page .hero-copy {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.55;
    }

    .home-page .hero-actions {
        gap: 9px;
        margin-top: 25px;
    }

    .home-page .hero-actions .button {
        min-height: 44px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 9px;
        margin-top: 30px;
    }

    .hero-facts div {
        padding-top: 10px;
    }

    .hero-facts dt {
        font-size: 9px;
    }

    .hero-facts dd {
        font-size: 15px;
    }

    .home-page .intro-band {
        padding: 22px 18px;
    }

    .home-page .intro-band p {
        font-size: 14.5px;
        line-height: 1.55;
    }

    .promise-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 18px;
        padding-right: 18px;
    }

    .promise-strip div {
        padding: 18px 12px;
    }

    .promise-strip div:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .promise-strip div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .home-section,
    .customization-band,
    .pricing-band,
    .home-page .demo-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .home-section h2,
    .customization-band h2,
    .pricing-band h2,
    .home-page .final-cta h2 {
        font-size: 34px;
        line-height: 1.06;
    }

    .home-section p,
    .customization-band p,
    .pricing-band p {
        font-size: 16px;
    }

    .home-section-head {
        gap: 22px;
    }

    .system-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 36px;
    }

    .system-flow li:nth-child(3) {
        border-right: 1px solid var(--line);
    }

    .system-flow li:nth-child(even) {
        border-right: 0;
    }

    .system-flow li:nth-child(4) {
        border-bottom: 1px solid var(--line);
    }

    .system-flow li {
        padding: 16px 12px;
    }

    .capability-list {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .capability-list article:nth-child(2) {
        border-top-color: var(--line);
    }

    .capability-list article {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 0 24px;
    }

    .capability-number {
        width: 32px;
        height: 32px;
    }

    .capability-list h3 {
        margin-top: 0;
        font-size: 18px;
    }

    .capability-list p {
        font-size: 14px;
    }

    .customization-inner {
        gap: 38px;
    }

    .customization-intro blockquote {
        margin-top: 25px;
        padding: 16px 0 16px 18px;
        font-size: 16px;
    }

    .customization-list article {
        padding: 24px 0 26px;
    }

    .customization-list h3 {
        font-size: 21px;
    }

    .customization-list p {
        font-size: 14px;
    }

    .home-page .demo-section {
        gap: 38px;
    }

    .demo-timeline {
        margin-top: 28px;
        margin-bottom: 26px;
    }

    .demo-timeline li {
        padding: 14px 0;
    }

    .home-page .demo-media {
        aspect-ratio: auto;
    }

    .home-page .demo-media img {
        width: 100%;
        height: auto;
        aspect-ratio: 684 / 618;
        object-fit: contain;
    }

    .home-page .demo-media figcaption {
        position: static;
        grid-template-columns: 1fr auto;
        gap: 7px 12px;
        padding: 12px 14px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        background: #090d0f;
    }

    .home-page .demo-media figcaption span {
        grid-column: 1 / -1;
    }

    .price-lockup > strong {
        font-size: 60px;
    }

    .offer-details h2 {
        font-size: 32px;
    }

    .offer-list li,
    .managed-review {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .offer-list {
        margin-top: 30px;
    }

    .offer-list li {
        padding: 16px 0;
    }

    .managed-review {
        margin-top: 24px;
        margin-bottom: 28px;
        padding: 17px 0;
    }

    .home-page .final-cta {
        padding: 68px 18px;
    }

    .home-page .final-cta p {
        margin-top: 18px;
        font-size: 16px;
    }

    .home-page .site-footer {
        gap: 24px;
        padding: 26px 18px;
    }
}

@media (max-width: 430px) {
    .home-page .hero h1 {
        font-size: 38px;
    }

    .system-flow strong {
        font-size: 12px;
    }

    .capability-list article {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 14px;
    }

    .capability-number {
        width: 34px;
        height: 34px;
    }

    .home-page .demo-media figcaption em {
        display: none;
    }
}

@media (max-width: 350px) {
    .home-page .hero h1 {
        font-size: 35px;
    }

    .home-page .hero {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero-facts {
        gap: 6px;
    }

    .hero-facts dt {
        font-size: 8px;
    }

    .hero-facts dd {
        font-size: 14px;
    }

    .promise-strip {
        grid-template-columns: 1fr;
        padding-right: 16px;
        padding-left: 16px;
    }

    .promise-strip div,
    .promise-strip div:nth-child(2) {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .promise-strip div:last-child {
        border-bottom: 0;
    }
}
