:root {
    --bg: #101114;
    --panel: #1a1d22;
    --panel2: #121418;
    --line: #2a2d33;
    --text: #f5f7fa;
    --muted: #9ca3af;
    --gold: #f2c14e;
    --goldsoft: rgba(242, 193, 78, 0.12);
    --shadow: rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scrollbar-gutter: stable;
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(242, 193, 78, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 24%),
        linear-gradient(180deg, #101114 0%, #13161a 100%);
}

.page-home,
.page-features,
.page-terms,
.page-privacy {
    background: #13161a;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

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

code {
    padding: 2px 6px;
    border-radius: 6px;
    font-family: Consolas, monospace;
    background: rgba(255, 255, 255, 0.06);
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.shell {
    width: min(1240px, calc(100% - 28px));
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

.topbar {
    padding: 22px 0 16px;
}

.topbar-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 0 1 auto;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.topbar-subtitle {
    margin-top: 4px;
    margin-left: 58px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.nav {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 18px;
    min-height: 40px;
    padding-top: 0;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    font-size: 16px;
}

.nav a {
    display: inline-grid;
    place-items: center;
    min-height: 40px;
    padding: 0 0 6px;
    border-bottom: 2px solid transparent;
    color: rgba(245, 247, 250, 0.9);
    line-height: 1;
    white-space: nowrap;
    transform: none;
    translate: none;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.nav a:hover {
    color: var(--gold);
}

.nav a.active {
    color: rgba(245, 247, 250, 0.9);
    border-bottom-color: var(--gold);
}

.nav a:active,
.nav a:focus,
.nav a:focus-visible {
    transform: none;
    translate: none;
    outline: none;
    box-shadow: none;
}

.hero.two {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 28px;
    padding: 18px 0 68px;
}

.page-home .hero.two {
    padding-bottom: 28px;
}

.hero.single {
    padding: 18px 0 10px;
}

.hero-copy {
    padding: 26px 24px 24px;
}

.hero-copy h1 {
    max-width: none;
}

.panel,
.card,
.price {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(26, 29, 34, 0.96), rgba(18, 20, 24, 0.98));
    box-shadow: 0 24px 80px var(--shadow);
}

.section {
    padding: 58px 0;
}

.home-benefit-section {
    padding-top: 0;
}

.alt {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.015);
    background: rgba(255, 255, 255, 0.015);
}

.benefit-band,
.showcase-band {
    padding: 54px 28px 44px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(26, 29, 34, 0.78), rgba(18, 20, 24, 0.88));
}

.showcase-band.page-band {
    padding-top: 22px;
}

.page-band {
    display: grid;
    gap: 36px;
}

.page-band .section-head {
    max-width: none;
}

.page-band .pricing-grid,
.page-band .grid2,
.page-band .grid3 {
    margin-top: 0;
}

.section-head {
    max-width: 820px;
}

.section-head-wide {
    max-width: none;
}

.label {
    color: #ffe3a0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

h1 {
    margin: 16px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.lede,
.muted,
.card p,
.section-head p,
.price .sub {
    color: var(--muted);
    line-height: 1.8;
}

.lede {
    max-width: 34rem;
    margin-top: 20px;
    font-size: 17px;
}

.muted {
    max-width: 33rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(242, 193, 78, 0.22);
    border-radius: 999px;
    background: var(--goldsoft);
    color: #ffe3a0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 18px rgba(242, 193, 78, 0.5);
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.button {
    color: #15171b;
    background: linear-gradient(90deg, var(--gold), #ffcf66);
    box-shadow: 0 16px 34px rgba(242, 193, 78, 0.18);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.chips span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #d5dae2;
    font-size: 13px;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.features-hero {
    padding-bottom: 0;
}

.features-grid-section {
    padding-top: 18px;
    padding-bottom: 42px;
}

.features-grid {
    margin-top: 0;
}

.features-showcase-section {
    padding-top: 0;
}

.features-showcase {
    padding-top: 38px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    margin-top: 38px;
}

.card h3,
.price h3 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.price.popular {
    border-color: rgba(242, 193, 78, 0.46);
}

.ribbon {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(242, 193, 78, 0.26);
    border-radius: 999px;
    background: rgba(242, 193, 78, 0.14);
    color: #ffe3a0;
    font-size: 12px;
    font-weight: 800;
}

.amount {
    margin-top: 12px;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.amount small {
    color: var(--muted);
    font-size: 18px;
    font-weight: 600;
}

.price ul {
    display: grid;
    gap: 10px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.price li:before {
    content: "\2022";
    margin-right: 10px;
    color: var(--gold);
}

.notice {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(59, 130, 246, 0.24);
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.08);
    color: #cfe0ff;
    font-size: 14px;
    line-height: 1.7;
}

.screens {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(26, 29, 34, 0.96), rgba(18, 20, 24, 0.98));
    box-shadow: 0 24px 80px var(--shadow);
}

.visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.visual h3 {
    margin: 0;
    font-size: 18px;
}

.visual p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.badge {
    padding: 8px 12px;
    border: 1px solid rgba(15, 157, 104, 0.25);
    border-radius: 999px;
    background: rgba(15, 157, 104, 0.1);
    color: #8fe1be;
    font-size: 12px;
    font-weight: 700;
}

.shot {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mainshot,
.thumb {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    background: #0f1115;
}

.shot:hover .mainshot,
.shot:hover .thumb {
    transform: translateY(-2px);
    border-color: rgba(242, 193, 78, 0.34);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.mainshot img,
.thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center top;
}

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

.zoom {
    margin-top: auto;
    padding-top: 12px;
    color: var(--muted);
    font-size: 13px;
}

.prose h3:not(:first-child) {
    margin-top: 24px;
}

.footer {
    margin-top: auto;
    padding: 18px 0 36px;
    color: var(--muted);
    font-size: 14px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand {
    color: var(--muted);
    font-size: 14px;
}

.footer .nav {
    min-height: auto;
    padding-top: 0;
    gap: 14px;
    font-size: 14px;
}

.footer .nav a {
    min-height: auto;
    padding-bottom: 0;
    border-bottom: 0;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 58px;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 18px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 13, 17, 0.46);
    backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__copy {
    max-width: 980px;
}

.cookie-banner__copy span {
    color: rgba(245, 247, 250, 0.9);
    font-size: 15px;
    line-height: 1.5;
}

.cookie-banner__copy a {
    color: var(--gold);
}

.cookie-banner__button {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 12px 26px;
    border: 1px solid rgba(242, 193, 78, 0.34);
    border-radius: 18px;
    background: rgba(242, 193, 78, 0.14);
    color: #fff3c7;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(242, 193, 78, 0.08);
    cursor: pointer;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(5, 8, 12, 0.82);
    backdrop-filter: blur(6px);
}

.lightbox.open {
    display: flex;
}

.lightbox-panel {
    position: relative;
    width: min(1200px, 100%);
    max-height: 100%;
    padding: 22px 22px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: #0f1115;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(242, 193, 78, 0.32);
    border-radius: 999px;
    background: rgba(242, 193, 78, 0.12);
    color: #ffe3a0;
    font-weight: 700;
    cursor: pointer;
}

.lightbox-wrap {
    overflow: auto;
    max-height: calc(100vh - 110px);
    margin-top: 20px;
    border-radius: 18px;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    background: #0b0d11;
}

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

@media (max-width: 1080px) {
    .hero.two,
    .pricing-grid,
    .grid3,
    .grid2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .topbar-main {
        display: block;
    }

    .nav {
        display: none;
    }

    .topbar-subtitle {
        margin-left: 58px;
    }

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

    .panel,
    .card,
    .price,
    .screens {
        padding: 22px;
    }

    .footer-row {
        align-items: flex-start;
    }

    .footer .nav {
        display: flex;
    }

    .cookie-banner {
        left: 0;
        right: 0;
        bottom: 0;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 16px 18px 18px;
    }

    .cookie-banner__button {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(1240px, calc(100% - 20px));
    }

    .topbar {
        padding: 18px 0 14px;
    }

    .brand-title {
        font-size: 23px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .topbar-subtitle {
        margin-left: 52px;
    }

    .hero.two {
        padding: 12px 0 56px;
    }

    .page-home .hero.two {
        padding-bottom: 26px;
    }

    .section {
        padding: 48px 0;
    }

    .home-benefit-section {
        padding-top: 4px;
    }

    .benefit-band,
    .showcase-band {
        padding: 42px 20px 36px;
    }

    .showcase-band.page-band {
        padding-top: 20px;
    }

    .features-grid-section {
        padding-top: 12px;
        padding-bottom: 34px;
    }

    .features-showcase-section {
        padding-top: 0;
    }

    .features-showcase {
        padding-top: 28px;
    }

    .page-band {
        gap: 28px;
    }

    .amount {
        font-size: 36px;
    }

    .footer .nav {
        gap: 12px;
        font-size: 13px;
    }
}
