@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
    --bg: #08101f;
    --bg-soft: #0d1730;
    --panel: rgba(17, 28, 56, 0.82);
    --panel-strong: #111b37;
    --panel-border: rgba(133, 159, 214, 0.18);
    --text-primary: #f7fbff;
    --text-secondary: #9cadcf;
    --text-muted: #6f84ac;
    --accent: #8b5cf6;
    --accent-bright: #61a8ff;
    --accent-soft: #ff72bd;
    --success: #68e3b5;
    --gradient-main: linear-gradient(135deg, #6f5bff 0%, #b04eff 45%, #ff72bd 100%);
    --gradient-secondary: linear-gradient(135deg, #56a6ff 0%, #7d7cff 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 17, 33, 0.35) 0%, rgba(10, 17, 33, 0.85) 100%);
    --shadow-soft: 0 25px 60px rgba(0, 0, 0, 0.28);
    --shadow-card: 0 24px 80px rgba(5, 10, 24, 0.5);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(97, 168, 255, 0.12), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(255, 114, 189, 0.14), transparent 24%),
        radial-gradient(circle at 50% 60%, rgba(139, 92, 246, 0.12), transparent 30%),
        var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

p {
    color: var(--text-secondary);
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.eyebrow {
    margin-bottom: 14px;
    color: #b7c7e8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

.section-heading h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    margin-bottom: 16px;
}

.section-heading p {
    font-size: 0.94rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 18px 40px rgba(163, 92, 255, 0.28);
}

.btn-secondary {
    background: rgba(17, 28, 56, 0.7);
    border-color: rgba(133, 159, 214, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: rgba(133, 159, 214, 0.35);
    box-shadow: var(--shadow-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
    background: rgba(8, 16, 31, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(133, 159, 214, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
}

.brand-mark img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: #dbe6ff;
    font-weight: 700;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #fff;
}

.btn-nav {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-close-item {
    display: none;
}

.menu-close {
    background: none;
    border: 0;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1;
    cursor: pointer;
}

.hero {
    padding: 56px 0 52px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 44px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(1.95rem, 4vw, 3.35rem);
    margin-bottom: 18px;
}

.hero-text {
    max-width: 60ch;
    font-size: 0.96rem;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-points {
    display: grid;
    gap: 12px;
}

.hero-points li {
    position: relative;
    padding-left: 24px;
    color: #d2def7;
    font-weight: 600;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--gradient-secondary);
    box-shadow: 0 0 18px rgba(97, 168, 255, 0.45);
}

.hero-stage {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-art-frame {
    position: relative;
    width: min(100%, 720px);
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(164, 182, 222, 0.16);
    box-shadow: var(--shadow-card);
    background: rgba(8, 16, 31, 0.92);
}

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

.spotlight {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.9;
    pointer-events: none;
}

.spotlight-a {
    width: 240px;
    height: 240px;
    top: 60px;
    left: 30px;
    background: rgba(97, 168, 255, 0.18);
}

.spotlight-b {
    width: 320px;
    height: 320px;
    right: 0;
    bottom: 70px;
    background: rgba(255, 114, 189, 0.16);
}

.phone-stack {
    position: relative;
    width: 100%;
    height: 720px;
}

.phone-card {
    position: absolute;
    width: min(320px, 55vw);
    overflow: hidden;
    border-radius: 42px;
    border: 1px solid rgba(164, 182, 222, 0.15);
    box-shadow: var(--shadow-card);
    background: rgba(8, 16, 31, 0.9);
}

.phone-card img,
.device-shot img,
.media-card img {
    width: 100%;
    height: auto;
}

.phone-card-back {
    top: 88px;
    left: 26px;
    transform: rotate(-11deg);
    opacity: 0.72;
}

.phone-card-mid {
    top: 18px;
    right: 56px;
    transform: rotate(10deg);
}

.phone-card-front {
    left: 120px;
    bottom: 0;
}

.proof-band {
    padding: 24px 0 8px;
}

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

.proof-item {
    padding: 24px;
    background: rgba(15, 24, 47, 0.72);
    border: 1px solid rgba(133, 159, 214, 0.14);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
}

.proof-item strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.proof-item span {
    color: var(--text-secondary);
    font-size: 0.84rem;
}

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

.pillar-card,
.comparison-card,
.faq-snippet,
.story-card,
.download-panel,
.static-content-box,
.cinematic-panel {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.pillar-card {
    padding: 28px;
}

.pillar-kicker {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(97, 168, 255, 0.13);
    color: #d8e8ff;
    font-weight: 800;
}

.pillar-card h3,
.comparison-card h3,
.story-copy h3,
.faq-snippet h3,
.download-panel h2,
.static-content-box h2,
.cinematic-copy h2 {
    margin-bottom: 12px;
}

.pillar-card h3,
.comparison-card h3,
.story-copy h3,
.faq-snippet h3 {
    font-size: 1.12rem;
}

.pillar-card p {
    margin-bottom: 18px;
}

.pillar-card ul {
    display: grid;
    gap: 10px;
}

.pillar-card li {
    position: relative;
    padding-left: 22px;
    color: #d5e0f7;
    font-weight: 600;
}

.pillar-card li::before,
.comparison-card li::before,
.static-content-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gradient-main);
}

.feature-showcase {
    background: linear-gradient(180deg, rgba(14, 23, 45, 0.2) 0%, rgba(14, 23, 45, 0) 100%);
}

.story-grid {
    display: grid;
    gap: 20px;
}

.story-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 32px;
    align-items: center;
    padding: 26px;
}

.story-label {
    margin-bottom: 10px;
    color: #b7c7e8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
}

.story-copy p:last-child {
    margin-top: 0;
}

.device-shot {
    justify-self: center;
    max-width: 360px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(154, 173, 214, 0.16);
    box-shadow: var(--shadow-card);
}

.cinematic-section {
    padding-top: 18px;
}

.cinematic-panel {
    padding: 30px;
}

.cinematic-copy {
    max-width: 720px;
    margin-bottom: 26px;
}

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

.media-card {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(10, 17, 33, 0.88);
    border: 1px solid rgba(133, 159, 214, 0.14);
}

.media-card-wide img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.media-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.video-slot {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(97, 168, 255, 0.22), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 114, 189, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(18, 28, 54, 0.9), rgba(11, 19, 38, 0.95));
}

.video-slot strong {
    font-family: var(--font-heading);
    font-size: 1.18rem;
}

.video-slot p {
    max-width: 28ch;
}

.video-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #dfe8ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-caption {
    padding: 18px 18px 20px;
}

.media-caption strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.media-caption span {
    color: var(--text-secondary);
}

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

.comparison-card {
    padding: 28px;
}

.comparison-card-accent {
    background:
        linear-gradient(180deg, rgba(18, 28, 54, 0.84), rgba(18, 28, 54, 0.84)),
        var(--gradient-main);
}

.comparison-card ul,
.static-content-box ul {
    display: grid;
    gap: 12px;
}

.comparison-card li,
.static-content-box li {
    position: relative;
    padding-left: 22px;
    color: #d5e0f7;
}

.faq-preview-layout {
    display: grid;
    gap: 18px;
}

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

.faq-snippet {
    padding: 24px;
}

.faq-preview-cta {
    margin-top: 8px;
}

.download-section {
    padding-top: 30px;
}

.download-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 32px;
}

.download-panel h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.15rem);
}

