/* ============================================
   FREE MARKETING PLAN PAGE STYLES
   ============================================ */

:root {
    --primary-blue: #3BB4D9;
    --primary-sky: #4CC9E8;
    --primary-dark: #1B1B2F;
    --accent-red: #E84855;
    --accent-coral: #F87171;
    --cream-bg: #F8FAFB;
    --light-blue: #E8F7FB;
    --text-dark: #1B1B2F;
    --text-gray: #5A6B7A;
    --white: #FFFFFF;
    --orange: #FF8C42;
    --yellow-highlight: #FFE066;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: var(--cream-bg); 
    color: var(--text-dark); 
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   HEADER
   ============================================ */
   header {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000;
    padding: 1rem 2rem;
    background: transparent;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

header.scrolled .logo-text {
    color: var(--text-dark);
}

header.scrolled .back-link {
    color: var(--text-dark);
}

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

/* ============================================
   LOGO — WITH SCROLL ANIMATION (Same as Home)
   Replace your existing .logo, .logo-icon, .logo-text CSS with this
   ============================================ */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
    overflow: hidden;
    position: relative;
}

/* Full Logo (text version) — visible by default */
.logo-full {
    height: 38px;
    width: auto;
    max-width: 250px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
}

/* Symbol Logo (the X) — hidden by default */
.logo-symbol {
    height: 38px;
    width: auto;
    max-width: 0;
    opacity: 0;
    transform: rotate(-180deg);
    margin-left: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When scrolled: hide full logo */
header.scrolled .logo-full {
    max-width: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
}

/* When scrolled: show X symbol with spin */
header.scrolled .logo-symbol {
    max-width: 50px;
    opacity: 1;
    transform: rotate(0deg);
    margin-right: 15px;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }

    .logo-full {
        height: 24px;
        max-width: 200px;
    }

    header.scrolled .logo-full {
        max-width: 0;
        opacity: 0;
        margin: 0;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   PREMIUM HERO SECTION (Homepage Match)
   ============================================ */
:root {
    --brand-dark: #1B1B2F; /* Deep Navy */
    --brand-red: #E84855;  /* Your Accent Red */
    --brand-blue: #3BB4D9; /* Your Brand Blue */
}

.hero-section {
    min-height: 100vh;
    /* The Vibrant Homepage Blue Gradient */
    background: linear-gradient(135deg, #4CC9E8 0%, #3BB4D9 50%, #22A7C9 100%);
    position: relative;
    padding: 140px 1.5rem 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* --- Animated Background Shapes (Subtle & Premium) --- */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatShape 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
    width: 600px; height: 600px;
    background: #ffffff;
    top: -20%; left: -10%;
    opacity: 0.25;
}

.shape-2 {
    width: 500px; height: 500px;
    background: #8AD8EF;
    bottom: -10%; right: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px; height: 300px;
    background: #ffffff;
    top: 40%; right: 20%;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

/* --- Content Wrapper --- */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================
   DYNAMIC TEXT EFFECT (Typewriter)
   ============================================ */
.dynamic-wrapper {
    display: inline-block;
    position: relative;
}

.dynamic-text {
    color: #E84855; /* Your Brand Red */
    font-weight: 800;
    position: relative;
    z-index: 1;
    /* Optional: Adds a subtle glowing underline */
    text-shadow: 0 0 30px rgba(232, 72, 85, 0.3);
}

/* The Blinking Cursor */
.cursor {
    display: inline-block;
    color: #1B1B2F; /* Dark cursor */
    font-weight: 300;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Mobile Fix: Ensure it doesn't break lines awkwardly */
@media (max-width: 768px) {
    .hero-title {
        min-height: 140px; /* Prevents layout jump when text changes */
    }
}

/* --- Typography --- */
.hero-text-wrapper {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1B1B2F; /* Dark Badge for contrast */
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    
    /* CHANGE THIS LINE TO WHITE */
    color: #ffffff !important; 
    
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    
    /* Optional: Adds a subtle shadow so it pops against the bright blue */
    text-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.text-highlight {
    color: #fff; /* White highlight for pop */
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}

/* Creative Underline for Highlight */
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--brand-red);
    opacity: 0.8;
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #1B1B2F;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   GLASS CARD & FORM STYLING
   ============================================ */
.form-container.glass-card {
    background: rgba(255, 255, 255, 0.95); /* High opacity white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem;
    width: 100%;
    max-width: 750px;
    box-shadow: 
        0 20px 50px -10px rgba(27, 27, 47, 0.2), /* Deep shadow */
        0 0 0 1px rgba(255,255,255,0.5) inset; /* Inner glow border */
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px); /* Subtle lift */
}

/* Headings inside card */
.form-step h2 {
    font-size: 2rem;
    color: var(--brand-dark);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-subtitle {
    text-align: center;
    color: #64748B;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* --- Option Buttons (Grid) --- */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.option-btn {
    padding: 1.2rem 1rem;
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.option-btn:hover {
    border-color: var(--brand-blue);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 180, 217, 0.15);
}

.option-btn.selected {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    box-shadow: 0 10px 20px rgba(27, 27, 47, 0.2);
}

/* --- THE CTA BUTTON (Signature Style) --- */
.cta-btn {
    display: block;
    width: 100%;
    padding: 1.4rem;
    background: var(--brand-dark); /* Black/Navy Background */
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0; /* Sharp or slightly rounded depending on preference, sticking to your SS */
    cursor: pointer;
    position: relative;
    /* THE RED SHADOW EFFECT */
    box-shadow: 6px 6px 0 var(--brand-red);
    transition: all 0.15s ease;
    margin-top: 1rem;
}

.cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--brand-red);
}

.cta-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--brand-red);
}

/* --- Inputs (Contact Form) --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--brand-dark);
    transition: all 0.2s;
    background: #F8FAFC;
}

.input-group input:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 180, 217, 0.1);
}

.phone-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    background: #F8FAFC;
    overflow: hidden;
    transition: all 0.2s;
}

.phone-wrapper:focus-within {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(59, 180, 217, 0.1);
}

.phone-wrapper .flag {
    padding: 0 1rem;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid #E2E8F0;
}

.phone-wrapper input {
    border: none;
    background: transparent;
    box-shadow: none !important;
}

/* --- Progress Bar --- */
.progress-track {
    width: 100%;
    height: 6px;
    background: #E2E8F0;
    border-radius: 10px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--brand-dark); /* Dark progress bar */
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 110px 1rem 4rem;
        align-items: flex-start; /* Better for mobile scrolling */
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .form-container.glass-card {
        padding: 2rem 1.5rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr; /* Stack options on mobile */
    }
}
/* ============================================
   FORM CONTAINER
   ============================================ */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #E5E7EB;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-sky));
    transition: width 0.4s ease;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.form-step h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Options Grid */
.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.option-btn {
    padding: 0.75rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    background: white;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.option-btn:hover {
    border-color: var(--primary-blue);
    background: var(--light-blue);
}

.option-btn.selected {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: white;
}

/* Continue Button */
.continue-btn {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    box-shadow: 5px 5px 0 var(--accent-coral);
    transition: all 0.2s ease;
}

.continue-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--accent-coral);
}

