/* Avenir Font Family */
@font-face {
    font-family: 'Avenir';
    src: url('./public/fonts/Avenir/Avenir Regular/Avenir Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('./public/fonts/Avenir/Avenir Book/Avenir Book.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('./public/fonts/Avenir/Avenir Heavy/Avenir Heavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('./public/fonts/Avenir/Avenir Black/Avenir Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Spring Animation Keyframes */
@keyframes spring-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce-in {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    60% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes border-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


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

body {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Animated Background */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 10;
}

/* Vertical vignette overlay - only above background */
.vignette-vertical {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 15%,
        rgba(0, 0, 0, 0) 85%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Horizontal vignette overlay - only above background */
.vignette-horizontal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 20%,
        rgba(0, 0, 0, 0.6) 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 6rem;
    z-index: 100;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

/* Nav CTA Button */
.nav-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, black 0%, #0b0b0b 50% #3a3a42 100%);
    backdrop-filter: blur(4px);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 100px 100px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.nav-cta-button:hover {
    background: linear-gradient(180deg, rgb(88, 88, 88) 0%, #0b0b0b 50% #3a3a42 100%);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 3px 8px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-0.5px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-icon {
    display: block;
}

.hamburger-line {
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animate hamburger to X */
.hamburger.active .line1 {
    transform: translate(0, 8px) rotate(45deg);
    transform-origin: 16px 16px;
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    transform: translate(0, -8px) rotate(-45deg);
    transform-origin: 16px 16px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 8rem 6rem 4rem 6rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    width: 100%;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    text-align: left;
}

.mobile-nav-link:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    color: #C026D3;
    background: rgba(251, 15, 255, 0.1);
    padding-left: 2.5rem;
}

.mobile-cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #505058 0%, #3a3a42 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.mobile-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 100px 100px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.mobile-cta-button:hover {
    background: linear-gradient(180deg, #585860 0%, #424249 100%);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 3px 8px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-0.5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 2rem 4rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    animation: fadeInUp 0.8s ease-out;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #a8b5c8 0%, #5c7cfa 35%, #4a9ff5 65%, #d4d8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 2rem);
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 0rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, black 0%, #0b0b0b 50% #3a3a42 100%);
    backdrop-filter: blur(4px);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 100px 100px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.btn-primary:hover {
    background: linear-gradient(180deg, rgb(152, 43, 43) 0%, #0b0b0b 50% #3a3a42 100%);
    backdrop-filter: blur(4px);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 3px 8px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: underline;
}

.btn-secondary:hover {
color:gray;
}

/* Hero Benefits Cards */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6rem;
}

.hero-benefit-card {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.benefit-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 1.5rem auto;
    color: white;
    position: relative;
    z-index: 1;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.hero-benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-benefit-card p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}

/* Sections */
section {
    position: relative;
    padding: 6rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
}

/* Section Divider */
.section-divider {
    max-width: 1400px;
    margin: 4rem auto;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

/* Full Width CTA Section */
.cta-fullwidth {
    width: 100%;
    max-width: 900px;
    margin: 6rem auto 3rem auto;
    background: linear-gradient(150deg, rgba(6, 6, 6, 0.7) 0%, rgba(23, 23, 23, 0.7) 80%, rgba(32, 32, 32, 0.7) 100%);
    backdrop-filter: blur(1.5px);
    border: 1px solid rgba(225, 225, 225, 0.1);
    border-radius: 2rem;
    padding: 4rem 2.5rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 2rem;

}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, white 0%, gray 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, black 0%, #0b0b0b 50% #3a3a42 100%);
    backdrop-filter: blur(4px);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}


.cta-button:hover {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, black 0%, #0b0b0b 50% #3a3a42 100%);
    backdrop-filter: blur(4px);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.section-alt {
    background: #0b0b0b;
}

#use-cases {
    max-width: 100%;
    padding: 0;
}

#use-cases .section-title,
#use-cases .section-description,
#use-cases .use-cases-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6rem;
    padding-right: 6rem;
}

#use-cases .section-title {
    padding-top: 6rem;
}

#use-cases .use-cases-grid {
    padding-bottom: 6rem;
}

#paradigm {
    max-width: 100%;
    padding: 0;
}

#paradigm .section-title,
#paradigm .section-description,
#paradigm .comparison-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6rem;
    padding-right: 6rem;
}

#paradigm .section-title {
    padding-top: 2rem;
}

#paradigm .comparison-grid {
    padding-bottom: 6rem;
}

#sacrifice-info {
    max-width: 100%;
    padding: 0;
}

#sacrifice-info .sacrifice-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6rem;
    padding-right: 6rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #9ca3af;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    position: relative;
    background: #000000;
    border: 1px solid #27272a;
    border-radius: 1rem;
    padding: 2rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(0deg, 
        rgba(59, 130, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.15) 50%,
        transparent 100%
    );
    transition: height 0.6s ease-out;
    z-index: 0;
    border-radius: 1rem;
}

.feature-card:hover::after {
    height: 100%;
    animation: flicker 0.15s infinite;
}