.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer {
    padding: 50px 0 28px;
    border-top: 1px solid rgba(133, 159, 214, 0.12);
    background: rgba(5, 10, 24, 0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.footer-brand p {
    max-width: 34ch;
    margin-top: 14px;
}

.footer-column h3 {
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(133, 159, 214, 0.1);
}

.footer-bottom p {
    font-size: 0.86rem;
}

.static-page-header {
    padding: 120px 0 54px;
    background: var(--gradient-dark);
    border-bottom: 1px solid rgba(133, 159, 214, 0.1);
    text-align: center;
}

.static-page-header h1 {
    font-size: clamp(1.7rem, 3.2vw, 2.55rem);
    margin-bottom: 14px;
}

.static-page-header p {
    max-width: 56ch;
    margin: 0 auto;
}

.static-content-box {
    max-width: 860px;
    margin: 0 auto;
    padding: 30px;
}

.static-content-box h2 {
    margin-top: 26px;
    font-size: 1.24rem;
}

.static-content-box h2:first-of-type {
    margin-top: 0;
}

.static-content-box p,
.static-content-box ul {
    margin-top: 12px;
}

.static-content-box strong {
    color: var(--text-primary);
}

.faq-item {
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    overflow: hidden;
}

.faq-item + .faq-item {
    margin-top: 16px;
}

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

.faq-question span:first-child {
    font-weight: 800;
}

.faq-icon {
    color: var(--accent-bright);
    font-size: 1.2rem;
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
}

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

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

@media (max-width: 1100px) {
    .hero-layout,
    .story-card,
    .download-panel,
    .comparison-grid,
    .pillar-grid,
    .proof-grid,
    .cinematic-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .hero-text,
    .section-heading {
        max-width: none;
    }

    .hero-stage {
        min-height: 640px;
    }

    .story-card {
        justify-items: center;
    }

    .download-panel {
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding: 14px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        width: min(84vw, 320px);
        height: 100vh;
        padding: 88px 24px 28px;
        gap: 20px;
        background: rgba(7, 12, 25, 0.96);
        backdrop-filter: blur(16px);
        border-left: 1px solid rgba(133, 159, 214, 0.14);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.25);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .menu-close-item {
        display: block;
        position: absolute;
        top: 18px;
        right: 22px;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-stage {
        min-height: 580px;
    }

    .section {
        padding: 72px 0;
    }

    .static-page-header {
        padding-top: 102px;
    }

    .static-content-box,
    .pillar-card,
    .comparison-card,
    .faq-snippet,
    .cinematic-panel,
    .story-card,
    .download-panel {
        padding: 22px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .hero-copy h1 {
        font-size: 1.78rem;
    }

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

    .btn {
        width: 100%;
    }

    .story-card {
        gap: 22px;
    }

    .device-shot,
    .media-card {
        max-width: 100%;
    }

    .video-slot {
        min-height: 260px;
        padding: 24px;
    }
}
