@font-face {
    font-family: "MRR Display";
    src: url("/fonts/Font1.ttf") format("truetype");
    font-display: swap;
    font-weight: 900;
}

:root {
    --navy: #10182b;
    --navy-deep: #0b1223;
    --panel: #151e34;
    --panel-soft: #19243d;
    --purple: #a43dff;
    --purple-light: #c67aff;
    --text: #f3f1f7;
    --muted: #9ea6b9;
    --line: rgba(255, 255, 255, 0.11);
    --green: #30db76;
    --display: "MRR Display", "Avenir Next", "Trebuchet MS", sans-serif;
    --body: "Avenir Next", "Trebuchet MS", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--navy-deep);
    color: var(--text);
    font-family: var(--body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(1100px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: -0.5px;
}

.brand img {
    border-radius: 10px;
}

.header-inner nav {
    display: flex;
    align-items: center;
    gap: 27px;
    color: #c4c9d4;
    font-size: 12px;
    font-weight: 700;
}

.header-inner nav > a:not(.nav-button):hover {
    color: #fff;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 99px;
    color: #fff;
    transition: border-color 160ms ease, background 160ms ease;
}

.nav-button:hover {
    border-color: var(--purple-light);
    background: rgba(164, 61, 255, 0.1);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 1060px;
    overflow: hidden;
    border-radius: 0 0 70px 0;
    background: var(--navy);
}

.stars {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.68;
    background-image:
        radial-gradient(circle at 13% 19%, rgba(255,255,255,.65) 0 1px, transparent 1.8px),
        radial-gradient(circle at 81% 8%, rgba(255,255,255,.55) 0 1px, transparent 1.8px),
        radial-gradient(circle at 23% 36%, rgba(255,255,255,.45) 0 1.5px, transparent 2.2px),
        radial-gradient(circle at 72% 31%, rgba(255,255,255,.5) 0 1px, transparent 1.8px),
        radial-gradient(circle at 90% 45%, rgba(255,255,255,.38) 0 1.5px, transparent 2.2px),
        radial-gradient(circle at 35% 13%, rgba(255,255,255,.32) 0 1px, transparent 1.7px),
        radial-gradient(circle at 61% 17%, rgba(255,255,255,.4) 0 1px, transparent 1.8px);
}

.hero-glow {
    position: absolute;
    top: 115px;
    left: 50%;
    z-index: -1;
    width: 780px;
    height: 780px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 67, 255, 0.55) 0, rgba(125, 63, 255, 0.22) 35%, transparent 70%);
    filter: blur(28px);
    transform: translateX(-50%);
}

.hero-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 120px;
    text-align: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 13px;
    padding: 9px 14px;
    border: 1px solid rgba(210, 145, 255, 0.66);
    border-radius: 99px;
    background: rgba(133, 54, 221, 0.22);
    box-shadow: 0 0 28px rgba(174, 73, 255, 0.45);
    color: #ead8fa;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #43ef85;
    box-shadow: 0 0 10px rgba(67, 239, 133, 0.8);
}

.hero h1 {
    max-width: 1100px;
    margin: 27px 0 18px;
    color: #d5d5df;
    font-family: var(--display);
    font-size: clamp(49px, 5vw, 70px);
    line-height: 0.98;
    letter-spacing: -3.4px;
}

.hero h1 em {
    color: #fff;
    font-style: normal;
}

.hero > .hero-inner > p {
    max-width: 650px;
    margin: 0;
    color: #abb1c1;
    font-size: 17px;
}

