:root {
    /* Colors */
    --color-primary: #FF6A3D;
    --color-primary-hover: #E85C30;
    --color-text-main: #000000;
    --color-text-secondary: #1A1A1A;
    --color-text-muted: #666666;
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F6F6F6;
    --color-border-light: #EDEDED;
    --color-border-hover: #CFCFCF;

    /* Typography */
    --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-main: var(--font-heading);

    /* Spacing & Sizes */
    --container-width: 100%;
    --header-height: 70px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll just in case */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

html.snap-mandatory {
    scroll-snap-type: y mandatory;
    /* Enabled for fast scrolling */
    scroll-padding-top: 0;
    scroll-behavior: smooth;
    /* Removed height: 100% and overflow-y: scroll to prevent snap interference */
}

html.snap-scroll-enabled {
    scroll-snap-type: y proximity;
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

body {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Removed height: 100% to ensure body can grow naturally with content and snap correctly */
}

.fs-section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 20px 40px;
    box-sizing: border-box;
}

/* Ensure content is centered in the remaining space */
.fs-section>.container {
    width: 100%;
    margin: 0 auto;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.2s ease;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    /* Increased padding */
}

.section {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    /* Reduced vertical padding (thinner) */
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    /* Fully rounded pill shape */
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    border: 2px solid #E86C44;
    color: #E86C44;
    box-shadow: 0 4px 15px rgba(232, 108, 68, 0.1);
}

.btn-primary:hover {
    background-color: #E86C44;
    color: #ffffff;
    transform: translateY(-1px);
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Pill Header */
.header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
}

.header-pill {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
    max-width: fit-content;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Scrolled Mode (Collapsed) */
body.scrolled-mode .header-pill {
    padding: 12px;
    gap: 0;
    border-radius: 50%;
    /* Create a perfect circle around the logo */
    width: 60px;
    height: 60px;
    justify-content: center;
}

/* Hide these elements when scrolled */
body.scrolled-mode .nav-links,
body.scrolled-mode .nav-divider,
body.scrolled-mode .header-actions {
    opacity: 0;
    max-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-40px);
    /* Slide left into logo */
}

/* Ensure smooth transition for disappearing elements */
.nav-links,
.nav-divider,
.header-actions {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 800px;
    /* Arbitrary large width */
    opacity: 1;
    transform: translateX(0);
}

.logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
    background: #f5f5f5;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: #e5e5e5;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-signin {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-signin:hover {
    background: #f5f5f5;
}

/* Reusing .btn-black-pill but with header specific padding */
.header-pill .btn-black-pill {
    padding: 10px 24px;
    font-size: 14px;
}

/* Global Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
}

/* White Hero Section */
.hero-white {
    position: relative;
    /* Changed from fixed to allow natural scroll */
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center content */
    padding-top: 80px;
    /* Offset for initial header visual */
    overflow: hidden;
    /* transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1); Remove transition effect as it's no longer used */
}

.hero-white-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding-bottom: 120px;
    /* Space for marquee */
}

/* Large Center Logo */

/* Hero Tagline */
.hero-tagline {
    font-family: "Outfit", sans-serif;
    font-size: 2.5rem;
    /* Reduced from 4rem for minimalism */
    font-weight: 400;
    /* Clean look */
    line-height: 1.2;
    color: #444;
    /* Lightened from #000 */
    margin-bottom: 32px;
    /* Reduced spacing */
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

/* Typewriter override for black text context */
.typewriter-text {
    color: inherit;
    font-weight: inherit;
    background: transparent !important;
    padding: 0 !important;
}

.typewriter-text::after {
    color: #444;
    /* Match the tagline's cursor color */
}

/* Black CTA Button */
.btn-black {
    background: #000;
    color: #fff;
    padding: 12px 32px;
    /* Reduced from 16px 40px */
    font-size: 16px;
    /* Reduced from 18px */
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-black:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.hero-cta-label {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Marquee */
.hero-bottom-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background: #ffffff;
    z-index: 10;
}

.brand-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    /* Subtle logos */
    transition: opacity 0.2s;
}

.logo-item:hover {
    opacity: 1;
}

/* Override existing logo inversion to make them dark/normal for white bg */
.logo-item img {
    height: 32px;
    width: auto;
    filter: brightness(0);
    /* Turn white logos to black */
    object-fit: contain;
}

/* Info Cards */
/* Marketing Statement Section */
.marketing-statement-section {
    min-height: 400vh;
    /* Increased to 400vh to prevent skipping */
    position: relative;
    z-index: 2;
    background-color: #fff;
    /* Removed flex centering here, moved to sticky container */
}

.sticky-marketing-content {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.chaos-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: auto;
    z-index: 1;
    /* Same as words */
    pointer-events: none;
    will-change: opacity, transform;
}

.chaos-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.chaos-line {
    stroke: #ccc;
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    /* Dashed effect */
    opacity: 0;
    /* Will fade in via JS */
}

.chaos-words-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.chaos-word {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    color: #333;
    /* Darker for readability */
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    /* JS will handle initial state */
    will-change: transform, opacity;
}

/* Container for the final text */
.main-statement-container {
    opacity: 0;
    transform: scale(0.9);
    transition: none;
    /* Controlled via JS */
    position: relative;
    z-index: 2;
}

.marketing-statement-text {
    font-family: "Outfit", sans-serif;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 400;
    color: #111;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: #000;
    font-weight: 600;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.card {
    background: white;
    padding: 32px 24px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: left;
}

.card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    color: var(--color-text-secondary);
}

.card-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

/* Responsive Grid */
@media (max-width: 1024px) {
}

/* Features Main Header - Plain Redesign */

/* Main Features Header */

/* Feature Cards Grid */
/* Alternating Features Section */

/* Feature Content */
.feature-content {
    flex: 0 1 480px;
    /* Allow shrinking but preferred width */
    max-width: 480px;
}

/* ... (skipping tags/typography unchanged) ... */

/* Feature Image */

.feature-content h3 {
    font-size: var(--text-4xl);
    /* Large bold title */
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.feature-content p {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* Black Pill Button */
.btn-black-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-black-pill:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* White Pill Button */
.btn-white-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: none;
}

.btn-white-pill:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Feature Image */

/* Responsive */
@media (max-width: 1024px) {

    /* Feature Image */

    .feature-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {

    /* Keep Image Top for all on mobile */

    /* Fixed mobile logic: For even rows in HTML (Text Left), we need column-reverse to pull Img Top */

}

/* Underline removed as it's now handled by the mirrored rules above */

@media (max-width: 1024px) {
}

@media (max-width: 768px) {

}

/* Digital Marketing Process Section */

/* Track Line (Background Arrow Path) */

/* Hero White Section (Fixed for Sticky Scroll) */
/* Hero White Section (Fixed for Sticky Scroll) */
