:root {
    --bg-color: #1A1A1B;
    --text-primary: #f2f2f2;
    --text-muted: #888888;
    --accent: #FF5F1F;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, .bg-watermark, .logo {
    font-family: 'Bebas Neue', sans-serif;
}

.site-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2rem 4rem;
}

.ambient-light {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(255, 60, 0, 0.05) 0%, rgba(3, 3, 3, 0) 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    z-index: 10;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.asterisk {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: var(--accent);
}

.nav-center {
    display: flex;
    gap: 4rem;
}

.nav-center a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-center a:hover {
    color: var(--text-muted);
}

.nav-right .hire-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-right .hire-link:hover .arrow-circle {
    background-color: var(--text-primary);
    color: var(--bg-color);
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

/* Title text */
.hero-title {
    position: absolute;
    top: 65%; /* Adjusted down */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 6;
    pointer-events: none;
}

.parallax-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    will-change: transform;
}

.title-top {
    font-size: 5.5vw; /* Halved */
    font-weight: 800;
    line-height: 0.9;
    transform: translateX(-8vw); /* Halved */
    display: flex;
    align-items: baseline;
    letter-spacing: -1px; /* Halved */
}

.title-middle {
    font-size: 7vw; /* Reduced from 7.75vw */
    font-weight: 900;
    color: var(--text-primary);
    line-height: 0.85;
    letter-spacing: -2px; 
    z-index: 2;
}

.title-bottom {
    font-size: 5.5vw; /* Halved */
    font-weight: 800;
    line-height: 0.9;
    transform: translateX(7vw); /* Halved */
    letter-spacing: -1px; /* Halved */
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
}

.solid-orange {
    color: var(--accent);
}

/* Focal Point (Image/3D Canvas) */
.focal-point {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100vw;
    height: 100vh;
    pointer-events: auto;
    transition: transform 0.1s ease-out;
}

.focal-point::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh; /* Large height for a very smooth fade */
    background: linear-gradient(to bottom, transparent, var(--bg-color) 90%);
    z-index: 8; /* Above the spline viewer but below the text */
    pointer-events: none;
}

/* Image styling wrapper */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    animation: float 5s ease-in-out infinite;
}

spline-viewer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
}

/* Absolute Texts */
.hero-text {
    position: absolute;
    z-index: 10;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.8;
    color: var(--text-muted);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

.hero-text.left {
    top: 25%;
    left: 1rem;
}

.hero-text.right {
    top: 32%;
    right: 1rem;
    text-align: right;
}

.hero-text:hover {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 95, 31, 0.2);
    box-shadow: 0 8px 32px 0 rgba(255, 95, 31, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
}

.hero-text.left:hover {
    transform: translateY(-5px) translateX(10px);
}

.hero-text.right:hover {
    transform: translateY(-5px) translateX(-10px);
}

.hero-text .subtitle {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.hero-text:hover .subtitle {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(255, 95, 31, 0.4);
}

/* Marquee Banner Section */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-color);
    padding: 3rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 25;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-row {
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    flex-shrink: 0;
}

.marquee-row.left .marquee-content {
    animation: scroll-left 25s linear infinite;
}

.marquee-row.right .marquee-content {
    animation: scroll-right 25s linear infinite;
}

.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes scroll-right {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.marquee-badge {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.marquee-badge:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 95, 31, 0.3);
    box-shadow: 0 0 20px rgba(255, 95, 31, 0.15);
}

/* About Section */
.about-section {
    min-height: 100vh;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    z-index: 20;
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 1200px;
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 95, 31, 0.3);
    box-shadow: 0 10px 40px -10px rgba(255, 95, 31, 0.15);
    transform: translateY(-8px);
}

.narrative-card {
    grid-column: 1 / -1;
    text-align: center;
    border-color: rgba(255, 95, 31, 0.1);
}

.highlight-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.mission-text {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.accent-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
    margin-top: 1rem;
    transition: text-shadow 0.4s ease;
}

.about-card:hover .accent-text {
    text-shadow: 0 0 15px rgba(255, 95, 31, 0.4);
}

.pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.why-card {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
}

