:root {
    --bg: #f4efe8;
    --bg-alt: #ebe4da;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --surface-dark: #11161c;
    --surface-dark-soft: #18202a;
    --text: #12161b;
    --text-soft: #5f6771;
    --line: rgba(18, 22, 27, 0.09);
    --line-strong: rgba(255, 255, 255, 0.12);
    --accent: #0f8f81;
    --accent-strong: #0a7569;
    --accent-alt: #2d6df6;
    --accent-soft: #d9f2ee;
    --sand: #d9c9b2;
    --shadow-xl: 0 32px 70px rgba(15, 20, 28, 0.18);
    --shadow-lg: 0 20px 44px rgba(15, 20, 28, 0.12);
    --shadow-md: 0 12px 28px rgba(15, 20, 28, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1220px, calc(100vw - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(15, 143, 129, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(45, 109, 246, 0.06), transparent 24%),
        linear-gradient(180deg, #faf8f4 0%, #f4efe8 36%, #f7f3ed 100%);
}

body.nav-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

code {
    padding: 0.16rem 0.42rem;
    border-radius: 999px;
    background: rgba(18, 22, 27, 0.06);
    font-size: 0.92em;
}

.page-shell {
    overflow: clip;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0;
    transition: padding 0.25s ease;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 244, 237, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18, 22, 27, 0.06);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.site-header.is-scrolled {
    padding: 10px 0;
}

.site-header.is-scrolled::before {
    opacity: 1;
}

.nav-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 22, 27, 0.08);
    box-shadow: 0 10px 26px rgba(15, 20, 28, 0.08);
}

.brand-mark {
    width: 34px;
    height: 34px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand-name,
.footer-brand-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: lowercase;
}

.brand-tag {
    color: var(--text-soft);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.95rem;
    font-weight: 700;
}

.site-nav > a {
    color: rgba(18, 22, 27, 0.84);
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
    color: var(--accent-strong);
}

.nav-link-soft {
    color: var(--text-soft);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(18, 22, 27, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(15, 20, 28, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
    color: #f9fffe;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 16px 34px rgba(15, 143, 129, 0.24);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(18, 22, 27, 0.11);
    box-shadow: 0 14px 30px rgba(15, 20, 28, 0.08);
}

.button-on-dark {
    color: #f4f0ea;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.hero {
    padding: 48px 0 88px;
}

.hero-grid,
.statement-grid,
.stack-grid,
.faq-grid,
.cta-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: center;
}

.hero-copy h1,
.section-heading h2,
.faq-intro h2,
.cta-copy h2,
.tour-copy h3,
.feature-card h3,
.difference-card h3,
.stack-card h3 {
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.hero-copy h1 {
    margin-top: 18px;
    max-width: 11ch;
    font-size: clamp(3rem, 5.2vw, 5.8rem);
    font-weight: 800;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-strong);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 117, 105, 0), rgba(10, 117, 105, 1));
}

.hero-lead,
.section-heading p,
.feature-card p,
.difference-card p,
.tour-copy p,
.stack-card p,
.faq-intro p,
.faq-list p,
.cta-copy p,
.footer-brand-copy {
    margin: 20px 0 0;
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-proof span,
.pill,
.shot-label,
.difference-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-proof span {
    color: var(--text);
    background: rgba(18, 22, 27, 0.05);
    border: 1px solid rgba(18, 22, 27, 0.08);
}

.hero-note {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 22, 27, 0.08);
    box-shadow: var(--shadow-md);
}

.hero-note strong {
    color: var(--text);
}

.hero-media {
    position: relative;
    min-height: 720px;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 40px 30px 60px 40px;
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(15, 143, 129, 0.12), rgba(45, 109, 246, 0.12));
    filter: blur(8px);
}

.shot-card {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 22, 27, 0.08);
    box-shadow: var(--shadow-xl);
}

.shot-card img,
.tour-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.shot-label,
.pill {
    color: var(--surface-dark);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 22, 27, 0.08);
}

.shot-card .shot-label {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
}

.shot-card-main {
    top: 28px;
    left: 0;
    width: 78%;
    height: 520px;
}

.shot-card-clients {
    top: 0;
    right: 0;
    width: 42%;
    height: 250px;
}

.shot-card-crm {
    right: 4%;
    bottom: 120px;
    width: 44%;
    height: 260px;
}

.shot-card-finance {
    left: 8%;
    bottom: 12px;
    width: 56%;
    height: 220px;
}

.section {
    padding: 108px 0;
}

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

.section-heading h2,
.faq-intro h2,
.cta-copy h2 {
    margin-top: 18px;
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    font-weight: 800;
}

.statement-cards,
.faq-list {
    display: grid;
    gap: 18px;
}

.feature-card,
.stack-card,
.tour-card,
.faq-list details {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 22, 27, 0.08);
    box-shadow: var(--shadow-md);
}

.feature-card {
    padding: 28px;
}

.feature-card h3,
.difference-card h3,
.stack-card h3 {
    font-size: 1.34rem;
    line-height: 1.2;
}

