:root {
    --navy: #081f5c;
    --royal: #334eac;
    --sky: #7096d1;
    --mist: #e7f1ff;
    --cloud: #d0e3ff;
    --white: #f9fcff;
    --ink: #06163d;
    --line: rgba(112, 150, 209, 0.22);
    --strong-line: rgba(112, 150, 209, 0.34);
    --shadow: 0 24px 70px rgba(8, 31, 92, 0.16);
    --shadow-soft: 0 16px 38px rgba(51, 78, 172, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100vw - 32px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--navy);
    background:
        radial-gradient(circle at top left, rgba(112, 150, 209, 0.22), transparent 34%),
        linear-gradient(180deg, #f2f7ff 0%, var(--white) 26%, #edf5ff 100%);
}

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

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

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

.site-orb {
    position: fixed;
    z-index: -2;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.42;
}

.site-orb-one {
    top: 80px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: rgba(112, 150, 209, 0.46);
}

.site-orb-two {
    top: 520px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(51, 78, 172, 0.28);
}

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

.section {
    padding: 108px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding-top: 18px;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    background: rgba(249, 252, 255, 0.76);
    border: 1px solid rgba(112, 150, 209, 0.24);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(8, 31, 92, 0.08);
}

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

.brand-mark {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(8, 31, 92, 0.16);
}

.brand-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong,
.nav-links a,
h1,
h2,
h3,
.button {
    font-family: "Sora", sans-serif;
}

.brand-copy strong {
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.brand-copy small {
    color: rgba(8, 31, 92, 0.7);
    font-size: 0.78rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.95rem;
    color: rgba(8, 31, 92, 0.78);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--royal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

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

.button-primary,
.button-nav {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
    box-shadow: 0 18px 32px rgba(51, 78, 172, 0.22);
}

.button-secondary {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(112, 150, 209, 0.36);
}

.button-light {
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 18px 38px rgba(3, 14, 42, 0.18);
}

.button-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.26);
    background: transparent;
}

.hero {
    padding-top: 78px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--royal);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--sky), rgba(112, 150, 209, 0.2));
}

h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    max-width: 11ch;
}

.lead,
.section-heading p,
.feature-card p,
.workflow-step p,
.trust-card p,
.download-copy p,
.download-meta,
.faq-answer p,
.site-footer p,
.floating-list,
.shot-copy p {
    color: rgba(8, 31, 92, 0.74);
    font-size: 1.03rem;
    line-height: 1.72;
}

.lead {
    max-width: 60ch;
    margin: 24px 0 0;
}

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

.hero-pills,
.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-pills span,
.trust-pills span,
.trust-pills a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(112, 150, 209, 0.28);
    color: rgba(8, 31, 92, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
}

.trust-pills a:hover,
.trust-pills a:focus-visible {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.38);
}

.hero-stage {
    position: relative;
    min-height: 700px;
}

.device {
    position: relative;
    margin-left: auto;
    width: min(100%, 420px);
    padding: 18px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(231, 241, 255, 0.9));
    border: 1px solid rgba(112, 150, 209, 0.32);
    box-shadow: var(--shadow);
}

.device::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.device-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    padding: 0 8px;
}

.device-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(51, 78, 172, 0.24);
}

