/* Someone Like Me - Sanctuary Landing Page CSS */
:root {
    --bg-dark: #080c14;
    --bg-card: rgba(13, 19, 33, 0.95);
    --bg-card-border: rgba(255, 255, 255, 0.08);
    --primary-indigo: #6366f1;
    --accent-violet: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-cyan: #38bdf8;
    --text-main: #ffffff;
    --text-muted: #cbd5e1;
    --text-faint: #94a3b8;
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-heading);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    background-color: var(--bg-dark);
    line-height: 1.55;
}

/* Standard SVG Icon Styling Utilities */
.svg-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Background Stars Canvas */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Header & Glass Nav */
.sanctuary-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 1.75rem;
    transition: all 0.3s ease;
}

.sanctuary-header.scrolled {
    background: rgba(8, 12, 20, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1.75rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo-wrapper {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.brand-title-me {
    background: linear-gradient(135deg, #a5b4fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-get-app {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-get-app:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 1.75rem;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    filter: brightness(0.85) contrast(1.15) saturate(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(8, 12, 20, 0.15), rgba(8, 12, 20, 0.65) 85%),
                linear-gradient(180deg, rgba(8, 12, 20, 0.25) 0%, rgba(8, 12, 20, 0.4) 60%, rgba(8, 12, 20, 0.95) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center Emblem Ring */
.hero-emblem-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 3px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.25) 70%);
    border: 1px solid rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 35px rgba(99, 102, 241, 0.45), inset 0 0 20px rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    animation: floatingRing 4s ease-in-out infinite;
}

@keyframes floatingRing {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 35px rgba(99, 102, 241, 0.35); }
    50% { transform: translateY(-5px); box-shadow: 0 0 48px rgba(139, 92, 246, 0.55); }
}

.hero-emblem-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-emblem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.1rem, 5.2vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(0.98rem, 2.2vw, 1.25rem);
    font-weight: 400;
    color: #cbd5e1;
    line-height: 1.55;
    max-width: 700px;
    margin-bottom: 1.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.btn-hero-primary {
    flex: 1;
    background: #f8fafc;
    color: #080c14;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

.btn-hero-secondary {
    flex: 1;
    background: rgba(30, 41, 59, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.app-store-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.badge-pill {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    padding: 0.55rem 1.1rem;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.badge-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-caption {
    font-size: 0.82rem;
    color: #94a3b8;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* SECTION 2 - Poetic Sanctuary Statement */
.statement-section {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem 1.5rem;
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.statement-card-media {
    width: 100%;
    max-width: 580px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(99, 102, 241, 0.2);
    position: relative;
    margin-bottom: 1.5rem;
    aspect-ratio: 1 / 0.92;
    background: #080c14;
}

@media (min-width: 640px) {
    .statement-card-media {
        aspect-ratio: 16 / 10;
    }
}

.statement-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.statement-text-container {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: clamp(1.1rem, 2.8vw, 1.45rem);
    line-height: 1.4;
    color: #94a3b8;
    text-align: left;
}

.statement-line {
    transition: color 0.3s ease;
    font-weight: 400;
}

.statement-line-highlight {
    color: #ffffff;
    font-weight: 600;
}

/* SECTION 3 - Connection Feature Card */
.connection-section {
    position: relative;
    z-index: 2;
    padding: 1.75rem 1.5rem 2rem;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.section-transition-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-align: left;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.connection-banner-card {
    background: rgba(13, 19, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem 1.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(99, 102, 241, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.connection-banner-title {
    font-size: clamp(1.6rem, 3.8vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    max-width: 700px;
    letter-spacing: -0.03em;
}

.connection-node-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    width: 100%;
    max-width: 420px;
    margin: 0;
}

.connection-user-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.node-avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.node-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #94a3b8;
}

.connection-pulse-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.8), rgba(99, 102, 241, 0.2));
    position: relative;
    border-radius: 9999px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    overflow: hidden;
}

.connection-pulse-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: connectionPulse 2.5s infinite linear;
}

@keyframes connectionPulse {
    0% { left: -30%; }
    100% { left: 100%; }
}

.connection-banner-subtext {
    font-size: clamp(0.98rem, 2.1vw, 1.2rem);
    line-height: 1.55;
    color: #cbd5e1;
    max-width: 680px;
    font-weight: 400;
}

/* SECTION 4 - THE EXPERIENCE */
.experience-section {
    position: relative;
    z-index: 2;
    padding: 2.25rem 1.5rem 2.25rem;
    max-width: 1120px;
    margin: 0 auto;
}

.experience-tagline {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: var(--text-faint);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.experience-title {
    text-align: center;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.35rem;
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.experience-card {
    background: rgba(13, 19, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.35rem;
    padding: 1.35rem;
    backdrop-filter: blur(16px);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(99, 102, 241, 0.2);
}

.experience-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-card-img {
    transform: scale(1.04);
}

.experience-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.experience-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #94a3b8;
    font-weight: 400;
}

/* SECTION 5 - "No followers. No likes. No pretending." PURE MINIMAL SLEEK FLOATING BAR */
.nofollowers-section {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem 1.5rem;
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Sleek Minimal Floating Capsule */
.tranquil-metrics-capsule {
    background: rgba(13, 19, 33, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 1.65rem;
    backdrop-filter: blur(24px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
    transition: all 0.3s ease;
}

.tranquil-metrics-capsule:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
    .tranquil-metrics-capsule {
        border-radius: 1.5rem;
        padding: 0.9rem 1.25rem;
        gap: 1.15rem;
    }
}

.tranquil-metric-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.tranquil-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.12);
}

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

.tranquil-icon-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.tranquil-icon-badge.heart-active {
    background: rgba(244, 63, 94, 0.2);
    border-color: rgba(244, 63, 94, 0.4);
    color: #f43f5e;
    transform: scale(1.1);
}

.tranquil-icon-badge.heart-active svg {
    fill: #f43f5e;
    stroke: #f43f5e;
}

.tranquil-label {
    font-size: 0.92rem;
    font-weight: 500;
    color: #cbd5e1;
}

.tranquil-val {
    font-weight: 800;
    color: #ffffff;
    font-size: 1.05rem;
}

.tranquil-val.zero-highlight {
    color: #a5b4fc;
}

.nofollowers-title {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.16;
    color: #ffffff;
    margin-bottom: 0.85rem;
    letter-spacing: -0.035em;
}

.nofollowers-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: #94a3b8;
    max-width: 580px;
    line-height: 1.55;
}

/* SECTION 6 - Hope & Landscape Card */
.hope-section {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.5rem 2rem;
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hope-card-media {
    width: 100%;
    max-width: 580px;
    aspect-ratio: 16 / 10;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(99, 102, 241, 0.25);
    margin-bottom: 1.5rem;
}

.hope-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hope-text-container {
    width: 100%;
    max-width: 580px;
    text-align: left;
}

.hope-title {
    font-size: clamp(1.6rem, 3.8vw, 2.7rem);
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}

.hope-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    line-height: 1.55;
    color: #94a3b8;
}

/* SECTION 7 - Final CTA */
.cta-section {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem 1.75rem;
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4.8vw, 3.3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.035em;
}

.cta-subtitle {
    font-size: clamp(1rem, 2.3vw, 1.25rem);
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.cta-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    max-width: 420px;
    margin-bottom: 1.25rem;
}

.cta-app-btn {
    width: 100%;
    background: rgba(13, 19, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.1rem;
    padding: 0.95rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta-app-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.cta-btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-btn-sub {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

.cta-btn-main {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.cta-subtext-caption {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.cta-learn-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
}

.cta-learn-link:hover {
    color: #ffffff;
}

/* SECTION 8 - WAITLIST FORM */
.waitlist-section {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem 3rem;
    max-width: 720px;
    margin: 0 auto;
}

.waitlist-box {
    background: rgba(13, 19, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.75rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    text-align: center;
}

@media (max-width: 640px) {
    .waitlist-box {
        padding: 2rem 1.15rem;
    }
}

.waitlist-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waitlist-title {
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.65rem;
    letter-spacing: -0.03em;
}

.waitlist-desc {
    font-size: 0.92rem;
    color: #cbd5e1;
    margin-bottom: 1.75rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.vibe-selector-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    text-align: left;
}

.vibe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}

.vibe-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.vibe-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.vibe-pill.selected {
    background: #ffffff;
    border-color: #ffffff;
    color: #080c14;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.1rem;
    text-align: left;
    position: relative;
}

.input-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.4rem;
}

.input-field {
    width: 100%;
    background: #080c14;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.9rem;
    padding: 0.95rem 1.1rem;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.25s ease;
    font-family: inherit;
}

.input-field:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.form-group.has-error .input-field {
    border-color: rgba(239, 68, 68, 0.7) !important;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.25) !important;
}

.field-error-msg {
    display: none;
    color: #f87171;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.35rem;
    align-items: center;
    gap: 0.35rem;
}

.form-group.has-error .field-error-msg {
    display: flex;
}

.input-field::placeholder {
    color: #64748b;
}

.note-field {
    resize: vertical;
    min-height: 85px;
}

.submit-btn-white {
    width: 100%;
    background: #f8fafc;
    color: #080c14;
    padding: 0.85rem;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.submit-btn-white:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

/* REDESIGNED HUMANE APP MODAL CARDS */
.app-modal-header-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.app-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.app-modal-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.25rem 0;
    text-align: left;
}

.app-option-card {
    background: rgba(8, 12, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.1rem;
    padding: 1.1rem 1.25rem;
    transition: all 0.25s ease;
}

.app-option-card:hover {
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(15, 23, 42, 0.85);
}

.app-option-left {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.app-option-left .svg-icon {
    margin-top: 0.15rem;
}

.app-option-text {
    flex: 1;
}

.app-option-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.app-option-desc {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.45;
}

/* CUSTOM GLASS TOAST NOTIFICATION SYSTEM */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
    max-width: 420px;
    width: calc(100% - 3rem);
}

@media (max-width: 640px) {
    .toast-container {
        bottom: 1.25rem;
        right: 1.25rem;
        left: 1.25rem;
        width: auto;
    }
}

.toast-notification {
    pointer-events: auto;
    background: rgba(18, 24, 38, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 1.15rem;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(239, 68, 68, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.2rem;
    color: #ef4444;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.toast-body {
    flex: 1;
}

.toast-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.toast-message {
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.toast-close-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0.2rem;
    margin-left: 0.5rem;
    transition: color 0.2s ease;
}

.toast-close-btn:hover {
    color: #ffffff;
}

/* Success Confirmation Card */
.confirmation-card {
    display: none;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1.35rem;
    padding: 2.25rem 1.75rem;
    text-align: center;
    margin-top: 1.25rem;
    animation: fadeIn 0.5s ease;
}

.confirmation-card.active {
    display: block;
}

.confirmation-icon {
    width: 2.75rem;
    height: 2.75rem;
    color: #34d399;
    margin: 0 auto 0.85rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MODAL COMMON BASE & CARDS */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 14, 0.82);
    backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.about-modal-card,
.sanctuary-info-modal-card {
    background: rgba(13, 19, 33, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.75rem;
    padding: 2.75rem 2.25rem;
    max-width: 620px;
    width: 100%;
    text-align: left;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(99, 102, 241, 0.25);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 88vh;
    overflow-y: auto;
}

@media (max-width: 640px) {
    .about-modal-card,
    .sanctuary-info-modal-card {
        padding: 2rem 1.25rem;
    }
}

.modal-backdrop.active .about-modal-card,
.modal-backdrop.active .sanctuary-info-modal-card {
    transform: scale(1);
}

.modal-info-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #c7d2fe;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.modal-info-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.modal-info-subtitle {
    font-size: 1.02rem;
    color: #a5b4fc;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* STRUCTURED ABOUT MODAL LAYOUT */
.about-header-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.4), rgba(236, 72, 153, 0.3), transparent);
    margin: 1.25rem 0 1.5rem;
}

.about-intro-card {
    background: rgba(8, 12, 20, 0.65);
    border-left: 3px solid #6366f1;
    border-radius: 0.85rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
}

.about-intro-text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #cbd5e1;
    font-weight: 400;
}

.philosophy-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
}

.philosophy-card-item {
    background: rgba(8, 12, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.1rem;
    padding: 1.1rem 1.35rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.25s ease;
}

.philosophy-card-item:hover {
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(15, 23, 42, 0.85);
}

.philosophy-card-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5b4fc;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.philosophy-card-content {
    flex: 1;
}

.philosophy-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.philosophy-card-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.about-closing-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.1rem;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.info-modal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.25rem 0 1.75rem;
}

.info-modal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: rgba(8, 12, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.15rem;
    padding: 1rem 1.15rem;
}

.info-modal-item-icon {
    width: 1.35rem;
    height: 1.35rem;
    color: #818cf8;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.info-modal-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.info-modal-item-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.modal-close-btn {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-faint);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Footer */
.sanctuary-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.25rem 1.5rem 2rem;
    text-align: center;
    background: rgba(5, 8, 14, 0.95);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-quote {
    font-size: 0.92rem;
    color: var(--text-faint);
    max-width: 480px;
}

.footer-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin: 0.15rem 0;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer-nav-link:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.82rem;
    color: #64748b;
}