.hero-actions {
    margin-top: 28px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 58px;
    padding: 0 25px;
    border: 3px solid rgba(255, 255, 255, 0.76);
    border-radius: 99px;
    background: linear-gradient(110deg, #8d39ef, #b341ff);
    box-shadow: 0 12px 38px rgba(150, 53, 244, 0.36), inset 0 1px rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover {
    box-shadow: 0 16px 50px rgba(168, 61, 255, 0.5), inset 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.primary-button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.release {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: #7e879d;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.release i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #626c84;
}

.extension-stage {
    position: relative;
    width: min(760px, 100%);
    height: 600px;
    margin-top: 42px;
}

.stage-ring {
    position: absolute;
    top: 70px;
    left: 50%;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(205, 130, 255, 0.26);
    border-radius: 50%;
    box-shadow: 0 0 0 56px rgba(166, 62, 255, 0.05), 0 0 0 112px rgba(166, 62, 255, 0.025);
    transform: translateX(-50%);
}

.browser-frame {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    width: 330px;
    height: 600px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px 20px 0 0;
    background: #eef0ed;
    box-shadow: 0 28px 80px rgba(9, 5, 24, 0.58);
    transform: translateX(-50%);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 38px;
    padding: 0 12px;
    border-bottom: 1px solid #dde0dd;
    background: #fafafa;
}

.browser-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4d8d4;
}

.browser-bar b {
    position: absolute;
    left: 50%;
    color: #858c85;
    font-size: 8px;
    transform: translateX(-50%);
}

.browser-frame img {
    width: 100%;
    height: auto;
}

.float-card {
    position: absolute;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto;
    min-width: 160px;
    padding: 12px 14px;
    border: 1px solid rgba(190, 113, 255, 0.52);
    border-radius: 12px;
    background: rgba(19, 26, 46, 0.9);
    box-shadow: 0 15px 45px rgba(4, 5, 18, 0.4);
    text-align: left;
    backdrop-filter: blur(14px);
}

.float-card small {
    grid-column: 1 / -1;
    color: #858da2;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.float-card strong {
    margin-top: 2px;
    font-family: var(--display);
    font-size: 17px;
}

.float-card b {
    align-self: end;
    margin-bottom: 3px;
    color: var(--green);
    font-size: 9px;
}

.float-traffic {
    top: 150px;
    left: 62px;
}

.float-ads {
    top: 372px;
    right: 55px;
}

.benefits {
    padding: 105px 0;
    background: var(--navy-deep);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.section-heading > span,
.how-copy > span {
    color: var(--purple-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2,
.how h2,
.privacy h2,
.faq h2,
.final-cta h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(38px, 4.5vw, 59px);
    line-height: 1;
    letter-spacing: -2.5px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.benefit-grid article {
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(169, 70, 255, 0.48);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(27, 38, 65, 0.9), rgba(17, 25, 45, 0.9));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.benefit-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(189, 113, 255, 0.5);
    border-radius: 12px;
    background: rgba(155, 57, 240, 0.14);
    color: #d79cff;
    font-family: var(--display);
    font-size: 19px;
}

.chart-icon {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 3px;
    padding-bottom: 11px;
}

.chart-icon i {
    width: 4px;
    border-radius: 4px;
    background: #d79cff;
}

.chart-icon i:nth-child(1) { height: 9px; }
.chart-icon i:nth-child(2) { height: 17px; }
.chart-icon i:nth-child(3) { height: 25px; }

.meta-icon {
    font-size: 28px;
}

.benefit-grid h3 {
    margin: 36px 0 8px;
    font-family: var(--display);
    font-size: 24px;
    letter-spacing: -0.8px;
}

.benefit-grid p {
    max-width: 270px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.how {
    padding: 105px 0;
    background: var(--navy);
}

.how-inner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
    gap: 90px;
}

.how h2 {
    max-width: 410px;
    margin-top: 16px;
}

.how-copy > p {
    margin: 18px 0 0;
    color: var(--muted);
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 17px;
    padding: 25px 0;
    border-top: 1px solid var(--line);
}

.steps li:last-child {
    border-bottom: 1px solid var(--line);
}

.steps li > b {
    color: var(--purple-light);
    font-size: 11px;
}

.steps h3 {
    margin: 0 0 5px;
    font-family: var(--display);
    font-size: 20px;
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

code {
    color: #d6a8f8;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.9em;
}

.privacy {
    padding: 75px 0;
    border-block: 1px solid var(--line);
    background: #111a2e;
}

.privacy-inner {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.privacy-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #bc72f5;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.privacy-dot i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.privacy h2 {
    font-size: clamp(36px, 4vw, 52px);
}

.privacy p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.faq {
    padding: 100px 0;
    background: var(--navy-deep);
}

.faq-inner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;
}

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

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

.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 15px;
    list-style: none;
}

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

.faq summary span {
    display: grid;
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: var(--purple-light);
    font-family: var(--body);
    transition: transform 160ms ease;
}

.faq details[open] summary span {
    transform: rotate(45deg);
}

.faq details p {
    margin: -2px 45px 24px 0;
    color: var(--muted);
    font-size: 12px;
}

.final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 105px 0;
    background: var(--navy);
    text-align: center;
}

.final-glow {
    position: absolute;
    bottom: -340px;
    left: 50%;
    z-index: -1;
    width: 850px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 72, 255, 0.62), rgba(119, 56, 242, 0.22) 45%, transparent 72%);
    filter: blur(25px);
    transform: translateX(-50%);
}

