/* ABOUT SECTION - ELECTRIC POP STYLE WITH DARK/LIGHT MODE */

/* --- VARIABLES --- */
:root {
    --about-orange: #ff9201;
    --about-blue: #00b1e1;
    --about-bg: #0d0d0d;
    --about-text-white: #ffffff;
    --about-text-gray: #a9a9a9;
    --about-border: #333333;
}

body:not(.dark-mode) {
    --about-bg: #ffffff;
    --about-text-white: #0d0d0d;
    --about-text-gray: #666666;
    --about-border: #e0e0e0;
}

/* --- ABOUT SECTION BASE --- */
.about {
    background-color: var(--about-bg);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements - Portfolio Style */
.about-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.about-floating-shape {
    position: absolute;
    opacity: 0.4;
    animation: about-float-shapes 15s infinite ease-in-out;
}

.about-shape-1 {
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.about-shape-2 {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    top: 70%;
    right: 15%;
    animation-delay: -4s;
    animation-duration: 16s;
}

.about-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: 25%;
    left: 5%;
    animation-delay: -8s;
    animation-duration: 14s;
}

.about-shape-4 {
    width: 60px;
    height: 60px;
    background: var(--gradient-4);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 40%;
    right: 5%;
    animation-delay: -2s;
    animation-duration: 18s;
}

.about-shape-5 {
    width: 90px;
    height: 90px;
    background: var(--gradient-5);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 20%;
    right: 25%;
    animation-delay: -6s;
    animation-duration: 13s;
}

.about-shape-6 {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    bottom: 15%;
    right: 30%;
    animation-delay: -10s;
    animation-duration: 15s;
}

.about-shape-7 {
    width: 110px;
    height: 110px;
    background: var(--gradient-2);
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    top: 55%;
    left: 20%;
    animation-delay: -5s;
    animation-duration: 17s;
}

.about-shape-8 {
    width: 85px;
    height: 85px;
    background: var(--gradient-3);
    border-radius: 50%;
    bottom: 40%;
    right: 8%;
    animation-delay: -12s;
    animation-duration: 14s;
}

@keyframes about-float-shapes {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(40px, -30px) rotate(120deg) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(-20px, -40px) rotate(300deg) scale(1.1);
        opacity: 0.5;
    }
}

/* Floating Particles */
.about-floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.about-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--about-orange);
    border-radius: 50%;
    opacity: 0.7;
    animation: about-particle-rise 8s infinite linear;
}

.about-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.about-particle:nth-child(2) { left: 20%; animation-delay: -1s; background: var(--about-blue); }
.about-particle:nth-child(3) { left: 30%; animation-delay: -2s; }
.about-particle:nth-child(4) { left: 40%; animation-delay: -3s; background: var(--about-blue); }
.about-particle:nth-child(5) { left: 50%; animation-delay: -4s; }
.about-particle:nth-child(6) { left: 60%; animation-delay: -5s; background: var(--about-blue); }
.about-particle:nth-child(7) { left: 70%; animation-delay: -6s; }
.about-particle:nth-child(8) { left: 80%; animation-delay: -7s; background: var(--about-blue); }
.about-particle:nth-child(9) { left: 90%; animation-delay: -8s; }
.about-particle:nth-child(10) { left: 15%; animation-delay: -9s; background: var(--about-blue); }
.about-particle:nth-child(11) { left: 45%; animation-delay: -10s; }
.about-particle:nth-child(12) { left: 75%; animation-delay: -11s; background: var(--about-blue); }

@keyframes about-particle-rise {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(180deg);
        opacity: 0;
    }
}

/* Grain Effect */
.about::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

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

/* --- HERO HEADER --- */
.about-hero-title {
    font-size: clamp(3rem, 10vw, 10rem);
    line-height: 0.85;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--about-text-white);
    margin-bottom: 2rem;
}