.device-screen {
    min-height: 620px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(rgba(112, 150, 209, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 150, 209, 0.14) 1px, transparent 1px),
        linear-gradient(180deg, #f8fbff 0%, #e8f2ff 100%);
    background-size: 22px 22px, 22px 22px, auto;
    border: 1px solid rgba(112, 150, 209, 0.22);
}

.shot-placeholder,
.hero-placeholder {
    display: grid;
    height: 100%;
    place-items: center;
    padding: 24px;
}

.placeholder-card {
    width: 100%;
    max-width: 300px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(249, 252, 255, 0.92);
    border: 1px dashed rgba(51, 78, 172, 0.44);
    box-shadow: var(--shadow-soft);
}

.placeholder-card span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(112, 150, 209, 0.16);
    color: var(--royal);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.placeholder-card strong {
    display: block;
    margin-top: 18px;
    font-family: "Sora", sans-serif;
    font-size: 1.4rem;
    line-height: 1.15;
}

.placeholder-card p {
    margin: 14px 0 0;
    color: rgba(8, 31, 92, 0.72);
    line-height: 1.6;
}

.floating-card {
    position: absolute;
    width: min(270px, 72%);
    padding: 22px;
    border-radius: 24px;
    background: rgba(249, 252, 255, 0.86);
    border: 1px solid rgba(112, 150, 209, 0.26);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
}

.floating-card-top {
    top: 48px;
    left: 0;
    animation: drift 6.4s ease-in-out infinite;
}

.floating-card-bottom {
    right: 8px;
    bottom: 52px;
    animation: drift 7s ease-in-out infinite reverse;
}

.floating-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--royal);
    margin-bottom: 12px;
}

.floating-card strong {
    font-size: 1.05rem;
    line-height: 1.45;
}

.floating-list {
    margin: 0;
    padding-left: 18px;
}

.floating-list li + li {
    margin-top: 10px;
}

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

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.section-heading p {
    margin: 18px 0 0;
}

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

.feature-card,
.workflow-step,
.trust-card,
.faq-item {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(249, 252, 255, 0.88);
    border: 1px solid rgba(112, 150, 209, 0.24);
    box-shadow: var(--shadow-soft);
}

.feature-index,
.step-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(140deg, var(--navy), var(--royal));
    color: var(--white);
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.feature-card h3,
.workflow-step h3,
.trust-card h2 {
    margin: 18px 0 0;
}

.feature-card h3,
.workflow-step h3,
.faq-question {
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.feature-card p,
.workflow-step p {
    margin: 14px 0 0;
}

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

.workflow-step::after {
    content: "";
    position: absolute;
    top: 48px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--sky), rgba(112, 150, 209, 0));
}

.workflow-step:last-child::after {
    display: none;
}

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

.shot-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 20px;
    align-items: center;
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(249, 252, 255, 0.92), rgba(231, 241, 255, 0.9));
    border: 1px solid rgba(112, 150, 209, 0.22);
    box-shadow: var(--shadow-soft);
}

.shot-frame {
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(rgba(112, 150, 209, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 150, 209, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, #f8fbff 0%, #e8f2ff 100%);
    background-size: 18px 18px, 18px 18px, auto;
    border: 1px solid rgba(112, 150, 209, 0.2);
}

.shot-copy span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(51, 78, 172, 0.12);
    color: var(--royal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shot-copy h3 {
    margin: 16px 0 0;
    font-size: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.shot-copy p {
    margin: 14px 0 0;
}

.shot-image,
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.shot-image::after,
.hero-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    background: linear-gradient(180deg, transparent, rgba(8, 31, 92, 0.22));
}

.shot-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    color: white;
    font-size: 0.92rem;
    font-weight: 700;
}

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

.trust-card {
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(249, 252, 255, 0.92), rgba(241, 247, 255, 0.96));
}

.trust-card-premium {
    background:
        linear-gradient(145deg, rgba(8, 31, 92, 0.98), rgba(51, 78, 172, 0.96));
    color: var(--white);
}

.trust-card-premium .eyebrow,
.trust-card-premium p,
.trust-card-premium h2,
.trust-card-premium .trust-pills span,
.trust-card-premium .trust-pills a {
    color: var(--white);
}

.trust-card-premium .eyebrow::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.1));
}

.trust-card-premium .trust-pills span,
.trust-card-premium .trust-pills a {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.check-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(8, 31, 92, 0.82);
    font-weight: 700;
}

.check-list li + li {
    margin-top: 14px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--royal), var(--sky));
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    background: transparent;
    border: 0;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
}

