/* Inter Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* SF Pro Font Faces */
@font-face {
    font-family: 'SF Pro Display';
    src: url('../font/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../font/SF-Pro-Display-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../font/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../font/SF-Pro-Display-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../font/SF-Pro-Display-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 7vw, 84px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: clamp(16px, 1.5vw, 20px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    font-size: clamp(18px, 1.5vw, 20px);
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Beta Button Styles */
.btn-beta {
    background: #fff;
    color: #000;
    border: none;
    padding: clamp(10px, 0.9vw, 12px) clamp(24px, 2vw, 28px);
    border-radius: 24px;
    font-size: clamp(13px, 1.05vw, 14px);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.btn-beta:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-beta.large {
    margin-top: 24px;
    padding: clamp(14px, 1.2vw, 16px) clamp(32px, 2.8vw, 38px);
    font-size: clamp(14px, 1.1vw, 15px);
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    letter-spacing: -0.01em;
    height: 52px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: clamp(500px, 52vw, 650px);
    margin-top: -280px;
    margin-left: -160px;
}

.hero-title {
    font-size: clamp(40px, 6.5vw, 86px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: clamp(20px, 2vw, 28px);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: clamp(32px, 3.5vw, 44px);
    max-width: clamp(400px, 42vw, 540px);
    font-weight: 400;
}

.hero-light {
    position: absolute;
    right: -35%;
    top: 67%;
    transform: translateY(-50%);
    width: clamp(1600px, 150vw, 2200px);
    height: auto;
    z-index: 1;
    pointer-events: none;
}

/* Prompts Section */
.prompts {
    padding: clamp(5px, 1vw, 10px) 0;
    text-align: center;
    position: relative;
    z-index: 3;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 200;
    margin-bottom: clamp(14px, 1.4vw, 18px);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: clamp(28px, 3vw, 36px);
    max-width: clamp(500px, 54vw, 700px);
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Prompt Grid */
.prompt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 40px;
    max-width: 1000px;
    margin-inline: auto;
}

.prompt-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 16px;
    font-size: clamp(13px, 1.05vw, 14px);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.prompt-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Vimeo Placeholder */
.vimeo-placeholder {
    margin-top: 40px;
    max-width: 800px;
    margin-inline: auto;
}

.vimeo-container {
    position: relative;
    width: 100%;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
}

.vimeo-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.vimeo-overlay {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.play-button {
    font-size: 48px;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.vimeo-overlay p {
    font-size: 16px;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: clamp(60px, 7vw, 100px) 0 clamp(100px, 12vw, 160px);
    position: relative;
    z-index: 3;
}

.features-title {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 300;
    text-align: left;
    margin-bottom: clamp(60px, 7vw, 90px);
    letter-spacing: -0.02em;
    line-height: 1.15;
    padding-bottom: clamp(24px, 2.6vw, 34px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.text-gray {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.brand-text {
    color: #fff;
    font-weight: 400;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 4.5vw, 60px) clamp(48px, 5.5vw, 72px);
}

.feature-card {
    padding: clamp(32px, 3.5vw, 48px) clamp(24px, 2.5vw, 32px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}


.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: clamp(20px, 2vw, 28px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-card h3 {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 600;
    margin-bottom: clamp(12px, 1.2vw, 16px);
    letter-spacing: -0.01em;
    color: #fff;
}

.feature-card p {
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

/* Footer */
.footer {
    position: relative;
    padding: 94px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: url('../images/Footer.png') center/cover no-repeat;
    min-height: 280px;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-light {
    display: none;
}

/* Advanced Electric Border Button */
.svg-container {
    position: absolute;
    width: 0;
    height: 0;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.electric-button-container {
    padding: 2px;
    border-radius: 999px;
    position: relative;
    background: linear-gradient(
            -30deg,
            var(--gradient-color),
            transparent,
            var(--gradient-color)
        ),
        linear-gradient(
            to bottom,
            var(--color-neutral-900),
            var(--color-neutral-900)
        );
    cursor: pointer;
    transition: transform 0.2s ease;
    margin: 20px auto 0;
}

.electric-button-container:hover {
    transform: scale(1.02);
}

.electric-button-container:active {
    transform: scale(0.98);
}

.electric-inner-container {
    position: relative;
}

.electric-border-outer {
    border: 2px solid rgba(255, 34, 0, 0.5);
    border-radius: 999px;
}

.electric-main-button {
    width: 250px;
    height: 70px;
    border-radius: 999px;
    border: 2px solid var(--electric-border-color);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Electric distortion on border only */
.electric-border-distort {
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border: 2px solid var(--electric-border-color);
    filter: url(#turbulent-displace);  /* SVG distortion */
    pointer-events: none;
}

/* Rotating dot pattern */
.electric-main-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 2px 2px,
        rgba(255, 255, 255, 0.3) 0.5px,
        transparent 0.5px
    );
    background-size: 4px 4px;
    background-repeat: space;
    border-radius: 999px;
    opacity: 0.3;
    pointer-events: none;
    mask-image: conic-gradient(
        from var(--gradient-angle),
        black,
        transparent 10% 90%,
        black
    );
    animation: rotate-gradient 4s linear infinite;
    transition: opacity 0.3s ease;
}

/* White-to-red shimmer */
.electric-main-button::after {
    content: '';
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(
        -50deg,
        transparent,
        #ffffff 20%,           /* White hotspot */
        #ffaa66 40%,           /* Orange */
        #ff2200 60%,           /* Red */
        transparent
    );
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6;
    pointer-events: none;
    animation: shimmer 6s linear infinite;
    transition: opacity 0.3s ease;
}

@keyframes shimmer {
    to {
        rotate: 360deg;
    }
}

@keyframes rotate-gradient {
    to {
        --gradient-angle: 360deg;
    }
}

.electric-glow-layer-1 {
    border: 1px solid var(--electric-outer-glow);
    border-radius: 999px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(0.5px);
    pointer-events: none;
    opacity: 0.4;
}

.electric-glow-layer-2 {
    border: 2px solid #ffffff;
    border-radius: 999px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(4px);
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.electric-overlay-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 999px;
    opacity: 0.6;
    mix-blend-mode: overlay;
    transform: scale(1.05);
    filter: blur(4px);
    background: linear-gradient(
        -30deg,
        white,
        transparent 30%,
        transparent 70%,
        white
    );
    pointer-events: none;
}

.electric-overlay-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 999px;
    opacity: 0.3;
    mix-blend-mode: overlay;
    transform: scale(1.05);
    filter: blur(4px);
    background: linear-gradient(
        -30deg,
        white,
        transparent 30%,
        transparent 70%,
        white
    );
    pointer-events: none;
}

.electric-background-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 999px;
    filter: blur(24px);
    transform: scale(1.1);
    opacity: 0.4;
    z-index: -1;
    background: radial-gradient(
        ellipse at center,
        #ffffff,              /* White center */
        #ffaa66 30%,          /* Orange mid */
        #ff2200 60%,          /* Red outer */
        transparent
    );
    pointer-events: none;
    transition: all 0.3s ease;
}

.electric-button-text {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 1;
    position: relative;
}

/* Color Variables */
:root {
  --electric-border-color: #ff2200;  /* Deep red */
  --electric-bright-core: #ffffff;   /* Bright white core */
  --electric-inner-glow: #ffaa66;    /* Orange glow */
  --electric-outer-glow: #ff5533;    /* Red-orange outer */
  --gradient-color: rgba(255, 34, 0, 0.4);
  --color-neutral-900: #180300;
}

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

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

.modal-content {
    position: relative;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 24px 24px 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 0 48px 48px;
}

.modal-header-content {
    text-align: center;
    margin-bottom: 40px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #9CA3AF;
    margin: 0;
    font-weight: 400;
}

.tally-embed {
    border: none;
    background: rgba(30, 30, 30, 0.8);
    min-height: 400px;
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Tally embed dark mode improvements */
.tally-embed iframe {
    background: rgba(30, 30, 30, 0.8) !important;
    color-scheme: dark !important;
    border-radius: 12px;
}

/* Ensure proper spacing and contrast for Tally form */
.modal-content {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
}

.modal-header {
  
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Beta Form Styles */
.beta-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
}

.form-group input {
    background: #2A2A2A;
    border: 1px solid #404040;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 16px;
    color: #fff;
    transition: all 0.2s ease;
    font-family: inherit;
    height: 52px;
}

.form-group input::placeholder {
    color: #9CA3AF;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: #2A2A2A;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-group input:invalid {
    border-color: rgba(239, 68, 68, 0.4);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #4F46E5;
    background: #2A2A2A;
    border: 1px solid #404040;
    border-radius: 4px;
}

.checkbox-group label {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.terms-link {
    color: #4F46E5;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    letter-spacing: -0.01em;
    height: 52px;
    width: 100%;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.submit-btn:disabled {
    background: #6B7280;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Modal Footer */
.modal-footer {
    margin-top: 32px;
    text-align: center;
}

.modal-footer p {
    font-size: 14px;
    color: #9CA3AF;
    margin: 0;
    line-height: 1.4;
}

.footer-link {
    color: #4F46E5;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Form message styles */
.form-message {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-message.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal {
        padding: 16px;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .launchlist-form {
        gap: 20px;
    }
    
    .form-group input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 12px;
    }
    
    .modal-header {
        padding: 16px;
    }
    
    .modal-title {
        font-size: 16px;
    }
}

.copyright {
    margin-top: 40px;
    font-size: clamp(12px, 1.05vw, 14px);
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    /* Navigation fixes */
    .nav-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .logo {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .navbar .btn-beta {
        display: none; /* Hide button in header on mobile */
    }
    
    .hero-content .btn-beta {
        display: block; /* Show button in hero section on mobile */
    }
    
    /* Hero section fixes */
    .hero {
        min-height: auto;
        padding: 200px 0 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-light {
        right: -60%;
        top: 88%;
        width: 150vw;
        opacity: 1;
    }
    
    /* Section title fixes */
    .section-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 3.5vw;
        margin-bottom: 32px;
        padding: 0 16px;
    }
    
    /* Feature cards fixes */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    
    .feature-card {
        padding: 32px 24px;
        text-align: center;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Prompts section fixes */
    .prompts {
        padding: 0px 0;
    }
    
    .vimeo-container {
        margin: 0 16px;
    }
    
    /* Features section fixes */
    .features {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 28px;
        margin-bottom: 40px;
        text-align: center;
        padding: 0 16px;
    }
    
    /* Footer fixes */
    .footer {
        padding: 80px 0 30px;
        min-height: 200px;
    }
    
    .electric-button-container {
        margin: 20px auto;
    }
    
    .electric-main-button {
        width: 200px;
        height: 60px;
    }
    
    .electric-button-text {
        font-size: 16px;
    }
    
    /* Modal fixes */
    .modal-body {
        padding: 0 24px 32px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .form-group input {
        height: 48px;
        font-size: 14px;
    }
    
    .submit-btn {
        height: 48px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-title {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .hero-light {
        right: -90%;
        width: 240vw;
        opacity: 1;
    }
    
    .footer {
        padding: 60px 0 24px;
        min-height: 160px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-title {
        font-size: 22px;
    }
    
    .hero-light {
        display: none;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}

/* Extra large screens */
@media (min-width: 1920px) {
    .hero-light {
        right: -20%;
        top: 66%;
        width: clamp(1400px, 110vw, 2000px);
    }
}

@media (min-width: 2560px) {
    .hero-light {
        right: -15%;
        top: 65%;
        width: clamp(1600px, 100vw, 2400px);
    }
}
