body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    background-color: var(--color-brand-bg);
    color: var(--color-brand-text);
}

.gradient-text {
    background: linear-gradient(to right, var(--color-gradient-purple), var(--color-gradient-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Base Glass Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.cheeky-gradient {
    background: linear-gradient(135deg, var(--color-cheeky-red) 0%, var(--color-cheeky-orange) 100%);
}

/* --- Layout --- */
.container-standard {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --- Navigation --- */
.nav-container {
    position: fixed;
    width: 100%;
    z-index: 50;
    top: 0;
    transition: all 0.3s ease;
    /* Glassmorphism */
    background-color: color-mix(in srgb, var(--color-brand-bg) 70%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
    height: 5rem; /* h-20 */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
}

.nav-logo-container {
    width: 2rem;
    height: 2rem;
    background-color: var(--color-accent-indigo-600);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-text {
    font-weight: 700; /* font-bold */
    color: white;
    font-size: 1.125rem; /* text-lg */
}

.nav-brand-text {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    letter-spacing: -0.025em; /* tracking-tight */
}

.nav-links-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .nav-links-wrapper {
        display: flex;
        align-items: center;
        gap: 2rem; /* gap-8 */
        font-size: 0.875rem; /* text-sm */
        font-weight: 500; /* font-medium */
        color: var(--color-gray-300);
    }
}

.nav-link {
    transition: color 0.15s;
}
.nav-link:hover {
    color: white;
}

/* --- Hero Typography & Elements --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem; /* pt-20 */
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 64rem; /* max-w-5xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
    text-align: center;
}

.hero-h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .hero-h1 {
        font-size: 4.5rem; /* md:text-7xl */
    }
}

.hero-p {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    line-height: 1.625;
}
@media (min-width: 768px) {
    .hero-p {
        font-size: 1.25rem; /* md:text-xl */
    }
}

.hero-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
@media (min-width: 640px) {
    .hero-buttons-wrapper {
        flex-direction: row;
    }
}

.blob-base {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    filter: blur(64px); /* blur-3xl */
}
.blob-indigo {
    top: 25%;
    left: 25%;
    background-color: color-mix(in srgb, var(--color-accent-indigo-600) 20%, transparent);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.blob-purple {
    bottom: 25%;
    right: 25%;
    background-color: color-mix(in srgb, var(--color-accent-purple-600) 20%, transparent);
}

/* --- Buttons --- */
.btn-primary {
    position: relative;
    padding: 1rem 2rem;
    background-color: var(--color-accent-indigo-600);
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 40px -10px color-mix(in srgb, var(--color-accent-indigo-500) 50%, transparent);
}

.btn-primary-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-accent-indigo-600), var(--color-accent-purple-600));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover .btn-primary-overlay {
    opacity: 1;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    padding: 1.0rem 2rem;
    /* Glassmorphism */
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-cheeky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    background-color: var(--color-cheeky-pink-600);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--color-cheeky-pink-500) 25%, transparent);
    transition: all 0.3s;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-cheeky {
        width: auto;
    }
}

.btn-cheeky:hover {
    background-color: var(--color-cheeky-pink-500);
    transform: translateY(-0.25rem);
}

/* --- Badges --- */
.badge-indigo {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid color-mix(in srgb, var(--color-accent-indigo-500) 30%, transparent);
    background-color: color-mix(in srgb, var(--color-accent-indigo-500) 10%, transparent);
    color: var(--color-accent-indigo-300);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

/* --- Mission Section --- */
.mission-section {
    padding-top: 6rem; /* py-24 */
    padding-bottom: 6rem;
    background-color: var(--color-neutral-800);
}

.mission-grid {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
    display: grid;
    gap: 4rem; /* gap-16 */
    align-items: center;
}
@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
    }
}

.mission-h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .mission-h2 {
        font-size: 2.25rem; /* md:text-4xl */
    }
}

.mission-text-content {
    color: var(--color-gray-400);
    line-height: 1.625; /* leading-relaxed */
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 */
}