.section-difference {
    color: #f3eee7;
    background:
        radial-gradient(circle at top left, rgba(15, 143, 129, 0.18), transparent 22%),
        radial-gradient(circle at bottom right, rgba(45, 109, 246, 0.14), transparent 24%),
        linear-gradient(180deg, #11161c 0%, #161e27 100%);
}

.section-difference .eyebrow,
.section-cta .eyebrow {
    color: #8ce5d8;
}

.section-difference .eyebrow::before,
.section-cta .eyebrow::before {
    background: linear-gradient(90deg, rgba(140, 229, 216, 0), rgba(140, 229, 216, 1));
}

.section-difference .section-heading,
.section-cta .cta-copy {
    margin: 0 auto;
}

.section-heading-center {
    text-align: center;
}

.section-heading-center .eyebrow {
    justify-content: center;
}

.section-difference .section-heading p,
.section-cta .cta-copy p,
.tour-card-dark .tour-copy p {
    color: rgba(243, 238, 231, 0.7);
}

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

.difference-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.difference-index {
    color: #dffcf7;
    background: rgba(15, 143, 129, 0.2);
    border: 1px solid rgba(140, 229, 216, 0.18);
}

.difference-card p {
    color: rgba(243, 238, 231, 0.72);
}

.section-tour {
    background: linear-gradient(180deg, #f7f3ed 0%, #efe8df 100%);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 42px;
}

.tour-card {
    padding: 24px;
}

.tour-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    align-items: center;
}

.tour-card-dark {
    color: #f3eee7;
    background: #121820;
    border-color: rgba(255, 255, 255, 0.08);
}

.tour-copy {
    display: grid;
    align-content: start;
    gap: 16px;
}

.tour-copy h3 {
    font-size: clamp(1.6rem, 2.4vw, 2.6rem);
    font-weight: 800;
}

.tour-frame {
    overflow: hidden;
    height: 310px;
    border-radius: 22px;
    background: rgba(18, 22, 27, 0.04);
    border: 1px solid rgba(18, 22, 27, 0.07);
}

.frame-tall {
    height: 420px;
}

.frame-dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.section-stack {
    background: var(--bg);
}

.stack-grid {
    align-items: start;
}

.stack-card {
    padding: 24px;
}

.stack-card .tour-frame {
    height: 260px;
}

.section-faq {
    background: #f9f6f1;
}

.faq-intro {
    max-width: 560px;
}

.faq-list details {
    padding: 22px 24px;
}

.faq-list summary {
    position: relative;
    padding-right: 34px;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 800;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: -2px;
    right: 0;
    font-size: 1.42rem;
    color: var(--accent-strong);
    transition: transform 0.2s ease;
}

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

.section-cta {
    color: #f3eee7;
    background:
        radial-gradient(circle at left top, rgba(15, 143, 129, 0.16), transparent 24%),
        radial-gradient(circle at right bottom, rgba(45, 109, 246, 0.1), transparent 26%),
        linear-gradient(135deg, #11161c 0%, #17202a 100%);
}

.cta-shell {
    padding: 40px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.site-footer {
    padding: 30px 0 38px;
    background: #0f141a;
    color: rgba(243, 238, 231, 0.82);
}

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

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.brand-mark-footer {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.footer-brand-copy {
    margin-top: 6px;
    max-width: 520px;
    color: rgba(243, 238, 231, 0.62);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    font-size: 0.94rem;
    font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .hero-grid,
    .statement-grid,
    .stack-grid,
    .faq-grid,
    .cta-shell,
    .tour-card-wide {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

    .hero-media {
        min-height: 760px;
        max-width: 760px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-block;
        position: relative;
        z-index: 3;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        display: grid;
        gap: 16px;
        padding: 22px;
        border-radius: 28px;
        background: rgba(251, 248, 243, 0.96);
        border: 1px solid rgba(18, 22, 27, 0.08);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    body.nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

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

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

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

    .brand-tag {
        display: none;
    }

    .tour-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    :root {
        --container: min(100vw - 24px, 1220px);
    }

    .site-header {
        padding: 12px 0;
    }

    .hero {
        padding: 24px 0 64px;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.5rem, 10vw, 3.6rem);
    }

    .hero-media {
        min-height: 520px;
    }

    .shot-card-main {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 320px;
    }

    .shot-card-clients {
        top: 16px;
        right: 0;
        width: 42%;
        height: 164px;
    }

    .shot-card-crm {
        right: 4%;
        bottom: 90px;
        width: 48%;
        height: 168px;
    }

    .shot-card-finance {
        left: 0;
        bottom: 0;
        width: 62%;
        height: 148px;
    }

    .section,
    .section-statement,
    .section-difference,
    .section-tour,
    .section-stack,
    .section-faq,
    .section-cta {
        padding: 80px 0;
    }

    .feature-card,
    .tour-card,
    .stack-card,
    .faq-list details,
    .cta-shell {
        padding: 22px;
    }

    .tour-frame,
    .frame-tall {
        height: 260px;
    }

    .button {
        width: 100%;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}