:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f15;
    --bg-card: rgba(20, 20, 30, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-gold: #FFD700;
    --accent-amber: #B8860B;
    --accent-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    --border-color: rgba(255, 215, 0, 0.15);
    --glow-gold: 0 0 25px rgba(255, 215, 0, 0.25);
    --glow-amber: 0 0 25px rgba(184, 134, 11, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Effects */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 20%, rgba(123, 47, 255, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

.floating-orbs {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.15);
    top: 10%;
    left: 10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(123, 47, 255, 0.15);
    top: 50%;
    right: 10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(0, 212, 255, 0.1);
    bottom: 10%;
    left: 40%;
    animation-delay: -14s;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    background: rgba(0, 212, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--accent-gold);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.navbar .logo-img {
    height: 140px;
    /* Much larger size only for navbar */
    width: auto;
    position: absolute;
    top: -45px;
    left: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer .logo-img {
    height: 45px;
    /* Slightly smaller for cleaner look */
    width: auto;
    position: static;
    display: block;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.logo span {
    /* Text styles remain, but margin needs adjustment based on context */
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar .logo span {
    margin-left: 150px;
    /* Push text in navbar */
}

.footer .logo span {
    margin-left: 0;
    /* No extra margin needed in footer */
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 260px 0 100px;
    /* Increased massively to ensure logo clears perfectly */
    position: relative;
    overflow: hidden;
    /* Prevent background spill */
}

/* Partners Strip */
.partners-strip {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(10px);
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-logo svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Terminal */
.hero-visual {
    position: relative;
}

.terminal-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--glow-amber), 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: floatTerminal 6s ease-in-out infinite;
}

@keyframes floatTerminal {

    0%,
    100% {
        transform: translateY(0);
    }

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

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) {
    background: #ff5f57;
}

.terminal-dots span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dots span:nth-child(3) {
    background: #28c840;
}

.terminal-header>span {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: auto;
}

.terminal-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 4px;
}

.prompt {
    color: var(--accent-gold);
    margin-right: 8px;
}

.terminal-line.out {
    color: var(--text-secondary);
    padding-left: 20px;
}

.terminal-line.success {
    color: #28c840;
}

.green {
    color: #28c840;
}

.cyan {
    color: var(--accent-gold);
}

.yellow {
    color: #ffbd2e;
}

.cursor {
    width: 8px;
    height: 16px;
    background: var(--accent-gold);
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(123, 47, 255, 0.15);
    border: 1px solid rgba(123, 47, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent-amber);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.feature-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 255, 0.1) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Technology */
.technology .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.tech-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.2;
}

.tech-content>p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 0;
    /* Align with indicators */
}

/* Specific override for the separate header */
.technology .section-header {
    margin-bottom: 20px;
    text-align: center;
}

.tech-indicators {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.indicator {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.indicator .name {
    font-weight: 600;
    color: var(--accent-gold);
}

.indicator .bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 12px 0;
    overflow: hidden;
}

.indicator .fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: width 1s ease;
}

.indicator .desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
}

.step:hover {
    border-color: var(--accent-amber);
}

.step-num {
    font-size: 48px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(123, 47, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-color: var(--accent-amber);
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    margin: 24px 0;
}

.pricing-card .price span {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Waitlist */
.waitlist {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    padding: 120px 0;
}

.waitlist h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.waitlist>.container>p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 24px;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: white;
    font-size: 16px;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.waitlist-stats {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: left;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-item {
    padding: 12px 0;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form textarea {
    resize: vertical;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-content p {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-secondary);
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 90%;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

/* Demo Video Simulation */
.demo-video {
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-amber), 0 25px 80px rgba(0, 0, 0, 0.8);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border-color);
}

.demo-dots {
    display: flex;
    gap: 8px;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dots span:nth-child(1) {
    background: #ff5f57;
}

.demo-dots span:nth-child(2) {
    background: #ffbd2e;
}

.demo-dots span:nth-child(3) {
    background: #28c840;
}

.demo-header>span {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: auto;
}

.demo-screen {
    display: flex;
    min-height: 400px;
}

.demo-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-right: 1px solid var(--border-color);
}

.demo-logo-img {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
}

.demo-nav-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.demo-nav-item.active {
    background: rgba(0, 212, 255, 0.2);
}

.demo-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-title {
    font-size: 18px;
    font-weight: 700;
}

.demo-balance {
    font-size: 14px;
    color: var(--text-secondary);
}

.demo-chart {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.chart-line {
    width: 100%;
    height: 80px;
}

.chart-label {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 14px;
    font-weight: 600;
}

.demo-trades {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-trade {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.demo-trade.new {
    border-color: var(--accent-gold);
    animation: newTrade 1.5s infinite;
}

@keyframes newTrade {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
}

.trade-pair {
    font-weight: 600;
}

.trade-side {
    font-size: 12px;
    padding: 4px 8px;
    background: rgba(40, 200, 64, 0.2);
    color: #28c840;
    border-radius: 4px;
}

.trade-pnl {
    font-weight: 600;
}

.trade-pnl.red {
    color: #ff5f57;
}

.trade-side.short {
    background: rgba(255, 95, 87, 0.2);
    color: #ff5f57;
}

.red {
    color: #ff5f57;
}

.demo-signals {
    display: flex;
    gap: 12px;
}

.signal {
    flex: 1;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

.signal-name {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.signal-val {
    font-weight: 600;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technology .container {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

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

    .waitlist-form {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Modern SVG Icon Styles */
.feature-icon,
.contact-item,
.demo-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.2));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 2;
}

.demo-nav-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}