/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6EAC3D;  /* Hawaiian green from logo */
    --primary-hover: #5DA133;   /* Darker Hawaiian green */
    --accent-color: #F7AD5E;    /* Warm sand/sunset orange from logo */
    --palm-brown: #A06749;      /* Palm tree trunk brown from logo */
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --success-color: #6EAC3D;
    --max-width: 1200px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --gradient-tropical: linear-gradient(135deg, #6EAC3D 0%, #5DA133 50%, #F7AD5E 100%);
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(110, 172, 61, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(247, 173, 94, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(160, 103, 73, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    /* backdrop-filter: blur(10px); removed to prevent rendering issues */
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    margin-top: -5px;
}

.nav-logo-with-text {
    height: 35px;
    width: auto;
}

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

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

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

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

/* Hawaiian wave pattern */
.hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 200px;
    background: 
        radial-gradient(ellipse 600px 200px at 20% 100%, rgba(110, 172, 61, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse 600px 200px at 60% 100%, rgba(247, 173, 94, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse 600px 200px at 90% 100%, rgba(110, 172, 61, 0.06) 0%, transparent 40%);
    animation: waves 20s ease-in-out infinite;
}

@keyframes waves {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(-5px); }
    75% { transform: translateX(-10px) translateY(-8px); }
}

/* Floating Hawaiian elements */
.hero::after {
    content: '🌺';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 40px;
    opacity: 0.1;
    animation: float-flower 15s ease-in-out infinite;
}

@keyframes float-flower {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Additional tropical decorations */
.hero .container::before {
    content: '🌊';
    position: absolute;
    left: 5%;
    bottom: 10%;
    font-size: 30px;
    opacity: 0.08;
    animation: wave-motion 12s ease-in-out infinite;
}

.hero .container::after {
    content: '🌞';
    position: absolute;
    right: 3%;
    top: 15%;
    font-size: 35px;
    opacity: 0.1;
    animation: sun-glow 8s ease-in-out infinite;
}

@keyframes wave-motion {
    0%, 100% { transform: translateX(0) rotate(-10deg); }
    50% { transform: translateX(20px) rotate(10deg); }
}

@keyframes sun-glow {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.15; }
}

.hero-content {
    max-width: 600px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Tropical glow effect */
/* Removed glow effect to prevent rendering issues
.hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 173, 94, 0.08) 0%, transparent 70%);
    animation: glow-pulse 10s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
} */

/* @keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
} */

/* Aloha greeting styling */
.aloha-text {
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 0 10px rgba(247, 173, 94, 0.3);
    margin-right: 4px;
}

/* Button with Hawaiian icon */
.btn-primary .btn-icon {
    margin-left: 8px;
    display: inline-block;
    animation: flower-rotate 10s linear infinite;
}

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

.btn-text {
    display: inline-block;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

/* Subtle palm frond decoration */
.hero-title::before {
    content: '🌴';
    position: absolute;
    left: -60px;
    top: 0;
    font-size: 48px;
    opacity: 0.15;
    transform: rotate(-20deg);
    animation: sway 8s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-20deg) translateX(0); }
    50% { transform: rotate(-25deg) translateX(-5px); }
}

.hero-subtitle {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

/* Hibiscus flower accent */
.hero-subtitle::after {
    content: '🌺';
    position: absolute;
    right: -35px;
    top: -5px;
    font-size: 24px;
    opacity: 0.3;
    animation: float-hibiscus 10s ease-in-out infinite;
}

@keyframes float-hibiscus {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-10deg); }
    75% { transform: translateY(5px) rotate(10deg); }
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Add tropical emphasis to key words */
.hero-description::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-tropical);
    border-radius: 2px;
    opacity: 0.5;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-tropical);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(110, 172, 61, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 172, 61, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background: var(--dark-surface);
    border-color: var(--text-secondary);
}

.hero-platforms {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* Add tropical leaf decoration */
.hero-platforms::before {
    content: '🌿';
    position: absolute;
    right: -40px;
    top: -5px;
    font-size: 24px;
    opacity: 0.2;
    transform: rotate(45deg);
}

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

.platforms {
    display: flex;
    gap: 12px;
}

.platform {
    padding: 4px 12px;
    background: var(--dark-surface);
    border: 1px solid rgba(110, 172, 61, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.platform:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Workflow Visual */
.hero-visual {
    margin-top: 80px;
}

.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(110, 172, 61, 0.03) 0%, rgba(247, 173, 94, 0.03) 100%);
    border-radius: 20px;
    margin: 0 -20px;
    position: relative;
    overflow: hidden;
}

.workflow-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(247, 173, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(110, 172, 61, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-icon {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark-surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.workflow-step:hover .step-icon {
    border-color: rgba(110, 172, 61, 0.4);
    background: linear-gradient(135deg, rgba(110, 172, 61, 0.05) 0%, rgba(247, 173, 94, 0.05) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.step-text {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Terminal Prompt */
.terminal-prompt {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 12px;
    color: var(--primary-color);
    margin-right: 4px;
}

.prompt {
    font-weight: bold;
}

.cursor {
    width: 24px;
    height: 4px;
    background: var(--primary-color);
    animation: blink 1s infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Tunnel Visual */
.tunnel-visual {
    position: relative;
    width: 80px;
    height: 80px;
}

.tunnel-ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.tunnel-ring:nth-child(1) {
    width: 30px;
    height: 30px;
    top: 25px;
    left: 25px;
    animation-delay: 0s;
}

.tunnel-ring:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
    animation-delay: 0.3s;
}

.tunnel-ring:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 5px;
    left: 5px;
    animation-delay: 0.6s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* App Visual */
.app-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.app-dot {
    width: 24px;
    height: 24px;
    background: var(--gradient-tropical);
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(110, 172, 61, 0.5);
}

.app-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* Web Terminal */
.web-terminal {
    width: 95%;
    height: 95%;
    display: flex;
    flex-direction: column;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-bar {
    background: #1a1a1a;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.browser-dots span:first-child {
    background: #ff5f56;
}

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

.browser-dots span:nth-child(3) {
    background: #27c93f;
}

.terminal-content {
    padding: 12px;
    font-family: monospace;
    font-size: 12px;
    color: var(--primary-color);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.terminal-line {
    opacity: 0.3;
}

.terminal-line.active {
    opacity: 1;
    position: relative;
}

.terminal-line.active::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 2px;
    background: var(--primary-color);
    margin-left: 2px;
    animation: blink 1s infinite;
}

.step-subtext {
    font-size: 13px;
    color: var(--primary-color);
    margin-top: -8px;
}

/* Add tropical pattern to workflow steps */
.workflow-step {
    position: relative;
}

.workflow-step:nth-child(odd)::before {
    content: '🍀';
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 20px;
    opacity: 0.15;
    transform: rotate(45deg);
}

.workflow-step:nth-child(even)::before {
    content: '🍃';
    position: absolute;
    bottom: -15px;
    left: -10px;
    font-size: 18px;
    opacity: 0.12;
    transform: rotate(-30deg);
}

/* Workflow Arrows */
.workflow-arrow {
    opacity: 0.5;
}

.arrow-svg {
    width: 60px;
    height: 20px;
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--dark-surface);
    position: relative;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-tropical);
    opacity: 0.3;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '🌴';
    position: absolute;
    font-size: 24px;
    opacity: 0.2;
    top: -20px;
    right: calc(50% - 300px);
    transform: rotate(-15deg);
}

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

.feature {
    text-align: center;
    position: relative;
    z-index: 2;
    isolation: isolate;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

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

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-tropical);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(110, 172, 61, 0.3);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

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

/* AI Development Section */
.ai-development {
    padding: 80px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.ai-development::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 173, 94, 0.05) 0%, transparent 70%);
    animation: pulse-slow 10s ease-in-out infinite;
}

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

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

.ai-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.ai-text {
    max-width: 500px;
}

.ai-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.ai-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ai-benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.ai-benefit h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

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

/* Device Mockup */
.device-mockup {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* iPad-like bezel */
.device-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    width: 3px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transform: translateY(-50%);
}

.device-mockup::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    transform: translateX(-50%);
}

.device-screen {
    background: #0a0a0a;
    border-radius: 8px;
    padding: 16px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.ai-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.ai-message {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    max-width: 85%;
    line-height: 1.4;
}

.ai-message.user {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    align-self: flex-end;
    box-shadow: 0 4px 15px rgba(110, 172, 61, 0.3);
}

.ai-message.assistant {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    align-self: flex-start;
}

.terminal-embed {
    background: #000;
    border: 1px solid rgba(110, 172, 61, 0.3);
    padding: 10px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 12px;
    margin-top: 8px;
    color: var(--primary-color);
}

/* Security Section */
.security {
    padding: 80px 0;
    background: var(--dark-bg);
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.security-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
}

.security-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 4px rgba(110, 172, 61, 0.5));
}

/* Download Section */
.download {
    padding: 80px 0;
}

.download-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.download-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
}

.download-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(110, 172, 61, 0.05) 0%, rgba(247, 173, 94, 0.02) 100%);
    box-shadow: 0 8px 30px rgba(110, 172, 61, 0.15);
}

.download-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.download-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.download-info {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.download-button {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-tropical);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-card:hover .download-button {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(110, 172, 61, 0.4);
}

.download-alternative {
    text-align: center;
}

.install-command {
    display: block;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    padding: 16px 24px;
    border-radius: 8px;
    font-family: monospace;
    margin-top: 16px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--dark-border);
    text-align: center;
}

.footer-copyright,
.footer-attribution {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-text {
        text-align: center;
    }
    
    .device-mockup {
        max-width: 100%;
    }
    
    .workflow-visual {
        flex-direction: column;
        gap: 32px;
        padding: 40px 0;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .arrow-svg {
        width: 40px;
        height: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature,
.step,
.download-card {
    animation: fade-in 0.6s ease-out;
}
/* Version Badge */
.version-badge {
    display: inline-block;
    margin-left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-tropical);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.version-text {
    font-weight: 600;
}