.faq-question span:last-child {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(112, 150, 209, 0.16);
    color: var(--royal);
    transition: transform 180ms ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
    padding-bottom: 24px;
}

.faq-item.is-open .faq-question span:last-child {
    transform: rotate(45deg);
}

.download-panel {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 22%),
        linear-gradient(135deg, rgba(8, 31, 92, 1) 0%, rgba(51, 78, 172, 0.98) 100%);
    box-shadow: var(--shadow);
}

.download-panel .eyebrow,
.download-panel h2,
.download-panel p,
.download-meta {
    color: var(--white);
}

.download-panel .eyebrow::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.12));
}

.download-actions {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.download-meta {
    margin: 8px 0 0;
    max-width: 32ch;
    opacity: 0.78;
    font-size: 0.95rem;
}

.site-footer {
    padding: 24px 0 52px;
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 26px;
    border-top: 1px solid rgba(112, 150, 209, 0.22);
}

.footer-shell strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
}

.footer-shell p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-meta {
    display: grid;
    justify-items: end;
    gap: 10px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.footer-legal a {
    color: rgba(8, 31, 92, 0.72);
    font-family: "Sora", sans-serif;
    font-size: 0.86rem;
    letter-spacing: -0.02em;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 0.18em;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: var(--royal);
    text-decoration-color: currentColor;
}

.legal-page .site-header {
    position: relative;
}

.legal-nav-shell {
    gap: 24px;
}

.legal-main {
    padding: 28px 0 72px;
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 46px 48px;
    border-radius: 34px;
    background: rgba(249, 252, 255, 0.92);
    border: 1px solid rgba(112, 150, 209, 0.24);
    box-shadow: var(--shadow);
}

.legal-card h1 {
    max-width: none;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.legal-meta,
.legal-intro {
    margin: 18px 0 0;
    color: rgba(8, 31, 92, 0.74);
    font-size: 1rem;
    line-height: 1.72;
}

.legal-copy {
    display: grid;
    gap: 30px;
    margin-top: 34px;
}

.legal-copy section {
    display: grid;
    gap: 14px;
}

.legal-copy h2 {
    margin: 0;
    font-size: clamp(1.32rem, 3vw, 1.9rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.legal-copy p,
.legal-copy li {
    margin: 0;
    color: rgba(8, 31, 92, 0.82);
    font-size: 1rem;
    line-height: 1.78;
}

.legal-copy ol,
.legal-copy ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 22px;
}

.legal-copy a {
    color: var(--royal);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.legal-copy code {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(112, 150, 209, 0.14);
    font-size: 0.95em;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes drift {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .download-panel {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 0;
    }

    .device {
        margin: 0 auto;
    }

    .floating-card {
        position: static;
        width: auto;
        margin: 0 auto 18px;
    }

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

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

    .workflow-step::after {
        display: none;
    }
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .shots-grid,
    .trust-grid,
    .feature-grid,
    .workflow-grid,
    .shot-card {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 88px 0;
    }

    .device-screen {
        min-height: 520px;
    }

    .legal-nav-shell {
        flex-wrap: wrap;
    }
}

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

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

    .nav-shell,
    .feature-card,
    .workflow-step,
    .trust-card,
    .download-panel,
    .shot-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    h1 {
        max-width: none;
    }

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

    .hero-actions .button,
    .download-actions .button,
    .button-nav {
        width: 100%;
    }

    .button-nav {
        display: none;
    }

    .device {
        padding: 14px;
        border-radius: 28px;
    }

    .device-screen {
        min-height: 440px;
        border-radius: 22px;
    }

    .placeholder-card {
        padding: 22px;
    }

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

    .footer-meta {
        justify-items: start;
    }

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

    .legal-main {
        padding-top: 14px;
    }

    .legal-card {
        padding: 28px 20px;
        border-radius: 28px;
    }
}
