/* ==========================================================================
   Smile Boxx — Visually Stunning Edition
   Bold colors. Bolder effects. Borderline magical.
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Bold color palette */
    --color-bg: #0a0a0f;
    --color-bg-elevated: #12121a;
    --color-bg-card: #1a1a24;

    --color-white: #ffffff;
    --color-gray-100: #f0f0f5;
    --color-gray-200: #c8c8d0;
    --color-gray-400: #8888a0;
    --color-gray-600: #4a4a5a;

    /* Accent colors - bold and vivid */
    --color-primary: #ff3366;
    --color-primary-glow: rgba(255, 51, 102, 0.5);
    --color-secondary: #00d4ff;
    --color-secondary-glow: rgba(0, 212, 255, 0.5);
    --color-accent: #a855f7;
    --color-accent-glow: rgba(168, 85, 247, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff3366 0%, #ff6b3d 50%, #ffa726 100%);
    --gradient-cool: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a24 100%);
    --gradient-radial: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.15) 0%, transparent 70%);

    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

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

::selection {
    background: var(--color-primary);
    color: white;
}

/* --------------------------------------------------------------------------
   Cursor Glow Effect
   -------------------------------------------------------------------------- */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
    transition: opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Floating Particles
   -------------------------------------------------------------------------- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; animation-delay: -5s; animation-duration: 20s; }
.particle:nth-child(3) { left: 35%; animation-delay: -10s; animation-duration: 28s; }
.particle:nth-child(4) { left: 50%; animation-delay: -3s; animation-duration: 22s; }
.particle:nth-child(5) { left: 65%; animation-delay: -8s; animation-duration: 26s; }
.particle:nth-child(6) { left: 75%; animation-delay: -12s; animation-duration: 24s; }
.particle:nth-child(7) { left: 85%; animation-delay: -6s; animation-duration: 30s; }
.particle:nth-child(8) { left: 95%; animation-delay: -15s; animation-duration: 21s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        transform: translateY(50vh) scale(1);
        opacity: 0.2;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--color-gray-400);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover .btn-shimmer {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow:
        0 0 20px var(--color-primary-glow),
        0 10px 40px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 40px var(--color-primary-glow),
        0 20px 60px rgba(255, 51, 102, 0.4);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-bg);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-final {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    box-shadow:
        0 0 60px var(--color-primary-glow),
        0 20px 80px rgba(255, 51, 102, 0.5);
}

.btn-final:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 100px var(--color-primary-glow),
        0 30px 100px rgba(255, 51, 102, 0.6);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    transition: all var(--transition-medium);
}

.nav-scrolled {
    padding: 1rem 3rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo img {
    height: 36px;
    filter: brightness(1.1);
    transition: transform var(--transition-fast);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-gray-200);
    transition: color var(--transition-fast);
}

.nav-link-dot {
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-bounce);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover .nav-link-dot {
    opacity: 1;
    transform: scale(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.nav-cta svg {
    transition: transform var(--transition-fast);
}

.nav-cta:hover {
    color: var(--color-white);
}

.nav-cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav { padding: 1rem 1.5rem; }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 51, 102, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-bottom: 4rem;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-200);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    z-index: 2;
    animation: fadeInUp 1.2s ease 0.5s both;
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 51, 102, 0.2);
}

.hero-image {
    width: 100%;
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

.hero-image-reflection {
    position: absolute;
    bottom: -50%;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    transform: scaleY(-1);
    filter: blur(20px);
    opacity: 0.5;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* --------------------------------------------------------------------------
   Problem Section
   -------------------------------------------------------------------------- */
.problem {
    position: relative;
    padding: 10rem 2rem;
    background: var(--color-bg-elevated);
    overflow: hidden;
}

.problem-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 0% 50%, rgba(255, 51, 102, 0.08) 0%, transparent 50%);
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.problem-image-wrapper {
    position: relative;
}

.problem-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 40px 80px rgba(0, 0, 0, 0.4);
}

.problem-image-frame img {
    filter: saturate(0.7) contrast(0.9);
    transition: filter 0.6s ease;
}

.problem-image-wrapper:hover .problem-image-frame img {
    filter: saturate(0.5) contrast(0.8);
}

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

.problem-label {
    position: absolute;
    bottom: -1rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--color-primary);
    backdrop-filter: blur(10px);
}

.label-x {
    font-weight: 700;
}

.problem-content {
    padding-right: 2rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.title-small {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-white);
}

.large-text {
    font-size: 1.25rem;
    color: var(--color-gray-200);
    margin-bottom: 2rem;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--color-gray-400);
}

.problem-icon {
    color: var(--color-primary);
    font-size: 0.75rem;
    margin-top: 0.4rem;
}

