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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Page Logo */
.page-logo {
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: all 0.3s ease;
    border-radius: 50%;
}


.page-logo:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

.logo-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.logo-image {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

/* Light mode logo adjustments */

body.light .logo-image {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-image: url('img/hero.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-image-container {
    display: none;
}

.hero-image {
    display: none;
}

.hero-mask {
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.3) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px 80px 20px;
    max-width: 1200px;
    width: 100%;
}

.hero-intro {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-button {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-button::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 ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:active {
    transform: translateY(-1px);
}

/* Section Styles */
section:not(.hero) {
    padding: 8rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

p.section-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #cccccc;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}

/* Manifesto Section */
.manifesto {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.manifesto-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.manifesto-text:first-child {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.manifesto-text:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #cccccc;
}

.manifesto .section-title {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Name Explanation Styles */
.name-explanation {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.esquisse-definition {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', Georgia, serif;
}

.esquisse-definition em {
    font-style: italic;
    color: #cccccc;
    font-size: 0.9em;
    font-weight: 400;
}

.esquisse-meaning {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #e0e0e0;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Technical Specifications Section */
.tech-specs {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    position: relative;
}

.tech-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0%, transparent 50%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
}

/* Camera Diagrams */
.camera-diagrams {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem auto 4rem auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.diagram-image {
    max-width: 115%;
    height: auto;
    border-radius: 8px;
    background: transparent;
}

.back-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diagram-caption {
    font-style: italic;
    font-size: 0.9rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* Price Section */
.price-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.price-header {
    text-align: center;
    margin-bottom: 3rem;
}

.price-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.price-content {
    max-width: 900px;
    margin: 0 auto;
}

.price-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.price-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.price-point:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.price-point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.price-point-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-point-text strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.price-point-text span {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
}

.price-note {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.price-note p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
    font-style: italic;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.spec-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.spec-category:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spec-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.spec-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 0.75rem;
    margin: 0 -0.75rem;
}

.spec-label {
    font-size: 0.95rem;
    color: #cccccc;
    font-weight: 400;
    min-width: 140px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.spec-value {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    text-align: right;
    flex: 1;
    line-height: 1.4;
}

.specs-note {
    text-align: center;
    font-style: italic;
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 3rem;
    line-height: 1.5;
}

/* Development Status Section */
.development-status {
    padding: 8rem 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    position: relative;
}

.development-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.status-message {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin: 4rem auto;
    max-width: 800px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.status-message h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.status-message p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.roadmap {
    margin: 6rem 0;
    position: relative;
    z-index: 2;
}

.roadmap-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.roadmap-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: #000000;
    transition: all 0.3s ease;
}

.roadmap-item.completed .marker-dot {
    background: #4ade80;
    border-color: #4ade80;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.roadmap-item.in-progress .marker-dot {
    background: #f59e0b;
    border-color: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

.roadmap-item.upcoming .marker-dot {
    background: #6b7280;
    border-color: #6b7280;
}

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

.roadmap-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.roadmap-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.roadmap-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.roadmap-item.completed .roadmap-status {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.roadmap-item.in-progress .roadmap-status {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.roadmap-item.upcoming .roadmap-status {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
}

.reassurance-message {
    margin-top: 6rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.reassurance-message h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.reassurance-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.reassurance-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.reassurance-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.reassurance-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.reassurance-item p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-item p {
    font-size: 1.1rem;
    color: #888888;
    line-height: 1.7;
}

/* Design Section */
.design-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

/* Mount Section */
.mount-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

/* Call to Action Sections */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.cta-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::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 ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Coming Soon Section */
.coming-soon {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.signup-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.signup-guarantee {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 600px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.signup-guarantee p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.signup-guarantee strong {
    color: #ffffff;
    font-weight: 600;
}

.signup-note {
    font-size: 0.95rem;
    color: #888888;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.signup-count {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Data Policy Text */
.data-policy-text {
    font-size: 0.7rem;
    color: #888888;
    text-align: center;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.data-policy-link {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
}

.data-policy-link:hover {
    color: #cccccc;
}

/* Success Message */
.signup-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.5s ease-out;
}

.success-content {
    max-width: 400px;
    margin: 0 auto;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out;
}

.signup-success h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-success p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.hidden {
    display: none !important;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.coming-soon-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #888888;
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
    display: block;
}

.email-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #111111;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: #666666;
    background-color: #1a1a1a;
}

.email-input::placeholder {
    color: #666666;
}

.notify-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.notify-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #222222;
    background-color: #000000;
}

.footer p {
    color: #666666;
    font-size: 0.9rem;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a:hover {
    color: #cccccc;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-icon {
    font-size: 1.2rem;
    color: #cccccc;
    transition: all 0.3s ease;
    width: 1.2rem;
    text-align: center;
}

.social-link:hover .social-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.social-username {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

.social-link:hover .social-username {
    color: #ffffff;
}

/* Platform-specific hover effects */
.social-link.instagram:hover {
    background-color: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.4);
}

.social-link.twitter:hover {
    background-color: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.4);
}

.social-link.snapchat:hover {
    background-color: rgba(255, 252, 0, 0.2);
    border-color: rgba(255, 252, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-logo {
        top: 24px;
    }
    
    .logo-image {
        height: 48px;
    }
    
    .social-links {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .social-icon {
        font-size: 1rem;
        width: 1rem;
    }
    
    .social-username {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
        line-height: 1.2;
    }
    
    .hero {
        height: 750px;
        background-attachment: scroll;
        background-position: 0 5vh;
    }
    
    .hero-content {
        padding: 0 15px 40px 15px;
    }
    
    .manifesto {
        padding: 4rem 0;
    }
    
    .manifesto-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .tech-specs {
        padding: 4rem 0;
    }
    
    .camera-diagrams {
        gap: 1.5rem;
        margin: 2rem auto 3rem auto;
        max-width: 100%;
    }
    
    .diagram-caption {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .price-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .price-header {
        margin-bottom: 2rem;
    }
    
    .price-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .price-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .price-point {
        padding: 1.2rem;
    }
    
    .price-point-text strong {
        font-size: 1rem;
    }
    
    .price-point-text span {
        font-size: 0.9rem;
    }
    
    .price-note {
        padding: 1.5rem;
    }
    
    .price-note p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .spec-category {
        padding: 1.5rem;
    }
    
    .development-status {
        padding: 4rem 0;
    }
    
    .status-message {
        padding: 2rem;
        margin: 2rem auto;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-item {
        padding-left: 60px;
    }
    
    .roadmap-marker {
        width: 40px;
        height: 40px;
    }
    
    .roadmap-content {
        padding: 1.5rem;
    }
    
    .reassurance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .coming-soon {
        padding: 4rem 0;
    }
    
    .signup-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .benefit-item {
        padding: 2rem 1.5rem;
    }
    
    .signup-guarantee {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .email-signup {
        flex-direction: column;
        align-items: stretch;
    }
    
    .signup-success {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .success-icon {
        font-size: 2rem;
    }
    
    .signup-success h3 {
        font-size: 1.3rem;
    }
    
    .signup-success p {
        font-size: 0.9rem;
    }
    
    .email-input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .page-logo {
        top: 18px;
    }
    
    .logo-image {
        height: 36px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 700px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .design-section,
    .mount-section {
        padding: 4rem 0;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .spec-label {
        min-width: auto;
        margin-right: 0;
        font-weight: 500;
    }
    
    .spec-value {
        text-align: left;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.roadmap-item {
    transform: translateX(-30px);
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fade-in.roadmap-item {
    transform: translateX(0) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333333;
    padding: 1rem;
    z-index: 1000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.cookie-banner-text a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
}

.cookie-banner-text a:hover {
    color: #f0f0f0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.form-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-accept {
    background-color: #ffffff;
    color: #000000;
}

.cookie-accept:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.cookie-reject {
    background-color: transparent;
    color: #cccccc;
    border: 1px solid #555555;
}

.cookie-reject:hover {
    background-color: #333333;
    border-color: #777777;
    color: #ffffff;
}

.cookie-settings {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #777777;
}

.cookie-settings:hover {
    background-color: #333333;
    border-color: #999999;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
    opacity: 1;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333333;
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: #ffffff;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-intro {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: #444444;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cookie-category-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.cookie-category-description {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333333;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #4ade80;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #666666;
    cursor: not-allowed;
}

.cookie-toggle input:disabled + .cookie-toggle-slider:before {
    background-color: #cccccc;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
}

.cookie-save {
    background-color: #4ade80;
    color: #000000;
}

.cookie-save:hover {
    background-color: #22c55e;
    transform: translateY(-1px);
}

.cookie-accept-all {
    background-color: #ffffff;
    color: #000000;
}

.cookie-accept-all:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}


/* Responsive Design for Cookie Banner and Modal */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 0.75rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-banner-text {
        min-width: auto;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-button {
        flex: 1;
        min-width: 100px;
    }

    /* Cookie Modal Responsive */
    .cookie-modal {
        padding: 0.5rem;
    }

    .cookie-modal-content {
        max-width: 100%;
        max-height: 95vh;
    }

    .cookie-modal-header {
        padding: 1rem 1.5rem;
    }

    .cookie-modal-header h2 {
        font-size: 1.3rem;
    }

    .cookie-modal-body {
        padding: 1.5rem;
    }

    .cookie-category {
        padding: 1rem;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-modal-footer .form-button {
        width: 100%;
    }

    /* Data Policy Modal Responsive */
    .data-policy-modal {
        padding: 0.5rem;
    }

    .data-policy-modal-content {
        max-width: 100%;
        max-height: 95vh;
    }

    .data-policy-modal-header {
        padding: 1rem 1.5rem;
    }

    .data-policy-modal-header h2 {
        font-size: 1.3rem;
    }

    .data-policy-modal-body {
        padding: 1.5rem;
    }

    .data-policy-section {
        margin-bottom: 1.5rem;
    }

    .data-policy-section h3 {
        font-size: 1.1rem;
    }

    .data-policy-section p {
        font-size: 0.9rem;
    }

    .data-policy-section li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.5rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.85rem;
    }
    
    .form-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Cookie Modal Mobile */
    .cookie-modal-header {
        padding: 0.75rem 1rem;
    }

    .cookie-modal-header h2 {
        font-size: 1.2rem;
    }

    .cookie-modal-body {
        padding: 1rem;
    }

    .cookie-modal-intro {
        font-size: 0.9rem;
    }

    .cookie-category {
        padding: 0.75rem;
    }

    .cookie-category-header h3 {
        font-size: 1rem;
    }

    .cookie-category-description {
        font-size: 0.85rem;
    }

    /* Data Policy Modal Mobile */
    .data-policy-modal-header {
        padding: 0.75rem 1rem;
    }

    .data-policy-modal-header h2 {
        font-size: 1.2rem;
    }

    .data-policy-modal-body {
        padding: 1rem;
    }

    .data-policy-section {
        margin-bottom: 1.25rem;
    }

    .data-policy-section h3 {
        font-size: 1rem;
    }

    .data-policy-section p {
        font-size: 0.85rem;
    }

    .data-policy-section li {
        font-size: 0.85rem;
    }
}

/* Light Mode Styles - Only applies when body has class "light" */
body.light {
    background-color: #ffffff;
    color: #000000;
}

body.light .hero-mask {
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 40%, rgba(255,255,255,0.3) 100%);
}

body.light .hero-intro {
    color: #666666;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

body.light .hero-title {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

body.light .hero-subtitle,
body.light .hero-description {
    color: #000000;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

body.light .hero-button {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light .hero-button::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

body.light .hero-button:hover {
    background: #333333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

body.light .section-title {
    color: #000000;
}

body.light p.section-intro {
    color: #333333;
}

body.light .manifesto {
    background: #f5f5f5;
}

body.light .manifesto::before {
    display: none;
}

body.light .manifesto-text {
    color: #333333;
}

body.light .manifesto-text:first-child {
    color: #000000;
}

body.light .manifesto-text:last-child {
    color: #333333;
}

body.light .manifesto .section-title {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light .name-explanation {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .esquisse-definition {
    color: #000000;
}

body.light .esquisse-definition em {
    color: #666666;
}

body.light .esquisse-meaning {
    color: #333333;
}

body.light .tech-specs {
    background: #ffffff;
}

body.light .tech-specs::before {
    display: none;
}

body.light .diagram-caption {
    color: #333333;
}

body.light .price-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.light .price-title {
    color: #333333;
}

body.light .price-amount {
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

body.light .price-point {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light .price-point:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
}

body.light .price-point-text strong {
    color: #000000;
}

body.light .price-point-text span {
    color: #333333;
}

body.light .price-note {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid rgba(0, 0, 0, 0.3);
}

body.light .price-note p {
    color: #333333;
}

body.light .spec-category {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .spec-category:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light .spec-category-title {
    color: #000000;
}

body.light .spec-category-title::after {
    background: linear-gradient(90deg, transparent, #000000, transparent);
}

body.light .spec-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light .spec-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

body.light .spec-label {
    color: #333333;
}

body.light .spec-value {
    color: #000000;
}

body.light .specs-note {
    color: #666666;
}

body.light .development-status {
    background: #ffffff;
}

body.light .development-status::before {
    display: none;
}

body.light .status-message {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .status-message h3 {
    color: #000000;
}

body.light .status-message p {
    color: #333333;
}

body.light .roadmap-title {
    color: #000000;
}

body.light .roadmap-timeline::before {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

body.light .marker-dot {
    border: 3px solid #000000;
    background: #ffffff;
}

body.light .roadmap-content {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .roadmap-content:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

body.light .roadmap-content h4 {
    color: #000000;
}

body.light .roadmap-content p {
    color: #333333;
}

body.light .roadmap-status {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

body.light .roadmap-item.completed .roadmap-status {
    background: rgba(74, 222, 128, 0.2);
    color: #059669;
}

body.light .roadmap-item.in-progress .roadmap-status {
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

body.light .roadmap-item.upcoming .roadmap-status {
    background: rgba(107, 114, 128, 0.2);
    color: #4b5563;
}

body.light .reassurance-message h3 {
    color: #000000;
}

body.light .reassurance-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .reassurance-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

body.light .reassurance-item h4 {
    color: #000000;
}

body.light .reassurance-item p {
    color: #333333;
}

body.light .features {
    background: #ffffff;
}

/* Target the second features section (Timeless, Durable Design) specifically */
body.light .features:nth-of-type(2) {
    background: #f5f5f5;
}

body.light .feature-item h3 {
    color: #000000;
}

body.light .feature-item p {
    color: #333333;
}

body.light .design-section {
    background: #f5f5f5;
}

body.light .mount-section {
    background: #ffffff;
}

body.light .cta-section {
    background: #f5f5f5;
}

body.light .cta-section::before {
    display: none;
}

body.light .cta-title {
    color: #000000;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light .cta-description {
    color: #333333;
}

body.light .cta-button {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light .cta-button::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

body.light .cta-button:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

body.light .coming-soon {
    background: #f5f5f5;
}

body.light .coming-soon::before {
    display: none;
}

body.light .coming-soon-subtitle {
    color: #333333;
}

body.light .benefit-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .benefit-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light .benefit-item h3 {
    color: #000000;
}

body.light .benefit-item p {
    color: #333333;
}

body.light .signup-guarantee {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .signup-guarantee p {
    color: #333333;
}

body.light .signup-guarantee strong {
    color: #000000;
}

body.light .signup-note {
    color: #333333;
}

body.light .signup-count {
    color: #000000;
}

/* Light mode success message */
body.light .signup-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

body.light .signup-success h3 {
    background: linear-gradient(135deg, #16a34a, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light .signup-success p {
    color: #333333;
}

body.light .email-input {
    border: 1px solid #cccccc;
    background-color: #ffffff;
    color: #000000;
}

body.light .email-input:focus {
    border-color: #999999;
    background-color: #f9f9f9;
}

body.light .email-input::placeholder {
    color: #999999;
}

body.light .notify-button {
    background-color: #000000;
    color: #ffffff;
}

body.light .notify-button:hover {
    background-color: #333333;
}

body.light .footer {
    border-top: 1px solid #cccccc;
    background-color: #ffffff;
}

body.light .footer p {
    color: #999999;
}

body.light .footer a {
    color: #000000;
}

body.light .footer a:hover {
    color: #333333;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

body.light .footer a::after {
    background: linear-gradient(90deg, #000000, #333333);
}

/* Light mode social links */
body.light .social-link {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .social-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.light .social-icon {
    color: #666666;
}

body.light .social-link:hover .social-icon {
    color: #000000;
}

body.light .social-username {
    color: #666666;
}

body.light .social-link:hover .social-username {
    color: #000000;
}

body.light .social-link.instagram:hover {
    background-color: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
}

body.light .social-link.twitter:hover {
    background-color: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.3);
}

body.light .social-link.snapchat:hover {
    background-color: rgba(255, 252, 0, 0.2);
    border-color: rgba(255, 252, 0, 0.4);
}

body.light ::-webkit-scrollbar-track {
    background: #f0f0f0;
}

body.light ::-webkit-scrollbar-thumb {
    background: #cccccc;
}

body.light ::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

body.light .cookie-banner {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #cccccc;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

body.light .cookie-banner-text p {
    color: #333333;
}

body.light .cookie-banner-text a {
    color: #000000;
}

body.light .cookie-banner-text a:hover {
    color: #333333;
}

body.light .cookie-accept {
    background-color: #000000;
    color: #ffffff;
}

body.light .cookie-accept:hover {
    background-color: #333333;
}

body.light .cookie-reject {
    background-color: transparent;
    color: #333333;
    border: 1px solid #999999;
}

body.light .cookie-reject:hover {
    background-color: #f0f0f0;
    border-color: #666666;
    color: #000000;
}

body.light .cookie-settings {
    background-color: transparent;
    color: #000000;
    border: 1px solid #999999;
}

body.light .cookie-settings:hover {
    background-color: #f0f0f0;
    border-color: #666666;
}

/* Light Mode Cookie Modal */
body.light .cookie-modal-overlay {
    background: rgba(255, 255, 255, 0.8);
}

body.light .cookie-modal-content {
    background: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.light .cookie-modal-header {
    border-bottom: 1px solid #cccccc;
}

body.light .cookie-modal-header h2 {
    color: #000000;
}

body.light .cookie-modal-close {
    color: #666666;
}

body.light .cookie-modal-close:hover {
    color: #000000;
}

body.light .cookie-modal-intro {
    color: #333333;
}

body.light .cookie-category {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid #cccccc;
}

body.light .cookie-category:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: #999999;
}

body.light .cookie-category-header h3 {
    color: #000000;
}

body.light .cookie-category-description {
    color: #333333;
}

body.light .cookie-toggle-slider {
    background-color: #cccccc;
}

body.light .cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #4ade80;
}

body.light .cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #e0e0e0;
}

body.light .cookie-toggle input:disabled + .cookie-toggle-slider:before {
    background-color: #999999;
}

body.light .cookie-modal-footer {
    border-top: 1px solid #cccccc;
}

/* Data Policy Modal Styles - Reusing Cookie Modal Structure */
.data-policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.data-policy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.data-policy-modal-content {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.data-policy-modal.show .data-policy-modal-content {
    transform: scale(1);
    opacity: 1;
}

.data-policy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333333;
    position: sticky;
    top: 0;
    background: #1a1a1a;
    z-index: 10;
}

.data-policy-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.data-policy-modal-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.data-policy-modal-close:hover {
    color: #ffffff;
}

.data-policy-modal-body {
    padding: 2rem;
}

.data-policy-content {
    max-width: 100%;
}

.data-policy-section {
    margin-bottom: 2rem;
}

.data-policy-section:last-child {
    margin-bottom: 0;
}

.data-policy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333333;
}

.data-policy-section p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.data-policy-section p:last-child {
    margin-bottom: 0;
}

.data-policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.data-policy-section li {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.data-policy-section a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.data-policy-section a:hover {
    color: #cccccc;
}

/* Light Mode Data Policy Styles */
body.light .data-policy-text {
    color: #333333;
}

body.light .data-policy-link {
    color: #000000;
}

body.light .data-policy-link:hover {
    color: #333333;
}

body.light .data-policy-modal-overlay {
    background: rgba(255, 255, 255, 0.8);
}

body.light .data-policy-modal-content {
    background: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.light .data-policy-modal-header {
    border-bottom: 1px solid #cccccc;
    background: #ffffff;
}

body.light .data-policy-modal-header h2 {
    color: #000000;
}

body.light .data-policy-modal-close {
    color: #666666;
}

body.light .data-policy-modal-close:hover {
    color: #000000;
}

body.light .data-policy-section h3 {
    color: #000000;
    border-bottom: 1px solid #cccccc;
}

body.light .data-policy-section p {
    color: #333333;
}

body.light .data-policy-section li {
    color: #333333;
}

body.light .data-policy-section a {
    color: #000000;
}

body.light .data-policy-section a:hover {
    color: #333333;
}

/* Welcome Page Styles */
.welcome-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-image: url('img/hero.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.welcome-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.welcome-message {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.welcome-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.welcome-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.community-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.idea-submission {
    padding: 6rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.idea-submission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.idea-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.idea-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.idea-form-container:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.idea-form {
    text-align: left;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.idea-textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1rem;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #111111;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.6;
    resize: vertical;
    min-height: 120px;
}

.idea-textarea:focus {
    border-color: #666666;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.idea-textarea::placeholder {
    color: #666666;
}

.form-input {
    width: 100%;
    padding: 1.5rem;
    font-size: 1rem;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #111111;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.6;
}

.form-input:focus {
    border-color: #666666;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: #666666;
}

.idea-select {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #111111;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
}

.idea-select:focus {
    border-color: #666666;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.idea-select option {
    background-color: #111111;
    color: #ffffff;
}

.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.idea-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.5s ease-out;
}

.idea-guarantee {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.idea-guarantee p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.idea-guarantee strong {
    color: #ffffff;
    font-weight: 600;
}

.next-steps {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
}

.next-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.step-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.step-item .social-links {
    justify-content: center;
    margin-bottom: 0;
}

.step-item .form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 1rem;
}

.step-item .form-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Light Mode Welcome Page Styles */
body.light .welcome-message {
    background: #f5f5f5;
}

body.light .welcome-message::before {
    display: none;
}

body.light .welcome-text {
    color: #333333;
}

body.light .idea-submission {
    background: #ffffff;
}

body.light .idea-submission::before {
    display: none;
}

body.light .idea-form-container {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .idea-form-container:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light .form-label {
    color: #000000;
}

body.light .idea-textarea {
    border: 1px solid #cccccc;
    background-color: #ffffff;
    color: #000000;
}

body.light .idea-textarea:focus {
    border-color: #999999;
    background-color: #f9f9f9;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

body.light .idea-textarea::placeholder {
    color: #999999;
}

body.light .form-input {
    border: 1px solid #cccccc;
    background-color: #ffffff;
    color: #000000;
}

body.light .form-input:focus {
    border-color: #999999;
    background-color: #f9f9f9;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

body.light .form-input::placeholder {
    color: #999999;
}

body.light .idea-select {
    border: 1px solid #cccccc;
    background-color: #ffffff;
    color: #000000;
}

body.light .idea-select:focus {
    border-color: #999999;
    background-color: #f9f9f9;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

body.light .idea-select option {
    background-color: #ffffff;
    color: #000000;
}

body.light .submit-button {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
}

body.light .submit-button:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

body.light .idea-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

body.light .idea-success h3 {
    background: linear-gradient(135deg, #16a34a, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light .idea-success p {
    color: #333333;
}

body.light .idea-guarantee {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .idea-guarantee p {
    color: #333333;
}

body.light .idea-guarantee strong {
    color: #000000;
}

body.light .next-steps {
    background: #f5f5f5;
}

body.light .next-steps::before {
    display: none;
}

body.light .step-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .step-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light .step-number {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light .step-item h3 {
    color: #000000;
}

body.light .step-item p {
    color: #333333;
}

body.light .step-item .form-button {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #666666;
}

body.light .step-item .form-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #000000;
}

/* Responsive Design for Welcome Page */
@media (max-width: 768px) {
    .welcome-hero {
        height: 750px;
        background-attachment: scroll;
        background-position: 0 5vh;
    }
    
    .hero-content {
        padding: 0 15px 40px 15px;
    }
    
    .welcome-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-message,
    .idea-submission,
    .next-steps {
        padding: 4rem 0;
    }
    
    .community-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .idea-form-container {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .idea-guarantee {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .step-item {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .welcome-hero {
        height: 700px;
    }
    
    .welcome-icon {
        font-size: 2.5rem;
    }
    
    .idea-form-container {
        padding: 1.5rem 1rem;
    }
    
    .idea-textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .idea-select {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Existing Ideas Styles */
.existing-ideas {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ideas-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.ideas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.idea-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid #007AFF;
    transition: all 0.3s ease;
}

.idea-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.idea-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.idea-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

.no-ideas {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 20px;
}

/* Light theme styles for ideas */
body.light .existing-ideas {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .ideas-title {
    color: #000000;
}

body.light .idea-item {
    background: rgba(0, 0, 0, 0.03);
    border-left-color: #007AFF;
}

body.light .idea-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.light .idea-content {
    color: #000000;
}

body.light .idea-date {
    color: #666;
}

body.light .no-ideas {
    color: #666;
}

/* Responsive styles for ideas */
@media (max-width: 768px) {
    .existing-ideas {
        margin-top: 30px;
        padding: 20px;
    }
    
    .idea-item {
        padding: 15px;
    }
}

/* Community Member Section Styles */
.community-member-section {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.member-welcome {
    margin-bottom: 30px;
}

.member-welcome .welcome-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.member-welcome h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.member-welcome p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.member-email {
    font-size: 1rem;
    color: #007AFF;
    margin-top: 15px;
}

.member-actions {
    margin-top: 30px;
}


/* Light theme styles for community member section */
body.light .community-member-section {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .member-welcome h3 {
    color: #000000;
}

body.light .member-welcome p {
    color: #333333;
}

body.light .member-email {
    color: #007AFF;
}


/* Responsive styles for community member section */
@media (max-width: 768px) {
    .community-member-section {
        padding: 30px 15px;
        margin: 20px 0;
    }
    
    .member-welcome .welcome-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .member-welcome h3 {
        font-size: 1.5rem;
    }
    
    .member-welcome p {
        font-size: 1rem;
    }
    
}

/* Press Release Page Styles */
.press-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    padding: 2rem 0;
}

/* Founder Quote Styles */
.founder-quote {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 2rem;
    text-align: center;
}

.founder-quote::before {
    display: none;
}

.founder-quote::after {
    display: none;
}

.quote-attribution {
    text-align: center;
    margin-top: 2rem;
}

.quote-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.quote-title {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

/* Specifications Table */
.specs-table-container {
    margin: 3rem 0;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.specs-table td {
    color: #cccccc;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.specs-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Media Assets Section */
.media-assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.media-asset-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.media-asset-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.media-asset-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.media-asset-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.media-asset-item .form-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.media-asset-item .form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #cccccc;
}

.press-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.press-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.press-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.press-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.press-hero-image {
    margin: 3rem 0;
}

.press-camera-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.press-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.press-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.press-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

.press-announcement {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    position: relative;
}

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

.announcement-date {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.announcement-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.press-highlights {
    padding: 6rem 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.press-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.highlight-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.highlight-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.press-quote {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.press-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.founder-quote {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    font-family: 'Times New Roman', Georgia, serif;
    color: #ffffff;
    line-height: 1.7;
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 2rem;
}

.founder-quote::before {
    display: none;
}

.founder-quote::after {
    display: none;
}

.quote-attribution {
    text-align: center;
}

.quote-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.quote-title {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

.press-visuals {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.visuals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.visual-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.visual-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.visual-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.visual-caption {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
    font-weight: 500;
}

.media-kit-download {
    text-align: center;
}

.press-about {
    padding: 6rem 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

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

.about-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.press-contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    position: relative;
}

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

.contact-info {
    margin-bottom: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #cccccc;
}

.contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.press-footer {
    padding: 4rem 0 2rem 0;
    background: #000000;
    border-top: 1px solid #222222;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #cccccc;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* Print/PDF Optimization */
@media print {
    * {
        margin: 0 !important;
        padding: 0 !important;
        background: white !important;
        color: black !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .page-logo,
    .press-hero-cta,
    .contact-actions,
    .footer-content,
    .footer-logo,
    .footer-links,
    .footer-social {
        display: none;
    }
    
    .press-hero-title {
        font-size: 18pt;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
    
    .press-hero-subtitle {
        font-size: 14pt;
        margin-bottom: 1rem;
    }
    
    .press-camera-image {
        max-height: 200px;
        margin: 1rem 0;
    }
    
    .press-section-title {
        font-size: 14pt;
        font-weight: bold;
        margin: 1rem 0 0.5rem 0;
    }
    
    .announcement-date {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
    
    .announcement-text,
    .about-text {
        margin-bottom: 0.5rem;
    }
    
    .highlights-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .highlight-item {
        border: 1px solid #ccc;
        padding: 0.5rem;
    }
    
    .highlight-item h3 {
        font-weight: bold;
        margin-bottom: 0.3rem;
    }
    
    .founder-quote {
        font-style: italic;
        border-left: 3px solid #ccc;
        padding-left: 1rem;
        margin: 1rem 0;
    }
    
    .quote-author {
        font-weight: bold;
        margin-top: 0.5rem;
    }
    
    .visuals-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .visual-item {
        border: 1px solid #ccc;
        padding: 0.5rem;
    }
    
    .visual-image {
        max-height: 100px;
        width: 100%;
    }
    
    .visual-caption {
        text-align: center;
        margin-top: 0.3rem;
    }
    
    .contact-info h3 {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
    
    .press-footer {
        border-top: 1px solid #ccc;
        padding: 0.5rem 0;
        margin-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 10pt;
    }
    
    /* New Press Release Elements */
    .founder-quote {
        font-size: 12pt;
        border-left: 3px solid #ccc;
        padding-left: 1rem;
        margin: 1rem 0;
        font-style: italic;
    }
    
    .founder-quote::before,
    .founder-quote::after {
        display: none;
    }
    
    .quote-author {
        font-size: 10pt;
        font-weight: bold;
        margin-top: 0.5rem;
    }
    
    .quote-title {
        font-size: 9pt;
        margin: 0;
    }
    
    .specs-table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        font-size: 9pt;
    }
    
    .specs-table th,
    .specs-table td {
        border: 1px solid #ccc;
        padding: 0.3rem;
        text-align: left;
    }
    
    .specs-table th {
        background: #f0f0f0;
        font-weight: bold;
    }
    
    .specs-table td:first-child {
        font-weight: bold;
        background: #f8f8f8;
    }
    
    .media-assets-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .media-asset-item {
        border: 1px solid #ccc;
        padding: 0.5rem;
        text-align: center;
    }
    
    .media-asset-item h3 {
        font-size: 10pt;
        font-weight: bold;
        margin-bottom: 0.3rem;
    }
    
    .media-asset-item p {
        font-size: 8pt;
        margin-bottom: 0.5rem;
    }
    
    .media-asset-item .form-button {
        display: none;
    }
    
    .contact-info h3 {
        font-size: 12pt;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
    
    .contact-info p {
        font-size: 10pt;
        margin-bottom: 0.3rem;
    }
}

/* Light Mode Press Release Styles */
body.light .press-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
}

body.light .press-hero-title {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light .press-hero-subtitle {
    color: #000000;
}

body.light .press-cta-button {
    background: #000000;
    color: #ffffff;
}

body.light .press-cta-button:hover {
    background: #333333;
}

body.light .press-announcement {
    background: #f5f5f5;
}

body.light .announcement-text {
    color: #333333;
}

body.light .press-highlights {
    background: #ffffff;
}

body.light .press-section-title {
    color: #000000;
}

body.light .highlight-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .highlight-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

body.light .highlight-item h3 {
    color: #000000;
}

body.light .highlight-item p {
    color: #333333;
}

body.light .press-quote {
    background: #f5f5f5;
}

body.light .founder-quote {
    color: #000000;
}

body.light .founder-quote::before,
body.light .founder-quote::after {
    color: #666666;
}

body.light .quote-author {
    color: #000000;
}

body.light .quote-title {
    color: #333333;
}

body.light .press-visuals {
    background: #ffffff;
}

body.light .visual-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .visual-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

body.light .visual-caption {
    color: #333333;
}

body.light .press-about {
    background: #f5f5f5;
}

body.light .about-text {
    color: #333333;
}

body.light .press-contact {
    background: #ffffff;
}

body.light .contact-info h3 {
    color: #000000;
}

body.light .contact-info p {
    color: #333333;
}

body.light .contact-info a {
    color: #000000;
}

body.light .contact-info a:hover {
    color: #333333;
}

body.light .press-footer {
    background: #ffffff;
    border-top: 1px solid #cccccc;
}

body.light .footer-links a {
    color: #000000;
}

body.light .footer-links a:hover {
    color: #333333;
}

body.light .footer-links a::after {
    background: linear-gradient(90deg, #000000, #333333);
}

body.light .footer-bottom {
    border-top: 1px solid #cccccc;
}

body.light .footer-bottom p {
    color: #666666;
}

/* Light Mode for New Press Release Elements */
body.light .founder-quote {
    color: #000000;
}

body.light .founder-quote::before,
body.light .founder-quote::after {
    color: #666666;
}

body.light .quote-author {
    color: #000000;
}

body.light .quote-title {
    color: #333333;
}

body.light .specs-table {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .specs-table th {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}

body.light .specs-table td {
    color: #333333;
}

body.light .specs-table td.spec-category-title {
    color: #000000;
    background: rgba(0, 0, 0, 0.03);
}

body.light .specs-table tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

body.light .media-asset-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .media-asset-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

body.light .media-asset-item h3 {
    color: #000000;
}

body.light .media-asset-item p {
    color: #333333;
}

body.light .contact-info h3 {
    color: #000000;
}

body.light .contact-info p {
    color: #333333;
}

body.light .contact-info a {
    color: #000000;
}

body.light .contact-info a:hover {
    color: #333333;
}

/* Responsive Design for Press Release */
@media (max-width: 768px) {
    .press-hero {
        min-height: 80vh;
        padding: 1rem 0;
    }
    
    .press-hero-content {
        padding: 0 1rem;
    }
    
    .press-hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .press-hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
        margin-bottom: 2rem;
    }
    
    .press-camera-image {
        max-height: 300px;
    }
    
    .press-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .press-cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .press-announcement,
    .press-highlights,
    .press-quote,
    .press-visuals,
    .press-about,
    .press-contact {
        padding: 4rem 0;
    }
    
    .announcement-content,
    .about-content,
    .contact-content {
        padding: 0 1rem;
    }
    
    .announcement-text,
    .about-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 2rem 1.5rem;
    }
    
    .founder-quote {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        padding: 0 1rem;
    }
    
    .visuals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-social {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .press-hero {
        min-height: 70vh;
    }
    
    .press-hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .press-hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }
    
    .press-camera-image {
        max-height: 250px;
    }
    
    .highlight-item {
        padding: 1.5rem 1rem;
    }
    
    .founder-quote {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        padding: 0 0.5rem;
    }
    
    .visual-item {
        padding: 1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visuals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .founder-quote {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        padding: 0 0.5rem;
    }
    
    .specs-table-container {
        overflow-x: auto;
        margin: 2rem 0;
    }
    
    .specs-table {
        font-size: 0.8rem;
        min-width: 600px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.5rem;
    }
    
    .media-assets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .media-asset-item {
        padding: 1.5rem;
    }
}