.continue-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 5px 5px 0 #ccc;
}

/* Contact Form */
.contact-form {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--accent-red);
}

.form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.25s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.phone-input {
    display: flex;
    align-items: stretch;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.phone-input:focus-within {
    border-color: var(--primary-blue);
}

.country-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    background: #F9FAFB;
    border-right: 2px solid #E5E7EB;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.flag {
    font-size: 1.2rem;
}

.phone-input input {
    flex: 1;
    border: none;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
}

.phone-input input:focus {
    outline: none;
}

/* Success Content */
.success-content {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.back-home-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 5px 5px 0 var(--accent-coral);
    transition: all 0.2s ease;
}

.back-home-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--accent-coral);
}

/* ============================================
   PLAN FEATURES SECTION
   ============================================ */
/* ============================================
   STRATEGIC BLUEPRINT (ULTIMATE)
   ============================================ */
.blueprint-section {
    padding: 120px 2rem;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

/* --- HEADER TYPOGRAPHY --- */
.blueprint-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.text-dark { color: #1B1B2F; }
.text-red { color: #E84855; position: relative; display: inline-block; }

/* The "Hand-Drawn" Scribble Underline */
.marker-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg width='200' height='12' viewBox='0 0 200 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8C50 2 150 -2 198 10' stroke='%23E84855' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: -1;
}

.section-desc {
    font-size: 1.15rem;
    color: #64748B;
    line-height: 1.6;
}

/* --- BENTO GRID LAYOUT --- */
.bento-grid-v2 {
    display: grid;
    /* 3 Columns: Tall Left | Middle Stack | Right Stack */
    grid-template-columns: 1.2fr 1fr 1fr; 
    grid-template-rows: auto auto;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CARD BASE STYLES --- */
.bento-card {
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.bento-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; z-index: 2; position: relative; }
.bento-card p { font-size: 0.9rem; line-height: 1.5; z-index: 2; position: relative; }

/* --- CARD 1: TALL DARK PLAN (Col 1, Spans 2 Rows) --- */
.tall-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: #1B1B2F;
    color: white;
    box-shadow: 0 20px 40px -10px rgba(27, 27, 47, 0.3);
}

.tall-card p { color: rgba(255,255,255,0.7); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }

/* Ambient Glow Background */
.card-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 180, 217, 0.15), transparent 60%);
    animation: rotateGlow 20s linear infinite;
    z-index: 0;
}
@keyframes rotateGlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Timeline Animation */
.timeline-container {
    margin-top: 3rem;
    position: relative;
    padding-left: 10px;
    height: 100%;
}
.timeline-line {
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 20px;
    width: 2px;
    background: rgba(255,255,255,0.1);
    border-right: 1px dashed rgba(255,255,255,0.3);
}
.timeline-node {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInSlide 0.6s ease forwards;
}
.n1 { animation-delay: 0.2s; }
.n2 { animation-delay: 0.4s; }
.n3 { animation-delay: 0.6s; }

