 :root { --burgundy: #8B1538; --burgundy-dark: #6A1029; --burgundy-light: #A91E47; --gold: #C9A227; --gold-light: #E5C65C; --gold-dark: #9A7B1A; --cream: #FFF8F0; --cream-dark: #F5EDE3; --rose: #F4E4E4; --teal: #2A6B6B; --charcoal: #1A1A1A; --gray: #6B6B6B; --gray-light: #9A9A9A; --white: #FFFFFF; --font-display: 'Sora', sans-serif; --font-body: 'Inter', sans-serif; --font-accent: 'Space Grotesk', sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); line-height: 1.7; } h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; } h1 { font-size: clamp(2.5rem, 5vw, 4rem); } h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); } h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); } a { color: inherit; text-decoration: none; transition: all 0.3s ease; } .container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); } .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.75rem; font-family: var(--font-accent); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; border: none; } .btn-primary { background: var(--burgundy); color: var(--cream); } .btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,21,56,0.3); } .btn-secondary { background: transparent; color: var(--burgundy); border: 2px solid var(--burgundy); } .btn-secondary:hover { background: var(--burgundy); color: var(--cream); } .btn-gold { background: var(--gold); color: var(--charcoal); } .btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); } .btn-light { background: var(--white); color: var(--burgundy); } section { padding: clamp(3rem, 6vw, 5rem) 0; } .section-label { font-family: var(--font-accent); font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; } .section-title { color: var(--burgundy); margin-bottom: 1rem; } .section-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 650px; } .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0.9rem 0; transition: all 0.3s ease; background: rgba(255,248,240,0.9); backdrop-filter: blur(10px); } .nav.scrolled { background: rgba(255,248,240,0.95); backdrop-filter: blur(15px); box-shadow: 0 2px 20px rgba(139,21,56,0.1); } .nav-inner { display: flex; align-items: center; justify-content: space-between; } .nav-logo { display: flex; align-items: center; gap: 0.4rem; } .nav-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--burgundy); letter-spacing: 3px; text-transform: uppercase; } .nav-logo-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; } .nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; } .nav-link { font-family: var(--font-accent); font-size: 0.8rem; font-weight: 600; color: var(--charcoal); text-transform: uppercase; letter-spacing: 1px; padding: 0.4rem 0; position: relative; } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; } .nav-link:hover::after { width: 100%; } .nav-link:hover { color: var(--burgundy); } .nav-dropdown { position: relative; } .nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--white); border-radius: 10px; padding: 0.6rem; min-width: 180px; opacity: 0; visibility: hidden; transition: all 0.3s; box-shadow: 0 15px 40px rgba(139,21,56,0.15); list-style: none; } .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); } .nav-dropdown-item { padding: 0.5rem 0.8rem; border-radius: 6px; } .nav-dropdown-item:hover { background: var(--rose); } .nav-dropdown-item a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; } .nav-cta { padding: 0.6rem 1.2rem; font-size: 0.75rem; } .mobile-menu-btn { display: none; flex-direction: column; gap: 4px; padding: 8px; background: none; border: none; cursor: pointer; } .mobile-menu-btn span { width: 22px; height: 2px; background: var(--burgundy); } .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 999; padding: 5rem 2rem; opacity: 0; visibility: hidden; transition: all 0.3s; } .mobile-nav.active { opacity: 1; visibility: visible; } .mobile-nav-menu { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; } .mobile-nav-link { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: 2px; } .hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--cream) 0%, var(--rose) 60%, var(--cream-dark) 100%); overflow: hidden; } .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; width: 100%; } .hero-content { position: relative; z-index: 10; } .hero-label { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(139,21,56,0.08); padding: 0.5rem 1rem; border-radius: 50px; margin-bottom: 1.25rem; } .hero-label-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); opacity: 0.6; } } .hero-label-text { font-family: var(--font-accent); font-size: 0.75rem; font-weight: 600; color: var(--burgundy); letter-spacing: 1.5px; text-transform: uppercase; } .hero-title { font-size: clamp(2.25rem, 4.5vw, 3.5rem); color: var(--burgundy); margin-bottom: 1.25rem; line-height: 1.15; } .hero-title-accent { color: var(--gold); font-style: italic; } .hero-subtitle { font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: var(--gray); margin-bottom: 1.75rem; line-height: 1.75; } .hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; } .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(139,21,56,0.1); } .hero-stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--burgundy); } .hero-stat-label { font-size: 0.75rem; color: var(--gray); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 1px; } .hero-visual { position: relative; height: 480px; } .hero-graphic { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 450px; height: 450px; } .women-illustration { position: absolute; width: 100%; height: 100%; } .woman-figure { position: absolute; display: flex; flex-direction: column; align-items: center; } .woman-head { width: 44px; height: 50px; border-radius: 50% 50% 45% 45%; position: relative; display: flex; align-items: center; justify-content: center; } .woman-hair { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); z-index: 1; } .woman-face { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -30%); display: flex; flex-direction: column; align-items: center; z-index: 2; } .woman-eyes { display: flex; gap: 8px; justify-content: center; } .woman-eye { width: 5px; height: 3px; background: #333; border-radius: 50% 50% 40% 40%; position: relative; } .woman-eye::after { content: ''; position: absolute; top: -3px; left: -1px; width: 7px; height: 2px; border-top: 1px solid #333; border-radius: 50%; } .woman-smile { width: 8px; height: 4px; border-bottom: 2px solid #333; border-radius: 0 0 50% 50%; margin-top: 4px; } .woman-body { width: 48px; height: 65px; border-radius: 20px 20px 0 0; margin-top: -6px; } .woman-arms { position: absolute; top: 52px; width: 70px; height: 8px; background: inherit; border-radius: 4px; } .woman-1 { top: 30px; left: 50%; transform: translateX(-50%); animation: womanFloat 4s ease-in-out infinite; } .woman-1 .woman-head { background: #FFDFC4; } .woman-1 .woman-hair { background: #1a1a1a; width: 52px; height: 55px; border-radius: 50% 50% 30% 30%; } .woman-1 .woman-body { background: linear-gradient(135deg, var(--burgundy) 0%, #6d1129 100%); } .woman-2 { top: 160px; left: 50px; animation: womanFloat 4s ease-in-out infinite 0.5s; } .woman-2 .woman-head { background: #8D5524; width: 40px; height: 46px; } .woman-2 .woman-hair { background: #2d1810; width: 48px; height: 50px; border-radius: 50%; } .woman-2 .woman-body { background: linear-gradient(135deg, var(--gold) 0%, #9a7a1c 100%); width: 42px; height: 58px; } .woman-3 { top: 160px; right: 50px; animation: womanFloat 4s ease-in-out infinite 1s; } .woman-3 .woman-head { background: #F5D0C5; width: 46px; height: 52px; } .woman-3 .woman-hair { background: #8B4513; width: 56px; height: 45px; border-radius: 50% 50% 20% 20%; } .woman-3 .woman-body { background: linear-gradient(135deg, var(--teal) 0%, #1a5555 100%); width: 52px; height: 70px; } .woman-4 { bottom: 60px; left: 100px; animation: womanFloat 4s ease-in-out infinite 1.5s; } .woman-4 .woman-head { background: #C68642; width: 46px; height: 52px; } .woman-4 .woman-hair { background: #4a4a4a; width: 54px; height: 40px; border-radius: 50% 50% 25% 25%; } .woman-4 .woman-body { background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%); width: 54px; height: 72px; } .woman-5 { bottom: 60px; right: 100px; animation: womanFloat 4s ease-in-out infinite 2s; } .woman-5 .woman-head { background: #E8BEAC; width: 44px; height: 50px; } .woman-5 .woman-hair { background: #c0c0c0; width: 52px; height: 38px; border-radius: 50% 50% 30% 30%; } .woman-5 .woman-body { background: linear-gradient(135deg, #ec407a 0%, #d81b60 100%); width: 50px; height: 68px; } .glow-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 2px solid rgba(139, 21, 56, 0.15); } .glow-ring-1 { width: 320px; height: 320px; animation: pulseRing 3s ease-in-out infinite; } .glow-ring-2 { width: 380px; height: 380px; animation: pulseRing 3s ease-in-out infinite 0.5s; } .glow-ring-3 { width: 440px; height: 440px; animation: pulseRing 3s ease-in-out infinite 1s; } @keyframes womanFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } } .woman-1 { animation: womanFloat 4s ease-in-out infinite; transform: translateX(-50%); } @keyframes pulseRing { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.5; } } .data-line { position: absolute; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); animation: dataFlow 3s ease-in-out infinite; } .data-line-1 { width: 60px; top: 25%; left: 20%; transform: rotate(30deg); } .data-line-2 { width: 45px; top: 40%; right: 15%; transform: rotate(-20deg); animation-delay: -1s; } .data-line-3 { width: 55px; bottom: 30%; left: 25%; transform: rotate(15deg); animation-delay: -2s; } @keyframes dataFlow { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } } .gap-section { background: var(--charcoal); color: var(--cream); } .gap-header { text-align: center; margin-bottom: 2.5rem; } .gap-header .section-label { color: var(--gold); } .gap-header .section-title { color: var(--cream); } .gap-header .section-subtitle { color: rgba(255,248,240,0.7); margin: 0 auto; } .gap-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; } .gap-stat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,162,39,0.2); border-radius: 14px; padding: 1.75rem; text-align: center; transition: all 0.3s; } .gap-stat-card:hover { background: rgba(201,162,39,0.05); border-color: var(--gold); transform: translateY(-4px); } .gap-stat-icon { width: 50px; height: 50px; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .gap-stat-icon svg { width: 24px; height: 24px; stroke: white; stroke-width: 1.5; fill: none; } .gap-stat-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); } .gap-stat-label { font-size: 0.9rem; color: var(--cream); margin: 0.5rem 0; text-transform: uppercase; letter-spacing: 1px; } .gap-stat-desc { font-size: 0.85rem; color: rgba(255,248,240,0.6); } .tech-section { background: linear-gradient(180deg, var(--cream), var(--white)); } .tech-header { text-align: center; margin-bottom: 2.5rem; } .tech-header .section-subtitle { margin: 0 auto; } .tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; } .tech-card { background: var(--white); border-radius: 16px; padding: 1.75rem; transition: all 0.4s; border: 1px solid transparent; position: relative; overflow: hidden; } .tech-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--burgundy), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; } .tech-card:hover::before { transform: scaleX(1); } .tech-card:hover { border-color: rgba(139,21,56,0.1); box-shadow: 0 20px 60px rgba(139,21,56,0.1); transform: translateY(-6px); } .tech-card-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .tech-card-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 1.5; fill: none; } .tech-card-icon.ai { background: linear-gradient(135deg, #667eea, #764ba2); } .tech-card-icon.blockchain { background: linear-gradient(135deg, var(--teal), #1a4a4a); } .tech-card-icon.quantum { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); } .tech-card-icon.spatial { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); } .sana-exclusive-icon { width: 80px; height: 80px; position: relative; margin-bottom: 1rem; } .sana-exclusive-icon .sana-icon-outer { width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, var(--burgundy), var(--gold)); padding: 3px; } .sana-exclusive-icon .sana-icon-inner { width: 100%; height: 100%; background: var(--burgundy); border-radius: 17px; display: flex; align-items: center; justify-content: center; } .sana-exclusive-icon .sana-icon-letter { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--cream); } .sana-exclusive-icon .sana-icon-pulse { position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; border: 2px solid var(--gold); border-radius: 24px; animation: sanaPulse 2s ease-in-out infinite; opacity: 0.5; } @keyframes sanaPulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.08); opacity: 0.2; } } .tech-card-title { font-size: 1.15rem; color: var(--burgundy); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 1px; } .tech-card-subtitle { font-family: var(--font-accent); font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem; } .tech-card-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; } .tech-card-features { list-style: none; } .tech-card-features li { font-size: 0.85rem; color: var(--charcoal); padding: 0.3rem 0; padding-left: 1.1rem; position: relative; } .tech-card-features li::before { content: '→'; position: absolute; left: 0; color: var(--gold); } .abqs-diagram-section { background: var(--rose); padding: 3rem 0; } .abqs-visual { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1.5rem; } .abqs-center { width: 160px; height: 160px; background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--cream); box-shadow: 0 20px 60px rgba(139,21,56,0.3); } .abqs-center h3 { font-size: 1.5rem; letter-spacing: 2px; } .abqs-center span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.8; } .abqs-node { width: 100px; height: 100px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; box-shadow: 0 12px 35px rgba(0,0,0,0.15); transition: transform 0.3s; } .abqs-node:hover { transform: scale(1.08); } .abqs-node.ai { background: linear-gradient(135deg, #667eea, #764ba2); } .abqs-node.blockchain { background: linear-gradient(135deg, var(--teal), #1a4a4a); } .abqs-node.quantum { background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy)); } .abqs-node.spatial { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); } .abqs-node svg { width: 32px; height: 32px; stroke: white; stroke-width: 1.5; fill: none; margin-bottom: 0.35rem; } .abqs-node span, .abqs-node .abqs-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; } .abqs-connector { width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); } .sana-section { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); color: var(--cream); } .sana-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .sana-content .section-label { color: var(--gold); } .sana-content .section-title { color: var(--cream); } .sana-content p { color: rgba(255,248,240,0.85); } .sana-features { display: grid; gap: 0.9rem; margin-top: 1.5rem; } .sana-feature { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.9rem; background: rgba(255,255,255,0.05); border-radius: 10px; border: 1px solid rgba(201,162,39,0.2); } .sana-feature-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; } .sana-feature h4 { font-size: 0.9rem; color: var(--cream); margin-bottom: 0.15rem; text-transform: uppercase; letter-spacing: 1px; } .sana-feature p { font-size: 0.8rem; color: rgba(255,248,240,0.7); margin: 0; } .sana-visual { background: var(--white); border-radius: 20px; padding: 1.75rem; box-shadow: 0 25px 70px rgba(0,0,0,0.25); } .sana-chat-header { display: flex; align-items: center; gap: 0.9rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--rose); margin-bottom: 1.25rem; } .sana-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 1.1rem; font-weight: 700; font-family: var(--font-display); position: relative; box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); border: 2px solid var(--gold); animation: sanaGlow 2s ease-in-out infinite; } @keyframes sanaGlow { 0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); } 50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.8); } } .sana-chat-info h4 { font-size: 1rem; color: var(--burgundy); text-transform: uppercase; letter-spacing: 1px; } .sana-chat-info span { font-size: 0.75rem; color: var(--teal); } .sana-messages { display: flex; flex-direction: column; gap: 0.9rem; } .sana-message { max-width: 82%; padding: 0.9rem 1.1rem; border-radius: 14px; font-size: 0.9rem; line-height: 1.55; } .sana-message.user { background: var(--rose); color: var(--charcoal); align-self: flex-end; border-bottom-right-radius: 4px; } .sana-message.bot { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); color: var(--cream); align-self: flex-start; border-bottom-left-radius: 4px; } .sana-typing { display: flex; gap: 3px; padding: 0.9rem; align-self: flex-start; } .sana-typing span { width: 7px; height: 7px; background: var(--burgundy); border-radius: 50%; animation: typing 1.3s infinite; } .sana-typing span:nth-child(2) { animation-delay: 0.15s; } .sana-typing span:nth-child(3) { animation-delay: 0.3s; } @keyframes typing { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-6px); } } .orion-section { background: var(--charcoal); color: var(--cream); } .orion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .orion-content .section-label { color: var(--gold); } .orion-content .section-title { color: var(--cream); } .orion-content p { color: rgba(255,248,240,0.8); } .orion-visual { position: relative; height: 350px; } .orion-network { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; } .orion-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 85px; height: 85px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 50px rgba(201,162,39,0.5); animation: orionPulse 3s ease-in-out infinite; } .orion-core span { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 2px; } @keyframes orionPulse { 0%, 100% { box-shadow: 0 0 50px rgba(201,162,39,0.5); } 50% { box-shadow: 0 0 80px rgba(201,162,39,0.7); } } .orion-layer { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px dashed rgba(201,162,39,0.25); } .orion-layer-1 { width: 150px; height: 150px; transform: translate(-50%, -50%); animation: orionRotate 18s linear infinite; } .orion-layer-2 { width: 220px; height: 220px; transform: translate(-50%, -50%); animation: orionRotate 25s linear infinite reverse; } .orion-layer-3 { width: 290px; height: 290px; transform: translate(-50%, -50%); animation: orionRotate 35s linear infinite; } .orion-node { position: absolute; width: 28px; height: 28px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(201,162,39,0.4); } .orion-node-1a { top: 5%; left: 50%; transform: translateX(-50%); } .orion-node-1b { bottom: 5%; left: 50%; transform: translateX(-50%); } .orion-node-2a { top: 50%; right: 0%; transform: translateY(-50%); } .orion-node-2b { top: 50%; left: 0%; transform: translateY(-50%); } .orion-node-3a { top: 15%; right: 15%; } .orion-node-3b { bottom: 15%; left: 15%; } @keyframes orionRotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } } .orion-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.5rem; } .orion-feature { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem; background: rgba(255,255,255,0.03); border-radius: 6px; border: 1px solid rgba(201,162,39,0.12); } .orion-feature-icon { width: 28px; height: 28px; background: var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; } .orion-feature-icon svg { width: 16px; height: 16px; stroke: var(--charcoal); } .orion-feature span { font-size: 0.75rem; color: var(--cream); text-transform: uppercase; letter-spacing: 0.5px; } .programs-section { background: linear-gradient(180deg, var(--white), var(--cream)); } .programs-header { text-align: center; margin-bottom: 2rem; } .programs-header .section-subtitle { margin: 0 auto; } .lifecycle-timeline { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; padding: 1.5rem 2rem; background: var(--white); border-radius: 100px; box-shadow: 0 8px 30px rgba(139,21,56,0.08); } .lifecycle-stage { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; } .lifecycle-icon { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); display: flex; align-items: center; justify-content: center; } .lifecycle-icon svg { width: 18px; height: 18px; stroke: white; stroke-width: 1.5; fill: none; } .lifecycle-label { font-family: var(--font-accent); font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); } .lifecycle-arrow { color: var(--gold); font-size: 1.25rem; margin-top: -0.25rem; } .programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; } .program-card { background: var(--white); border-radius: 16px; padding: 1.75rem; transition: all 0.4s; border: 1px solid rgba(139,21,56,0.08); position: relative; overflow: hidden; cursor: pointer; } .program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--burgundy), var(--gold)); opacity: 0; transition: opacity 0.3s; } .program-card:hover::before { opacity: 1; } .program-card:hover { transform: translateY(-4px); box-shadow: 0 20px 55px rgba(139,21,56,0.2); background: var(--burgundy); } .program-card:hover .program-family, .program-card:hover .program-tagline, .program-card:hover .program-desc, .program-card:hover .program-capabilities li { color: var(--cream) !important; } .program-card:hover .program-module { background: rgba(255,255,255,0.2); color: var(--cream); } .program-card:hover .program-icon { background: rgba(255,255,255,0.2) !important; } .program-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; } .program-tag { font-size: 0.6rem; background: rgba(139,21,56,0.08); color: var(--burgundy); padding: 0.25rem 0.5rem; border-radius: 4px; font-family: var(--font-accent); letter-spacing: 0.5px; transition: all 0.3s; } .program-card:hover .program-tag { background: rgba(255,255,255,0.2); color: var(--cream); } .program-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .program-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 1.5; fill: none; } .program-icon.aurevia { background: linear-gradient(135deg, #FF6B9D, #C44569); } .program-icon.serenya { background: linear-gradient(135deg, #FFA726, #FB8C00); } .program-icon.altheon { background: linear-gradient(135deg, #42A5F5, #1976D2); } .program-icon.amarae { background: linear-gradient(135deg, #EC407A, #C2185B); } .program-icon.vyora { background: linear-gradient(135deg, #66BB6A, #388E3C); } .program-icon.elyra { background: linear-gradient(135deg, #AB47BC, #7B1FA2); } .program-family { font-size: 1.2rem; color: var(--burgundy); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 1px; } .program-tagline { font-family: var(--font-accent); font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem; } .program-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; } .program-modules { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; } .program-module { font-size: 0.65rem; font-family: var(--font-accent); padding: 0.25rem 0.6rem; background: var(--rose); color: var(--burgundy); border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; } .program-capabilities { list-style: none; } .program-capabilities li { font-size: 0.8rem; color: var(--charcoal); padding: 0.25rem 0; padding-left: 1.1rem; position: relative; } .program-capabilities li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 600; } .services-section { background: var(--rose); } .services-header { text-align: center; margin-bottom: 2.5rem; } .services-header .section-subtitle { margin: 0 auto; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; } .service-card { background: var(--white); border-radius: 16px; padding: 1.75rem; text-align: center; transition: all 0.4s; border: 1px solid transparent; cursor: pointer; } .service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 55px rgba(139,21,56,0.2); background: var(--burgundy); border-color: var(--burgundy); } .service-card:hover .service-name, .service-card:hover .service-tagline, .service-card:hover .service-desc, .service-card:hover .service-features li { color: var(--cream) !important; } .service-card:hover .service-icon { background: rgba(255,255,255,0.2) !important; } .service-card:hover .service-icon svg { stroke: var(--cream); } .service-icon { width: 60px; height: 60px; margin: 0 auto 1.25rem; background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; } .service-icon svg { stroke: var(--cream); } .service-name { font-size: 1.3rem; color: var(--burgundy); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 1px; } .service-tagline { font-family: var(--font-accent); font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.9rem; } .service-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.25rem; } .service-features { text-align: left; list-style: none; } .service-features li { font-size: 0.85rem; color: var(--charcoal); padding: 0.35rem 0; padding-left: 1.25rem; position: relative; } .service-features li::before { content: '→'; position: absolute; left: 0; color: var(--gold); } .audience-section { background: var(--white); } .audience-header { text-align: center; margin-bottom: 2.5rem; } .audience-header .section-subtitle { margin: 0 auto; } .audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; } .audience-card { background: var(--cream); border-radius: 14px; padding: 1.5rem; text-align: center; transition: all 0.3s; cursor: pointer; border: 2px solid transparent; } .audience-card:hover { background: var(--white); border-color: var(--burgundy); transform: translateY(-4px); } .audience-icon { width: 52px; height: 52px; margin: 0 auto 0.9rem; background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .audience-icon svg { width: 24px; height: 24px; stroke: var(--cream); stroke-width: 1.5; fill: none; } .audience-name { font-size: 1rem; color: var(--burgundy); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 1px; } .audience-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; } .global-section { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); color: var(--cream); } .global-header { text-align: center; margin-bottom: 2.5rem; } .global-header .section-label { color: var(--gold); } .global-header .section-title { color: var(--cream); } .global-header .section-subtitle { color: rgba(255,248,240,0.75); margin: 0 auto; } .global-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; } .global-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,162,39,0.2); border-radius: 14px; padding: 1.75rem; text-align: center; transition: all 0.3s; } .global-card:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); transform: translateY(-4px); } .global-flag { font-size: 2.5rem; margin-bottom: 0.75rem; } .global-city { font-size: 1.3rem; color: var(--cream); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 1px; } .global-role { font-family: var(--font-accent); font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.9rem; } .global-desc { font-size: 0.9rem; color: rgba(255,248,240,0.75); line-height: 1.6; } .investors-section { background: var(--charcoal); color: var(--cream); } .investors-header { text-align: center; margin-bottom: 2.5rem; } .investors-header .section-label { color: var(--gold); } .investors-header .section-title { color: var(--cream); } .investors-header .section-subtitle { color: rgba(255,248,240,0.7); margin: 0 auto; } .investors-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; } .investors-thesis h3 { font-size: 1.25rem; color: var(--gold); margin-bottom: 0.9rem; text-transform: uppercase; letter-spacing: 1px; } .investors-thesis p { color: rgba(255,248,240,0.75); margin-bottom: 1.25rem; } .investors-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; } .investor-stat { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,162,39,0.2); border-radius: 10px; padding: 1.1rem; text-align: center; } .investor-stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold); } .investor-stat-label { font-size: 0.7rem; color: rgba(255,248,240,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; } .investors-targets h3 { font-size: 1.25rem; color: var(--gold); margin-bottom: 0.9rem; text-transform: uppercase; letter-spacing: 1px; } .investor-types { display: grid; gap: 0.9rem; } .investor-type { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem; background: rgba(255,255,255,0.03); border-radius: 10px; border: 1px solid rgba(201,162,39,0.12); } .investor-type-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .investor-type-icon svg { width: 20px; height: 20px; stroke: var(--charcoal); stroke-width: 1.5; fill: none; } .investor-type h4 { font-size: 0.9rem; color: var(--cream); margin-bottom: 0.1rem; text-transform: uppercase; letter-spacing: 0.5px; } .investor-type p { font-size: 0.8rem; color: rgba(255,248,240,0.6); margin: 0; } .join-section { background: linear-gradient(180deg, var(--cream), var(--rose)); } .join-header { text-align: center; margin-bottom: 2.5rem; } .join-header .section-subtitle { margin: 0 auto; } .join-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; } .join-card { background: var(--white); border-radius: 14px; padding: 1.75rem; transition: all 0.3s; border: 1px solid rgba(139,21,56,0.08); } .join-card:hover { transform: translateY(-4px); box-shadow: 0 20px 55px rgba(139,21,56,0.1); border-color: var(--burgundy); } .join-role { font-size: 1.1rem; color: var(--burgundy); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 1px; } .join-equity { font-family: var(--font-accent); font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.9rem; } .join-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 0.9rem; } .join-requirements { list-style: none; } .join-requirements li { font-size: 0.8rem; color: var(--charcoal); padding: 0.25rem 0; padding-left: 1.1rem; position: relative; } .join-requirements li::before { content: '•'; position: absolute; left: 0; color: var(--burgundy); } .trust-section { background: var(--white); } .trust-header { text-align: center; margin-bottom: 2.5rem; } .trust-header .section-subtitle { margin: 0 auto; } .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; } .trust-feature { text-align: center; padding: 1.5rem; } .trust-icon { width: 56px; height: 56px; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--teal), #1a5a5a); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .trust-icon svg { width: 26px; height: 26px; stroke: var(--cream); stroke-width: 1.5; fill: none; } .trust-title { font-size: 1rem; color: var(--burgundy); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 1px; } .trust-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; } .insights-section { background: var(--cream); } .insights-header { text-align: center; margin-bottom: 2.5rem; } .insights-header .section-subtitle { margin: 0 auto; } .insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; } .insight-card { background: var(--white); border-radius: 14px; overflow: hidden; transition: all 0.3s; cursor: pointer; border: 1px solid rgba(139,21,56,0.08); } .insight-card:hover { transform: translateY(-4px); box-shadow: 0 20px 55px rgba(139,21,56,0.1); } .insight-card-image { height: 160px; position: relative; display: flex; align-items: center; justify-content: center; } .insight-card-category { position: absolute; top: 0.9rem; left: 0.9rem; font-family: var(--font-accent); font-size: 0.6rem; font-weight: 600; color: var(--cream); background: rgba(0,0,0,0.3); padding: 0.3rem 0.6rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; } .insight-card-content { padding: 1.25rem; } .insight-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.6rem; } .insight-tag { font-size: 0.55rem; font-family: var(--font-accent); padding: 0.2rem 0.4rem; background: var(--rose); color: var(--burgundy); border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; } .insight-card-title { font-size: 1.05rem; color: var(--burgundy); margin-bottom: 0.4rem; line-height: 1.35; } .insight-card-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.55; margin-bottom: 0.9rem; } .insight-card-meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; color: var(--gray-light); } .footer { background: var(--charcoal); color: var(--cream); padding: 2.5rem 0 1.25rem; } .footer-main { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); } .footer-brand p { font-size: 0.85rem; color: rgba(255,248,240,0.6); line-height: 1.6; margin-top: 0.9rem; } .footer-logo { display: flex; align-items: center; gap: 0.4rem; } .footer-logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--cream); letter-spacing: 2px; text-transform: uppercase; } .footer-logo-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; } .footer-column h4 { font-family: var(--font-accent); font-size: 0.7rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.9rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { font-size: 0.8rem; color: rgba(255,248,240,0.7); text-transform: uppercase; letter-spacing: 0.5px; } .footer-links a:hover { color: var(--gold); } .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.25rem; } .footer-copyright { font-size: 0.75rem; color: rgba(255,248,240,0.5); text-transform: uppercase; letter-spacing: 0.5px; } .footer-socials { display: flex; gap: 0.75rem; } .footer-social { width: 32px; height: 32px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--cream); transition: all 0.3s; } .footer-social:hover { background: var(--gold); color: var(--charcoal); } .page-section { display: none; } .page-section.active { display: block; } .page-hero { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); color: var(--cream); padding: 7rem 0 3rem; text-align: center; } .page-hero .section-label { color: var(--gold); } .page-hero .section-title { color: var(--cream); font-size: clamp(1.75rem, 3.5vw, 2.5rem); } .page-hero .section-subtitle { color: rgba(255,248,240,0.8); margin: 0 auto; } .article-category { display: inline-block; font-family: var(--font-accent); font-size: 0.65rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem; } .article-title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); color: var(--cream); margin-bottom: 0.9rem; line-height: 1.25; } .article-meta { display: flex; justify-content: center; gap: 0.9rem; font-size: 0.85rem; color: rgba(255,248,240,0.7); } .article-section { background: var(--cream); padding: 3rem 0; } .article-content { max-width: 750px; margin: 0 auto; } .article-content h2 { font-size: 1.35rem; color: var(--burgundy); margin: 1.75rem 0 0.9rem; text-transform: uppercase; letter-spacing: 1px; } .article-content p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.1rem; color: var(--charcoal); } @media (max-width: 1024px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } .hero-content { max-width: 650px; margin: 0 auto; } .hero-visual { display: none; } .hero-subtitle { margin-left: auto; margin-right: auto; } .hero-ctas { justify-content: center; } .nav-menu { display: none; } .mobile-menu-btn { display: flex; } .mobile-nav { display: block; } .sana-grid, .orion-grid, .investors-content { grid-template-columns: 1fr; } .footer-main { grid-template-columns: 1fr 1fr; } } @media (max-width: 768px) { .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; } .hero-stat-value { font-size: 1.35rem; } .abqs-visual { flex-direction: column; } .abqs-connector { width: 2px; height: 25px; background: linear-gradient(180deg, var(--gold), transparent); } .footer-main { grid-template-columns: 1fr; text-align: center; } .footer-bottom { flex-direction: column; gap: 0.9rem; } } .program-popup-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.85); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 2rem; overflow-y: auto; } .program-popup-overlay.active { display: flex; } .program-popup { background: var(--white); border-radius: 20px; max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: popupSlideIn 0.3s ease; } @keyframes popupSlideIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .program-popup-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; border-radius: 50%; background: var(--cream); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; z-index: 10; } .program-popup-close:hover { background: var(--burgundy); color: white; } .program-popup-close svg { width: 20px; height: 20px; } .program-popup-header { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); padding: 2.5rem; color: var(--cream); border-radius: 20px 20px 0 0; } .program-popup-icon { width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .program-popup-icon svg { width: 35px; height: 35px; stroke: white; fill: none; stroke-width: 1.5; } .program-popup-title { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.5rem; } .program-popup-tagline { font-family: var(--font-accent); font-size: 0.9rem; letter-spacing: 2px; opacity: 0.8; } .program-popup-body { padding: 2.5rem; } .program-popup-intro { font-size: 1.1rem; line-height: 1.7; color: var(--charcoal); margin-bottom: 2rem; } .program-popup-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; padding: 1.5rem; background: var(--cream); border-radius: 12px; } .popup-metric { text-align: center; } .popup-metric-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--burgundy); } .popup-metric-label { font-size: 0.7rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; } .program-popup-modules { margin-bottom: 2rem; } .program-popup-modules h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1.25rem; color: var(--burgundy); } .popup-module { background: var(--cream); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; border-left: 4px solid var(--burgundy); } .popup-module-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; } .popup-module-icon { width: 40px; height: 40px; background: var(--burgundy); border-radius: 10px; display: flex; align-items: center; justify-content: center; } .popup-module-icon svg { width: 20px; height: 20px; stroke: white; fill: none; } .popup-module-name { font-family: var(--font-accent); font-size: 1rem; font-weight: 600; color: var(--burgundy); letter-spacing: 1px; } .popup-module-desc { font-size: 0.95rem; color: var(--charcoal); line-height: 1.6; margin-bottom: 1rem; } .popup-module-features { display: flex; flex-wrap: wrap; gap: 0.5rem; } .popup-module-feature { font-size: 0.75rem; background: white; padding: 0.4rem 0.8rem; border-radius: 20px; color: var(--burgundy); border: 1px solid rgba(139,21,56,0.2); } .program-popup-diagram { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark)); border-radius: 12px; padding: 2rem; margin-bottom: 2rem; text-align: center; } .popup-diagram-title { color: var(--cream); font-family: var(--font-accent); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1.5rem; } .popup-flow { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; } .popup-flow-step { background: rgba(255,255,255,0.15); padding: 0.75rem 1.25rem; border-radius: 8px; color: var(--cream); font-size: 0.85rem; } .popup-flow-arrow { color: var(--gold); font-size: 1.25rem; } .program-popup-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; } .popup-tag { font-size: 0.75rem; background: rgba(139,21,56,0.1); padding: 0.5rem 1rem; border-radius: 20px; color: var(--burgundy); font-weight: 500; } @media (max-width: 768px) { .program-popup-metrics { grid-template-columns: repeat(2, 1fr); } .program-popup { margin: 1rem; } } 