:root {
    --ink: #1A1A2E;
    --dusk: #16213E;
    --indigo: #0F3460;
    --violet: #533483;
    --glow: #E94560;
    --mist: #A8B2D8;
    --frost: #CDD6F4;
    --cream: #F0EEF8;
    --stone: #7A7A9D;
    --sand: #E8E4F0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--ink);
    color: var(--cream);
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Syne', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 178, 216, 0.1);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: 0.04em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--glow);
}

.nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
    font-weight: 500;
}

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

.nav-links a.active {
    color: var(--cream);
}

.nav-cta {
    background: var(--glow) !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #ff6b80 !important;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
}

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

    .hamburger {
        display: flex;
    }
}

#hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(83, 52, 131, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 60%),
        var(--ink);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    animation: drift 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: var(--violet);
    top: -150px;
    right: -100px;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: var(--glow);
    bottom: 50px;
    left: -80px;
    animation-delay: -4s;
    opacity: 0.12;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: var(--indigo);
    top: 30%;
    left: 35%;
    animation-delay: -7s;
    opacity: 0.3;
}

@keyframes drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(25px, 18px) scale(1.06);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(233, 69, 96, 0.12);
    border: 1px solid rgba(233, 69, 96, 0.35);
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--glow);
    margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease both;
    font-weight: 600;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--glow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.2rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--cream);
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #E94560, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    margin-top: 1.6rem;
    font-size: 1.05rem;
    color: var(--mist);
    line-height: 1.75;
    max-width: 500px;
    margin-inline: auto;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glow);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.4);
    font-weight: 600;
}

.btn-primary:hover {
    background: #ff6b80;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid rgba(168, 178, 216, 0.3);
    color: var(--frost);
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-secondary:hover {
    border-color: rgba(168, 178, 216, 0.6);
    background: rgba(168, 178, 216, 0.08);
}

.store-badges {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.6s ease both;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--cream);
    padding: 0.8rem 1.6rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.store-badge svg {
    width: 20px;
    height: 20px;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
}

.store-badge-text span:first-child {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
}

.store-badge-text span:last-child {
    font-size: 0.88rem;
    font-weight: 600;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flow-ring-wrap {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    animation: fadeUp 0.8s 0.75s ease both;
}

.flow-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1.5px solid rgba(233, 69, 96, 0.5);
    display: grid;
    place-items: center;
    animation: breathe 5s ease-in-out infinite;
    position: relative;
}

.flow-ring::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(168, 178, 216, 0.2);
    animation: breathe 5s 0.6s ease-in-out infinite;
}

.flow-ring::after {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    border: 1px solid rgba(83, 52, 131, 0.25);
    animation: breathe 5s 1.2s ease-in-out infinite;
}

.flow-ring span {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 600;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

section {
    padding: 6rem 2rem;
}

.section-tag {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--glow);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-top: 0.6rem;
    color: var(--cream);
}

#features {
    background: var(--dusk);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 178, 216, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    background: rgba(233, 69, 96, 0.06);
    border-color: rgba(233, 69, 96, 0.2);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(233, 69, 96, 0.12);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 1.3rem;
    font-size: 1.4rem;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.feature-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--cream);
}

.feature-card p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--stone);
}

#screenshots {
    background: var(--ink);
}

.phones-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.phones-row::-webkit-scrollbar {
    display: none;
}

.phone-mockup {
    flex-shrink: 0;
    width: 200px;
    height: 380px;
    background: var(--dusk);
    border-radius: 32px;
    border: 1px solid rgba(168, 178, 216, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--cream);
    padding: 1rem;
    transition: transform 0.4s;
}

.phone-mockup:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.phone-mockup .screen-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    color: var(--mist);
    font-weight: 600;
}

.phone-screen-icon {
    font-size: 3rem;
}

#testimonials {
    background: var(--dusk);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(168, 178, 216, 0.1);
    transition: border-color 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(233, 69, 96, 0.2);
}

.stars {
    color: var(--glow);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.testimonial-card p {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--frost);
    font-weight: 400;
}

.testimonial-author {
    margin-top: 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--stone);
}

#why {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(83, 52, 131, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    border-top: 1px solid rgba(168, 178, 216, 0.12);
    padding-top: 1.5rem;
}

.why-card .why-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(233, 69, 96, 0.25);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.why-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--stone);
}

#cta {
    background: linear-gradient(135deg, var(--violet) 0%, #E94560 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    pointer-events: none;
}

#cta .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

#cta .section-title {
    color: white;
}

#cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

#cta .store-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

#cta .store-badge:hover {
    background: rgba(255, 255, 255, 0.25);
}

footer {
    background: #0D0D1A;
    color: rgba(168, 178, 216, 0.5);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(168, 178, 216, 0.08);
}

footer .footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

footer .footer-logo span {
    color: var(--glow);
}

footer .footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.2rem 0;
}

footer .footer-links a {
    color: rgba(168, 178, 216, 0.4);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    transition: color 0.3s;
    text-transform: uppercase;
}

footer .footer-links a:hover {
    color: var(--mist);
}

footer .footer-copy {
    font-size: 0.72rem;
    opacity: 0.4;
    margin-top: 1.5rem;
}

.page-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0.5rem 0;
}

.page-hero p {
    color: var(--mist);
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
}

.prose-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.prose-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 0.75rem;
    color: var(--cream);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(168, 178, 216, 0.1);
}

.prose-section h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: var(--frost);
}

.prose-section p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--mist);
    margin-bottom: 1rem;
}

.prose-section ul {
    margin: 0.75rem 0 1rem 1.5rem;
}

.prose-section ul li {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--mist);
    margin-bottom: 0.4rem;
}

.prose-section strong {
    color: var(--cream);
}

.last-updated {
    font-size: 0.78rem;
    color: var(--stone);
    letter-spacing: 0.08em;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 178, 216, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(233, 69, 96, 0.25);
    background: rgba(233, 69, 96, 0.05);
}

.value-card .icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.value-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.value-card p {
    font-size: 0.82rem;
    color: var(--stone);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 178, 216, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: rgba(233, 69, 96, 0.2);
    transform: translateY(-3px);
}

.team-avatar {
    font-size: 2.2rem;
    width: 56px;
    height: 56px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 0.75rem;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.team-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.team-card span {
    font-size: 0.75rem;
    color: var(--stone);
}