:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --border-color: #e5e5e5;
    --border-width: 1px;
    --spacing-lg: 100px;
    --spacing-md: 60px;
    --spacing-sm: 24px;

    /* New Tokens */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);

    /* Uraga Brand Colors */
    --primary-orange: #FF5722;
    --primary-dark: #111111;
    --primary-light: #f9f9f9;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover state */
.cursor-outline.hover-active {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 87, 34, 0.1);
    border-color: var(--primary-orange);
}

.cursor-dot.hover-active {
    background-color: var(--primary-orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 24px;
}

/* Apply Space Grotesk to numbers */
.price,
.milestone-number,
.feature-icon-circle {
    font-family: 'Space Grotesk', sans-serif;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    /*     filter: grayscale(100%);  Remove global grayscale for now if visuals are important */
    transition: filter 0.3s ease;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-block {
    padding: 100px 0;
}

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

.section-block.bg-dark {
    background-color: var(--primary-dark);
}

.section-block.bg-primary {
    background-color: var(--primary-orange);
}

.text-white {
    color: #fff;
}

.text-white h2,
.text-white p {
    color: #fff;
}

/* Ensure contrast */
.text-dark {
    color: #111;
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

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


/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid #111;
    border-radius: 100px;
    color: var(--text-color);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-fill {
    background: var(--text-color);
    color: #fff;
    border-color: var(--text-color);
}

.btn-fill:hover {
    background: #333;
    opacity: 0.9;
}

/* --- LAYOUT GRID SYSTEM --- */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reverse Mobile Logic (not active on desktop) */

/* --- HERO --- */
.hero-content h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    /* Big & Bold */
    margin-bottom: 24px;
    line-height: 1.0;
}

.hero-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
}

.badge {
    background: #fff;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* --- PROBLEM SECTION (Bullet List) --- */
.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.bullet-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.bullet-item h3::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.bullet-item p {
    padding-left: 24px;
    color: #666;
    font-size: 0.95rem;
}

/* --- MILESTONES (Strip) --- */
.milestone-section {
    background: var(--primary-dark);
    color: #fff;
    padding: 40px 0;
}

.milestone-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.milestone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.milestone-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 4px;
}

/* --- TRUSTED BY / MARQUEE (REVERTED) --- */
.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    padding: 60px 0;
    /* Increased padding */
    background: #fff;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 100%;
    gap: 100px;
    /* Increased gap */
    animation: scroll 30s linear infinite;
    flex-shrink: 0;
}

.logo-item img {
    max-height: 120px;
    /* Larger max-height */
    width: auto;
    opacity: 1;
    /* Full opacity */
    transition: opacity 0.3s;
    filter: grayscale(100%);
    /* Maintain grayscale but specific */
}

.logo-item img:hover {
    filter: none;
    /* Color on hover */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- FEATURES (Dark Box 2-Col) --- */
.features-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.feature-item {
    margin-bottom: 60px;
}

.feature-item h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.feature-item p {
    color: #bbb;
    line-height: 1.6;
    font-size: 1rem;
}

/* --- PRICING (3 Columns) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
    /* Align cards */
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 40px 24px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-card.featured {
    background: #111;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: none;
    position: relative;
    z-index: 5;
}

.pricing-card.featured .price {
    color: #fff;
}

.pricing-card.featured p {
    color: #ccc;
}

.pricing-card.featured ul.features li {
    color: #ddd;
}

.pricing-card.featured ul.features li::before {
    color: #FFD700;
    /* Gold check */
}

.pricing-card.featured .btn-fill {
    background: #FF5722;
    border: none;
    color: #fff;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* ... existing pricing header styles ... */

.pricing-header h3 {
    font-size: 14px;
    background: var(--primary-orange);
    color: #fff;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card ul.features {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card ul.features li {
    font-size: 14px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.pricing-card ul.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* --- CONTACT --- */
.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 1.25rem;
    font-weight: 600;
}

/* --- HEADER --- */
header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- FLOATING DOCK --- */
.floating-dock {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-dock:hover {
    transform: translateX(-50%) scale(1.05);
}

.dock-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.dock-divider {
    width: 1px;
    height: 24px;
    background: #ddd;
}

.dock-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    color: #111;
}

.dock-icon:hover {
    background: #f0f0f0;
}

.dock-icon svg {
    width: 20px;
    height: 20px;
}

.dock-btn {
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
    transition: background 0.3s ease;
}

.dock-btn:hover {
    background: #333;
    color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .split-container,
    .features-grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Reverse order on mobile for specific sections so visual comes first or second as needed */
    .reverse-mobile .visual-content {
        order: -1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-block {
        padding: 60px 0;
    }

    .nav-wrapper nav {
        display: none;
        /* Hide nav links on mobile for simplicity or add hamburger later */
    }

    .milestone-grid {
        flex-direction: column;
        gap: 40px;
    }

    .floating-dock {
        width: 90%;
        justify-content: space-between;
    }
}