/* ===================================
   Eqlara Landing Page Styles
   Blacksmith Forge Theme
   =================================== */

/* CSS Custom Properties */
:root {
    /* Colors - Blacksmith Forge Palette */
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1816;
    --bg-card: rgba(26, 24, 22, 0.8);
    --bg-card-hover: rgba(38, 34, 30, 0.9);

    /* Ember & Fire Accents */
    --accent-ember: #f97316;
    --accent-amber: #fbbf24;
    --accent-flame: #ef4444;
    --accent-glow: rgba(249, 115, 22, 0.5);

    /* Steel & Metal */
    --steel-light: #a1a1aa;
    --steel-dark: #52525b;

    /* Text Colors */
    --text-primary: #fafaf9;
    --text-secondary: #a8a29e;
    --text-muted: #78716c;

    /* Borders */
    --border-glass: rgba(168, 162, 158, 0.15);
    --border-ember: rgba(249, 115, 22, 0.4);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;
    --header-height: 70px;
    --survey-height: 40px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 50px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Header / Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    height: auto;
    display: flex;
    flex-direction: column;
}

.survey-bar {
    width: 100%;
    height: var(--survey-height);
    background: linear-gradient(90deg, var(--accent-ember), var(--accent-flame));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1001;
}

.survey-bar a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.survey-bar a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    color: var(--accent-ember);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-ember), var(--accent-amber));
    transition: width var(--transition-normal);
    box-shadow: 0 0 10px var(--accent-glow);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

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

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

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

.icon-btn:hover {
    color: var(--accent-ember);
    background: rgba(249, 115, 22, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--survey-height));
    overflow: hidden;
}

/* Background Pattern - Forge Glow */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(249, 115, 22, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(251, 191, 36, 0.08), transparent),
        radial-gradient(ellipse 40% 30% at 20% 90%, rgba(239, 68, 68, 0.06), transparent);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

/* Ember particles animation */
.hero-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, rgba(249, 115, 22, 0.05), transparent);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 540px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Primary Button - Ember Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-ember), var(--accent-flame));
    color: white;
    box-shadow:
        0 4px 20px rgba(249, 115, 22, 0.4),
        0 0 40px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 30px rgba(249, 115, 22, 0.5),
        0 0 60px rgba(249, 115, 22, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Flywheel Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
}

.flywheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Core */
.flywheel-core {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-inner {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent-ember);
    border-radius: 50%;
    filter: blur(10px);
    animation: pulse-glow 3s infinite ease-in-out;
}

.core-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-ember);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-glow);
    animation: rotate-core 10s linear infinite;
}

.core-outer::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-amber);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-amber);
}

/* Rings */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ring-1 {
    width: 240px;
    height: 240px;
    border: 1px dashed rgba(249, 115, 22, 0.2);
    animation: rotate-cw 60s linear infinite;
}

.ring-2 {
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Nodes */
.flywheel-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100px;
    text-align: center;
    animation: orbit-float 4s ease-in-out infinite;
}

.node-icon {
    color: var(--accent-ember);
    background: var(--bg-card);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-ember);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.node-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 8px;
}

/* Positioning Nodes on the circle (using approx positions for visual circle) */
/* Top */
.node-user {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

/* Right */
.node-ai {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: -1s;
}

/* Bottom */
.node-earn {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -2s;
}

/* Left */
.node-enterprise {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: -3s;
}

/* Animations */
@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes rotate-core {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

/* Specific overrides for side nodes to handle centering differently */
.node-ai {
    animation: orbit-float-right 4s ease-in-out infinite -1s;
}

.node-enterprise {
    animation: orbit-float-left 4s ease-in-out infinite -3s;
}

@keyframes orbit-float-right {

    0%,
    100% {
        transform: translate(0, -50%);
    }

    50% {
        transform: translate(-10px, -50%);
    }
}

@keyframes orbit-float-left {

    0%,
    100% {
        transform: translate(0, -50%);
    }

    50% {
        transform: translate(10px, -50%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flywheel-container {
        transform: scale(0.6);
    }

    .hero-visual {
        height: 280px;
        margin-top: 16px;
    }
}

/* ===================================
   Core Values Section
   =================================== */
.core-values {
    position: relative;
    padding: 20px 0 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Feature Card - Forge Glass */
/* Value Card - Forge Glass */
.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    height: 100%;
}

.value-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-ember);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(249, 115, 22, 0.15);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--accent-ember);
    margin-bottom: 8px;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.value-card:hover .value-icon {
    background: rgba(249, 115, 22, 0.15);
    border-color: var(--accent-ember);
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.25);
    transform: scale(1.05);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: block;
}

/* Removed Feature Card Link Wrapper as it's no longer used */

/* ===================================
   Page Sections
   =================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Content Card */
.content-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.content-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-ember);
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(249, 115, 22, 0.1);
}