.feature-card:nth-child(2)::after {
    background: linear-gradient(0deg, 
        rgba(251, 146, 60, 0.2) 0%,
        rgba(251, 146, 60, 0.15) 50%,
        transparent 100%
    );
}

.feature-card:nth-child(3)::after {
    background: linear-gradient(0deg, 
        rgba(6, 182, 212, 0.2) 0%,
        rgba(6, 182, 212, 0.15) 50%,
        transparent 100%
    );
}

.feature-card:nth-child(4)::after {
    background: linear-gradient(0deg, 
        rgba(168, 85, 247, 0.2) 0%,
        rgba(168, 85, 247, 0.15) 50%,
        transparent 100%
    );
}

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

.feature-card:nth-child(1):hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.feature-card:nth-child(2):hover {
    border-color: rgba(251, 146, 60, 0.5);
}

.feature-card:nth-child(3):hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.feature-card:nth-child(4):hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-card {
    position: relative;
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(6px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    animation: border-spin 3s linear infinite;
    z-index: -1;
}

.comparison-card:hover::before {
    opacity: 1;
}

.old-way {
    background: rgba(127, 29, 29, 0.15);
    border: 1px solid rgba(255, 113, 113, 0.3);
}


.new-way {
    background: rgba(20, 83, 45, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.old-way .comparison-title {
    color: #f87171;
}

.new-way .comparison-title {
    color: #4ade80;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.old-way .comparison-list li::before {
    content: "✗";
    color: #f87171;
    font-weight: 700;
}

.new-way .comparison-list li::before {
    content: "✓";
    color: #4ade80;
    font-weight: 700;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.use-case-card {
    position: relative;
    background: #000000;
    border: 1px solid #27272a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    overflow: hidden;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.use-case-description {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.use-case-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Sacrifice Section */
.sacrifice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.sacrifice-column {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.sacrifice-column-left {
    gap: 3rem;
}

.sacrifice-column-right {
    gap: 0.5rem;
}

.sacrifice-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.timer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.timer-label {
    font-size: 0.65rem;
    color: #9ca3af;
    margin: 0;
    text-align: left;
    padding-left: 0.8rem;
}

.sacrifice-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.sacrifice-live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.sacrifice-timer {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
}

.sacrifice-timer span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #22c55e;
}

.sacrifice-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sacrifice-box {
    padding: 2rem;
}

.sacrifice-label {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sacrifice-value {
    font-size: 2rem;
    font-weight: 700;
    color: #FF8F0F;
    margin-bottom: 0.5rem;
}

.sacrifice-note {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
}

.sacrifice-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sacrifice-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: green;
}

.sacrifice-info-item p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: black;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.sacrifice-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: linear-gradient(180deg, black 0%, #0b0b0b 50% #3a3a42 100%);
    backdrop-filter: blur(4px);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 280px;
    width: 100%;
}

.sacrifice-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 100px 100px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.sacrifice-cta-button:hover {
    background: linear-gradient(180deg, rgb(88, 88, 88) 0%, #0b0b0b 50% #3a3a42 100%);
    box-shadow: 
        0 0.5px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 3px 8px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-0.5px);
}

/* FAQ Section */
#faq {
    padding-bottom: 3rem;
}

.faq-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c026d3, #d946ef);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(17, 17, 20, 0.8);
    backdrop-filter: blur(2px);
    border: 1px solid #27272a, 0.25;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #52525b;
    background: rgba(34, 34, 40, 0.8);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #9ca3af;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer a {
    color: #d946ef;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.45s;
}

.faq-answer a:hover {
    color: #c026d3;
    text-decoration: underline;
}

/* Footer */
footer {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 6rem;
    margin-top: 4rem;
    z-index: 100;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.footer-tagline {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    text-align: right;
}

.footer-disclaimer {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-left: 0.5rem;
}

.footer-disclaimer:hover {
    color: #9ca3af;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 1100px) {
    nav {
        padding: 1.5rem 6rem;
    }

    footer {
        padding: 2rem 6rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-cta-button {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 4rem 6rem;
    }

    .hero-benefits,
    .feature-grid,
    .comparison-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .cta-fullwidth {
        margin-left: 2rem;
        margin-right: 2rem;
        width: calc(100% - 4rem);
    }
}

/* Extra small screens */
@media (max-width: 768px) {
    nav {
        padding: 1.5rem 2rem;
    }

    footer {
        padding: 2rem;
    }

    section {
        padding: 4rem 2rem;
    }

    .cta-fullwidth {
        padding: 3rem 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
    }

    #use-cases .section-title,
    #use-cases .section-description,
    #use-cases .use-cases-grid {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    #paradigm .section-title,
    #paradigm .section-description,
    #paradigm .comparison-grid {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    #sacrifice-info .sacrifice-grid {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-benefits {
        padding: 0 2rem;
    }

    .mobile-menu-content {
        padding: 8rem 2rem 4rem 2rem;
    }

    .sacrifice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .timer-wrapper {
        align-items: flex-start;
        width: 100%;
    }

    .timer-label {
        text-align: left;
        padding-left: 0.75rem;
    }

    .sacrifice-timer {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
        gap: 0.2rem;
    }

    .sacrifice-timer span {
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

