/*
Theme Name: Transient.AI v2
Theme URI: https://transient.ai
Author: Transient.AI
Author URI: https://transient.ai
Description: One-page theme for Transient.AI - AI Operating System for Capital Markets. Dark theme with white typography.
Version: 1.0.20.34
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: transientai
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, translation-ready, dark-theme
*/

/* Google Fonts - Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');

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

:root {
    --bg-primary: #08090a;
    --bg-secondary: #08090a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-blue: #5088ff;
    --accent-green: #74c044;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    --border-color: #1a1a1a;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

html {
    scroll-behavior: smooth;
}

/* Anchor scroll: land each section heading just below the fixed header,
   with a consistent breathing room. ~76px header + 64px air = 140px. */
:where(h1, h2)[id] {
    scroll-margin-top: 140px;
}

body {
    font-family: var(--font-primary);
    background-color: #08090a;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-blue);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0;
    transition: background 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.site-logo a {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo .logo-img {
    height: 52px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0 auto;
    padding: 0;
}

.main-nav a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    font-weight: 400;
    text-decoration: none;
}

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

.header-cta {
    display: flex;
    align-items: center;
}

.btn-demo {
    background: #3b82f6;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-demo:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-line:nth-child(1) {
    margin-bottom: 6px;
}

.hamburger-line:nth-child(3) {
    margin-top: 6px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 1.5rem 2.5rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

/* Blue glow effect in mobile nav */
.mobile-nav::before {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile nav links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    padding-top: 1rem;
}

.mobile-nav-links a {
    display: block;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1.625rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile nav bottom section with contact */
.mobile-nav-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-bottom: 1rem;
}

.mobile-contact-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.25rem;
}

.mobile-contact-email,
.mobile-contact-phone {
    font-size: 1.375rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-contact-phone {
    margin-bottom: 0.25rem;
}

.mobile-contact-email:hover,
.mobile-contact-phone:hover {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.75rem;
}

.mobile-social-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-social-links a:hover {
    color: #ffffff;
}

body.mobile-nav-open {
    overflow: hidden;
}

/* Header styling when mobile nav is open */
.site-header.mobile-nav-open {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1001;
}

/* Header Responsive - Tablet */
@media (max-width: 992px) {
    .main-nav {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 0.8125rem;
    }
    
    .btn-demo {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    
    /* Always show header CTA on mobile */
    .header-cta {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 0.75rem;
    }
    
    .header-cta .btn-demo {
        padding: 0.4rem 0.875rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    .mobile-nav {
        display: flex;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #3b82f6;
    color: #ffffff;
    border: none;
}

.btn-secondary:hover {
    background: #1d4ed8;
    color: #ffffff;
}


/* Hero Section */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    background: #08090a;
}

.hero-section .container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Hero Content */
.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding: 0 var(--spacing-md);
}

.hero-headline {
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.hero-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

/* Blue CTA Button */
.btn-cta-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: #3b82f6;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
    width: auto;
    min-width: 200px;
}

.btn-cta-orange:hover {
    background: #1d4ed8;
    color: #ffffff;
}

.btn-play-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Hero Screenshot */
.hero-screenshot {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
}

/* Gradient line above screenshot */
.hero-screenshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
    z-index: 10;
}

/* Blue Glow on top */
.hero-screenshot-glow {
    position: absolute;
    top: -10px;
    left: var(--spacing-md);
    right: var(--spacing-md);
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(15px);
    /*
    box-shadow: 0 0 40px 20px rgba(59, 130, 246, 0.4),
                0 0 80px 40px rgba(59, 130, 246, 0.2),
                0 0 120px 60px rgba(59, 130, 246, 0.1);
    */
}

/* Fade overlay at bottom */
.hero-screenshot-fade {
    position: absolute;
    bottom: 0;
    left: var(--spacing-md);
    right: var(--spacing-md);
    height: 30%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        #08090a 100%,
        #08090a 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-screenshot-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    /*
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    */
    display: block;
    position: relative;
    z-index: 1;
}


/* Markets Section Illustration */
.markets-section {
    padding: var(--spacing-xl) 0;
}

.markets-illustration {
    margin: var(--spacing-xl) auto;
    max-width: 900px;
    padding: var(--spacing-md);
}

.markets-tagline {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.markets-svg {
    width: 100%;
    height: auto;
    color: var(--text-primary);
}

.market-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-in-out infinite;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.legacy-system path {
    animation: fadeIn 1s ease-in forwards;
}

.real-market circle {
    animation: popIn 0.5s ease-out forwards;
    animation-delay: 2s;
    opacity: 0;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.6;
    }
}

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

/* Section Styles */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-headline {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subheadline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-secondary);
}

/* Legacy Section - Centered Layout with Mobile Screenshots */
.legacy-section {
    padding: var(--spacing-xl) 0;
    min-height: auto;
}

.legacy-content-centered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legacy-header {
    text-align: center;
    max-width: 900px;
    margin-bottom: var(--spacing-xl);
}

.legacy-headline-centered {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.legacy-subheadline-centered {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.legacy-screenshots {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.legacy-screenshots-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Keep old styles for backwards compatibility */
.legacy-content {
    max-width: 1400px;
    margin: 0 auto;
}

.legacy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.legacy-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legacy-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.legacy-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.6;
}

.legacy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.legacy-mobile-image {
    max-width: 60%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.platform-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.comparison-panel {
    position: relative;
    display: flex;
    flex-direction: column;
}

.panel-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.analysis-label {
    justify-content: flex-start;
}

.action-label {
    justify-content: flex-end;
}

.label-line {
    width: 60px;
    height: 1px;
    background: var(--text-primary);
    opacity: 0.5;
}

.platform-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
}

.window-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.window-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: var(--bg-primary);
}

.transient-icon {
    background: var(--accent-blue);
    opacity: 1;
    color: var(--bg-primary);
    font-weight: bold;
}

.window-title {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.window-menu {
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.7;
}

.window-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.content-placeholder {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.placeholder-line {
    height: 1px;
    background: var(--text-secondary);
    opacity: 0.2;
    border-radius: 2px;
}

.placeholder-line:nth-child(1) { width: 80%; }
.placeholder-line:nth-child(2) { width: 95%; }
.placeholder-line:nth-child(3) { width: 70%; }
.placeholder-line:nth-child(4) { width: 85%; }
.placeholder-line:nth-child(5) { width: 60%; }

.content-data {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.actionable-insights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.insight-item {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.highlight-green {
    background: rgba(0, 255, 136, 0.15);
    border-left: 3px solid var(--accent-green);
}

.highlight-blue {
    background: rgba(0, 212, 255, 0.15);
    border-left: 3px solid var(--accent-blue);
}

.highlight-yellow {
    background: rgba(255, 200, 0, 0.15);
    border-left: 3px solid #ffc800;
}

.legacy-tagline {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-top: var(--spacing-lg);
    font-weight: 500;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

/* Platform Section - New Design */
.platform-section {
    padding: var(--spacing-xl) 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

/* Blue oval glow background */
.platform-glow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80%;
    max-width: 1000px;
    height: 300px;
    background: radial-gradient(ellipse 70% 40% at center, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* New Two-Column Header */
.platform-header-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-lg);
}

.platform-header-left {
    max-width: 600px;
}

.platform-main-title-new {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.platform-main-title-new em {
    font-style: italic;
    font-weight: 500;
}

.platform-header-right {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.platform-subtitle-new {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 450px;
}

/* Horizontal Tab Bar */
.platform-tabs {
    display: inline-flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.25rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.platform-section .container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.platform-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.platform-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Custom dropdown fallback for small screens */
.platform-select-wrapper {
    display: none;
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto var(--spacing-xl);
}

.platform-select {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, border-radius 0.2s ease;
}

.platform-select:hover,
.platform-select:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    outline: none;
}

.platform-select-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.platform-select-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Open state — trigger flattens at the bottom to merge with the menu */
.platform-select-wrapper.is-open .platform-select {
    border-radius: 18px 18px 0 0;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

.platform-select-wrapper.is-open .platform-select-icon {
    transform: rotate(180deg);
}

/* Menu — opens directly below, sharing the same width and borders */
.platform-select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.375rem;
    list-style: none;
    background: rgba(20, 20, 22, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: none;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 10;
    overflow: hidden;
}

.platform-select-wrapper.is-open .platform-select-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.platform-select-option {
    padding: 0.75rem 0.875rem;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.platform-select-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.platform-select-option.is-selected {
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-primary);
}

/* Swap horizontal tabs for the select before labels start wrapping (~830px) */
@media (max-width: 900px) {
    .platform-tabs {
        display: none;
    }

    .platform-select-wrapper {
        display: block;
    }
}

/* Product Content Area */
.platform-content-new {
    position: relative;
    overflow: visible;
    width: 100%;
}

.product-panel {
    display: none;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
    animation: fadeInPanel 0.4s ease;
}

.product-panel.active {
    display: grid;
}

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

/* Product Info (Left Side) */
.product-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.product-tagline {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

/* Product Features Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.product-feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.feature-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.feature-header .feature-icon-new,
.feature-header i,
.feature-header svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    color: var(--text-secondary);
    stroke-width: 1.5;
    flex-shrink: 0;
    display: inline-block !important;
}

.feature-icon-new {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    color: var(--text-secondary);
    stroke-width: 1.5;
    flex-shrink: 0;
    display: inline-block;
}

.feature-icon-new svg {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Product Visual (Right Side) */
.product-visual {
    position: relative;
}

.product-screenshot-wrapper {
    position: relative;
    max-height: 600px;
    isolation: isolate;
}

/* Dedicated overlay div for gradient (above screenshot, below button) */
.product-screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: 
        linear-gradient(to right, transparent 60%, #08090a 100%),
        linear-gradient(to bottom, transparent 50%, #08090a 100%);
    z-index: 1;
}

.product-screenshot {
    width: 100%;
    max-width: none;
    height: 500px;
    display: block;
    object-fit: cover;
    object-position: top left;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

/* Expand Gallery Button */
.expand-gallery-btn {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(40, 40, 45, 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: none;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.expand-gallery-btn:hover {
    background: rgba(50, 50, 55, 0.6);
    transform: translateX(-50%) scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.expand-gallery-btn i {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Legacy styles for backwards compatibility */
.platform-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.platform-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-md) 0;
}

.platform-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.platform-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    min-height: 500px;
}

/* Left Navigation */
.platform-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Product Group */
.product-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.product-content {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    margin-left: 1.5rem;
    transition: margin-top 0.3s ease, opacity 0.3s ease;
}

.product-group.active .product-content {
    display: flex;
    margin-top: 0.5rem;
}

.product-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin: 0;
}

.product-values {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-values li {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.3;
    padding-left: 1rem;
    position: relative;
}

.product-values li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-size: 0.75rem;
}

.platform-nav-item {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    text-align: left;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    position: relative;
    border-radius: 8px;
}

.platform-nav-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.platform-nav-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

.nav-indicator {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--text-secondary);
    border-radius: 0 2px 2px 0;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.platform-nav-item.active .nav-indicator {
    background: var(--accent-green);
    opacity: 1;
}

.nav-arrow {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.platform-nav-item:hover .nav-arrow,
.platform-nav-item.active .nav-arrow {
    color: var(--text-primary);
}

.nav-text {
    flex: 1;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Right Product Shot */
.product-shot {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.product-image {
    width: 100%;
    height: auto;
    display: none;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.product-image.active {
    display: block;
}

/* Responsive Platform Section - New Design */
@media (max-width: 1200px) {
    .platform-header-new {
        gap: var(--spacing-lg);
    }
    
    .product-panel {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-features-grid {
        gap: var(--spacing-sm);
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .bento-title {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: var(--spacing-md);
    }
    
    .bento-headline {
        text-align: center;
    }
    
    .nyc-image-wrapper {
        min-height: 400px;
    }
    
    .nyc-image-overlay {
        bottom: var(--spacing-sm);
        left: var(--spacing-sm);
        right: var(--spacing-sm);
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 968px) {
    .two-column,
    .legacy-layout,
    .platform-content,
    .security-content {
        grid-template-columns: 1fr;
    }
    
    /* New Platform Section Responsive */
    .platform-header-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .platform-header-left {
        max-width: 100%;
    }
    
    .platform-header-right {
        justify-content: center;
        padding-top: 0;
    }
    
    .platform-subtitle-new {
        max-width: 100%;
        text-align: center;
    }
    
    .platform-tabs {
        gap: 0.375rem;
        justify-content: center;
    }
    
    .platform-tab {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
    
    .product-panel {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-info {
        order: 2;
    }
    
    .product-visual {
        order: 1;
    }
    
    .product-name {
        text-align: center;
    }
    
    .product-tagline {
        text-align: center;
    }
    
    .product-features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .platform-content {
        gap: var(--spacing-lg);
    }
    
    .legacy-layout {
        gap: var(--spacing-lg);
    }
    
    .legacy-headline,
    .legacy-subheadline {
        text-align: center;
    }
    
    .legacy-mobile-image {
        max-width: 80%;
        max-height: 400px;
    }
    
    .legacy-headline-centered {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .legacy-screenshots {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .product-group {
        margin-bottom: 0.75rem;
    }
    
    .product-content {
        margin-left: 1rem;
    }
    
    .product-description {
        font-size: 0.65rem;
    }
    
    .product-values li {
        font-size: 0.65rem;
    }
    
    .platform-nav-item {
        white-space: normal;
        padding: 0.75rem 1.25rem;
    }
    
    .nav-indicator {
        display: none;
    }
    
    .platform-nav-item.active {
        border-left: 2px solid var(--accent-green);
    }
    
    .product-shot,
    .product-image {
        max-height: 400px;
    }
    
    .certification-grid {
        max-width: 100%;
    }
    
    .cert-grid-item {
        min-height: 120px;
    }
}

/* AI Agents Section - New Design */
.agents-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: auto;
    overflow: hidden;
    display: block;
}

/* Background decoration image - top left */
.agents-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('assets/images/ai_use_cases_background.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top left;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.agents-section .container {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Starry background effect */
.agents-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.12), transparent),
        radial-gradient(1.5px 1.5px at 200px 60px, rgba(255,255,255,0.08), transparent),
        radial-gradient(2px 2px at 250px 150px, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 300px 90px, rgba(255,255,255,0.15), transparent),
        radial-gradient(1.5px 1.5px at 350px 200px, rgba(255,255,255,0.08), transparent),
        radial-gradient(2px 2px at 400px 50px, rgba(255,255,255,0.12), transparent),
        radial-gradient(1px 1px at 450px 180px, rgba(255,255,255,0.1), transparent),
        radial-gradient(1.5px 1.5px at 500px 100px, rgba(255,255,255,0.08), transparent),
        radial-gradient(2px 2px at 550px 250px, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 600px 40px, rgba(255,255,255,0.15), transparent),
        radial-gradient(1.5px 1.5px at 650px 300px, rgba(255,255,255,0.08), transparent),
        radial-gradient(2px 2px at 700px 150px, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 750px 220px, rgba(255,255,255,0.12), transparent),
        radial-gradient(1.5px 1.5px at 800px 80px, rgba(255,255,255,0.08), transparent);
    background-size: 850px 400px;
    pointer-events: none;
    z-index: 0;
}

.agents-section .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
}

.agents-section .section-content {
    max-width: 100%;
    width: 100%;
}

.agents-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* Three column layout */
.agents-columns {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    align-items: start;
    width: 100%;
}

/* Column */
.agents-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Column Header */
.agents-column-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: var(--spacing-sm);
    padding-left: 0.25rem;
}

.agents-column-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agents-column-icon svg {
    width: 20px;
    height: 20px;
}

.agents-column-icon .column-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.growth-icon {
    color: #5088ff;
}

.risk-icon {
    color: #f2c84c;
}

.operations-icon {
    color: #74c044;
}

.agents-column-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

/* Agent Card - New Style */
.agent-card-new {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-sm);
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.agent-card-new:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(24, 24, 24, 0.7);
}

.agent-card-content {
    flex: 1;
}

.agent-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.agent-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.agent-card-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.agent-card-icon i,
.agent-card-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.agent-card-icon .mcp-icon {
    width: 20px;
    height: 20px;
    opacity: 0.4;
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .agents-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .agents-column:last-child {
        grid-column: 1 / -1;
    }
}

/* Accordion chevron - hidden on desktop */
.accordion-chevron {
    display: none;
}

/* Cards container - always visible on desktop */
.agents-cards-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

@media (max-width: 768px) {
    .agents-columns {
        grid-template-columns: 1fr;
    }
    
    .agents-column:last-child {
        grid-column: auto;
    }
    
    .agents-headline {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: var(--spacing-lg);
    }
    
    .agent-card-new {
        padding: 1rem;
    }
    
    .agent-card-title {
        font-size: 0.9375rem;
    }
    
    .agent-card-desc {
        font-size: 0.8125rem;
    }
    
    /* Mobile Accordion Styles */
    .agents-column-header {
        cursor: pointer;
        user-select: none;
        position: relative;
        padding-right: 2rem;
    }
    
    .accordion-chevron {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        color: var(--text-secondary);
        transition: transform 0.3s ease;
    }
    
    .agents-column[data-accordion-open="true"] .accordion-chevron {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .agents-cards-container {
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    
    .agents-column[data-accordion-open="false"] .agents-cards-container {
        max-height: 0;
        opacity: 0;
    }
    
    .agents-column[data-accordion-open="true"] .agents-cards-container {
        max-height: 2000px;
        opacity: 1;
    }
}

/* Security/Compliance Section */
.security-section {
    padding: var(--spacing-md) 0;
    min-height: auto;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Half: Text Content */
.security-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.security-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.headline-line {
    display: block;
}

.security-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.security-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.4;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-secondary);
    flex-shrink: 0;
    stroke-width: 1.5;
}

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

.feature-text {
    flex: 1;
}

/* Right Half: Certifications Image */
.security-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.certifications-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.certification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    width: 100%;
    max-width: 800px;
    background: var(--border-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cert-grid-item {
    background: var(--bg-primary);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    min-height: 180px;
}

.cert-placeholder {
    color: var(--text-secondary);
    font-size: 1rem;
    opacity: 0.5;
    text-align: center;
}

.cert-logo {
    width: 60px;
    height: 60px;
    color: var(--text-secondary);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
}

.cert-logo svg {
    width: 100%;
    height: 100%;
}

.cert-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
    margin-top: var(--spacing-xs);
}

/* Security Section Responsive */
@media (max-width: 968px) {
    .security-content {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .security-left {
        order: 1;
    }
    
    .security-right {
        order: 2;
    }
}

@media (max-width: 768px) {
    .security-section .container {
        padding: 0 var(--spacing-sm);
    }
    
    .security-left {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .security-headline {
        text-align: center;
        align-items: center;
        width: 100%;
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .security-features {
        align-items: flex-start;
        width: 100%;
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    
    .security-feature {
        width: 100%;
        justify-content: flex-start;
    }
}


/* About Section - Bento Style */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    display: flex;
    flex-direction: column;
}

/* Left Column: Title */
.bento-title {
    justify-content: center;
    padding-right: var(--spacing-md);
}

.bento-headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

/* Middle Column: NYC Image Card */
.bento-image-card {
    position: relative;
}

.nyc-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #08090a;
}

.nyc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%) contrast(1.1) brightness(0.85);
}

.nyc-image-veil {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.nyc-image-overlay {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10;
}

.location-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: #ffffff;
    stroke-width: 2;
}

.location-text {
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

/* Right Column: Stacked Cards */
.bento-cards {
    gap: var(--spacing-sm);
    justify-content: center;
}

.bento-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: var(--spacing-sm);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.bento-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.bento-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}


/* About Section - New Design (Redesigned) */
.about-section-new {
    position: relative;
    padding: 0;
    min-height: auto;
    display: block;
    overflow: hidden;
    margin-top: var(--spacing-lg);
}

.about-section-new .container {
    position: relative;
    z-index: 2;
}

/* NYC Skyline Background */
.about-skyline {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.about-skyline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: grayscale(40%) contrast(1.1) brightness(0.7);
}

.about-skyline-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, #08090a 100%);
    pointer-events: none;
}

/* Left fade to black */
.about-skyline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, #08090a 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Right fade to black */
.about-skyline::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to left, #08090a 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* About Content */
.about-content-new {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Location Tag */
.about-location-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.about-location-icon {
    width: 18px;
    height: 18px;
    color: #74c044;
    stroke-width: 2;
}

.about-location-text {
    color: #74c044;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Main Headline */
.about-headline-new {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xl) 0;
}

/* Three Cards Row */
.about-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.about-card-new {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.about-card-new:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(24, 24, 24, 0.7);
}

.about-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.3;
}

.about-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-skyline {
        height: 300px;
    }
    
    .about-skyline::before,
    .about-skyline::after {
        width: 20%;
    }
    
    .about-cards-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .about-skyline {
        height: 220px;
    }
    
    .about-skyline::before,
    .about-skyline::after {
        width: 15%;
    }
    
    .about-content-new {
        padding: var(--spacing-md) 0 var(--spacing-lg);
    }
    
    .about-headline-new {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: var(--spacing-lg);
    }
    
    .about-card-new {
        padding: var(--spacing-sm);
    }
    
    .about-card-title {
        font-size: 1rem;
    }
    
    .about-card-text {
        font-size: 0.85rem;
    }
}


/* Contact Form - New Design */
/* ============================================
   Publications Section
   ============================================ */
.publications-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: auto;
    background: var(--bg-primary);
}

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

.publications-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.publications-subheadline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.publication-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    text-align: left;
}

.publication-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(80, 136, 255, 0.1);
}

.publication-card-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.publication-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.publication-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    flex-wrap: wrap;
}

.publication-type {
    font-size: 0.875rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin: 0;
}

.publication-separator {
    width: 1px;
    height: 14px;
    background: var(--text-secondary);
    opacity: 0.4;
    flex-shrink: 0;
}

.publication-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.publication-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.btn-publication {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-sm);
    width: fit-content;
}

.btn-publication:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
    transform: translateX(4px);
}

.btn-publication i {
    width: 18px;
    height: 18px;
}

/* ============================================
   PDF Viewer Modal
   ============================================ */
.pdf-viewer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.pdf-viewer-modal.active {
    display: flex;
}

.pdf-viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 10, 0.95);
    backdrop-filter: blur(8px);
}

.pdf-viewer-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    max-height: 900px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pdf-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.pdf-viewer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.pdf-viewer-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-viewer-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.pdf-viewer-close i {
    width: 24px;
    height: 24px;
}

.pdf-viewer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pdf-viewer-toolbar {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    flex-wrap: wrap;
}

.pdf-toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdf-toolbar-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.pdf-toolbar-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pdf-toolbar-btn i {
    width: 16px;
    height: 16px;
}

.pdf-page-info {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0 var(--spacing-sm);
}

.pdf-zoom-level {
    color: var(--text-secondary);
    font-size: 0.875rem;
    min-width: 50px;
    text-align: center;
}

.pdf-viewer-canvas-wrapper {
    flex: 1;
    overflow: auto;
    background: #525252;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

#pdf-canvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive PDF Viewer */
@media (max-width: 768px) {
    .pdf-viewer-container {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .pdf-viewer-toolbar {
        padding: var(--spacing-sm);
        gap: 0.5rem;
    }
    
    .pdf-toolbar-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .pdf-toolbar-btn span {
        display: none;
    }
    
    .pdf-viewer-title {
        font-size: 1rem;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HTML Paper Viewer Modal
   ============================================ */
.html-viewer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.html-viewer-modal.active {
    display: flex;
}

.html-viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 10, 0.95);
    backdrop-filter: blur(8px);
}

.html-viewer-container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 900px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.html-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.html-viewer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.html-viewer-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.html-viewer-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.html-viewer-close i {
    width: 24px;
    height: 24px;
}

.html-viewer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#html-viewer-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

/* Responsive HTML Viewer */
@media (max-width: 768px) {
    .html-viewer-container {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .html-viewer-title {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .publications-section {
        padding: var(--spacing-lg) 0;
    }
    
    .publications-headline {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .publication-card {
        padding: var(--spacing-sm);
    }
}

.contact-section-new {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    overflow: hidden;
}

/* Blue gradient glow background */
.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height: 500px;
    background: radial-gradient(ellipse 60% 50% at center, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.contact-section-new .container {
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-headline-wrapper {
    display: flex;
    align-items: center;
}

.contact-headline-new {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form-new {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-new label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group-new input:hover,
.form-group-new textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(10, 10, 12, 0.9);
}

.form-group-message {
    margin-bottom: var(--spacing-md);
}

.form-group-message textarea {
    min-height: 120px;
    resize: vertical;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

/* Privacy Checkbox */
.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.privacy-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: #3b82f6;
    border-color: #3b82f6;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Submit Button */
.btn-submit-new {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-submit-new:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.form-message {
    margin-top: var(--spacing-sm);
    text-align: center;
    font-size: 0.875rem;
    min-height: 1.25rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Responsive Contact Section */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .contact-headline-wrapper {
        justify-content: center;
    }
    
    .contact-headline-new {
        text-align: center;
    }
    
    .contact-form-wrapper {
        text-align: left;
    }
    
    .form-footer {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-submit-new {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-section-new .container {
        padding: 0 var(--spacing-sm);
    }
    
    .contact-layout {
        gap: var(--spacing-md);
        max-width: 100%;
        width: 100%;
    }
    
    .contact-headline-wrapper {
        width: 100%;
    }
    
    .contact-headline-new {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
    }
    
    .contact-form-wrapper {
        width: 100%;
        text-align: left;
    }
    
    .contact-form-new {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .form-group-new {
        width: 100%;
    }
    
    .form-group-new label {
        text-align: left;
    }
    
    .form-group-new input,
    .form-group-new textarea {
        width: 100%;
    }
    
    .privacy-checkbox {
        text-align: left;
        justify-content: flex-start;
    }
}


/* Footer - New Design */
.site-footer-new {
    background: #0b0b0b;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Top Content */
.footer-top {
    padding-bottom: var(--spacing-lg);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left Column: Navigation */
.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.footer-nav-column .logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.footer-brand {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -0.01em;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-list li a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-list li a:hover {
    color: var(--text-primary);
}

.footer-legal-link {
    margin-top: var(--spacing-lg);
}

.footer-legal-link a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Middle Column: Contact */
.footer-contact-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-list li a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
    color: var(--text-primary);
}

/* Right Column: Address */
.footer-address-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex: 0 0 auto;
}

.footer-address {
    font-style: normal;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-address + .footer-address {
    margin-top: 1.25rem;
}

.footer-address strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Footer Background Logo */
.footer-logo-bg {
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    margin-top: var(--spacing-lg);
}

.footer-logo-img {
    width: 100vw;
    max-width: none;
    height: auto;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding: var(--spacing-sm) 0;
    background: #0b0b0b;
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.6;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-container {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
        justify-content: space-around;
    }
    
    .footer-nav-column {
        flex: 0 0 40%;
    }
    
    .footer-contact-column {
        flex: 0 0 40%;
    }
    
    .footer-address-column {
        flex: 0 0 100%;
        align-items: center;
        text-align: center;
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 600px) {
    .site-footer-new {
        padding-top: var(--spacing-lg);
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: var(--spacing-md) var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .footer-nav-column {
        grid-column: 1;
        grid-row: 1;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-contact-column {
        grid-column: 2;
        grid-row: 1;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-address-column {
        grid-column: 1;
        grid-row: 2;
        align-items: flex-start;
        text-align: left;
        margin-top: var(--spacing-sm);
    }
}


@media (max-width: 768px) {
    .header-container {
        padding: 0 var(--spacing-md);
    }
    
    .section {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--spacing-lg);
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-cta {
        flex-direction: column;
        margin-bottom: var(--spacing-lg);
    }
    
    .btn-cta-orange {
        width: auto;
        min-width: 180px;
    }
    
    .hero-screenshot {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-screenshot-glow {
        left: var(--spacing-sm);
        right: var(--spacing-sm);
        border-radius: 8px 8px 0 0;
    }
    
    .hero-screenshot-fade {
        left: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .hero-screenshot-img {
        height: 300px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }
    
    /* Platform Section Mobile - New Design */
    .platform-main-title-new {
        font-size: clamp(2rem, 7vw, 2.5rem);
        text-align: center;
    }
    
    .product-name {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .expand-gallery-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .expand-gallery-btn span {
        display: none;
    }
    
    .expand-gallery-btn i {
        width: 12px;
        height: 12px;
        padding: 6px;
    }
    
    /* Legacy Section Mobile */
    .legacy-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .legacy-headline-centered {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .legacy-subheadline-centered {
        font-size: 1rem;
    }
    
    .legacy-screenshots {
        padding: 0;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-title,
    .bento-image-card,
    .bento-cards {
        grid-column: 1;
    }
    
    .nyc-image-wrapper {
        min-height: 300px;
    }
    
    .nyc-image-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
    
    .location-icon {
        font-size: 1.125rem;
    }
    
    .location-text {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
    
    .bento-headline {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }
    
    .form-group-full {
        grid-column: 1;
    }
    
    .contact-form {
        max-width: 100%;
        padding: var(--spacing-sm);
    }
    
    .form-group {
        margin-bottom: var(--spacing-xs);
    }
    
    /* Contact Section Mobile - Full Width Form (same as about cards) */
    .contact-section-new .container {
        padding: 0 var(--spacing-sm);
    }
    
    .contact-layout {
        display: block;
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    
    .contact-headline-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: var(--spacing-md);
    }
    
    .contact-headline-new {
        text-align: center;
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .contact-form-wrapper {
        width: 100%;
        text-align: left;
        padding: 0;
        margin: 0;
    }
    
    .contact-form-new {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .form-row {
        display: block;
    }
    
    .form-group-new {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
    
    .form-group-new label {
        text-align: left;
        display: block;
    }
    
    .form-group-new input,
    .form-group-new textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group-message {
        width: 100%;
    }
    
    .form-footer {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }
    
    .privacy-checkbox {
        text-align: left;
        justify-content: flex-start;
    }
    
    .btn-submit-new {
        width: 100%;
    }
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-in;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.accent-text {
    color: var(--accent-blue);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Screenshot Lightbox
   ============================================ */
.screenshot-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.screenshot-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 60px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.screenshot-lightbox.active .lightbox-image {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

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

.lightbox-close i {
    width: 24px;
    height: 24px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav i {
    width: 28px;
    height: 28px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Lightbox Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 0 20px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav i {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-close {
        top: -45px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close i {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-counter {
        bottom: -35px;
        font-size: 0.8rem;
    }
}

/* ============================================
   Publication Page Styles
   ============================================ */
.publication-page-wrapper {
    min-height: 100vh;
    background: var(--bg-primary);
    padding-top: 80px;
}

.publication-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px 64px;
    background: #ffffff;
    color: #111827;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.publication-page-content h1 {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
    color: #111827;
}

.publication-page-content h2 {
    margin-top: 2.5rem;
    font-size: 1.6rem;
    color: #111827;
}

.publication-page-content h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: #111827;
}

.publication-page-content p {
    margin: 0.75rem 0;
    color: #111827;
}

.publication-page-content ul {
    margin: 0.75rem 0 0.75rem 1.25rem;
}

.publication-page-content li {
    margin: 0.5rem 0;
}

.publication-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.publication-page-content th,
.publication-page-content td {
    border: 1px solid #e5e7eb;
    padding: 10px;
    vertical-align: top;
    text-align: left;
}

.publication-page-content th {
    background: #f3f4f6;
}

.publication-page-content a {
    color: #2563eb;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.publication-page-content a:hover {
    text-decoration: underline;
    color: #1d4ed8;
}

.publication-page-content .muted {
    color: #6b7280;
    font-size: 0.9rem;
}

.publication-page-content .italic-text {
    font-style: italic;
}

.publication-page-content .demo-button {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: #ffffff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
    margin: 8px 0;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    border: none;
}

.publication-page-content .demo-button:hover {
    background: #1d4ed8;
    text-decoration: none;
    color: #ffffff !important;
}

/* ============================================
   Blog Styles
   ============================================ */

/* Blog Hero */
/* Blog Hero */
.blog-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: var(--spacing-xl);
    background: var(--bg-primary);
    text-align: center;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blog-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
}

.blog-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.blog-hero-glow--1 {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    top: -200px;
    left: 50%;
    transform: translateX(-60%);
}

.blog-hero-glow--2 {
    width: 400px;
    height: 400px;
    background: #00d4ff;
    top: -100px;
    left: 50%;
    transform: translateX(20%);
    opacity: 0.08;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    background: rgba(80, 136, 255, 0.1);
    border: 1px solid rgba(80, 136, 255, 0.2);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: var(--spacing-md);
}

.blog-hero-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-back-link {
    color: var(--text-secondary) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.blog-back-link:hover {
    color: var(--accent-blue) !important;
}

.blog-back-link i {
    width: 16px;
    height: 16px;
}

/* Blog Archive Section */
.blog-archive-section {
    padding: 0 0 var(--spacing-xl);
    background: var(--bg-primary);
}

/* Featured Post Card */
.blog-featured-card {
    margin-bottom: var(--spacing-xl);
}

.blog-featured-link {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.blog-featured-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(80, 136, 255, 0), rgba(80, 136, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.4s ease;
    pointer-events: none;
}

.blog-featured-link:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
    box-shadow:
        0 16px 48px rgba(80, 136, 255, 0.12),
        0 0 0 1px rgba(80, 136, 255, 0.15);
}

.blog-featured-link:hover::before {
    background: linear-gradient(135deg, rgba(80, 136, 255, 0.4), rgba(0, 212, 255, 0.2));
}

.blog-featured-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    position: relative;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured-link:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--accent-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    z-index: 1;
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg);
}

.blog-featured-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-featured-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* Blog Card Visual Placeholder */
.blog-card-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80, 136, 255, 0.05), rgba(0, 212, 255, 0.03));
}

.blog-card-visual-grid {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 1px;
    opacity: 0.3;
}

.blog-card-visual-line {
    flex: 1;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(80, 136, 255, 0.15) 30%,
        rgba(80, 136, 255, 0.08) 50%,
        rgba(80, 136, 255, 0.15) 70%,
        transparent 100%
    );
    animation: visualPulse 3s ease-in-out infinite;
}

.blog-card-visual-line:nth-child(2) { animation-delay: 0.5s; }
.blog-card-visual-line:nth-child(3) { animation-delay: 1s; }
.blog-card-visual-line:nth-child(4) { animation-delay: 1.5s; }
.blog-card-visual-line:nth-child(5) { animation-delay: 2s; }

@keyframes visualPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.blog-card-visual-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 136, 255, 0.1);
    border: 1px solid rgba(80, 136, 255, 0.2);
    border-radius: 12px;
    color: var(--accent-blue);
    opacity: 0.6;
}

.blog-card-visual-icon i {
    width: 24px;
    height: 24px;
}

/* Grid Section Header */
.blog-grid-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.blog-grid-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.blog-grid-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-color), transparent);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

/* Blog Card */
.blog-card {
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    animation: cardFadeIn 0.5s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.08s);
}

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

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: inset 0 0 0 1px var(--border-color);
}

.blog-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(80, 136, 255, 0.06), transparent 40%);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card-link:hover::after {
    opacity: 1;
}

.blog-card-link:hover {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(80, 136, 255, 0.4);
    transform: translateY(-6px);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(80, 136, 255, 0.1);
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-link:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.blog-card-image-placeholder i {
    width: 48px;
    height: 48px;
    color: var(--text-secondary);
    opacity: 0.3;
}

.blog-card-body {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Card Meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-xs);
    flex-wrap: wrap;
}

.blog-card-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.4;
    flex-shrink: 0;
}

.blog-card-category {
    font-size: 0.75rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    background: rgba(80, 136, 255, 0.08);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.blog-card-date {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.blog-card-reading-time {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.blog-card-title {
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.35;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.blog-card-link:hover .blog-card-title {
    color: #fff;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent-blue);
    transition: gap 0.2s ease;
}

.blog-card-link:hover .blog-read-more,
.blog-featured-link:hover .blog-read-more {
    gap: 0.625rem;
}

.blog-read-more i {
    width: 16px;
    height: 16px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: center;
}

.blog-pagination ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-pagination li {
    margin: 0;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.875rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 0.25rem;
}

.blog-pagination a:hover {
    color: var(--text-primary);
    border-color: var(--accent-blue);
    background: rgba(80, 136, 255, 0.1);
}

.blog-pagination .current {
    color: #fff;
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(80, 136, 255, 0.3);
}

.blog-pagination i {
    width: 16px;
    height: 16px;
}

/* No Posts */
.blog-no-posts {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.blog-no-posts-visual {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.blog-no-posts-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 136, 255, 0.08), transparent 70%);
    border: 1px solid rgba(80, 136, 255, 0.1);
}

.blog-no-posts-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    color: var(--accent-blue);
    opacity: 0.4;
}

.blog-no-posts h2 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.blog-no-posts p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Single Post Styles
   ============================================ */

/* Single Post Hero */
.single-post-hero {
    padding-top: 140px;
    padding-bottom: var(--spacing-lg);
    background: var(--bg-primary);
}

.single-post-hero .container {
    max-width: 800px;
}

.single-post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--spacing-md);
    transition: color 0.2s ease, gap 0.2s ease;
}

.single-post-back:hover {
    color: var(--accent-blue);
    gap: 0.75rem;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.single-post-reading-time {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.single-post-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.single-post-excerpt {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.single-post-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.single-post-author img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.single-post-author-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Featured Image */
.single-post-featured-image {
    margin-bottom: var(--spacing-lg);
}

.single-post-featured-image .container {
    max-width: 1000px;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 500px;
    object-fit: cover;
}

/* Post Content Body */
.single-post-content {
    padding-bottom: var(--spacing-xl);
    background: var(--bg-primary);
}

.single-post-body {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.single-post-body h2 {
    font-size: 1.75rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.single-post-body h3 {
    font-size: 1.375rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.single-post-body h4 {
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.single-post-body p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: inherit;
}

.single-post-body a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-post-body a:hover {
    color: #7aa8ff;
}

.single-post-body ul,
.single-post-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.single-post-body li {
    margin-bottom: 0.5rem;
}

.single-post-body blockquote {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    border-left: 3px solid var(--accent-blue);
    background: rgba(80, 136, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

.single-post-body blockquote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.single-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

.single-post-body pre {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    overflow-x: auto;
    margin: var(--spacing-md) 0;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
}

.single-post-body code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.15em 0.4em;
    border-radius: 4px;
}

.single-post-body pre code {
    background: none;
    padding: 0;
}

/* Post Tags */
.single-post-tags {
    max-width: 720px;
    margin: var(--spacing-lg) auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.single-post-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    text-decoration: none;
}

.single-post-tag:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    background: rgba(80, 136, 255, 0.08);
}

/* Share Section */
.single-post-share {
    max-width: 720px;
    margin: var(--spacing-lg) auto 0;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-post-share-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.single-post-share-links {
    display: flex;
    gap: 0.75rem;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.2s ease;
    cursor: pointer;
}

.share-link:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    background: rgba(80, 136, 255, 0.08);
}

.share-link i {
    width: 18px;
    height: 18px;
}

.share-copy.copied {
    color: var(--accent-green);
    border-color: var(--accent-green);
}

/* Related Posts Section */
.blog-related-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.blog-related-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Blog Responsive
   ============================================ */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding-top: 130px;
        padding-bottom: var(--spacing-lg);
    }

    .blog-featured-link {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: var(--spacing-md);
    }

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

    .blog-card-footer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .single-post-hero {
        padding-top: 120px;
    }

    .single-post-share {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .single-post-body {
        font-size: 1rem;
    }
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 140px var(--spacing-md) var(--spacing-xl);
    overflow: hidden;
}

.error-404-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Blue radial glow — same language as hero-screenshot-glow & platform-glow */
.error-404-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse 70% 50% at center, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 80%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Status badge — echoes the about-location-tag pattern */
.error-404-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease both;
}

.error-404-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: pulse404 2s ease-in-out infinite;
}

@keyframes pulse404 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Heading row — large 404 + divider + text */
.error-404-heading {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.error-404-code {
    font-size: clamp(4rem, 10vw, 7.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.error-404-divider {
    width: 1px;
    height: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.5), transparent);
    flex-shrink: 0;
}

.error-404-text {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--text-secondary);
    text-align: left;
}

/* Description */
.error-404-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Action buttons */
.error-404-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-404-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.btn-404-outline:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.06);
    color: var(--text-primary);
}

/* Decorative grid lines — subtle tech aesthetic */
.error-404-grid-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.error-404-grid-line {
    position: absolute;
    background: var(--border-color);
    opacity: 0.4;
}

.error-404-grid-line--h {
    left: 0;
    right: 0;
    height: 1px;
}

.error-404-grid-line--h:nth-child(1) { top: 25%; }
.error-404-grid-line--h:nth-child(2) { top: 50%; }
.error-404-grid-line--h:nth-child(3) { top: 75%; }

.error-404-grid-line--v {
    top: 0;
    bottom: 0;
    width: 1px;
}

.error-404-grid-line--v:nth-child(4) { left: 20%; }
.error-404-grid-line--v:nth-child(5) { left: 50%; }
.error-404-grid-line--v:nth-child(6) { right: 20%; }

/* Glowing intersection nodes */
.error-404-node {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
    animation: pulse404 3s ease-in-out infinite;
}

.error-404-node--1 { top: 25%; left: 20%; animation-delay: 0s; }
.error-404-node--2 { top: 50%; right: 20%; animation-delay: 1s; }
.error-404-node--3 { top: 75%; left: 50%; animation-delay: 2s; }

/* Mobile adjustments */
@media (max-width: 600px) {
    .error-404-heading {
        flex-direction: column;
        gap: 0.5rem;
    }

    .error-404-divider {
        width: clamp(3rem, 30vw, 5rem);
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.5), transparent);
    }

    .error-404-text {
        text-align: center;
    }

    .error-404-actions {
        flex-direction: column;
        width: 100%;
    }

    .error-404-actions .btn,
    .error-404-actions .btn-404-outline {
        width: 100%;
    }
}

/* ==========================================================================
   Legal pages (Trademarks, Privacy, Terms) — added 2026-04-08
   ========================================================================== */
.legal-page {
    background: #08090A;
    color: #e5e7eb;
    padding: 120px 24px 96px;
    min-height: 60vh;
}
.legal-container {
    max-width: 820px;
    margin: 0 auto;
}
.legal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
    margin-bottom: 40px;
}
.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.legal-subtitle {
    color: #9ca3af;
    font-size: 0.95rem;
    margin: 0;
}
.legal-content h2 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-top: 36px;
    margin-bottom: 12px;
}
.legal-content p,
.legal-content li {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 1rem;
}
.legal-content a {
    color: #7dd3fc;
    text-decoration: underline;
}
.legal-content .trademark-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.legal-content .trademark-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
}
.legal-footnote {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #6b7280;
    font-size: 0.875rem;
}

/* Footer trademark notice */
.footer-trademark-notice {
    font-size: 0.75rem;
    color: #9ca3af;
    max-width: 900px;
    margin: 8px auto 0;
    line-height: 1.5;
    text-align: center;
}
.footer-trademark-notice a {
    color: #9ca3af;
    text-decoration: underline;
}


/* ============================================================
   v1.0.20.2 — Press / Newsroom section (clean white, typography-led)
   ============================================================ */

.press-page {
	background: #ffffff;
	color: #000029;
	min-height: 100vh;
}

.press-container {
	max-width: 880px;
	margin: 0 auto;
}

/* --- Intro section (white, big title typography) --- */

.press-intro {
	background: #ffffff;
	padding: 6rem 1.5rem 2.5rem;
}

.press-intro .press-archive-title {
	font-size: 3.5rem;
	letter-spacing: -0.02em;
	margin: 0 0 0.875rem;
}

.press-intro .press-title {
	font-size: 2.75rem;
	letter-spacing: -0.015em;
	margin: 0 0 1.25rem;
}

.press-intro .press-archive-subtitle {
	margin: 0;
	max-width: 640px;
}

.press-intro .press-dateline {
	margin: 0;
}

.press-intro .press-breadcrumb {
	margin-bottom: 1.5rem;
}

/* --- Body section (divider above list/content) --- */

.press-body {
	background: #ffffff;
	padding: 0 1.5rem 5rem;
}

.press-body > .press-container {
	border-top: 1px solid #e2e5eb;
	padding-top: 2.5rem;
}

/* Archive-only: soft off-white background for the listing area —
   the color shift below the intro replaces the need for a divider line,
   and the white cards float on the soft background. */
.press-archive .press-body {
	background: #fafbfd;
	padding: 3.5rem 1.5rem 5rem;
}

.press-archive .press-body > .press-container {
	border-top: none;
	padding-top: 0;
}

.press-breadcrumb {
	margin-bottom: 2rem;
}

.press-breadcrumb a {
	color: #6b7280;
	text-decoration: none;
	font-size: 0.875rem;
	font-family: 'Roboto', -apple-system, system-ui, 'Segoe UI', sans-serif;
}

.press-breadcrumb a:hover {
	color: #0054ff;
}

.press-eyebrow {
	color: #6fca00;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.press-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #000029;
	line-height: 1.15;
	margin: 0 0 1rem;
	font-family: 'Roboto', -apple-system, system-ui, 'Segoe UI', sans-serif;
}

.press-dateline {
	color: #4b5563;
	font-size: 0.9375rem;
	font-style: italic;
	margin: 0 0 2.5rem;
}

.press-dateline strong {
	color: #000029;
	font-style: normal;
	letter-spacing: 0.04em;
}

.press-actions {
	margin-bottom: 2rem;
}

.btn-press-pdf {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: #ffffff;
	border: 1px solid #e2e5eb;
	border-radius: 6px;
	color: #000029;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.15s;
}

.btn-press-pdf:hover {
	background: #f8f9fb;
	border-color: #0054ff;
	color: #0054ff;
}

.btn-press-pdf i {
	width: 16px;
	height: 16px;
}

.press-content {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #000029;
}

.press-content p {
	margin: 0 0 1.25rem;
}

.press-content p:first-child::first-letter {
	font-weight: 600;
}

.press-content h2,
.press-content h3 {
	color: #000029;
	margin: 2rem 0 1rem;
}

.press-content h2 { font-size: 1.5rem; }
.press-content h3 { font-size: 1.25rem; }

.press-content blockquote {
	border-left: 3px solid #6fca00;
	padding: 0.5rem 0 0.5rem 1.5rem;
	margin: 1.5rem 0;
	font-style: italic;
	color: #4b5563;
}

.press-content a {
	color: #0054ff;
	text-decoration: underline;
}

.press-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e5eb;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.press-label {
	color: #6b7280;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 0.375rem;
}

.press-value {
	color: #000029;
	font-size: 0.9375rem;
	margin: 0;
}

.press-value a {
	color: #0054ff;
	text-decoration: none;
}

.press-boilerplate {
	margin-top: 3rem;
	padding: 1.75rem;
	background: #f8f9fb;
	border-left: 4px solid #6fca00;
	border-radius: 4px;
}

.press-boilerplate h3 {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	color: #000029;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.press-boilerplate p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #4b5563;
}

.press-boilerplate p a {
	color: #0054FF;
	text-decoration: underline;
	font-weight: 600;
}

.press-pagination {
	margin-top: 3rem;
}

.press-back-link {
	color: #6b7280;
	text-decoration: none;
	font-size: 0.875rem;
}

.press-back-link:hover {
	color: #0054ff;
}

/* Archive (landing) styles */

.press-archive-header {
	margin-bottom: 3rem;
	text-align: left;
}

.press-archive-title {
	font-size: 3rem;
	font-weight: 700;
	color: #000029;
	margin: 0 0 0.75rem;
	font-family: 'Roboto', -apple-system, system-ui, 'Segoe UI', sans-serif;
}

.press-archive-subtitle {
	color: #4b5563;
	font-size: 1.0625rem;
	margin: 0;
}

.press-list-item {
	background: #ffffff;
	border: 1px solid #e2e5eb;
	border-radius: 10px;
	padding: 1.75rem 2rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 1px 3px rgba(0, 0, 41, 0.04), 0 6px 16px rgba(0, 0, 41, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.press-list-item:last-child {
	margin-bottom: 0;
}

.press-list-item:hover {
	transform: translateY(-2px);
	border-color: #d4d8e0;
	box-shadow: 0 6px 16px rgba(0, 0, 41, 0.06), 0 16px 32px rgba(0, 0, 41, 0.08);
}

.press-list-date {
	color: #6b7280;
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	margin: 0 0 0.5rem;
}

.press-list-sep { margin: 0 0.5rem; }

.press-list-title {
	margin: 0 0 0.5rem;
	font-size: 1.5rem;
	line-height: 1.25;
}

.press-list-title a {
	color: #000029;
	text-decoration: none;
}

.press-list-title a:hover {
	color: #0054ff;
}

.press-list-excerpt {
	color: #4b5563;
	font-size: 0.9375rem;
	line-height: 1.55;
	margin: 0 0 0.75rem;
}

.press-list-readmore {
	color: #0054ff;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
}

.press-list-readmore:hover {
	text-decoration: underline;
}

/* --- Media Inquiries footer block (archive page) --- */

.press-contact-block {
	margin-top: 3rem;
	padding: 2.5rem 2rem;
	background: #ffffff;
	border: 1px solid #e2e5eb;
	border-left: 4px solid #6fca00;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 41, 0.04);
}

.press-contact-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6fca00;
	margin: 0 0 0.875rem;
}

.press-contact-lead {
	font-size: 1.0625rem;
	color: #000029;
	line-height: 1.55;
	margin: 0 auto 1rem;
	max-width: 540px;
}

.press-contact-lead a {
	color: #0054ff;
	text-decoration: none;
	font-weight: 500;
}

.press-contact-lead a:hover {
	text-decoration: underline;
}

.press-contact-actions {
	margin: 0;
	font-size: 0.9375rem;
}

.press-contact-actions a {
	color: #0054ff;
	text-decoration: none;
	font-weight: 500;
}

.press-contact-actions a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.press-intro { padding: 4rem 1rem 2rem; }
	.press-body { padding: 0 1rem 4rem; }
	.press-archive .press-body { padding: 2.5rem 1rem 4rem; }
	.press-intro .press-title { font-size: 1.875rem; }
	.press-intro .press-archive-title { font-size: 2.5rem; }
	.press-footer { grid-template-columns: 1fr; gap: 1.25rem; }
	.press-list-item { padding: 1.5rem 1.25rem; }
	.press-contact-block { padding: 2rem 1.25rem; margin-top: 2rem; }
}


/* ============================================================
   v1.0.20 — Product detail pages
   ============================================================ */

.product-page {
	background: #ffffff;
	color: #000029;
	padding: 8rem 1.5rem 6rem;
	min-height: 100vh;
}

.product-archive {
	background: #ffffff;
	color: #000029;
	padding: 8rem 1.5rem 6rem;
	min-height: 100vh;
}

.product-container {
	max-width: 920px;
	margin: 0 auto;
}

.product-breadcrumb {
	margin-bottom: 1.5rem;
}

.product-breadcrumb a {
	color: #6b7280;
	text-decoration: none;
	font-size: 0.875rem;
}

.product-breadcrumb a:hover {
	color: #0054ff;
}

.product-status-pill {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: #6fca00;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 9999px;
	margin-bottom: 1rem;
}

.product-accent-blue .product-status-pill { background: #0054ff; }

.product-title {
	font-size: 3rem;
	font-weight: 700;
	color: #000029;
	margin: 0 0 0.75rem;
	line-height: 1.1;
	font-family: 'Roboto', -apple-system, system-ui, 'Segoe UI', sans-serif;
}

.product-tagline {
	color: #6fca00;
	font-size: 1.25rem;
	font-weight: 500;
	margin: 0 0 2rem;
	font-style: italic;
}

.product-accent-blue .product-tagline { color: #0054ff; }

.product-hero-video {
	margin: 0 0 2.5rem;
	border-radius: 8px;
	overflow: hidden;
	background: #000029;
	box-shadow: 0 8px 32px rgba(0, 0, 41, 0.12);
}

.product-video-player,
.product-video-embed iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	display: block;
	border: 0;
}

.product-video-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.product-video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.product-content {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #000029;
}

.product-content p { margin: 0 0 1.25rem; }
.product-content h2, .product-content h3 { color: #000029; margin: 2rem 0 1rem; }
.product-content h2 { font-size: 1.5rem; }
.product-content h3 { font-size: 1.25rem; }
.product-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.product-content li { margin: 0 0 0.5rem; }
.product-content a { color: #0054ff; }

.product-cta-section {
	margin: 3rem 0;
	text-align: center;
	padding: 2rem;
	background: #f8f9fb;
	border-radius: 8px;
}

.btn-product-cta {
	display: inline-block;
	padding: 0.875rem 2rem;
	background: #6fca00;
	color: #000029;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.15s;
}

.product-accent-blue .btn-product-cta { background: #0054ff; color: #ffffff; }

.btn-product-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(111, 202, 0, 0.3);
}

.product-other {
	margin-top: 4rem;
	padding-top: 2.5rem;
	border-top: 1px solid #e2e5eb;
}

.product-other-title {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b7280;
	margin: 0 0 1.5rem;
}

.product-other-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.75rem;
}

.product-other-card a {
	display: block;
	padding: 1rem 1.25rem;
	background: #f8f9fb;
	border-left: 3px solid #6fca00;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.15s;
}

.product-other-card.accent-blue a { border-left-color: #0054ff; }

.product-other-card a:hover {
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 41, 0.08);
}

.product-other-name {
	display: block;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #000029;
	margin-bottom: 0.25rem;
}

.product-other-tag {
	display: block;
	font-size: 0.75rem;
	color: #6fca00;
	font-style: italic;
}

.product-other-card.accent-blue .product-other-tag { color: #0054ff; }

/* Product archive */

.product-archive-eyebrow {
	color: #6fca00;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.product-archive-title {
	font-size: 3rem;
	font-weight: 700;
	color: #000029;
	margin: 0 0 1rem;
	font-family: 'Roboto', -apple-system, system-ui, 'Segoe UI', sans-serif;
}

.product-archive-subtitle {
	color: #4b5563;
	font-size: 1.125rem;
	line-height: 1.5;
	margin: 0 0 3rem;
	max-width: 720px;
}

.product-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.product-grid-item {
	background: #ffffff;
	border: 1px solid #e2e5eb;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.15s;
}

.product-grid-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 41, 0.08);
	border-color: #0054ff;
}

.product-grid-item a {
	display: block;
	padding: 1.75rem;
	color: #000029;
	text-decoration: none;
	position: relative;
}

.product-grid-item.accent-green a { border-top: 3px solid #6fca00; }
.product-grid-item.accent-blue a { border-top: 3px solid #0054ff; }

.product-grid-pill {
	display: inline-block;
	padding: 0.2rem 0.625rem;
	background: #f8f9fb;
	color: #6b7280;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 9999px;
	margin-bottom: 0.75rem;
}

.product-grid-name {
	font-size: 1.375rem;
	margin: 0 0 0.375rem;
	font-weight: 700;
}

.product-grid-tagline {
	color: #6fca00;
	font-size: 0.9375rem;
	font-style: italic;
	margin: 0 0 0.875rem;
}

.product-grid-item.accent-blue .product-grid-tagline { color: #0054ff; }

.product-grid-excerpt {
	color: #4b5563;
	font-size: 0.9375rem;
	line-height: 1.55;
	margin: 0 0 1rem;
}

.product-grid-cta {
	display: inline-block;
	color: #0054ff;
	font-size: 0.875rem;
	font-weight: 500;
}

@media (max-width: 768px) {
	.product-page, .product-archive { padding: 6rem 1rem 4rem; }
	.product-title { font-size: 2rem; }
	.product-archive-title { font-size: 2.25rem; }
	.product-grid { grid-template-columns: 1fr; }
}