.content-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-amber);
}

.content-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Waitlist Section
   =================================== */
.waitlist-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
}

.waitlist-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.waitlist-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-ember);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.waitlist-btn {
    width: 100%;
    margin-top: 10px;
}

.privacy-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    width: 200px;
    transition: all var(--transition-fast);
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-ember);
    transform: translateY(-4px);
}

.team-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Contact Content */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--accent-amber);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 30px 0;
    border-top: 1px solid var(--border-glass);
    background: var(--bg-secondary);
}

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

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-image img {
        max-width: 450px;
    }

    .features-grid {
        gap: 16px;
    }

    .feature-card {
        padding: 16px 20px;
    }

    .feature-title {
        font-size: 0.875rem;
    }

    .content-grid {
        gap: 20px;
    }

    .content-card {
        padding: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --section-padding: 48px;
        --survey-height: 32px;
    }

    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: calc(var(--header-height) + var(--survey-height));
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        font-size: 1.25rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-glass);
    }

    .hamburger {
        display: flex;
        width: 44px;
        height: 44px;
    }

    .survey-bar {
        font-size: 0.75rem;
        height: 32px;
        gap: 4px;
    }

    /* Mobile Hero */
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 60px) 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    /* Stack grids on mobile */
    .features-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card,
    .content-card {
        padding: 24px;
    }

    .contact-info {
        padding: 20px;
    }

    .logo-img {
        height: 40px;
    }
}


/* ===================================
   How it Works Section
   =================================== */
.how-it-works {
    padding: 80px 0;
    overflow-x: hidden;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
    margin-top: 60px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    z-index: 2;
    background: transparent;
    padding: 0 10px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-ember);
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    border-color: var(--accent-ember);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--accent-amber);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border-glass), var(--accent-ember), var(--border-glass));
    margin-top: 32px;
    opacity: 0.3;
}

/* Mobile Responsive Steps */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding-left: 16px;
    }

    .step-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        width: 100%;
        gap: 16px;
    }

    .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .step-connector {
        display: none;
    }

    /* Vertical line for mobile */
    .steps-container::before {
        content: '';
        position: absolute;
        left: 40px;
        /* Center of icon (16px pad + 24px center) */
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border-glass);
        z-index: 0;
    }
}

/* ===================================
   Social / Community Section
   =================================== */
.social-section {
    position: relative;
    padding-bottom: 120px;
}

.beta-cta-container {
    max-width: 800px;
    margin: 0 auto 80px;
}

.beta-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(13, 13, 13, 0.8));
    border: 1px solid var(--accent-ember);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.15);
}

.beta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-ember), transparent);
}

.beta-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    font-weight: 700;
}

.beta-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 600;
}

/* Testimonials */
.testimonials-container {
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 32px;
    position: relative;
    /* Glass Shard Effect */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-ember);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    /* Corner accent */
    background: linear-gradient(135deg, transparent 50%, rgba(249, 115, 22, 0.2) 50%);
}

.quote {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    font-size: 0.9rem;
    color: var(--accent-ember);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Partners Marquee */
.partners-container {
    overflow: hidden;
    position: relative;
}

.partners-container::before,
.partners-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.partners-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-primary), transparent);
}

.partners-marquee {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    padding: 20px 0;
    width: max-content;
    /* Ensure it flows */
}

/* Duplicate logic usually requires JS or duplicate HTML for infinite scroll. 
   For CSS only, we need enough elements to fill screen + animation reset.
   For this task, a simple flow is fine, or we assume multiple items. */

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--steel-dark);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-normal);
}

