/* ============================================
   SPEECH.NET - Main Stylesheet
   A bold, distinctive design that avoids AI-slop
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors - Extracted from TSIC logo */
    --teal-dark: #006B77;
    --teal-light: #00A89D;
    --green-dark: #00875A;
    --green-light: #00B368;
    
    /* Extended Palette */
    --navy: #0A1628;
    --navy-light: #162337;
    --slate: #334155;
    --slate-light: #64748B;
    
    /* Accent Colors */
    --coral: #FF6B6B;
    --amber: #FFB347;
    --violet: #8B5CF6;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-900: #0F172A;
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--teal-dark) 0%, var(--green-dark) 100%);
    --gradient-brand-light: linear-gradient(135deg, var(--teal-light) 0%, var(--green-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 60px rgba(0, 167, 157, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
}

.accent {
    color: var(--teal-light);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-base);
}

.nav.scrolled .nav-logo-text {
    color: var(--navy);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-light);
    transition: var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--white);
}

.nav.scrolled .nav-link.active {
    color: var(--teal-dark);
}

.nav.scrolled .nav-link {
    color: var(--slate);
}

.nav.scrolled .nav-link:hover {
    color: var(--teal-dark);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--white);
    color: var(--teal-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav.scrolled .nav-cta {
    background: var(--gradient-brand);
    color: var(--white);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

.nav.scrolled .nav-mobile-toggle span {
    background: var(--navy);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-link.cta {
    background: var(--gradient-brand);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: none;
    margin-top: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 107, 119, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 107, 119, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 167, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 135, 90, 0.1) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 167, 157, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-accent {
    display: block;
    background: var(--gradient-brand-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.hero-device-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-device {
    width: 320px;
    padding: 12px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-device:hover {
    transform: rotateY(-10deg) rotateX(2deg) translateY(-10px);
}

.hero-device-secondary {
    position: absolute;
    top: 60px;
    left: -180px;
    width: 280px;
    transform: rotateY(-10deg) rotateX(5deg) translateZ(-50px);
    opacity: 0.9;
}

.hero-screenshot {
    width: 100%;
    border-radius: 28px;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gray-100);
    color: var(--teal-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--slate-light);
    line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition-slow);
}

.product-card:hover .product-card-bg {
    opacity: 1;
}

.product-card-companion .product-card-bg {
    background: linear-gradient(135deg, rgba(0, 107, 119, 0.05) 0%, rgba(0, 135, 90, 0.05) 100%);
}

.product-card-studio .product-card-bg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.product-card-vr .product-card-bg {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 179, 71, 0.05) 100%);
}

.product-card-content {
    position: relative;
    z-index: 1;
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-icon-studio {
    background: linear-gradient(135deg, var(--violet) 0%, #6366F1 100%);
    color: var(--white);
}

.product-icon-vr {
    background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%);
    color: var(--white);
}

.product-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--slate);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.product-badge-beta {
    background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%);
    color: var(--white);
}

.product-description {
    color: var(--slate-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--slate);
    font-size: 0.95rem;
}

.product-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300A89D' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-dark);
    font-weight: 600;
    transition: var(--transition-fast);
}

.product-card:hover .product-cta {
    gap: 12px;
}

.product-visual {
    position: relative;
    margin-top: 32px;
    z-index: 1;
}

.product-visual img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   FEATURES SHOWCASE
   ============================================ */

.features-showcase {
    padding: var(--section-padding) 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-brand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
}

.feature-icon-heart {
    background: linear-gradient(135deg, var(--coral) 0%, #FF8E8E 100%);
}

.feature-icon-ai {
    background: linear-gradient(135deg, var(--violet) 0%, #A78BFA 100%);
}

.feature-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--slate-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--slate);
}

.feature-list li::before {
    content: '→';
    color: var(--teal-light);
    font-weight: 600;
}

.feature-visual {
    position: relative;
}

.feature-screenshot {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   WEB PORTAL SECTION
   ============================================ */

.web-portal {
    padding: var(--section-padding) 0;
    background: var(--navy);
}

.web-portal .section-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.web-portal .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--teal-light);
}

.web-portal .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 24px;
}

.web-portal-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.web-portal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.web-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.web-feature svg {
    opacity: 0.8;
}

.web-portal-visual {
    position: relative;
}

.web-screenshot {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    padding: 100px 24px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-brand);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--teal-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--gray-900);
    padding: 80px 24px 40px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-visual {
        right: -15%;
    }
    
    .hero-device {
        width: 280px;
    }
    
    .hero-device-secondary {
        display: none;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 60px;
    }
    
    .hero-device {
        margin: 0 auto;
        transform: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row-reverse {
        direction: ltr;
    }
    
    .feature-visual {
        order: -1;
    }
    
    .web-portal .section-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .web-portal .section-title {
        text-align: center;
    }
    
    .web-portal-content {
        text-align: center;
    }
    
    .web-portal-features {
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-tagline {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .feature-screenshot {
        max-width: 280px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-card {
        padding: 28px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Product Page Hero */
.page-hero {
    position: relative;
    padding: 180px 24px 100px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero .hero-gradient {
    position: absolute;
    inset: 0;
}

.page-hero-companion .hero-gradient {
    background: var(--gradient-dark);
}

.page-hero-studio .hero-gradient {
    background: linear-gradient(180deg, #1E1B4B 0%, #312E81 100%);
}

.page-hero-vr .hero-gradient {
    background: linear-gradient(180deg, #1A1625 0%, #2D1F3D 100%);
}

.page-hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.page-hero-text {
    z-index: 1;
}

.page-hero-visual {
    position: relative;
    z-index: 1;
}

/* Feature Grid for Product Pages */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal-dark);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--slate-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .page-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-hero-visual {
        order: -1;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Screenshot Gallery */
.screenshot-gallery {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 24px 0;
    scroll-snap-type: x mandatory;
}

.screenshot-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.screenshot-item img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

/* Coming Soon Badge */
.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition-base);
}

.coming-soon-overlay span {
    padding: 12px 24px;
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    border-radius: 100px;
}

*:hover > .coming-soon-overlay {
    opacity: 1;
}

