:root {
    --bg-deep: #0a0612;
    --glass-bg: rgba(25, 18, 40, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.12);

    --rose: #ff4d85;
    --peach: #ff8e8b;
    --violet: #8a2be2;
    --deep-purple: #3a0ca3;
    --warm-gold: #ffb86c;

    --text-main: #fcfafc;
    --text-muted: #b5b0c4;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;

    --radius-pill: 999px;
    --radius-card: 2.5rem;

    --ease-fluid: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

::selection {
    background: var(--rose);
    color: #fff;
}

#ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    opacity: 0.65;
}

.gradient-mesh {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.12), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 77, 133, 0.10), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 184, 108, 0.05), transparent 40%);
    filter: blur(60px);
    pointer-events: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 10;
}

nav {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.nav-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 12, 30, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    padding: 10px 15px 10px 30px;
    border-radius: var(--radius-pill);
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--peach);
}

.btn-fluid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--rose), var(--peach));
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all 0.4s var(--ease-fluid);
    box-shadow: 0 8px 25px rgba(255, 77, 133, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-fluid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--peach), var(--rose));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-fluid span {
    position: relative;
    z-index: 1;
}

.btn-fluid:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 77, 133, 0.45);
}

.btn-fluid:hover::before {
    opacity: 1;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.btn-ghost::before {
    background: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 580px;
}

.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--peach);
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-title i {
    color: transparent;
    background: linear-gradient(120deg, var(--peach), var(--rose), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-fine {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    fill: var(--peach);
}

.aura-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fluid-blob {
    position: absolute;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--violet) 100%);
    animation: morph 8s ease-in-out infinite;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transition: all 1s ease-in-out;
    z-index: 1;
    opacity: 0.7;
    filter: blur(12px);
}

.fluid-blob-2 {
    width: 95%;
    height: 95%;
    background: linear-gradient(to right, rgba(255, 184, 108, 0.4), rgba(138, 43, 226, 0.5));
    animation: morph 10s ease-in-out infinite reverse;
    z-index: 0;
    filter: blur(20px);
}

.fluid-blob-3 {
    width: 90%;
    height: 90%;
    background: var(--bg-deep);
    animation: morph 6s ease-in-out infinite 1s;
    z-index: 2;
    filter: none;
    box-shadow: inset 0 0 60px rgba(255, 77, 133, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.aura-core {
    text-align: center;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.aura-core img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mic-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mic-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-main);
}

.aura-core p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--peach);
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.split-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.stat-box h4 {
    font-family: var(--font-serif);
    color: var(--peach);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-fluid);
}

.step-card:hover {
    transform: translateY(-8px);
    background: var(--glass-hover);
    border-color: rgba(255, 77, 133, 0.2);
}

.step-num {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.step-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--text-muted);
    font-weight: 300;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 50px 40px;
    backdrop-filter: blur(15px);
    transition: all 0.4s var(--ease-fluid);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 133, 0.3);
    background: var(--glass-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(255, 77, 133, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--peach);
    font-size: 2rem;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-card p {
    color: var(--text-muted);
    font-weight: 300;
}

.pill-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.location-pill {
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    cursor: default;
    backdrop-filter: blur(10px);
}

.location-pill:hover {
    background: rgba(255, 77, 133, 0.15);
    border-color: var(--rose);
    color: #fff;
    transform: scale(1.05);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.access-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 30px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.access-panel img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/2;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}
.access-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.3;
}

.panel-her::before {
    background: var(--rose);
    top: -100px;
    right: -100px;
}

.panel-him::before {
    background: var(--violet);
    bottom: -100px;
    left: -100px;
    top: auto;
    right: auto;
}

.panel-content {
    position: relative;
    z-index: 1;
}

.panel-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.panel-her .panel-tag {
    color: var(--peach);
}

.panel-him .panel-tag {
    color: #a580ff;
}

.access-panel h3 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.1;
}

.access-list {
    list-style: none;
    margin-bottom: 40px;
}

.access-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-main);
    font-weight: 300;
    font-size: 1.1rem;
}

.circle-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.panel-her .circle-check {
    background: rgba(255, 77, 133, 0.2);
    color: var(--peach);
}

.panel-him .circle-check {
    background: rgba(138, 43, 226, 0.2);
    color: #a580ff;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.safety-card {
    padding: 30px;
    background: transparent;
    border-top: 2px solid var(--glass-border);
    transition: border-color 0.3s;
}

.safety-card:hover {
    border-top-color: var(--peach);
}

.safety-card h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.safety-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-btn span {
    font-size: 1.5rem;
    color: var(--peach);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.faq-content p {
    padding-bottom: 25px;
    color: var(--text-muted);
    font-weight: 300;
}

.faq-item.active .faq-content {
    max-height: 200px;
    /* arbitrary large enough height */
}

.faq-item.active .faq-btn span {
    transform: rotate(45deg);
}

.final-cta {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(255, 77, 133, 0.08), transparent 70%);
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 30px 0 30px;
    text-align: center;
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 968px) {

    .hero-layout,
    .split-section,
    .access-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions,
    .trust-strip {
        justify-content: center;
    }

    .aura-wrapper {
        max-width: 400px;
        margin-top: 40px;
    }

    .safety-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .nav-pill {
        padding: 10px 20px;
    }

    .btn-fluid {
        width: 100%;
    }

    .access-panel {
        padding: 40px 30px;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