.partner-logo:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

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

    /* Assumes duplicate content for seamless, but basic scroll ok for now */
}

/* Mobile */
@media (max-width: 768px) {
    .beta-card {
        padding: 30px 20px;
    }

    .beta-card h3 {
        font-size: 1.5rem;
    }

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

/* ===================================
   Comparison Section (Enhanced)
   =================================== */
.comparison-section {
    padding: 100px 0;
    position: relative;
}

.comparison-table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
    transition: background-color var(--transition-fast);
}

.comparison-table th {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.comparison-table td {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* Highlight Column (DataForge) */
.highlight-col {
    background: rgba(249, 115, 22, 0.1);
    /* Stronger highlight base */
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    position: relative;
    border: 1px solid var(--accent-ember);
    /* Add border to header */
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 -4px 20px rgba(249, 115, 22, 0.2);
    /* Top glow */
}

/* Column Cells Highlighting */
.comparison-table td.positive {
    background: rgba(249, 115, 22, 0.08);
    /* Consistent tint */
    border-left: 1px solid rgba(249, 115, 22, 0.3);
    border-right: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table tr:last-child td.positive {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-bottom: 1px solid var(--accent-ember);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
    /* Bottom glow */
}

/* Row Hover Effect */
.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:hover td.positive {
    background: rgba(249, 115, 22, 0.15);
    /* Brighter on hover */
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Icons Animation */
.status-icon {
    margin-right: 8px;
    font-size: 1.2rem;
    display: inline-block;
}

/* Pop-in animation for icons */
.comparison-table tbody tr:hover .status-icon {
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.negative {
    color: #ef4444;
    /* Red for X */
}

.positive {
    color: #22c55e;
    /* Green for Check */
}

/* Glowing Text */
.glowing-text {
    color: var(--accent-ember);
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-table-container {
        padding: 16px;
        overflow-x: auto;
        border-radius: var(--radius-md);
    }

    .comparison-table {
        width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .comparison-table th {
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }

    .status-icon {
        font-size: 1rem;
        margin-right: 4px;
    }
}

/* ===================================
   Display Font for Headings
   =================================== */
.hero-title,
.section-title,
.feature-title,
.step-content h3,
.content-card h3,
.team-name,
.about-content h3,
.beta-card h3,
.subsection-title,
.glowing-text {
    font-family: var(--font-display);
}

/* ===================================
   Grain Texture Overlay
   =================================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===================================
   Hero Gradient Orbs
   =================================== */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
    top: 5%;
    right: -10%;
    animation: orb-drift-1 18s ease-in-out infinite;
}

.hero-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08), transparent 70%);
    bottom: 5%;
    left: -5%;
    animation: orb-drift-2 22s ease-in-out infinite;
}

@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, 20px); }
    66% { transform: translate(20px, -15px); }
}

@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(25px, -20px); }
    66% { transform: translate(-15px, 25px); }
}

/* ===================================
   Hero Particle Canvas
   =================================== */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ===================================
   Scroll Indicator
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    z-index: 2;
    text-decoration: none;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(168, 162, 158, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 12px;
    background: var(--accent-ember);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scroll-dot-move 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

@keyframes scroll-dot-move {
    0% { top: -12px; opacity: 0; }
    20% { opacity: 1; }
    100% { top: 48px; opacity: 0; }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
}

/* ===================================
   Team Avatar
   =================================== */
.team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-ember), var(--accent-amber));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    margin: 0 auto 12px;
    letter-spacing: 0.02em;
}

.team-card:hover .team-avatar {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

/* ===================================
   Header Scroll State
   =================================== */
.header {
    transition: box-shadow 0.3s ease;
}

.survey-bar {
    transition: height 0.3s ease, opacity 0.3s ease, padding 0.2s ease;
    overflow: hidden;
}

.header-scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.header-scrolled .survey-bar {
    height: 0;
    opacity: 0;
    padding: 0;
}

/* ===================================
   Footer Enhanced
   =================================== */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-ember);
    letter-spacing: -0.02em;
}

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

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent-ember);
}

.footer-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

@media (max-width: 768px) {
    .footer-nav {
        gap: 20px;
    }
}