.mission-stats-container {
    display: flex;
    gap: 1rem; /* gap-4 */
    padding-top: 1rem; /* pt-4 */
}

.mission-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* gap-2 */
}

.mission-stat-value {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: white;
}

.mission-stat-label {
    font-size: 0.875rem; /* text-sm */
    color: var(--color-gray-500);
}

.mission-stat-separator {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1); /* bg-white/10 */
}

.mission-visual-wrapper {
    position: relative;
}

.mission-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--color-accent-indigo-500), var(--color-accent-purple-600));
    border-radius: 1rem; /* rounded-2xl */
    filter: blur(40px); /* blur-2xl */
    opacity: 0.2;
}

/* Enhanced Glass Card for Mission */
.mission-glass-card {
    padding: 2rem; /* p-8 */
    border-radius: 1.5rem; /* rounded-2xl */
    position: relative;
    z-index: 10;
    /* Glassmorphism */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.mission-heart-icon {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    color: var(--color-accent-indigo-400);
    margin-bottom: 1.5rem; /* mb-6 */
}

.mission-card-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    margin-bottom: 1rem; /* mb-4 */
    color: white;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 */
}

.mission-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.mission-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent-indigo-500);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* --- Products Section --- */
.products-section {
    padding-top: 8rem; /* py-32 */
    padding-bottom: 8rem;
    position: relative;
}

.products-container {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
}

.products-header {
    text-align: center;
    margin-bottom: 5rem; /* mb-20 */
}

.products-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    margin-bottom: 1rem; /* mb-4 */
}
@media (min-width: 768px) {
    .products-title {
        font-size: 3rem; /* md:text-5xl */
    }
}

.products-subtitle {
    color: var(--color-gray-400);
    max-width: 36rem; /* max-w-xl */
    margin-left: auto;
    margin-right: auto;
}

/* --- Cheeky Card --- */
.cheeky-wrapper {
    width: 100%;
}

.cheeky-card-container {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s;
    position: relative;
    /* Enhanced Glassmorphism */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
.cheeky-card-container:hover {
    border-color: color-mix(in srgb, var(--color-cheeky-pink-500) 40%, transparent);
    box-shadow: 0 8px 32px 0 color-mix(in srgb, var(--color-cheeky-pink-500) 15%, transparent);
    transform: translateY(-2px);
}

.cheeky-live-badge-wrapper {
    position: absolute;
    top: 2rem; /* top-8 */
    right: 2rem; /* right-8 */
    z-index: 20;
}

.cheeky-hero-image {
    height: 24rem; /* h-96 */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cheeky-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.cheeky-title-large {
    font-size: 3.75rem; /* text-6xl */
    font-weight: 700;
    color: white;
    letter-spacing: -0.05em; /* tracking-tighter */
    position: relative;
    z-index: 10;
    font-style: italic;
}
@media (min-width: 768px) {
    .cheeky-title-large {
        font-size: 6rem; /* md:text-8xl */
    }
}

.cheeky-content {
    padding: 2.5rem; /* p-10 */
}
@media (min-width: 768px) {
    .cheeky-content {
        padding: 4rem; /* md:p-16 */
    }
}

.cheeky-header-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem; /* mb-8 */
    gap: 1rem; /* gap-4 */
}
@media (min-width: 768px) {
    .cheeky-header-row {
        flex-direction: row;
        align-items: center;
    }
}

.cheeky-title-small {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem; /* mb-2 */
}
@media (min-width: 768px) {
    .cheeky-title-small {
        font-size: 3rem; /* md:text-5xl */
    }
}

.cheeky-subtitle {
    color: var(--color-cheeky-pink-400);
    font-weight: 500;
    font-size: 1.125rem; /* text-lg */
}

.cheeky-details-grid {
    display: grid;
    gap: 3rem; /* gap-12 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem; /* pt-8 */
}
@media (min-width: 768px) {
    .cheeky-details-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* md:grid-cols-3 */
    }
}

.cheeky-description-col {
    grid-column: span 2 / span 2; /* col-span-2 */
}