.why-card p {
    max-width: 800px;
    margin: 1rem auto 3rem;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background-color: var(--accent);
    color: var(--bg-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 95, 31, 0.4);
}

/* Scroll Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.mobile-break {
    display: none;
}

/* Features Section */
.features-section {
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #121213; 
    z-index: 20;
    position: relative;
    overflow: hidden;
}

.features-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
}

.section-eyebrow {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.features-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2rem;
}

.features-grid-wrapper {
    position: relative;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    row-gap: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-8px);
}

.feature-card:hover::before {
    border-color: rgba(255, 95, 31, 0.5);
    box-shadow: inset 0 0 20px rgba(255, 95, 31, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 95, 31, 0.1);
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(255, 95, 31, 0.4);
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.center-core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,95,31,0.15) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
    animation: core-pulse 4s infinite alternate ease-in-out;
}

@keyframes core-pulse {
    0% { filter: brightness(1) drop-shadow(0 0 0px rgba(255,95,31,0)); transform: translate(-50%, -50%) scale(1); }
    100% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(255,95,31,0.3)); transform: translate(-50%, -50%) scale(1.05); }
}

.core-logo {
    width: 70px;
    height: 70px;
}

.features-footer {
    margin-top: 6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.features-footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-primary);
    max-width: 800px;
    line-height: 1.4;
}

.cta-button.outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(255, 95, 31, 0.05);
}

/* Process Section */
.process-section {
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color); 
    z-index: 20;
    position: relative;
    overflow: hidden;
}

.process-content {
    max-width: 1000px;
    width: 100%;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-container {
    position: relative;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 95, 31, 0.3) 10%, rgba(255, 95, 31, 0.5) 90%, transparent);
}

.timeline-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    width: 50px;
    height: 50px;
    background: #121213;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 95, 31, 0.3);
    z-index: 2;
    transition: all 0.5s ease;
}

.timeline-step:hover .timeline-icon {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 95, 31, 0.4);
    transform: scale(1.1);
}

.spark-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: color 0.5s ease, filter 0.5s ease;
}

.phase-1 .spark-icon { color: rgba(255, 95, 31, 0.3); }
.phase-2 .spark-icon { color: rgba(255, 95, 31, 0.6); }
.phase-3 .spark-icon { color: rgba(255, 95, 31, 0.8); }
.phase-4 .spark-icon { 
    color: var(--accent); 
    filter: drop-shadow(0 0 8px rgba(255, 95, 31, 0.6));
    width: 30px;
    height: 30px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    width: 100%;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 95, 31, 0.3);
    transform: translateX(10px);
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color); 
    z-index: 20;
    position: relative;
}