.about-hero-blurb {
    max-width: 600px;
    font-size: 1.1rem;
    color: var(--about-text-gray);
    border-bottom: 2px solid var(--about-blue);
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* --- STORY SECTION --- */
.story-section-about {
    padding: 6rem 0;
}

/* Solar System - Big Rotating Logo with Orbiting Dots */
.rotating-orbs-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Center Logo - Rotates on itself */
.center-logo {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    animation: spin 15s linear infinite;
}

.center-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 146, 1, 0.4));
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3 Orbit Rings */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring {
    position: absolute;
    border: 2px solid rgba(0, 177, 225, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring-1 {
    width: 280px;
    height: 280px;
    animation: rotate 15s linear infinite;
}

.orbit-ring-2 {
    width: 360px;
    height: 360px;
    animation: rotate 20s linear infinite;
}

.orbit-ring-3 {
    width: 450px;
    height: 450px;
    animation: rotate 25s linear infinite;
}

/* Orbiting Dots/Planets - One per ring */
.orb {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--about-blue), rgba(0, 177, 225, 0.6));
    box-shadow: 0 0 20px rgba(0, 177, 225, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.orb:hover {
    transform: scale(1.5);
    box-shadow: 0 0 30px rgba(0, 177, 225, 0.9);
}

/* Position orbs on their respective rings */
.orb-1 {
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-2 {
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-3 {
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive */
.values-list-wrap::-webkit-scrollbar-thumb:active {
    background: var(--about-blue);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    font-weight: 900;
    color: var(--about-orange);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.story-box {
    margin-bottom: 3rem;
    padding: 2rem;
    border: 1px solid var(--about-border);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body:not(.dark-mode) .story-box {
    background: rgba(0, 0, 0, 0.02);
}

.story-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 146, 1, 0.1);
}

.story-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: var(--about-orange);
}

.story-box-blue::before {
    background: var(--about-blue);
}

.story-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--about-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-box-blue h4 {
    color: var(--about-blue);
}

.story-box p {
    font-weight: 300;
    color: var(--about-text-gray);
    line-height: 1.7;
}

/* --- VISION & MISSION --- */
.vm-section {
    padding: 6rem 0;
    border-top: 1px solid var(--about-border);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.vm-item h3 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.vm-item p {
    font-weight: 300;
    color: var(--about-text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.vm-item p.vm-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.vm-bullets {
    list-style: none;
    margin-top: 1rem;
}

.vm-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
    color: var(--about-text-gray);
}

.vm-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--about-blue);
    font-weight: 900;
}

/* --- VALUES SECTION --- */
.values-section-about {
    padding: 6rem 0 1rem;
}

.values-header {
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--about-text-white);
}

.values-list-wrap {
    overflow-x: auto;
    padding-bottom: 3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--about-orange) rgba(0, 0, 0, 0.1);
}

.values-list-wrap::-webkit-scrollbar {
    height: 8px;
}

.values-list-wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

body:not(.dark-mode) .values-list-wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.values-list-wrap::-webkit-scrollbar-thumb {
    background: var(--about-orange);
    border-radius: 10px;
}

.values-list-wrap::-webkit-scrollbar-thumb:hover {
    background: var(--about-blue);
}

.values-list {
    display: flex;
    gap: 2rem;
    width: fit-content;
}

.value-card {
    width: 350px;
    min-height: 400px;
    border: 1px solid var(--about-border);
    padding: 2.5rem;
    flex-shrink: 0;
    position: relative;
    transition: 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
}

body:not(.dark-mode) .value-card {
    background: rgba(0, 0, 0, 0.01);
}

.value-card:hover {
    border-color: var(--about-orange);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 146, 1, 0.15);
}

.value-card h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
    color: var(--about-text-white);
}

.value-card:hover h4 {
    color: var(--about-blue);
}

.value-card p {
    color: var(--about-text-gray);
    font-weight: 300;
    line-height: 1.7;
}

.value-num-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.1;
    z-index: 1;
}

.value-card:nth-child(odd) .value-num-bg {
    color: var(--about-orange);
}

.value-card:nth-child(even) .value-num-bg {
    color: var(--about-blue);
}

/* --- INDUSTRIES SECTION --- */
.industries-section {
    margin-top: 6rem;
}

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

