:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-green: #2ecc71;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
    cursor: none; /* Hide default cursor */
    position: relative;
}

/* Premium Statement Section */
.premium-statement-section {
    background-color: #000000;
    padding: 40px 0 100px; /* Reduced top padding to move card up */
    display: flex;
    justify-content: center;
    position: relative;
    border-top: none; /* Removed border as requested */
}

.premium-card {
    width: 90%;
    max-width: 1260px; /* Aligns with slider max-width */
    background-color: #0A0A0A;
    border-radius: 40px;
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.premium-logo {
    font-family: var(--font-display); /* Updated to use display font */
    font-size: 48px;
    color: #fff;
    font-weight: 300; /* Changed to 300 (Light) */
    z-index: 2;
    margin-bottom: 80px;
    letter-spacing: -1px; /* Tighter tracking often looks better with display fonts */
}

.premium-logo .ai-part {
    color: #555; /* Darker grey for .ai */
}

.premium-statements {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
    flex-grow: 1; /* Pushes footer down */
}

.statement-item {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 56px;
    color: #fff;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    opacity: 0; /* Hidden by default */
    transform: translateY(30px); /* Start slightly below */
    /* Slower duration + ease-out for softer arrival */
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.statement-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.statement-item:nth-child(1) { 
    color: #E0E0E0;
}
.statement-item:nth-child(2) { 
    color: #888888;
}
.statement-item:nth-child(3) { 
    color: #333333;
}

.watermark-text {
    position: absolute;
    right: -65%; /* Pushed significantly to the right as requested */
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 300px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: -10px;
    /* Mask removed to rely on overflow:hidden */
}

.premium-footer {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 14px;
    color: #333;
    z-index: 2;
    margin-top: 60px;
}

.set-x{

    margin-top: 80px !important;
}


/* Responsive Premium Section */
@media (max-width: 768px) {
    .premium-card {
        padding: 30px 24px; /* Reduced padding from 40px 30px */
        min-height: 500px;
        border-radius: 30px;
    }

    .premium-logo {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .statement-item {
        font-size: 40px; /* Increased from 36px */
    }

    .watermark-text {
        font-size: 150px;
        right: -130%; /* Even further right on mobile */
        opacity: 0.8; /* Slightly reduce opacity on mobile */
    }
}
/* Why Section */
.why-section {
    background-color: #000000;
    padding: 120px 0;
    display: flex;
    flex-direction: column; /* Stack header and grid */
    align-items: center; /* Center horizontally */
    text-align: center;
    position: relative; /* Context for absolute icon if needed */
}

.why-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px; /* Space between header and grid */
    /* Initial state set by JS, but good to have defaults */
    opacity: 0;
    transform: translateY(30px);
    /* No transition for scroll sync */
}

.why-header.visible {
    /* Handled by JS */
}

.why-label {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 42px; /* Increased from 32px */
    color: #fff;
    font-weight: 400;
}

.why-title {
    font-family: var(--font-display); /* Changed to CanelaDeck (same as domain-name) */
    font-size: 5rem; /* Match domain-name size */
    color: #fff;
    font-weight: 400; /* Regular weight */
    line-height: 1;
    letter-spacing: -1px; /* Match domain-name spacing */
    margin-bottom: 8px; /* Match domain-name margin */
}

.why-subtitle {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 18px; /* Reduced from 24px */
    color: #535353;
    font-weight: 400;
    margin-top: 16px;
}

.why-grid {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1260px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px; /* Safe padding for smaller screens */
    position: relative; /* Context for fixed/absolute icon within grid */
}

/* Compass Icon Styles */
.why-card.icon-card {
    background-color: transparent;
    box-shadow: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Static position in grid, removed absolute positioning */
    position: relative; 
    pointer-events: none; /* Let clicks pass through if needed, though here it's just visual */
    z-index: 1;
}

/* Reset placeholder since we use the card itself now */
.why-card.icon-placeholder {
    display: none;
}

.why-card.icon-card svg {
    stroke: #333;
    width: 80px;
    height: 80px;
    transition: transform 0.1s ease-out; /* Smooth rotation */
    transform-origin: center center;
}

.why-card {
    width: 350px;
    height: 350px;
    background-color: #101010;
    border-radius: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    transition: background-color 0.3s ease; /* Keep bg transition */
    /* Initial state */
    opacity: 0;
    transform: translateY(100px);
}

.why-card.visible {
    /* Handled by JS */
}

/* Highlight state for when icon is over it */
.why-card.highlight {
    background-color: #1A1A1A; /* Slightly lighter premium grey */
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.03); /* Subtle glow */
}

.why-card:hover {
    /* No transform */
}

.why-card-label {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 400;
}

.why-card.icon-card {
    background-color: transparent; /* No background */
    box-shadow: none; /* No shadow */
    border: none; /* No border */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Not interactive */
}

.why-card.icon-card:hover {
    transform: none; /* No hover effect */
}

.why-card.icon-card svg {
    stroke: #333; /* Dark grey stroke as in image */
    width: 80px;
    height: 80px;
}

.why-card-text {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 32px;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    max-width: 280px;
}

/* Responsive Why Section */
@media (max-width: 768px) {
    .why-section {
        padding: 80px 20px;
    }

    .why-header {
        margin-bottom: 40px;
    }

    .why-label {
        font-size: 24px;
    }

    .why-title {
        font-size: 3.4rem; /* Match domain-name mobile size */
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .why-subtitle {
        font-size: 16px;
        padding: 0 20px; /* Ensure text doesn't hit edges */
        line-height: 1.4;
    }

    .why-card {
        width: 100%;
        max-width: 350px;
        height: auto; /* Let height adjust based on width */
        aspect-ratio: 1 / 1; /* Force square aspect ratio */
        min-height: 0; /* Remove min-height override */
        border-radius: 40px;
    }
    
    /* Hide spacers on mobile to avoid gaps */
    .why-card.spacer,
    .why-card.icon-placeholder {
        display: none !important;
    }

    /* Mobile Compass - Professional Floating Style */
    .why-card.icon-card {
        display: flex !important; /* Restore layout for animation */
        visibility: hidden !important; /* Hide cleanly without removing from DOM */
        position: fixed;
        bottom: 40px;
        left: 20px; /* Default left position */
        width: 60px;
        height: 60px;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 100;
        padding: 0;
        opacity: 0 !important; /* Hidden by default */
        transform: translateX(-20px) scale(0.8);
        /* Transition visibility with delay so it hides AFTER opacity fades out */
        transition: opacity 0.4s ease, 
                    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                    left 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
                    visibility 0s linear 0.4s; 
        pointer-events: none;
    }

    .why-card.icon-card.mobile-active {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(0) scale(1);
        pointer-events: auto; /* Enable clicks when visible */
        /* Remove visibility delay when appearing */
        transition: opacity 0.4s ease, 
                    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                    left 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
                    visibility 0s linear 0s;
    }

    /* Right side position class */
    .why-card.icon-card.position-right {
        left: calc(100% - 80px); /* Move to right (100% - width - margin) */
    }

    .why-card.icon-card svg {
        width: 32px;
        height: 32px;
        stroke: #fff; /* White icon on mobile for contrast */
    }

    .why-card-text {
        font-size: 28px;
    }
}

/* Comparison Section */
.comparison-section {
    background-color: #000000; /* Match other sections */
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.comparison-container {
    width: 100%;
    max-width: 1260px;
    background: linear-gradient(180deg, #000 0%, #101010 100%); /* Requested gradient on container */
    border-radius: 40px;
    padding: 60px 80px;
    border: none;
}

.comparison-header {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 20;
}

.comparison-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.compare-dropdown-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1000 !important;
}

.compare-dropdown {
    display: inline-flex;
    align-items: center;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    height: 56px;
    padding: 0 26px;
    gap: 12px;
    color: #fff;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.compare-dropdown:hover {
    background-color: #1A1A1A;
    border-color: rgba(255, 255, 255, 0.15);
}

.compare-dropdown svg.dropdown-arrow {
    color: #646464;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.compare-dropdown.active svg.dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    min-width: 280px;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px;
    z-index: 1000 !important;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.dropdown-menu.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 12px;
    color: #888;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 15px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #1A1A1A;
    color: #fff;
}

.dropdown-item.active {
    background-color: #1A1A1A;
    color: #fff;
    font-weight: 400;
}

.compare-label {
    color: #D1D1D1;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px; /* 75% */
}

.compare-value {
    color: #646464;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px; /* 75% */
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.comparison-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.comparison-label {
    color: #777;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px; /* 57.143% */
    margin-bottom: 20px;
}

.comparison-value {
    color: #E5E5E5;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px; /* 50% */
}

.comparison-sub {
    font-family: var(--font-body);
    font-size: 14px;
    color: #777777;
    margin-top: 4px;
}

/* Responsive Comparison */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .comparison-container {
        padding: 40px 24px;
        border-radius: 30px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 60px; /* Increased gap from 40px to 60px */
    }

    .comparison-label {
        font-size: 24px; /* Increased from 21px */
    }

    .comparison-value {
        font-size: 32px; /* Increased from 28px/24px */
        line-height: 1.2;
    }

    .comparison-sub {
        font-size: 16px; /* Increased from 14px */
        margin-top: 4px; /* Reduced from 8px back to 4px for tighter spacing */
    }
}

/* Build Section */
.build-section {
    background-color: #000000;
    padding: 120px 0;
    display: flex;
    justify-content: center;
}

.build-container {
    width: 100%;
    max-width: 1260px;
    padding: 0;
    /* Based on the image, text seems left-aligned within the container */
    text-align: left; 
}

.build-title {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 80px; /* Large display size */
    color: #FAFAFA;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.build-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.build-subtitle {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 24px;
    color: #666; /* Muted grey */
    font-weight: 400;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.build-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.build-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    margin-top: 60px;
    gap: 40px; /* Add gap between columns */
    align-items: start; /* Prevent columns from stretching to same height */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.build-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.build-col-left {
    background: #080808; /* Very dark background */
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    /* min-height removed to fit content */
    width: 100%; /* Responsive within grid */
    max-width: 570px; /* Max width constraint */
    border: none;
}

.build-feature-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.build-feature-item {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.feature-content {
    height: 0; /* Use height instead of max-height for JS animation */
    overflow: hidden;
    opacity: 0;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
    color: #888;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0;
}

.build-feature-item.active .feature-content {
    opacity: 1;
    margin-top: 16px;
    /* Height handled by JS */
}

.build-feature-item.active .feature-icon {
    transform: rotate(45deg); /* Plus becomes cross */
    color: #fff;
}

.build-feature-item.active .feature-text {
    color: #fff;
}

.build-feature-item:last-child {
    border-bottom: none;
}

.feature-text {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 24px;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.feature-icon {
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.build-feature-item:hover .feature-text {
    color: #999;
}

.build-feature-item:hover .feature-icon {
    color: #777;
}

.build-col-right {
    display: flex;
    align-items: center;
    justify-content: center; /* Ortala */
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Eski gölge efektini kaldırıyoruz, yerine grid'in kenarlarını yumuşatan bir maske ekleyebiliriz ama şimdilik temiz kalsın */
.build-col-right::before {
    display: none; 
}

.build-domain-text {
    font-family: var(--font-display);
    font-size: 80px; /* Daha makul, şık bir boyut */
    line-height: 1.1;
    color: #E0E0E0; /* Hafif kırık beyaz/açık gri */
    white-space: normal;
    text-align: center;
    position: relative; /* Absolute yerine relative ile akışta kalsın */
    left: auto;
    top: auto;
    transform: none;
    pointer-events: none;
    letter-spacing: -2px;
    z-index: 1;
    opacity: 0.9;
    
    /* Glassmorphism Card Etkisi */
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* İmleç efekti için */
.build-domain-text::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 70px;
    background-color: var(--color-primary); /* Veya beyaz */
    margin-left: 10px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.build-domain-ai {
    font-weight: 300;
}

/* Responsive Build Section */
@media (max-width: 768px) {
    .build-section {
        padding: 80px 0;
    }
    
    .build-container {
        padding: 0 24px;
    }

    .build-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 40px;
    }

    .build-title {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .build-subtitle {
        font-size: 18px;
    }
}

/* Ownership Section */
.ownership-section {
    background-color: #000000;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.ownership-container {
    width: 100%;
    max-width: 1260px;
    padding: 0 40px;
}

.ownership-title {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ownership-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.ownership-title .text-white {
    color: #FAFAFA;
    font-weight: 400;
}

.ownership-title .text-gold {
    color: #E3D9A9;
    font-weight: 300;
}

.ownership-subtitle {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
    display: inline-block;
    
    background: linear-gradient(90deg, #777 0%, #959595 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ownership-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.ownership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
    text-align: left;
}

.ownership-card {
    background: #080808;
    border-radius: 20px;
    padding: 40px;
    height: 574px; /* Fixed height for desktop as requested */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to top */
    position: relative;
    border: none; /* Remove border */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ownership-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 64px; /* Increased size */
    color: #555; /* Default fallback */
    font-weight: 300;
    line-height: 1;
    margin-bottom: 60px; /* Space below number */
}

/* Gradient effect for numbers 01-03 */
.ownership-card:nth-child(1) .step-number {
    color: #A1A1A1; /* Darker gray */
}

.ownership-card:nth-child(2) .step-number {
    color: #C1C1C1; /* Medium gray */
}

.ownership-card:nth-child(3) .step-number {
    color: #CECECE; /* Lighter gray */
}

.step-number.highlight-number {
    color: #CBC4A5; /* Specific color for 04 (overrides nth-child because of class specificity + order) */
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    margin-bottom: 40px; /* Space below icon */
    height: 200px; /* Increased height for better balance with large logo */
    width: 100%;
}

.icon-img {
    max-width: 90px;
    height: auto;
    opacity: 0.8;
}

.ownership-card:not(:first-child) .icon-img {
    max-width: 90px;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Increased gap */
}

.step-title {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    min-height: 72px; /* Increased to ensure 3-line titles or tall spacing aligns descriptions */
    display: flex;
    align-items: flex-start; /* Align text to top of container */
}

/* Gradient effect for titles 01-03 */
.ownership-card:nth-child(1) .step-title {
    color: #A1A1A1;
}

.ownership-card:nth-child(2) .step-title {
    color: #C1C1C1;
}

.ownership-card:nth-child(3) .step-title {
    color: #CECECE;
}

.ownership-card:nth-child(4) .step-title {
    color: #CBC4A5; /* Match number color */
}

.step-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #76756E; /* Specific subtitle color */
    line-height: 1.5;
    max-width: 90%;
}

/* Responsive Ownership Section */
@media (max-width: 1024px) {
    .ownership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ownership-card {
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .ownership-section {
        padding: 80px 0;
    }
    
    .ownership-container {
        padding: 0 24px;
    }

    .ownership-title {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .ownership-subtitle {
        font-size: 18px;
    }

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

    .ownership-card {
        min-height: 350px;
        padding: 30px;
    }
}

/* Final Section - viewport ortasında: min-height 100vh + flex center */
.final-section {
    background-color: #000000;
    min-height: 100vh;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.final-container {
    width: 100%;
    max-width: 1260px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    /* Viewport ortası animasyonu: yumuşak geçiş */
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}


.final-title {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 80px;
    color: #EFE1A1; /* Updated gold color */
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.final-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.final-brand {
    font-family: var(--font-display); /* Serif font */
    font-size: 140px; /* Very large display */
    color: #fff;
    font-weight: 300;
    letter-spacing: -4px;
    line-height: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.final-brand.visible {
    opacity: 1;
    transform: translateY(0);
}

.final-subtitle {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 24px;
    color: #666;
    font-weight: 400;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.final-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Final Section */
@media (max-width: 768px) {
    .final-section {
        min-height: 100vh;
        padding: 24px 0;
    }

    .final-container {
        padding: 0 24px;
        gap: 16px; /* Reduce gap */
    }

    .final-title {
        font-size: 42px; /* Smaller title */
        letter-spacing: -1px;
    }

    .final-brand {
        font-size: 52px; /* Smaller brand text to fit screen */
        letter-spacing: -2px;
        word-break: break-word; /* Prevent overflow if needed */
        line-height: 1.1;
    }

    .final-subtitle {
        font-size: 16px;
    }
}

/* Page Footer */
.page-footer {
    height: 52px;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-footer-text {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #494949;
    letter-spacing: -0.2px;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference; /* Makes it visible on white backgrounds too */
}

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

.cursor-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* Dynamic Island Navbar */
.dynamic-island {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.95); /* Subtle move up and shrink */
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 8px 12px 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    min-width: 320px;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Ultra smooth Apple-like easing for both entrance and exit */
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    pointer-events: none;
}

.dynamic-island.visible {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.island-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.island-status .status-text {
    color: #1A1A1A;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 13px;
    font-weight: 300;
}

.island-actions {
    display: flex;
    gap: 10px;
}

.island-btn {
    padding: 10px 20px;
    border-radius: 24px;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 13px;
    font-weight: 300;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.island-btn.primary:hover {
    background-color: #F5F5F5; /* Aynı: btn-primary hover */
}

.island-btn.secondary:hover {
    background-color: #191A1D; /* Aynı: btn-secondary hover */
}

.island-btn.primary {
    background-color: #F5F5F5;
    color: #000000;
}

.island-btn.secondary {
    background-color: #191A1D;
    color: #ffffff;
}

a.island-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Responsive Island – mobil: büyük dokunma alanları, en az 44px */
@media (max-width: 768px) {
    .dynamic-island {
        width: 94%;
        max-width: 360px;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 12px; /* Daha yüksek bar = daha rahat dokunma */
        min-height: 56px; /* Bar yüksekliği Apple 44px+ önerisi */
        top: max(16px, env(safe-area-inset-top));
        border-radius: 28px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .island-status {
        padding: 10px 16px;
        min-height: 44px; /* En az 44px dokunma hedefi */
        min-width: 0;
        flex: 0 0 auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 22px;
        -webkit-tap-highlight-color: transparent;
    }

    .island-status .status-text {
        font-size: 13px;
        font-weight: 500;
    }

    .island-actions {
        display: flex;
        gap: 10px;
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Mobilde yer ve renk: Offer solda (açık), Acquire sağda (koyu) */
    .island-actions .island-btn.primary {
        order: 2;
        background-color: #191A1D;
        color: #ffffff;
    }

    .island-actions .island-btn.secondary {
        order: 1;
        background-color: #F5F5F5;
        color: #000000;
    }

    .island-btn {
        padding: 12px 20px;
        font-size: 0;
        min-width: 100px; /* Biraz daha geniş, metin sığsın */
        min-height: 44px; /* Apple HIG: en az 44pt dokunma */
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 22px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        white-space: nowrap; /* Metin taşmasın */
    }

    .island-btn.primary::after {
        content: attr(data-content-text); /* JS ile dinamik içerik */
        font-size: 14px;
        font-weight: 500;
    }

    .island-btn.secondary::after {
        content: 'Offer';
        font-size: 14px;
        font-weight: 500;
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    width: 100%;
    max-width: 1260px; /* Limit width */
    position: absolute;
    top: 0;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for exact centering */
    z-index: 10;
    /* border-bottom removed, handled by ::after for precise width */
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px; /* Aligns with padding-left */
    right: 40px; /* Aligns with padding-right */
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.status-badge {
    background: #F5F5F5;
    padding: 6px 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-text {
    color: #1A1A1A;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    position: relative;
    filter: drop-shadow(0 1px 6px rgba(34, 197, 94, 0.60));
    animation: breathing-glow 3s infinite ease-in-out;
}

/* Removed pseudo-element animation, glow is now on the dot itself via drop-shadow animation */
.status-dot::after {
    display: none;
}

@keyframes breathing-glow {
    0% {
        filter: drop-shadow(0 1px 6px rgba(34, 197, 94, 0.60));
        opacity: 1;
    }
    50% {
        filter: drop-shadow(0 1px 12px rgba(34, 197, 94, 0.90));
        opacity: 0.8;
    }
    100% {
        filter: drop-shadow(0 1px 6px rgba(34, 197, 94, 0.60));
        opacity: 1;
    }
}

/* Entry Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navbar Animation */
.navbar {
    /* ... existing styles ... */
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0; /* Start hidden */
}

/* Staggered Animations for Hero Content */
/* Hero Price Style */
.hero-price {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 5rem; /* Match domain-name size */
    color: #444; /* Dark gray per image description */
    font-weight: 300; /* Thin weight */
    margin-top: 10px; /* Adjust spacing to sit below tagline */
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s; /* Wait for tagline (0.4s) */
    line-height: 1;
}

@media (max-width: 768px) {
    .hero-price {
        font-size: 3.4rem; /* Match mobile domain size */
        margin-top: -5px;
    }
}

.domain-name {
    /* ... existing styles ... */
    opacity: 0; /* Start hidden */
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.tagline {
    /* ... existing styles ... */
    opacity: 0; /* Start hidden */
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.cta-group {
    /* ... existing styles ... */
    opacity: 0; /* Start hidden */
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.trust-text {
    /* ... existing styles ... */
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.4s ease-out forwards;
    animation-delay: 1.0s;
}

/* Footer Animation */
.site-footer {
    opacity: 0; /* Start hidden */
    animation: fadeIn 2s ease-out forwards;
    animation-delay: 1.2s;
    width: 100%;
    background-color: #0A0A0A;
    /* Remove padding to let marquee take full width, handled in container */
}

/* Countdown Timer Styles */
.countdown-container {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Hero Layout 2 Countdown Position */
.hero-section.hero-layout-2 .countdown-container {
    position: absolute;
    top: 120px; /* Adjust based on Navbar height + spacing */
    right: 40px; /* Align with container padding */
    margin: 0;
    align-items: flex-end; /* Align text to right */
}

/* Responsive Countdown for Layout 2 */
@media (max-width: 768px) {
    .hero-section.hero-layout-2 .countdown-container {
        position: relative;
        top: auto;
        right: auto;
        align-items: center;
        margin-bottom: 24px;
        width: 100%;
    }
}

.countdown-label {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E3D9A9; /* Gold color to match theme */
    font-weight: 500;
}

.countdown-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.8); /* Dark background matching image */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 24px;
    gap: 12px;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.countdown-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    margin: 0 4px;
}

/* Hero Layout 2 (Left Aligned Split) */
.hero-section.hero-layout-2 {
    align-items: center; /* Center the container vertically */
    padding: 0; /* Padding handled by inner container */
}

.hero-section.hero-layout-2 .hero-content {
    /* Match Navbar Constraints exactly */
    width: 100%;
    max-width: 1260px;
    padding: 0 40px;
    margin: 0 auto;
    position: relative; /* Establish positioning context for absolute children like countdown */
    
    /* Alignment */
    align-items: flex-start; /* Left align children */
    justify-content: center; /* Center vertically */
    text-align: left;
}

.hero-section.hero-layout-2 .main-content {
    align-items: flex-start;
    text-align: left;
    margin-top: -60px; /* Slight optical adjustment */
    width: 100%;
}

.hero-section.hero-layout-2 .domain-name {
    font-size: 8rem;
    text-align: left;
    margin-left: -5px; /* Optical alignment */
    order: 1; /* First */
}

.hero-section.hero-layout-2 .tagline {
    text-align: left;
    font-size: 16px; /* Smaller font (was 20px) */
    color: #555; /* Darker gray (was #888) */
    margin-top: 8px; /* Reduced space (was 16px) */
    margin-bottom: 0;
    max-width: 600px;
    order: 2;
    font-weight: 400;
}

.hero-section.hero-layout-2 .hero-price {
    text-align: left;
    margin-top: 32px;
    color: #444;
    order: 3; /* Third */
}

/* Special case: When tagline is hidden/empty, bring price closer to domain name */
.hero-section.hero-layout-2 .hero-price.no-tagline {
    margin-top: 8px; /* Significantly reduced from 32px */
}
.hero-section.hero-layout-2 .bottom-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1260px; /* Match container width */
    padding: 0 40px; /* Match container padding */
    
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    text-align: left;
}

.hero-section.hero-layout-2 .trust-text {
    text-align: left;
    margin: 0 0 30px 0; /* Lift up to match buttons */
    font-size: 15px; /* Increased from 13px */
    color: #666;
    max-width: 300px;
    order: 1; /* Move to left */
}

.hero-section.hero-layout-2 .cta-group {
    margin: 0 0 30px 0; /* Lift up by 30px */
    pointer-events: auto;
    gap: 12px;
    background: #111;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid #222;
    justify-content: flex-start;
    order: 2; /* Move to right */
}

.hero-section.hero-layout-2 .btn {
    padding: 16px 32px;
    font-size: 15px;
}

.hero-section.hero-layout-2 .scroll-indicator {
    position: absolute;
    bottom: 60px; /* Moved up from 40px */
    left: 50%;
    transform: translateX(-50%);
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 12px;
    color: #444;
    letter-spacing: 1px;
    opacity: 0; /* Hidden initially */
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-section.hero-layout-2 .scroll-indicator.visible {
    opacity: 0.6;
}

.hero-section.hero-layout-2 .scroll-indicator .scroll-arrow {
    display: inline-block;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* Responsive Layout 2 */
@media (max-width: 1024px) {
    .hero-section.hero-layout-2 .domain-name {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .hero-section.hero-layout-2 .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 24px;
    }

    .hero-section.hero-layout-2 .main-content {
        margin-top: -120px;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-section.hero-layout-2 .domain-name {
        font-size: 3.5rem;
        text-align: center;
        margin-left: 0;
        width: 100%;
    }

    .hero-section.hero-layout-2 .tagline {
        text-align: center;
        margin: 12px auto 0 auto;
        max-width: 100%;
    }

    .hero-section.hero-layout-2 .hero-price {
        text-align: center;
        width: 100%;
    }

    .hero-section.hero-layout-2 .bottom-content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 24px;
        padding: 0 24px;
        bottom: 30px;
        text-align: center;
    }
    
    .hero-section.hero-layout-2 .cta-group {
        width: 100%;
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0 0 10px 0;
        justify-content: center;
        order: 2; /* Visually top because of column-reverse? No, flex-direction: column-reverse flips the axis start/end. 
                   Items are laid out from bottom to top.
                   Order 1 (Trust) -> Bottom
                   Order 2 (CTA) -> Top
                   */
    }
    
    .hero-section.hero-layout-2 .trust-text {
        text-align: center;
        font-size: 12px;
        margin: 0;
        order: 1;
        max-width: 100%;
    }
    
    .hero-section.hero-layout-2 .scroll-indicator {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh; /* Ensure full viewport height */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 5;
    /* margin-bottom removed as marquee is now in footer */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers children vertically */
    align-items: center;
    height: 100%; /* Take full height of hero section to center properly */
    width: 100%;
}

.main-content {
    /* Ensures the main title stays centered regardless of absolute positioning of bottom content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -180px; /* Moves content higher up as requested */
}

.domain-name {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 8px; /* Reduced space to bring tagline closer */
    letter-spacing: -1px;
    /* Optional gradient or subtle texture could go here, but keeping it crisp white for premium feel */
}

.tagline {
    font-size: 16px;
    color: #B0B7C3;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    letter-spacing: -0.16px;
    margin-bottom: 0; /* Reset margin as bottom content is now absolutely positioned */
    margin-top: 8px; /* Add small space between domain and tagline */
}

.ai-highlight {
    animation: ai-flash 2.5s ease-out 0.4s forwards; /* Synced with tagline entry */
}

.ai-domain-part {
    background: linear-gradient(90deg, #8E8E93 0%, #bfbfbf 40%, #ffffff 50%, #bfbfbf 60%, #8E8E93 100%);
    background-size: 300% auto; /* Larger size for smoother gradients */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premium-shimmer 8s linear infinite;
    animation-delay: 0s;
    display: inline-block;
}

@keyframes premium-shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: -300% center;
    }
}

@keyframes ai-flash {
    0% {
        color: #B0B7C3;
        text-shadow: none;
    }
    50% { /* Peak exactly when text is fully revealed */
        color: #EFE1A1;
        text-shadow: 0 0 20px rgba(239, 225, 161, 0.5);
    }
    100% {
        color: #B0B7C3;
        text-shadow: none;
    }
}

.bottom-content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 400; /* Back to 400 (Regular) */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Removed transform transition */
    border: none;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    position: relative; /* For ripple positioning */
    overflow: hidden; /* To clip the ripple */
    z-index: 1; /* To ensure text is above ripple if z-index managed */
}

a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn span {
    position: relative;
    z-index: 2; /* Text stays on top */
}

.btn-primary {
    background-color: #F5F5F5;
    color: #000000;
}

.btn-secondary {
    background-color: #191A1D;
    color: #ffffff;
    border: none;
    border-radius: 1000px;
}

/* Ripple Effect Styles */
.btn .ripple {
    position: absolute; /* Ensure absolute positioning overrides generic span style */
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-spread 1.2s ease-out; /* Slower for softer feel */
    pointer-events: none;
    z-index: 1; 
    display: block;
    filter: blur(2px); /* Slight blur to soften edges */
}

.btn {
    /* ... existing styles ... */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Target only the text span if possible, or ensure ripple overrides this */
.btn > span:not(.ripple) {
    position: relative;
    z-index: 10; /* Ensure text is well above ripple */
}

@keyframes ripple-spread {
    0% {
        transform: scale(0);
        opacity: 0.4; /* Softer start opacity */
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary .ripple,
.island-btn.primary .ripple {
    background-color: rgba(0, 0, 0, 0.1); /* Softer dark ripple */
}

.island-btn .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-spread 1.2s ease-out;
    pointer-events: none;
    z-index: 1;
    display: block;
    filter: blur(2px);
}

.btn-secondary .ripple,
.island-btn.secondary .ripple {
    background-color: rgba(255, 255, 255, 0.2); /* Softer light ripple */
}

.btn-primary:hover {
    background-color: #F5F5F5; /* Keep base color, ripple does the effect */
}

.btn-secondary:hover {
    background-color: #191A1D; /* Keep base color */
}

.trust-text {
    color: #545454;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 20px;
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    padding: 20px 0; /* Add vertical padding for breathing room */
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.marquee-content {
    display: inline-flex;
    animation: scroll 64s linear infinite; /* Slowed down from 40s to 80s */
}

.marquee-content span {
    font-size: 0.8rem; /* Smaller size for less distraction */
    color: #404040;
    margin-right: 20px; /* Reduced right margin as separators handle spacing */
    font-weight: 300;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.sep {
    font-size: 0.5rem; /* Much smaller separator */
    margin: 0 40px; /* Large spacing around separator */
    position: relative;
    top: 1px; /* Slight adjustment to center vertically */
    opacity: 0.4; /* Lower opacity */
    text-shadow: none;
    filter: none;
}

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

/* Scroll Animation States */
.companies-header,
.company-card {
    opacity: 0;
    transform: translateY(60px) scale(0.9) rotateX(5deg); /* Initial 3D state */
    will-change: opacity, transform;
    /* Removed CSS transition to allow JS to control frame-by-frame */
}

.companies-section {
    perspective: 1000px; /* Add perspective for 3D rotation */
    /* ... existing styles ... */
    background-color: #000000;
    padding: 80px 0 100px;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #1A1A1A;
}

.companies-header {
    text-align: left; /* Changed from center to left */
    margin-bottom: 60px;
    padding: 0 0 0 max(5vw, calc((100% - 1260px) / 2)); /* Align with slider start */
}

.companies-header h2 {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FAFAFA;
    margin-bottom: 20px;
}

.companies-header p {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 20px;
    color: #535353;
    font-weight: 300;
    font-style: normal;
    max-width: 600px;
    margin: 0; /* Align left by removing auto margins */
    line-height: 119.904%; /* 23.981px */
}

.slider-container {
    position: relative;
    width: 100%;
    padding-left: max(5vw, calc((100% - 1260px) / 2)); /* Start aligned with content max-width */
    overflow: hidden;
}

.companies-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 40px; /* Hide scrollbar */
    padding-right: 100px; /* Space for next card peeking */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-behavior: auto; /* Changed to auto for drag script */
    /* cursor: grab; removed to keep custom cursor or default */
    user-select: none; /* Prevent text selection while dragging */
}

.companies-slider:active {
    /* cursor: grabbing; removed */
}

.companies-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.company-card {
    min-width: 340px;
    height: 420px;
    background-color: #0A0A0A;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none; /* Removed border */
    transition: transform 0.3s ease; /* Removed border-color transition */
}

.company-card:hover {
    border-color: transparent; /* No hover border effect */
}

.company-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    align-self: flex-start;
    margin-bottom: auto; /* Push content down */
}

/* Adjustments for Meta and Google to match theme (White logos) */
.company-card:nth-child(5) .company-logo {
    width: 60px; /* Meta ring is usually square/round */
    filter: grayscale(1) brightness(200%); /* Slightly darker white (greyish) to match others */
    opacity: 0.8;
}

.company-card:nth-child(6) .company-logo {
    width: 110px; /* Google text is wider */
    filter: grayscale(1) brightness(200%); /* Slightly darker white (greyish) to match others */
    opacity: 0.8;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Final Card Styles */
.company-card.final-card {
    background: #0A0A0A;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none !important; /* Force remove border */
    outline: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    /* Custom Animation Initial State */
    opacity: 0;
    transform: translateY(6px);
    /* Override global transition removal */
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

/* Triggered by JS IntersectionObserver */
.company-card.final-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Remove the glowing orb for a quieter look */
.company-card.final-card::before {
    display: none;
}

.final-card-content h3 {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 32px; /* Slightly smaller */
    font-weight: 400; /* Regular weight */
    line-height: 1.2;
    color: #E0E0E0; /* Softer white */
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.final-card-content p {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 14px;
    color: #666; /* Muted grey */
    font-weight: 400;
    letter-spacing: 0;
}

/* Arrow icon - Keep it minimal */
.final-card-content::after {
    display: none; /* Hide arrow icon */
}

.company-card.final-card:hover .final-card-content::after {
    /* No hover effect needed for hidden arrow */
}

.card-content h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 4px;
}

.valuation {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
}

.description {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.next-btn {
    right: 40px;
}

.prev-btn {
    left: 40px;
}

.slider-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive for Companies Section */
@media (max-width: 768px) {
    /* Mobilde sadece slider kartları için animasyon kapalı – titreme olmasın */
    .companies-section .company-card:not(.final-card) {
        opacity: 1 !important;
        transform: none !important;
        will-change: auto;
    }

    .companies-header h2 {
        font-size: 2.5rem;
    }
    
    .slider-container {
        padding-left: 20px;
    }
    
    .company-card {
        min-width: 280px;
        height: 380px;
        padding: 24px;
    }
    
    .valuation {
        font-size: 24px;
    }
    
    /* Removed display: none for slider-btn to allow buttons on mobile */
    .slider-btn {
        width: 44px; /* Slightly smaller on mobile */
        height: 44px;
    }
    
    .next-btn {
        right: 10px; /* Closer to edge on mobile */
    }

    .prev-btn {
        left: 10px; /* Closer to edge on mobile */
    }
/* Footer */
.site-footer {
    display: none;
}
@media (max-width: 768px) {
    body {
        cursor: auto; /* Restore default cursor on touch devices */
        height: auto; /* Allow scroll if content overflows, though we aim for 100vh fit */
        min-height: 100vh;
    }

    .custom-cursor, .cursor-follower {
        display: none; /* Hide custom cursor on mobile */
    }

    .navbar {
        padding: 24px;
        position: absolute;
        width: 100%;
        max-width: 100%;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .navbar::after {
        left: 24px;
        right: 24px;
    }

    .main-content {
        margin-top: -120px; /* Adjust vertical centering for mobile */
        padding: 0 20px;
    }

    .domain-name {
        font-size: 3.4rem; /* Slightly larger */
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .tagline {
        font-size: 15px;
        max-width: 280px; /* Limit width for better readability */
        margin: 0 auto;
        line-height: 1.5;
    }

    .bottom-content {
        bottom: 90px; /* Moved up significantly to clear the footer */
        width: 100%;
        padding: 0 40px; /* Increased side spacing */
    }
    
    .cta-group {
        flex-direction: column;
        gap: 20px; /* Increased gap slightly more */
        width: 100%;
        max-width: 380px; /* Prevent being too wide */
        margin: 0 auto 24px auto; /* Center the group */
    }

    .btn {
        width: 100%; /* Full width buttons */
        padding: 16px; /* Taller touch targets */
        font-size: 16px;
    }

    .trust-text {
        font-size: 12px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .site-footer {
        display: none;
    }
    
    .marquee-container {
        padding: 15px 0; /* Slightly less padding on mobile */
    }
}

@media (max-width: 380px) {
    .domain-name {
        font-size: 2.8rem;
    }
}