.pricing-content {
    max-width: 1200px;
    width: 100%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center; 
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.pricing-card.popular {
    background: rgba(255, 95, 31, 0.03);
    border-color: var(--accent);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 10px 40px -10px rgba(255, 95, 31, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 15px 50px -10px rgba(255, 95, 31, 0.25);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-color);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-target {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 500;
}

.plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.plan-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.plan-features li {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.plan-features li strong {
    color: var(--text-primary);
}

.check {
    color: var(--accent);
    font-weight: bold;
}

.cta-button.full-width {
    width: 100%;
}

.pricing-footer {
    text-align: center;
    margin-top: 5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.link-hover {
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

.link-hover:hover {
    text-shadow: 0 0 10px rgba(255, 95, 31, 0.6);
}

/* CTA / Contact Section */
.cta-section {
    min-height: 100vh;
    padding: 8rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #121213;
    z-index: 20;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
    max-width: 1200px;
    width: 100%;
}

.cta-header {
    text-align: center;
    margin-bottom: 5rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 8rem;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-step label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-step label .solid-orange {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.form-step input, .form-step select {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 1rem 0;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0; /* Override iOS Safari */
    appearance: none;
    -webkit-appearance: none;
}

.form-step select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}

.form-step select option {
    background-color: #121213;
    color: var(--text-primary);
}

.form-step input:focus, .form-step select:focus {
    outline: none;
    border-bottom-color: var(--accent);
    box-shadow: 0 10px 10px -10px rgba(255, 95, 31, 0.2);
}

.form-step input::placeholder, .form-step select:invalid {
    color: rgba(255, 255, 255, 0.2);
}

.minimal-form button {
    margin-top: 1rem;
}

.double-close-card {
    background: rgba(255, 95, 31, 0.03);
    border: 1px solid rgba(255, 95, 31, 0.2);
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.double-close-card::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255,95,31,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.assistant-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 95, 31, 0.3);
}

.assistant-avatar .spark-icon {
    width: 30px;
    height: 30px;
}

.double-close-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.double-close-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    padding: 0.5rem 1rem;
    background: rgba(255, 95, 31, 0.1);
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

@keyframes fade-pulse {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.7); }
    70% { opacity: 0.5; box-shadow: 0 0 0 10px rgba(255, 95, 31, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 95, 31, 0); }
}

.global-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-logo .core-logo {
    width: 40px;
    height: 40px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer Logos */
.bottom-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1.5rem;
    z-index: 10;
}

.logos-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: center;
    opacity: 0.7;
}

/* Lead Magnet Footer Offer */
.footer-lead-magnet {
    background: var(--accent);
    color: #121213;
    padding: 3rem 4rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    box-shadow: 0 10px 40px rgba(255, 95, 31, 0.2);
}

.lead-magnet-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.lead-magnet-content p {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 600px;
}

.cta-button.solid-black {
    background-color: #121213;
    color: var(--text-primary);
    border: 2px solid #121213;
}

.cta-button.solid-black:hover {
    background-color: transparent;
    color: #121213;
}

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 18, 19, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.exit-popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.exit-popup-card {
    background: #1a1a1b;
    border: 1px solid rgba(255, 95, 31, 0.3);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 40px rgba(255,95,31,0.05);
}

.exit-popup-overlay.show .exit-popup-card {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 1rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: var(--accent);
}

.popup-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.popup-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-content strong {
    color: var(--accent);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .site-container {
        padding: 1.5rem 2rem;
    }
    .hero-text.left {
        top: 20%;
    }
    .hero-text.right {
        top: 30%;
    }
    .brand-logo {
        width: 280px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .global-footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .site-container {
        padding: 1rem;
        height: auto;
        min-height: 100vh;
    }
    .nav-center {
        display: none;
    }
    .brand-logo {
        width: 180px;
    }
    
    /* Adjust text sizes for mobile */
    .hero-title {
        top: 60%;
    }
    .title-top {
        font-size: 8vw;
        transform: translateX(-4vw);
    }
    .title-middle {
        font-size: 11vw;
    }
    .title-bottom {
        font-size: 8vw;
        transform: translateX(4vw);
    }

    /* Stack floating texts and center them */
    .hero-text {
        position: absolute;
        width: 85%;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        padding: 1rem;
    }

    .hero-text.left {
        top: 8%;
    }

    .hero-text.right {
        top: 75%;
    }

    /* Fix hover states for mobile stacking */
    .hero-text.left:hover, .hero-text.right:hover {
        transform: translateX(-50%) translateY(-5px) scale(1.02) !important;
    }

    body {
        overflow-y: auto;
    }

    /* About Section Mobile */
    .about-section {
        padding: 4rem 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-break {
        display: block;
    }
    
    .section-title {
        font-size: 3.5rem;
        line-height: 1;
    }
    
    .highlight-text {
        font-size: 1.25rem;
    }
    
    .accent-text {
        font-size: 2.5rem;
    }
    
    .about-card {
        padding: 2rem;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 4rem 1.5rem;
    }

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

    .features-footer p {
        font-size: 1.4rem;
    }
    
    .center-core-glow {
        display: none; 
    }

    .process-section, .pricing-section, .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .timeline-container {
        padding-left: 20px;
    }
    
    .timeline-line {
        left: 0;
    }
    
    .timeline-icon {
        left: -30px;
        width: 40px;
        height: 40px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content:hover {
        transform: translateX(5px);
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-step label .solid-orange {
        font-size: 1.4rem;
    }
    
    .exit-popup-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }
    .popup-image {
        display: none;
    }
    .footer-lead-magnet {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
}