.industries-header h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.industries-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- TICKER --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 3rem 0;
    border-top: 1px solid var(--about-orange);
    border-bottom: 1px solid var(--about-orange);
    background: var(--about-bg);
}

.ticker {
    display: inline-block;
    animation: marquee 50s linear infinite;
}

.ticker-item {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 2rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

body:not(.dark-mode) .ticker-item {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.ticker-item:hover {
    color: var(--about-blue);
    -webkit-text-stroke: 0;
}

.ticker-item strong {
    color: var(--about-orange);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- FOOTER CONTACT --- */
.about-footer-section {
    padding: 6rem 0 4rem;
    border-top: 1px solid var(--about-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.contact-cta h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: var(--about-text-white);
    line-height: 1.2;
}

.contact-cta p {
    font-weight: 300;
    color: var(--about-text-gray);
    line-height: 1.7;
}

.contact-cta a {
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 900;
    color: var(--about-orange);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-cta a:hover {
    color: var(--about-blue);
}

.loc-header {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--about-orange);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.loc-list {
    list-style: none;
}

.loc-list li {
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: var(--about-text-gray);
}

.loc-list li strong {
    color: var(--about-text-white);
    font-weight: 600;
}

.contact-info a {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--about-text-white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--about-blue);
}

/* --- UTILITY CLASSES --- */
.text-orange { color: var(--about-orange) !important; }
.text-blue { color: var(--about-blue) !important; }
.text-white { color: var(--about-text-white) !important; }
.text-gray { color: var(--about-text-gray) !important; }
.font-black { font-weight: 900; letter-spacing: -0.02em; }
.font-light { font-weight: 300; }

/* --- RESPONSIVE --- */

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .about { padding: 4rem 0; }
    .container { padding: 0 1.5rem; }
    .about-hero-title { font-size: 2.5rem; }
    .about-hero-blurb { padding-left: 0; padding-right: 0; }
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .story-title { font-size: 2rem; }
    .story-box { padding: 1.5rem; margin-bottom: 2rem; }
    .rotating-orbs-container { min-height: 250px; }
    .center-logo { width: 120px; height: 120px; }
    .orbit-ring-1 { width: 180px; height: 180px; }
    .orbit-ring-2 { width: 220px; height: 220px; }
    .orbit-ring-3 { width: 260px; height: 260px; }
    .orb { width: 12px; height: 12px; }
    .vm-section { padding: 4rem 0; }
    .vm-grid { grid-template-columns: 1fr; gap: 2rem; }
    .vm-item h3 { font-size: 1.8rem; }
    .values-section-about { padding: 4rem 0 1rem; }
    .values-header h2 { font-size: 2.5rem; }
    .value-card { width: 280px; min-height: 320px; padding: 1.5rem; }
    .value-card h4 { font-size: 1.3rem; }
    .value-num-bg { font-size: 3.5rem; }
    .ticker-item { font-size: 1.5rem; }
    .about-footer-section { padding: 4rem 0 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-cta h3 { font-size: 1.8rem; }
}

/* Medium Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .about { padding: 5rem 0; }
    .container { padding: 0 2rem; }
    .about-hero-title { font-size: 3rem; }
    .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .story-box { padding: 1.75rem; }
    .rotating-orbs-container { min-height: 280px; }
    .center-logo { width: 140px; height: 140px; }
    .orbit-ring-1 { width: 200px; height: 200px; }
    .orbit-ring-2 { width: 250px; height: 250px; }
    .orbit-ring-3 { width: 300px; height: 300px; }
    .vm-section { padding: 5rem 0; }
    .vm-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .values-section-about { padding: 5rem 0 1rem; }
    .value-card { width: 300px; min-height: 350px; }
    .ticker-item { font-size: 1.8rem; }
    .about-footer-section { padding: 5rem 0 3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Large Mobile / Small Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container { padding: 0 2.5rem; }
    .about-hero-title { font-size: 4rem; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .rotating-orbs-container { min-height: 320px; }
    .center-logo { width: 160px; height: 160px; }
    .orbit-ring-1 { width: 240px; height: 240px; }
    .orbit-ring-2 { width: 300px; height: 300px; }
    .orbit-ring-3 { width: 360px; height: 360px; }
    .vm-grid { grid-template-columns: 1fr; gap: 3rem; }
    .value-card { width: 320px; }
    .ticker-item { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* Medium Tablet / Small Laptop (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .about-hero-title { font-size: 6rem; }
    .story-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .vm-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .value-card { width: 340px; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}

/* Large Laptop / Small Monitor (1367px - 1920px) */
@media (min-width: 1367px) and (max-width: 1920px) {
    .about-hero-title { font-size: 8rem; }
    .story-grid { gap: 4rem; }
    .vm-grid { gap: 5rem; }
    .value-card { width: 350px; }
}

/* Medium Monitor (1921px - 2560px) */
@media (min-width: 1921px) and (max-width: 2560px) {
    .container { max-width: 1800px; }
    .about-hero-title { font-size: 10rem; }
    .story-grid { gap: 5rem; }
    .rotating-orbs-container { min-height: 500px; }
    .center-logo { width: 240px; height: 240px; }
    .orbit-ring-1 { width: 320px; height: 320px; }
    .orbit-ring-2 { width: 420px; height: 420px; }
    .orbit-ring-3 { width: 520px; height: 520px; }
    .orb { width: 22px; height: 22px; }
    .vm-grid { gap: 6rem; }
    .value-card { width: 400px; min-height: 450px; padding: 3rem; }
    .ticker-item { font-size: 3.5rem; }
}

/* Large Monitor / Ultrawide (2561px - 3440px) */
@media (min-width: 2561px) and (max-width: 3440px) {
    .container { max-width: 2200px; }
    .about-hero-title { font-size: 12rem; }
    .story-grid { gap: 6rem; }
    .rotating-orbs-container { min-height: 600px; }
    .center-logo { width: 280px; height: 280px; }
    .orbit-ring-1 { width: 380px; height: 380px; }
    .orbit-ring-2 { width: 500px; height: 500px; }
    .orbit-ring-3 { width: 620px; height: 620px; }
    .orb { width: 26px; height: 26px; }
    .value-card { width: 450px; min-height: 500px; padding: 3.5rem; }
    .ticker-item { font-size: 4rem; }
}

/* 49" Odyssey OLED G9 (5120x1440) */
@media (min-width: 3441px) and (max-width: 5120px) {
    .container { max-width: 2800px; }
    .about-hero-title { font-size: 14rem; }
    .story-grid { gap: 8rem; }
    .rotating-orbs-container { min-height: 700px; }
    .center-logo { width: 320px; height: 320px; }
    .orbit-ring-1 { width: 440px; height: 440px; }
    .orbit-ring-2 { width: 580px; height: 580px; }
    .orbit-ring-3 { width: 720px; height: 720px; }
    .orb { width: 30px; height: 30px; }
    .value-card { width: 500px; min-height: 550px; padding: 4rem; }
    .ticker-item { font-size: 4.5rem; }
}

/* 57" Odyssey Neo G9 (7680x2160) */
@media (min-width: 5121px) {
    .container { max-width: 3600px; }
    .about-hero-title { font-size: 16rem; }
    .story-grid { gap: 10rem; }
    .rotating-orbs-container { min-height: 800px; }
    .center-logo { width: 360px; height: 360px; }
    .orbit-ring-1 { width: 500px; height: 500px; }
    .orbit-ring-2 { width: 660px; height: 660px; }
    .orbit-ring-3 { width: 820px; height: 820px; }
    .orb { width: 34px; height: 34px; }
    .value-card { width: 550px; min-height: 600px; padding: 4.5rem; }
    .ticker-item { font-size: 5rem; }
}

/* Vertical Monitors (Portrait) */
@media (orientation: portrait) and (min-width: 1080px) {
    .story-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-list-wrap { padding: 0 2rem 3rem; }
}

/* Horizontal Monitors (Landscape) - Ultrawide optimization */
@media (orientation: landscape) and (min-aspect-ratio: 21/9) {
    .story-grid { gap: 6rem; }
    .vm-grid { gap: 8rem; }
    .values-list { gap: 3rem; }
}