.cheeky-description-lead {
    font-size: 1.25rem; /* text-xl */
    color: var(--color-gray-300);
    line-height: 1.625;
    margin-bottom: 1.5rem; /* mb-6 */
}

.cheeky-description-text {
    color: var(--color-gray-400);
    line-height: 1.625;
}

.cheeky-features-col {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 */
}

.cheeky-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* gap-3 */
}

.cheeky-icon {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    color: var(--color-cheeky-pink-500);
}

.cheeky-feature-text {
    color: var(--color-gray-300);
    font-weight: 500;
}

/* --- Principles Section --- */
.principles-section {
    padding-top: 5rem; /* py-20 */
    padding-bottom: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* border-white/5 */
}

.principles-container {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem; /* gap-8 */
    text-align: center;
}
@media (min-width: 768px) {
    .principles-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)); /* md:grid-cols-4 */
    }
}

.principles-item {
    padding: 1.5rem; /* p-6 */
}

.principles-number {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem; /* mb-2 */
}

.principles-label {
    font-size: 0.875rem; /* text-sm */
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
}

/* --- Footer Section --- */
.footer-section {
    background-color: var(--color-neutral-900);
    padding-top: 6rem; /* pt-24 */
    padding-bottom: 3rem; /* pb-12 */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* border-white/10 */
}

.footer-content-wrapper {
    max-width: 48rem; /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
    text-align: center;
}

.footer-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 2rem; /* mb-8 */
}
@media (min-width: 768px) {
    .footer-title {
        font-size: 3rem; /* md:text-5xl */
    }
}

.footer-subtitle {
    color: var(--color-gray-400);
    margin-bottom: 2.5rem; /* mb-10 */
    font-size: 1.125rem; /* text-lg */
}

.footer-bottom-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem; /* pt-12 */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* border-white/5 */
    font-size: 0.875rem; /* text-sm */
    color: var(--color-gray-500);
}
@media (min-width: 768px) {
    .footer-bottom-row {
        flex-direction: row;
    }
}

.footer-copyright-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
    margin-bottom: 1rem; /* mb-4 */
}
@media (min-width: 768px) {
    .footer-copyright-wrapper {
        margin-bottom: 0; /* md:mb-0 */
    }
}

.footer-logo-circle {
    width: 1.5rem; /* w-6 */
    height: 1.5rem; /* h-6 */
    background-color: rgba(255, 255, 255, 0.1); /* bg-white/10 */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem; /* text-xs */
    color: white;
    font-weight: 700;
}

.footer-links-wrapper {
    display: flex;
    gap: 1.5rem; /* gap-6 */
}

.footer-link {
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

/* --- Forms --- */
.input-newsletter {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    /* Glass Input */
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s;
}

.input-newsletter::placeholder {
    color: var(--color-gray-500);
}

.input-newsletter:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: color-mix(in srgb, var(--color-accent-indigo-500) 50%, transparent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-accent-indigo-500) 10%, transparent);
}

.btn-newsletter {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    padding: 0 1.5rem;
    background-color: white;
    color: black;
    font-weight: 700;
    border-radius: 9999px;
    transition: background-color 0.2s;
}

.btn-newsletter:hover {
    background-color: var(--color-gray-200);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-dot-container {
    display: flex;
    height: 0.625rem;
    width: 0.625rem;
    position: relative;
}

.live-dot-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background-color: var(--color-status-green-400);
    opacity: 0.75;
}

.live-dot-static {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 0.625rem;
    width: 0.625rem;
    background-color: var(--color-status-green-500);
}

.coming-soon-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-dot-container {
    display: flex;
    height: 0.625rem;
    width: 0.625rem;
    position: relative;
}

.coming-soon-dot-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background-color: var(--color-status-orange-400);
    opacity: 0.75;
}

.coming-soon-dot-static {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 0.625rem;
    width: 0.625rem;
    background-color: var(--color-status-orange-500);
}

.feature-icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: color-mix(in srgb, var(--color-cheeky-pink-500) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}
