/* Plug That In Website - Main Styles (Dark Theme) */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #707070;

    /* Accent Colors - Gold/Black Theme */
    --accent-gold: #d7bd89;
    --accent-gold-light: #e5d4a8;
    --accent-gold-dark: #c9ab70;
    --accent-gold-deep: #b89a5f;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #e5d4a8 0%, #d7bd89 50%, #c9ab70 100%);
    --gradient-secondary: linear-gradient(135deg, #d7bd89 0%, #b89a5f 100%);
    --gradient-subtle: linear-gradient(135deg, #e5d4a8 0%, #d7bd89 100%);

    /* Spacing */
    --section-padding: 120px;
    --container-max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.dark-theme {
    background: var(--bg-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

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

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-icon-small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.app-icon-small img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    object-fit: contain !important;
    display: block !important;
}

.icon-placeholder {
    font-size: 20px;
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-download {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(215, 189, 137, 0.3);
}

/* Section Styling */
section {
    padding: var(--section-padding) 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 3rem;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(215, 189, 137, 0.3);
    transform: translateY(-2px);
}

.badge-new {
    background: var(--gradient-primary);
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.app-icon-large {
    margin-bottom: 2rem;
}

.app-icon-medium {
    margin: 0 auto 2rem;
    width: fit-content;
}

.icon-gradient {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(215, 189, 137, 0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.icon-gradient img,
.icon-image {
    width: 120px !important;
    height: 120px !important;
    max-width: 120px !important;
    max-height: 120px !important;
    object-fit: contain !important;
    display: block !important;
}

.icon-symbol {
    font-size: 64px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    max-width: 1100px;
    line-height: 1.1;
}

.hero-title-line1 {
    white-space: nowrap;
}

.typewriter-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    min-width: 250px;
}

.typewriter-cursor {
    color: var(--accent-gold);
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

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

.hero-description {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--accent-gold);
    opacity: 0.7;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-download-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--gradient-primary);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(215, 189, 137, 0.3);
}

.btn-download-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(215, 189, 137, 0.4);
}

.hero-divider {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    font-weight: 600;
}

.brew-install {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.brew-install:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.brew-install code {
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.copy-btn:hover {
    color: var(--text-primary);
}

/* Features Carousel Section */
.features-carousel-section {
    padding: 100px 2rem;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: white;
}

.carousel-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.carousel-caption p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator.active {
    background: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Video Demo Section */
.video-demo-section {
    padding: 100px 2rem;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(215, 189, 137, 0.9);
    border: none;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    transform: scale(1.1);
    background: rgba(229, 212, 168, 1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.video-play-button svg {
    margin-left: 4px;
}

/* Demo Section - Interactive Playground */
.demo-section {
    padding: 100px 2rem;
}

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

.playground-desktop {
    position: relative;
    width: 100%;
    height: 500px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.playground-menubar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    padding: 0 12px;
    z-index: 100;
}

.menubar-left {
    display: flex;
    align-items: center;
}

.apple-logo {
    color: rgba(255, 255, 255, 0.9);
}

.playground-wallpaper {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.9;
}

.floating-notification {
    position: absolute;
    top: 50px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1000;
    min-width: 280px;
}

.notif-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(80, 80, 80, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon-circle svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
}

.notif-content {
    flex: 1;
}

.notif-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.notif-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.playground-hint {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.macos-mockup {
    margin: 4rem auto;
    max-width: 900px;
}

.mockup-window {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.titlebar-icons {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.mockup-content {
    padding: 4rem 2rem;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e5d4a8 0%, #d7bd89 50%, #c9ab70 100%);
    opacity: 0.8;
}

.notification-demo {
    position: relative;
    z-index: 2;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.25rem;
    border-radius: 12px;
    max-width: 350px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.notif-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notif-icon {
    font-size: 32px;
}

.notif-text strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.notif-text p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

.notif-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.notif-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.notif-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.notif-btn.primary {
    background: var(--gradient-primary);
}

.floating-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
}

.indicator-icon {
    font-size: 16px;
}

/* Features Quick */
.features-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
}

.feature-icon-small {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small svg {
    color: var(--accent-gold);
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Smart DND Section */
.smart-dnd-section {
    padding: 100px 2rem;
}

.settings-mockup {
    max-width: 900px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    min-height: 500px;
}

.settings-sidebar {
    width: 220px;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.sidebar-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.sidebar-item.highlight {
    background: rgba(215, 189, 137, 0.15);
    color: var(--accent-gold);
}

.settings-content {
    flex: 1;
    padding: 2.5rem;
}

.settings-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.settings-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.settings-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.setting-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.setting-icon {
    font-size: 24px;
}

.setting-info strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.setting-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.toggle {
    width: 48px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    position: relative;
    transition: background 0.3s;
}

.toggle.on {
    background: var(--gradient-primary);
}

.toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle.on::after {
    transform: translateX(20px);
}

.auto-pause-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.pause-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 189, 137, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Download Section Final */
.download-section-final {
    padding: 100px 2rem;
    text-align: center;
}

.btn-download-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gradient-primary);
    color: #000000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(215, 189, 137, 0.3);
    margin-top: 2rem;
}

.btn-download-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(215, 189, 137, 0.4);
}

.download-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.download-meta .separator {
    color: rgba(255, 255, 255, 0.2);
}

.download-links {
    margin-top: 2rem;
}

.download-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.download-links a:hover {
    color: var(--accent-gold-light);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

/* Privacy Policy Page */
.privacy-section {
    min-height: 100vh;
    padding: 120px 2rem 80px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.privacy-updated {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.privacy-content {
    line-height: 1.8;
}

.privacy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.privacy-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-content a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s;
}

.privacy-content a:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .settings-mockup {
        flex-direction: column;
    }

    .settings-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-download {
        font-size: 0.85rem;
        padding: 0.4rem 0.85rem;
    }

    .nav-download svg {
        width: 14px;
        height: 14px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-title-line1 {
        white-space: normal;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .btn-download-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .download-meta {
        font-size: 0.85rem;
        gap: 0.75rem;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

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

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

    .brew-install {
        flex-direction: column;
        text-align: center;
    }

    .mockup-content {
        padding: 2rem 1rem;
    }

    /* Carousel mobile adjustments */
    .carousel-container {
        gap: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-caption {
        padding: 1.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.25rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    /* Video section mobile adjustments */
    .video-container {
        max-width: 100%;
        border-radius: 16px;
    }

    .video-play-button {
        width: 64px;
        height: 64px;
    }

    .video-play-button svg {
        width: 48px;
        height: 48px;
    }

    /* Download section mobile */
    .btn-download-large {
        padding: 1.125rem 2.25rem;
        font-size: 1.125rem;
    }

    /* Playground mobile adjustments */
    .playground-desktop {
        height: 400px;
    }

    .playground-hint {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .nav-download {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
        gap: 0.375rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-title-line1 {
        white-space: normal;
        display: block;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-badge {
        padding: 0.375rem 1rem;
        gap: 0.5rem;
    }

    .badge-new {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .icon-gradient {
        width: 90px;
        height: 90px;
    }

    .icon-gradient img,
    .icon-image {
        width: 90px !important;
        height: 90px !important;
        max-width: 90px !important;
        max-height: 90px !important;
    }

    .icon-symbol {
        font-size: 48px;
    }

    .btn-download-primary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .btn-download-primary svg {
        width: 18px;
        height: 18px;
    }

    .download-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .download-meta .separator {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    h1 br, h2 br {
        display: none;
    }

    /* Carousel extra small mobile */
    .carousel-container {
        gap: 0.5rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

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

    .carousel-caption {
        padding: 1.25rem;
    }

    .carousel-caption h3 {
        font-size: 1.125rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }

    /* Video section extra small mobile */
    .video-container {
        border-radius: 12px;
    }

    .video-play-button {
        width: 56px;
        height: 56px;
    }

    .video-play-button svg {
        width: 40px;
        height: 40px;
    }

    /* Download section extra small mobile */
    .btn-download-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

    /* Playground mobile */
    .playground-desktop {
        height: 350px;
    }

    .floating-notification {
        min-width: 240px;
        padding: 12px 14px;
    }

    .notif-icon-circle {
        width: 36px;
        height: 36px;
    }

    .notif-title {
        font-size: 0.85rem;
    }

    .notif-subtitle {
        font-size: 0.75rem;
    }

    /* Privacy page mobile */
    .privacy-container h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}