@media (max-width: 900px) {
    .problem-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --------------------------------------------------------------------------
   Solution Section
   -------------------------------------------------------------------------- */
.solution {
    position: relative;
    padding: 12rem 2rem;
    text-align: center;
    overflow: hidden;
}

.solution-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.solution-gradient-1 {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.15) 0%, transparent 60%);
    filter: blur(80px);
}

.solution-gradient-2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
}

.solution-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.badge-check {
    font-weight: 700;
}

.mega-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.solution-subtitle {
    font-size: 1.375rem;
    color: var(--color-gray-200);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   What's Inside Section
   -------------------------------------------------------------------------- */
.whats-inside {
    position: relative;
    padding: 10rem 2rem;
    background: var(--color-bg);
}

.inside-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.inside-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.inside-showcase {
    max-width: 900px;
    margin: 0 auto 6rem;
}

.showcase-image {
    position: relative;
}

.showcase-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.2) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
}

.showcase-image img {
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 60px 120px -30px rgba(0, 0, 0, 0.5);
}

.showcase-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.inside-categories {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 51, 102, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 102, 0.2);
    box-shadow:
        0 30px 60px -20px rgba(255, 51, 102, 0.2),
        0 0 40px rgba(255, 51, 102, 0.1);
}

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

.category-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
}

.category-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.category-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    line-height: 1.6;
}

.category-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
}

.category-card:hover .category-line {
    width: 60%;
}

@media (max-width: 900px) {
    .inside-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .inside-categories {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Subscription Section
   -------------------------------------------------------------------------- */
.subscription {
    position: relative;
    padding: 10rem 2rem;
    background: var(--color-bg-elevated);
    overflow: hidden;
}

.subscription-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sub-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}

.sub-orb-1 {
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.15);
    animation-delay: 0s;
}

.sub-orb-2 {
    bottom: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 51, 102, 0.1);
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.subscription-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.subscription-content {
    position: relative;
    z-index: 1;
}

.subscription-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-box {
    display: inline;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 51, 102, 0.3) 60%);
}

.subscription-content > p {
    font-size: 1.125rem;
    color: var(--color-gray-200);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.subscription-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2.5rem;
}

.tagline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-cool);
    border-radius: 50%;
    font-size: 1.25rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.subscription-image {
    position: relative;
}

.sub-image-wrapper {
    position: relative;
    animation: floatBox 6s ease-in-out infinite;
}

@keyframes floatBox {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.sub-image-wrapper img {
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 60px 120px -30px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(168, 85, 247, 0.2);
}

.sub-image-float {
    position: absolute;
    inset: -15%;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.2) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

@media (max-width: 900px) {
    .subscription-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .subscription-image {
        order: -1;
    }
}

/* --------------------------------------------------------------------------
   Philosophy Section
   -------------------------------------------------------------------------- */
.philosophy {
    position: relative;
    padding: 10rem 2rem;
    background: var(--color-bg);
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-image {
    position: relative;
}

.phil-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.phil-frame img {
    transition: transform 0.8s ease;
}

.philosophy-image:hover .phil-frame img {
    transform: scale(1.05);
}

.phil-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.philosophy-content {
    position: relative;
}

.philosophy-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.strikethrough {
    position: relative;
    color: var(--color-gray-400);
}

.strikethrough::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 55%;
    height: 4px;
    background: var(--gradient-primary);
    transform: rotate(-2deg);
}

.philosophy-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-white);
    padding-left: 2rem;
    border-left: 3px solid var(--color-primary);
    margin-bottom: 2rem;
}

.philosophy-content > p {
    font-size: 1.125rem;
    color: var(--color-gray-200);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta {
    position: relative;
    padding: 12rem 2rem;
    text-align: center;
    overflow: hidden;
}

.final-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.final-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 51, 102, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 30% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
}

.final-rays {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background:
        conic-gradient(
            from 180deg at 50% 100%,
            transparent 0deg,
            rgba(255, 51, 102, 0.03) 30deg,
            transparent 60deg,
            rgba(0, 212, 255, 0.03) 90deg,
            transparent 120deg,
            rgba(168, 85, 247, 0.03) 150deg,
            transparent 180deg
        );
    animation: rayRotate 60s linear infinite;
}

@keyframes rayRotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.final-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
}

.final-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto 4rem;
}

.final-image img {
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 60px 120px -30px rgba(0, 0, 0, 0.5);
}

.final-image-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

.final-title {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
}

.final-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-200);
    margin-bottom: 3rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-bg-elevated);
    padding: 5rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    text-align: center;
}

.footer-brand img {
    margin: 0 auto 1rem;
    opacity: 0.8;
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

/* --------------------------------------------------------------------------
   Reveal Animations
   -------------------------------------------------------------------------- */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .problem,
    .solution,
    .whats-inside,
    .subscription,
    .philosophy,
    .final-cta {
        padding: 6rem 1.5rem;
    }
}
