* {
    box-sizing: border-box;
}

:root {
    --bg: #07080b;
    --bg-soft: #0d1017;
    --surface: rgba(17, 21, 30, 0.92);
    --surface-strong: #151a24;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #fbf8ef;
    --muted: #c9c6bc;
    --dim: #8e928f;
    --faint: #626862;
    --yellow: #f4cf32;
    --coral: #ff5d57;
    --mint: #24d19a;
    --blue: #4b94ff;
    --orange: #ff8a22;
    --violet: #8b7dff;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    font-family: "Alexandria", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 240px),
        var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header,
body > .container nav {
    width: min(1180px, calc(100% - 40px));
    min-height: 72px;
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 20;
}

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav-logo span {
    color: var(--text);
    font-size: 17px;
    letter-spacing: 0;
}

.nav-links,
body > .container nav > div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a,
body > .container nav > div a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.nav-links a:hover,
body > .container nav > div a:hover,
footer a:hover {
    color: var(--text);
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 76vh;
    min-height: 76svh;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    position: absolute;
    width: min(1720px, 146vw);
    max-width: none;
    left: 54%;
    top: 45%;
    transform: translate(-50%, -50%);
    opacity: 0.78;
    filter: saturate(1.1) contrast(1.08);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 8, 11, 0.96) 0%, rgba(7, 8, 11, 0.82) 34%, rgba(7, 8, 11, 0.28) 64%, rgba(7, 8, 11, 0.68) 100%),
        linear-gradient(180deg, rgba(7, 8, 11, 0.1) 0%, rgba(7, 8, 11, 0.82) 100%);
}

.hero-inner,
.section-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-inner {
    min-height: 76vh;
    min-height: 76svh;
    padding: 60px 0 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px 4px;
    border-radius: 999px;
    background: var(--yellow);
    color: #090909;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    margin: 24px 0 4px;
    font-size: 104px;
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-subhead {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: 0;
}

.hero-copy {
    width: min(620px, 100%);
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
}

.button-primary {
    background: var(--text);
    color: #07080b;
}

.button-secondary {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.button:hover {
    transform: translateY(-1px);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.hero-tags span,
.stat {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
}

.section {
    padding: 84px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-muted {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        var(--bg-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--dim);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.section h2 {
    margin: 0;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
}

.section-heading p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.workflow-card,
.shot-card,
.privacy-item,
.support-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.workflow-card {
    padding: 22px;
    min-height: 230px;
}

.accent {
    width: 46px;
    height: 6px;
    border-radius: 999px;
    margin-bottom: 20px;
    background: var(--yellow);
}

.accent-coral {
    background: var(--coral);
}

.accent-mint {
    background: var(--mint);
}

.accent-orange {
    background: var(--orange);
}

.accent-blue {
    background: var(--blue);
}

.workflow-card h3,
.privacy-item h3,
.support-panel h3,
.shot-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0;
}

.workflow-card p,
.privacy-item p,
.support-panel p,
.shot-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.tour-rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(230px, 1fr));
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
}

.shot-card {
    min-width: 230px;
    overflow: hidden;
    scroll-snap-align: start;
}

.shot-card img {
    display: block;
    width: 100%;
    aspect-ratio: 690 / 1500;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.shot-copy {
    padding: 16px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 12px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #06070a;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.pill-yellow {
    background: var(--yellow);
}

.pill-coral {
    background: var(--coral);
}

.pill-mint {
    background: var(--mint);
}

.pill-orange {
    background: var(--orange);
}

.pill-blue {
    background: var(--blue);
}

.pill-detail {
    background: #ffd94a;
}

.split-band {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

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

.feature-row span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.pano-frame {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #050608;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.pano-frame img {
    display: block;
    width: 100%;
}

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

.privacy-item,
.support-panel {
    padding: 24px;
}

.support-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.support-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer,
body > .container footer {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 44px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--faint);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p,
body > .container footer p {
    margin: 0;
    color: var(--faint);
    font-size: 13px;
}

.site-footer nav,
body > .container footer {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer a,
body > .container footer a {
    color: var(--dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

body > .container {
    width: min(840px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
    padding: 0 0 56px;
}

body > .container nav {
    width: 100%;
    margin-bottom: 64px;
}

body > .container h1 {
    margin: 0 0 8px;
    font-size: 52px;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
}

body > .container .subtitle,
body > .container .last-updated {
    color: var(--muted);
    font-size: 16px;
    margin: 0 0 42px;
}

body > .container h2 {
    color: var(--text);
    margin: 36px 0 14px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

body > .container h2:first-of-type {
    margin-top: 0;
}

body > .container p,
body > .container li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

body > .container strong {
    color: var(--text);
}

body > .container a {
    color: var(--yellow);
    font-weight: 700;
}

body > .container nav a,
body > .container footer a {
    color: var(--dim);
}

body > .container .faq-item,
body > .container .contact-section {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

body > .container .faq-item {
    padding: 22px;
    margin-bottom: 12px;
}

body > .container .faq-q {
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 900;
}

body > .container .faq-a {
    margin-bottom: 0;
}

body > .container .contact-section {
    padding: 28px;
    margin-top: 44px;
}

@media (max-width: 1100px) {
    .workflow-grid,
    .privacy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-rail {
        grid-template-columns: repeat(6, 245px);
    }

    .split-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header,
    body > .container nav {
        width: min(1180px, calc(100% - 28px));
        min-height: 64px;
        padding: 14px 0;
    }

    .nav-links,
    body > .container nav > div {
        gap: 14px;
    }

    .nav-links a,
    body > .container nav > div a {
        font-size: 12px;
    }

    .hero {
        min-height: 72vh;
        min-height: 72svh;
    }

    .hero-media img {
        width: 980px;
        left: 58%;
        top: 48%;
        opacity: 0.62;
    }

    .hero-inner,
    .section-inner {
        width: min(1180px, calc(100% - 28px));
    }

    .hero-inner {
        min-height: 72vh;
        min-height: 72svh;
        padding: 42px 0 40px;
    }

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

    .hero-subhead {
        font-size: 27px;
    }

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

    .section {
        padding: 58px 0;
    }

    .section h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .workflow-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .tour-rail {
        grid-template-columns: repeat(6, 240px);
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .support-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .support-actions {
        justify-content: flex-start;
    }

    .site-footer,
    body > .container footer {
        width: min(1180px, calc(100% - 28px));
        flex-direction: column;
        align-items: flex-start;
    }

    body > .container {
        width: min(840px, calc(100% - 28px));
    }

    body > .container h1 {
        font-size: 38px;
    }
}

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

    .nav-links a:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-subhead {
        font-size: 23px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-tags span {
        font-size: 11px;
    }

    .tour-rail {
        grid-template-columns: repeat(6, 220px);
    }
}