.final-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.final-cta h2 {
    font-size: clamp(47px, 6vw, 73px);
}

.final-cta .primary-button {
    margin-top: 28px;
}

.final-cta small {
    margin-top: 13px;
    color: #858da1;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

footer {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    background: #090f1d;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
}

.footer-brand {
    font-size: 15px;
}

.footer-inner nav {
    display: flex;
    gap: 20px;
    color: #81899d;
    font-size: 10px;
}

.footer-inner nav a:hover {
    color: #fff;
}

.footer-inner > small {
    justify-self: end;
    color: #555f74;
    font-size: 9px;
}

@media (max-width: 780px) {
    .shell {
        width: min(100% - 30px, 590px);
    }

    .header-inner {
        min-height: 70px;
    }

    .brand {
        font-size: 16px;
    }

    .brand img {
        width: 35px;
        height: 35px;
    }

    .header-inner nav > a:not(.nav-button) {
        display: none;
    }

    .nav-button {
        min-height: 36px;
        padding-inline: 13px;
        font-size: 10px;
    }

    .hero {
        min-height: 1000px;
        border-radius: 0 0 38px 0;
    }

    .hero-inner {
        padding-top: 100px;
    }

    .pill {
        margin-top: 7px;
    }

    .hero h1 {
        margin-top: 23px;
        font-size: clamp(44px, 12.5vw, 64px);
        letter-spacing: -3px;
    }

    .hero h1 br {
        display: none;
    }

    .hero > .hero-inner > p {
        max-width: 500px;
        font-size: 15px;
    }

    .extension-stage {
        height: 590px;
        margin-top: 38px;
    }

    .browser-frame {
        width: 305px;
        height: 590px;
    }

    .stage-ring {
        width: 370px;
        height: 370px;
    }

    .float-traffic {
        top: 135px;
        left: 0;
    }

    .float-ads {
        top: 370px;
        right: 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

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

    .benefit-grid article {
        min-height: 190px;
    }

    .benefit-grid h3 {
        margin-top: 24px;
    }

    .how-inner,
    .privacy-inner,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .how,
    .benefits,
    .faq {
        padding: 80px 0;
    }

    .privacy {
        padding: 65px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr auto;
    }

    .footer-inner nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-button span {
        display: none;
    }

    .hero {
        min-height: 960px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 52px);
        letter-spacing: -2.4px;
    }

    .primary-button {
        width: 100%;
        min-height: 55px;
        padding-inline: 18px;
    }

    .release {
        font-size: 8px;
    }

    .extension-stage {
        height: 560px;
    }

    .browser-frame {
        width: 278px;
        height: 560px;
    }

    .float-card {
        min-width: 128px;
        padding: 9px 10px;
    }

    .float-card strong {
        font-size: 14px;
    }

    .float-traffic {
        top: 125px;
    }

    .float-ads {
        top: 342px;
    }

    .section-heading h2,
    .how h2,
    .privacy h2,
    .faq h2 {
        font-size: 39px;
        letter-spacing: -1.8px;
    }

    .final-cta {
        padding: 82px 0;
    }

    .final-cta h2 {
        font-size: 48px;
        letter-spacing: -2.3px;
    }
}

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

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