.node-dot {
    width: 12px; height: 12px;
    background: #E84855;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(232, 72, 85, 0.2);
    position: relative;
    z-index: 2;
}
.n2 .node-dot { background: #3BB4D9; box-shadow: 0 0 0 4px rgba(59, 180, 217, 0.2); }
.n3 .node-dot { background: #10B981; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }

.node-label {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* --- CARD 2: SPY REPORT (Black + Radar) --- */
.spy-card {
    background: #000;
    color: white;
    border: 1px solid #333;
}
.spy-card p { color: #888; }

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.live-badge {
    color: #E84855;
    font-size: 0.7rem;
    font-weight: 800;
    animation: blinkRed 1.5s infinite;
}
@keyframes blinkRed { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Radar Animation */
.radar-box {
    margin-top: auto;
    height: 120px;
    position: relative;
    background: radial-gradient(circle at bottom center, rgba(232,72,85,0.1) 0%, transparent 70%);
    overflow: hidden;
    border-top: 1px solid #222;
}
.radar-sweep {
    position: absolute;
    bottom: -100px; left: 50%;
    width: 300px; height: 300px;
    background: conic-gradient(from 180deg at 50% 50%, rgba(232,72,85,0.4) 0deg, transparent 40deg);
    border-radius: 50%;
    transform-origin: 50% 50%;
    transform: translateX(-50%);
    animation: radarSpin 4s linear infinite;
}
@keyframes radarSpin { 0% { transform: translateX(-50%) rotate(0deg); } 100% { transform: translateX(-50%) rotate(360deg); } }

.blip {
    position: absolute;
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px white;
    opacity: 0;
    animation: blipAnim 4s infinite;
}
.b1 { bottom: 40px; left: 30%; animation-delay: 1.5s; }
.b2 { bottom: 70px; right: 40%; animation-delay: 2.8s; }
@keyframes blipAnim { 0% { opacity: 0; } 10% { opacity: 1; } 20% { opacity: 0; } }

/* --- CARD 3 & 4: WHITE CARDS --- */
.white-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    color: #1B1B2F;
}
.white-card p { color: #64748B; }

/* Tech Stack List */
.tech-list { margin-top: auto; display: flex; flex-direction: column; gap: 0.8rem; }
.tech-item {
    display: flex; justify-content: space-between;
    font-size: 0.85rem;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.tech-item:hover { background: #F1F5F9; }
.success .t-status { color: #10B981; font-weight: 700; }
.warning .t-status { color: #E84855; font-weight: 700; }

/* Mix Tags */
.tags-cloud { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
    padding: 6px 12px;
    background: #F1F5F9;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s;
    cursor: default;
}
.tag:hover { transform: translateY(-3px); color: white; }
.t-google:hover { background: #4285F4; }
.t-meta:hover { background: #0668E1; }
.t-linkedin:hover { background: #0077B5; }
.t-tiktok:hover { background: #000000; }

/* Revenue Liquid Bar */
.finance-card { justify-content: space-between; }
.revenue-meter { margin-top: 1rem; }
.meter-bg {
    height: 12px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
}
.meter-fill {
    height: 100%;
    width: 85%; /* Static width */
    background: #10B981;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    animation: growBar 1.5s ease-out forwards;
}
@keyframes growBar { from { width: 0; } to { width: 85%; } }

.shimmer {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg) translateX(-150%);
    animation: shimmerMove 2s infinite;
}
@keyframes shimmerMove { 0% { transform: skewX(-20deg) translateX(-150%); } 100% { transform: skewX(-20deg) translateX(250%); } }

.meter-stat { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 700; }
.value { color: #10B981; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .bento-grid-v2 {
        grid-template-columns: 1fr; /* Stack Everything */
        grid-template-rows: auto;
    }
    .tall-card { grid-column: 1; grid-row: auto; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
/* =======================================================
   THE INTELLIGENCE ENGINE (New Section)
   ======================================================= */
.engine-section {
    padding: 100px 2rem;
    background: #050505; /* Matches your dark theme */
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
}

.engine-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative; z-index: 2;
}

.text-white { color: #fff; }
.text-blue { color: #3BB4D9; }

/* Glitch Text Effect */
.glitch-text {
    position: relative;
}
.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: #050505;
}
.glitch-text::before {
    left: 2px; text-shadow: -1px 0 #E84855; clip-path: inset(44% 0 61% 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}
.glitch-text::after {
    left: -2px; text-shadow: -1px 0 #3BB4D9; clip-path: inset(50% 0 30% 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}

/* --- THE PIPELINE LAYOUT --- */
.pipeline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    gap: 2rem;
}

/* Background Pipes */
.pipe-network {
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 4px;
    transform: translateY(-50%);
    z-index: 0;
}

.pipe {
    position: absolute; height: 100%; background: #1a1a1a; width: 50%;
}
.p1 { left: 0; }
.p2 { right: 0; }

.data-particle {
    position: absolute; top: 0; height: 100%; width: 40px;
    background: linear-gradient(90deg, transparent, #3BB4D9, transparent);
    filter: blur(2px);
    opacity: 0;
}
.d1 { animation: flowRight 3s linear infinite; left: 0; }
.d2 { animation: flowRight 3s linear infinite 1.5s; left: 50%; }

@keyframes flowRight {
    0% { transform: translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(500px); opacity: 0; }
}

/* --- THE NODES (Left & Right Cards) --- */
.engine-node {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    width: 300px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.engine-node:hover {
    transform: translateY(-10px);
    border-color: #3BB4D9;
    box-shadow: 0 10px 40px rgba(59, 180, 217, 0.1);
}

.node-icon-box {
    width: 50px; height: 50px; background: #000;
    border: 1px solid #333; border-radius: 8px;
    margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.engine-node h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.75rem; }
.engine-node p { color: #888; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }

.node-stat {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem; display: flex; justify-content: space-between; align-items: center;
}
.node-stat .label { font-size: 0.7rem; color: #555; font-weight: 700; letter-spacing: 1px; }
.node-stat .value { color: #10B981; font-family: 'Courier New', monospace; font-weight: 700; }

/* --- THE CENTRAL CORE (Animation) --- */
.engine-core {
    width: 200px; height: 200px;
    position: relative;
    z-index: 2;
    display: flex; align-items: center; justify-content: center;
}

.core-outer-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1px dashed rgba(59, 180, 217, 0.3);
    animation: spinSlow 10s linear infinite;
}

.core-inner-ring {
    position: absolute; inset: 20px; border-radius: 50%;
    border: 2px solid rgba(59, 180, 217, 0.1);
    border-top-color: #3BB4D9; border-bottom-color: #3BB4D9;
    animation: spinFast 4s linear infinite reverse;
    box-shadow: 0 0 20px rgba(59, 180, 217, 0.1);
}

.core-brain {
    width: 100px; height: 100px; background: #000;
    border-radius: 50%; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #3BB4D9;
    box-shadow: 0 0 30px rgba(59, 180, 217, 0.2);
}

.core-text { color: #fff; font-weight: 800; font-size: 0.9rem; letter-spacing: 1px; }

@keyframes spinSlow { 100% { transform: rotate(360deg); } }
@keyframes spinFast { 100% { transform: rotate(360deg); } }

/* Mobile Response */
@media (max-width: 900px) {
    .pipeline-container { flex-direction: column; gap: 4rem; }
    .pipe-network { width: 4px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
    .pipe { width: 100%; height: 50%; }
    .data-particle { width: 100%; height: 40px; top: 0; left: 0; animation: flowDown 3s linear infinite; }
    
    @keyframes flowDown {
        0% { transform: translateY(0); opacity: 0; }
        20% { opacity: 1; }
        100% { transform: translateY(500px); opacity: 0; }
    }
}



/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   UPDATED FOOTER STYLES (Mobile Fixed)
   ============================================ */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.footer-logo .logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #3BB4D9, #4CC9E8);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon svg { width: 18px; height: 18px; }

.social-icon:hover {
    background: #3BB4D9;
    border-color: #3BB4D9;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 180, 217, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Footer logo — override header scroll animation, responsive sizing */
.footer .logo {
    height: auto;
    overflow: visible;
}

.footer .logo-full {
    height: auto;
    width: clamp(120px, 18vw, 200px);
    max-width: 200px;
    opacity: 1 !important;
    transform: none !important;
    transition: none;
    display: block !important;
}

.footer .logo-symbol {
    display: none !important;
}

@media (max-width: 768px) {
    .footer .logo-full {
        width: clamp(100px, 35vw, 160px);
    }
}

/* --- MOBILE LAYOUT FIX --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    /* This forces the links into a compact grid instead of a list */
    .footer-links {
        flex-direction: row; /* Horizontal flow */
        flex-wrap: wrap;     /* Allow them to wrap to next line */
        justify-content: center; /* Center align them */
        gap: 0.75rem 1.5rem; /* Row gap vs Column gap */
        width: 100%;
    }
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 1.5rem 3rem;
    }

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

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-step h2 {
        font-size: 1.2rem;
    }

    .option-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .float-item {
        display: none;
    }

    .float-1, .float-3, .float-6, .float-8 {
        display: block;
    }

    .float-icon {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid .feature-card:last-child {
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .highlight {
        display: inline;
    }

    .option-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .continue-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   MOBILE TYPOGRAPHY FIX (HERO)
   ============================================ */
@media (max-width: 768px) {
    /* 1. Fix the Container Spacing */
    .hero-section {
        padding: 120px 1.5rem 4rem !important; /* Adjust top padding */
        align-items: center !important; /* Center align vertically */
        text-align: center !important;
    }

    .hero-content {
        width: 100% !important;
        padding: 0 !important;
    }

    /* 2. Supercharge the Headline Font */
    .hero-title {
        font-size: 2.8rem !important; /* Bigger, bolder size */
        line-height: 1.1 !important;   /* Tighter spacing between lines */
        letter-spacing: -1px !important; /* Tighter letters for pro look */
        margin-bottom: 1.5rem !important;
        
        /* Critical: Drop shadow to make WHITE text readable on BLUE bg */
        text-shadow: 0 4px 12px rgba(0,0,0,0.15) !important; 
    }

    /* 3. Fix the Dynamic Red Text height to prevent jumping */
    .dynamic-wrapper {
        display: block !important; /* Force it to its own line if needed */
        margin-top: 5px;
        min-height: 1.2em; /* Prevents layout shift */
    }

    /* 4. Improve the Subtitle readability */
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        padding: 0 1rem; /* Prevent text hitting edges */
        color: rgba(255, 255, 255, 0.9) !important; /* Make it brighter white */
        font-weight: 500 !important;
    }
}

/* =======================================================
   NEXT-LEVEL "TACTICAL DASHBOARD" STYLES
   ======================================================= */

/* --- 1. 90-DAY PROTOCOL (The Command Center) --- */
.plan-card {
    background: #08080C; /* Deep Tech Black */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Moving Matrix Grid Background */
.cyber-grid-bg {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: 
        linear-gradient(rgba(59, 180, 217, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 180, 217, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: perspective(500px) rotateX(20deg);
    animation: gridFloat 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes gridFloat { 0% { transform: perspective(500px) rotateX(20deg) translateY(0); } 100% { transform: perspective(500px) rotateX(20deg) translateY(30px); } }

.card-content-wrapper { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }

.card-header-glass {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px; margin-bottom: 20px;
}

.status-indicator {
    font-size: 0.7rem; font-family: 'Courier New', monospace; color: #10B981;
    display: flex; align-items: center; gap: 8px;
    background: rgba(16, 185, 129, 0.08); padding: 4px 8px; border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.beacon { width: 6px; height: 6px; background: #10B981; border-radius: 50%; box-shadow: 0 0 8px #10B981; animation: blinkBeacon 1s infinite; }
@keyframes blinkBeacon { 50% { opacity: 0.3; } }

/* Tactical Feed List */
.tactical-feed { position: relative; padding-left: 20px; flex: 1; display: flex; flex-direction: column; gap: 24px; }

/* The Glowing Line */
.fiber-line {
    position: absolute; left: 19px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, #10B981 0%, #3BB4D9 50%, #333 100%);
    box-shadow: 0 0 12px rgba(59, 180, 217, 0.4);
    z-index: 0;
}

.tactical-item { position: relative; z-index: 1; padding-left: 15px; }

/* Nodes */
.node-ring {
    position: absolute; left: -20px; top: 2px;
    width: 20px; height: 20px;
    background: #08080C; border: 2px solid #333; border-radius: 50%;
    color: #fff; font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
    transform: translateX(-5px);
}

.complete .node-ring { border-color: #10B981; color: #10B981; box-shadow: 0 0 10px rgba(16, 185, 129, 0.3); }
.active .node-ring { border-color: #3BB4D9; box-shadow: 0 0 15px rgba(59, 180, 217, 0.6); animation: pulseRing 2s infinite; }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(59, 180, 217, 0.7); } 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

/* Text Styles */
.phase-label { display: block; font-size: 0.75rem; font-weight: 800; color: #64748B; letter-spacing: 1px; margin-bottom: 6px; }
.text-blue { color: #3BB4D9; text-shadow: 0 0 10px rgba(59, 180, 217, 0.4); }

.cmd-line { font-family: 'Courier New', monospace; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* Active Task Box */
.active-task-box {
    background: rgba(59, 180, 217, 0.08); border-left: 3px solid #3BB4D9;
    padding: 10px; margin-top: 5px; border-radius: 0 4px 4px 0;
}
.typing-text { font-family: 'Courier New', monospace; font-size: 0.9rem; color: #fff; display: block; margin-bottom: 8px; }
.sub-task { font-size: 0.75rem; color: rgba(59, 180, 217, 0.8); }

.loading-bar { width: 100%; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 6px; overflow: hidden; }
.bar-fill { width: 40%; height: 100%; background: #3BB4D9; animation: loadAnim 2s infinite ease-in-out; }
@keyframes loadAnim { 0% { width: 0; transform: translateX(0); } 100% { width: 100%; transform: translateX(100%); } }

/* Locked State */
.encrypted-text { font-family: 'Courier New', monospace; color: #333; letter-spacing: 3px; }

/* --- 2. TECH STACK (The Laser Scanner) --- */
.scanner-container { position: relative; overflow: hidden; background: #fff; }

.scanner-laser {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: #E84855;
    box-shadow: 0 0 15px #E84855, 0 0 30px #E84855;
    z-index: 10; opacity: 0.8;
    animation: laserScan 4s ease-in-out infinite;
}
@keyframes laserScan { 0% { top: -10%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 110%; opacity: 0; } }

.server-rack { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

.server-unit {
    display: flex; align-items: center; gap: 12px;
    padding: 10px; border: 1px solid #E2E8F0; border-radius: 6px;
    background: #F8FAFC; transition: background 0.3s;
}
.server-unit.warning { background: #FEF2F2; border-color: #FECaca; }

.unit-led { width: 8px; height: 8px; border-radius: 50%; background: #ccc; }
.server-unit.secure .unit-led { background: #10B981; box-shadow: 0 0 5px #10B981; }
.server-unit.warning .unit-led { background: #E84855; box-shadow: 0 0 5px #E84855; animation: blinkBeacon 0.5s infinite; }

.unit-info { display: flex; flex-direction: column; }
.unit-name { font-size: 0.8rem; font-weight: 700; color: #1B1B2F; }
.unit-status { font-size: 0.7rem; font-family: 'Courier New', monospace; color: #64748B; }
.warning .unit-status { color: #E84855; font-weight: 700; }

/* --- 3. PERFECT MIX (The Reactor Core) --- */
.reactor-container {
    position: relative; height: 160px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 10px;
}

/* Central Core */
.core-circle {
    width: 60px; height: 60px; background: #1B1B2F; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: white; z-index: 10;
    box-shadow: 0 0 20px rgba(59, 180, 217, 0.3);
}
.core-text { font-size: 1.1rem; font-weight: 800; line-height: 1; }
.core-sub { font-size: 0.6rem; color: #3BB4D9; }

/* Spinning Rings */
.reactor-ring {
    position: absolute; border-radius: 50%; border: 1px solid transparent;
}
.reactor-ring.outer {
    width: 130px; height: 130px;
    border-top-color: #3BB4D9; border-bottom-color: #3BB4D9;
    animation: spinRight 6s linear infinite;
    opacity: 0.5;
}
.reactor-ring.inner {
    width: 90px; height: 90px;
    border-left-color: #E84855; border-right-color: #E84855;
    animation: spinLeft 4s linear infinite;
    opacity: 0.7;
}

@keyframes spinRight { 100% { transform: rotate(360deg); } }
@keyframes spinLeft { 100% { transform: rotate(-360deg); } }

/* Orbiting Particles */
.particle {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
}
.p1 { background: #4285F4; animation: orbit1 3s linear infinite; } /* Google */
.p2 { background: #0668E1; animation: orbit2 4s linear infinite; } /* Meta */
.p3 { background: #000; animation: orbit3 5s linear infinite; }    /* TikTok */

@keyframes orbit1 { from { transform: rotate(0deg) translateX(55px) rotate(0deg); } to { transform: rotate(360deg) translateX(55px) rotate(-360deg); } }
@keyframes orbit2 { from { transform: rotate(120deg) translateX(40px) rotate(-120deg); } to { transform: rotate(480deg) translateX(40px) rotate(-480deg); } }
@keyframes orbit3 { from { transform: rotate(240deg) translateX(65px) rotate(-240deg); } to { transform: rotate(600deg) translateX(65px) rotate(-600deg); } }

/* --- 4. REVENUE (Market Terminal) --- */
.finance-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.stock-ticker { font-size: 1.4rem; font-weight: 800; color: #10B981; display: flex; align-items: center; gap: 5px; }
.arrow-up { font-size: 1rem; }

.chart-wrapper { height: 100px; width: 100%; position: relative; }
.market-chart { width: 100%; height: 100%; overflow: visible; }

.chart-area { opacity: 0; animation: fadeArea 1s ease-out forwards 1.5s; }
@keyframes fadeArea { to { opacity: 1; } }

.chart-line {
    stroke-dasharray: 1000; stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.5));
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.chart-dot {
    opacity: 0; animation: popDot 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 2s;
}
@keyframes popDot { from { opacity: 0; transform: scale(0); transform-origin: center; } to { opacity: 1; transform: scale(1); transform-origin: center; } }