/* ═══════════════════════════════════════════════════════════════════════
   OMRO Home Page -- Modern glassmorphic landing
   Robot hero, starfield, glow/blur effects, clean dark design
   ═══════════════════════════════════════════════════════════════════════ */

/* -- Home Container --------------------------------------------------- */
.omro-home {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    background: var(--bg-deepest);
    color: var(--text-primary);
}
body:has(.omro-home) { background-color: var(--bg-deepest); }
.main-wrapper:has(.omro-home) { background: var(--bg-deepest); }
.page-content:has(.omro-home) { background: var(--bg-deepest); padding: 0; overflow-x: hidden; }

.omro-home-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

/* -- Ambient Glow Orbs ------------------------------------------------ */
.omro-glow-orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 0;
    filter: blur(100px);
    opacity: 0.12;
    animation: omro-orb-drift 20s ease-in-out infinite alternate;
}
.omro-glow-orb-1 {
    width: 600px; height: 600px;
    top: -150px; left: -100px;
    background: var(--accent-teal);
}
.omro-glow-orb-2 {
    width: 500px; height: 500px;
    top: 40%; right: -150px;
    background: var(--accent-purple);
    animation-delay: -8s;
    animation-duration: 25s;
}
.omro-glow-orb-3 {
    width: 400px; height: 400px;
    bottom: 5%; left: 20%;
    background: var(--accent-cyan);
    animation-delay: -14s;
    animation-duration: 22s;
}
@keyframes omro-orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
    100% { transform: translate(-20px, 30px) scale(0.95); }
}

/* -- Hero -------------------------------------------------------------- */
.omro-hero {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    min-height: 50vh;
    padding: 2rem 1.5rem 1rem;
}
.omro-hero-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; text-align: center;
    max-width: 640px;
}

/* -- Robot Stage ------------------------------------------------------- */
.omro-robot-stage {
    position: relative; width: 160px; height: 190px;
    display: flex; align-items: center; justify-content: center;
}
.omro-robot {
    position: relative; z-index: 2;
    filter: drop-shadow(0 0 30px rgba(16,185,129,0.3));
    animation: omro-float 5s ease-in-out infinite;
    transition: filter 0.3s ease; cursor: pointer;
}
.omro-robot:hover { filter: drop-shadow(0 0 50px rgba(16,185,129,0.5)); }
@keyframes omro-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.omro-robot-bounce { animation: omro-bounce 0.5s ease !important; }
@keyframes omro-bounce { 0% { transform: scale(1) translateY(0); } 20% { transform: scale(1.1) translateY(-15px); } 40% { transform: scale(0.95) translateY(5px); } 60% { transform: scale(1.03) translateY(-3px); } 100% { transform: scale(1) translateY(0); } }
.omro-antenna-tip { animation: omro-antenna-pulse 2s ease-in-out infinite; }
@keyframes omro-antenna-pulse { 0%, 100% { opacity: 0.6; r: 6; } 50% { opacity: 1; r: 8; } }
.omro-chest-light { transition: all 0.3s ease; animation: omro-chest-breathe 3s ease-in-out infinite; }
@keyframes omro-chest-breathe { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }
.omro-eye { transition: all 0.15s ease; }
.omro-mouth { transition: all 0.2s ease; }
.omro-arm-l { transform-origin: center top; animation: omro-arm-idle-l 5s ease-in-out infinite; }
.omro-arm-r { transform-origin: center top; animation: omro-arm-idle-r 5s ease-in-out infinite; }
@keyframes omro-arm-idle-l { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-2deg); } }
@keyframes omro-arm-idle-r { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(2deg); } }

.omro-robot-glow {
    position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
    width: 180px; height: 36px;
    background: radial-gradient(ellipse, rgba(16,185,129,0.25) 0%, transparent 70%);
    border-radius: 50%; z-index: 1;
    animation: omro-glow-pulse 5s ease-in-out infinite;
}
@keyframes omro-glow-pulse { 0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.2); } }

/* -- Orbiters ---------------------------------------------------------- */
.omro-orbiter {
    position: absolute; width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--accent-teal); font-size: 11px; z-index: 3;
    box-shadow: 0 0 12px rgba(16,185,129,0.2);
}
.omro-orb-chart { animation: omro-orbit-1 8s linear infinite; }
.omro-orb-shield { animation: omro-orbit-2 10s linear infinite; color: var(--accent-purple); border-color: var(--accent-purple-dim); box-shadow: 0 0 12px rgba(139,92,246,0.2); }
.omro-orb-bolt { animation: omro-orbit-3 7s linear infinite; color: var(--accent-amber); border-color: var(--accent-amber-dim); box-shadow: 0 0 12px rgba(245,158,11,0.2); }
@keyframes omro-orbit-1 { 0% { top: 20px; left: -30px; } 25% { top: -15px; left: 130px; } 50% { top: 30px; left: 240px; } 75% { top: 220px; left: 130px; } 100% { top: 20px; left: -30px; } }
@keyframes omro-orbit-2 { 0% { top: 220px; left: 240px; } 25% { top: 60px; left: 250px; } 50% { top: -10px; left: 100px; } 75% { top: 180px; left: -35px; } 100% { top: 220px; left: 240px; } }
@keyframes omro-orbit-3 { 0% { top: 130px; left: -40px; } 33% { top: -10px; left: 200px; } 66% { top: 240px; left: 230px; } 100% { top: 130px; left: -40px; } }

/* -- Sparks ------------------------------------------------------------- */
.omro-spark-layer { position: absolute; inset: 0; pointer-events: none; z-index: 10; overflow: visible; }
.omro-spark { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--accent-teal); box-shadow: 0 0 6px var(--accent-teal); animation: omro-spark-fly 0.6s ease-out forwards; }
@keyframes omro-spark-fly { 0% { transform: translate(0,0) scale(1); opacity: 1; } 100% { transform: translate(var(--dx),var(--dy)) scale(0); opacity: 0; } }

/* -- Title ------------------------------------------------------------- */
.omro-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800; letter-spacing: -3px; line-height: 1; margin: 0;
}
.omro-title-gradient {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan), var(--accent-purple), var(--accent-teal));
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: omro-gradient-shift 8s ease-in-out infinite;
}
@keyframes omro-gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.omro-subtitle {
    font-size: clamp(0.85rem, 2.5vw, 1.125rem);
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-primary); margin: 0.25rem 0 0;
    opacity: 0.9;
}
.omro-tagline-sub {
    font-size: var(--text-sm);
    color: var(--text-secondary); margin: 0;
    max-width: 420px; line-height: 1.6;
}

/* -- Speech Bubble ----------------------------------------------------- */
.omro-robot-bubble {
    position: relative; margin-top: 1rem;
    animation: omro-bubble-fadein 1.2s ease-out 0.6s both;
}
@keyframes omro-bubble-fadein { 0% { opacity: 0; transform: translateY(10px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
.omro-bubble-inner {
    display: inline-flex; align-items: flex-start; gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(16,185,129,0.04);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: var(--radius-lg, 14px);
    font-size: var(--text-sm); color: var(--text-secondary);
    font-weight: var(--weight-medium); line-height: 1.5;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.03);
}
.omro-bubble-lines { display: flex; flex-direction: column; gap: 0.3rem; }
.omro-bubble-ar, .omro-bubble-nl { font-size: var(--text-xs); color: var(--text-muted); opacity: 0.7; }
.omro-heart { color: var(--accent-rose); font-size: 1.1em; animation: omro-heart-beat 1.5s ease-in-out infinite; display: inline-block; }
@keyframes omro-heart-beat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.25); } 30% { transform: scale(1); } 45% { transform: scale(1.15); } 60% { transform: scale(1); } }

/* -- Announcement Slot ------------------------------------------------- */
.omro-announcement-slot { width: 100%; max-width: 560px; margin-top: 0.75rem; }
.omro-announcement-banner {
    display: flex; align-items: center; gap: 10px;
    padding: 0.65rem 1.25rem;
    background: rgba(139,92,246,0.06);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: var(--radius-md);
    font-size: var(--text-sm); color: var(--text-secondary);
    animation: omro-announce-pulse 3s ease-in-out infinite;
}
.omro-announcement-banner i { color: var(--accent-purple); flex-shrink: 0; }
.omro-announcement-banner .omro-ann-close {
    margin-left: auto; cursor: pointer; opacity: 0.5; font-size: 12px;
    transition: opacity 0.15s;
}
.omro-announcement-banner .omro-ann-close:hover { opacity: 1; }
@keyframes omro-announce-pulse { 0%, 100% { border-color: rgba(139,92,246,0.2); } 50% { border-color: rgba(139,92,246,0.35); } }

/* -- Sections ---------------------------------------------------------- */
.omro-section {
    position: relative; z-index: 1;
    padding: 2rem 1.5rem;
}
.omro-section-alt {
    background: rgba(255,255,255,0.01);
}
.omro-section-inner {
    max-width: 960px; margin: 0 auto;
}
.omro-section-header {
    text-align: center; margin-bottom: 1.75rem;
}
.omro-section-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent-teal);
    padding: 4px 12px; border-radius: 20px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.15);
    margin-bottom: 0.75rem;
}
.omro-section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: var(--weight-bold); color: var(--text-primary);
    margin: 0.5rem 0 0.75rem; line-height: 1.2;
}
.omro-section-desc {
    font-size: var(--text-md); color: var(--text-secondary);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* -- Glass Cards (Capabilities) ---------------------------------------- */
.omro-cap-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.omro-glass-card {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg, 14px);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.omro-glass-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transition: left 0.6s ease;
}
.omro-glass-card:hover::before { left: 150%; }
.omro-glass-card:hover {
    border-color: rgba(16,185,129,0.2);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 1px rgba(16,185,129,0.1);
    transform: translateY(-3px);
}
.omro-glass-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 0.75rem;
    border: 1px solid;
}
.omro-glass-icon.purple { background: rgba(139,92,246,0.1); color: var(--accent-purple); border-color: rgba(139,92,246,0.2); }
.omro-glass-icon.blue { background: rgba(59,130,246,0.1); color: var(--accent-blue); border-color: rgba(59,130,246,0.2); }
.omro-glass-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent-amber); border-color: rgba(245,158,11,0.2); }
.omro-glass-icon.teal { background: rgba(16,185,129,0.1); color: var(--accent-teal); border-color: rgba(16,185,129,0.2); }
.omro-glass-icon.cyan { background: rgba(0,229,255,0.1); color: var(--accent-cyan); border-color: rgba(0,229,255,0.2); }
.omro-glass-icon.rose { background: rgba(244,63,94,0.1); color: var(--accent-rose); border-color: rgba(244,63,94,0.2); }
.omro-glass-card h3 {
    font-size: var(--text-sm); font-weight: var(--weight-semibold);
    color: var(--text-primary); margin: 0 0 0.35rem;
}
.omro-glass-card p {
    font-size: 12px; color: var(--text-muted);
    line-height: 1.55; margin: 0;
}

/* -- Steps Row (How It Works) ------------------------------------------ */
.omro-steps-row {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0;
}
.omro-step-card {
    text-align: center; padding: 1.25rem; flex: 1; max-width: 260px;
}
.omro-step-num-ring {
    width: 48px; height: 48px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    position: relative; margin-bottom: 1rem;
    background: rgba(16,185,129,0.08);
    border: 2px solid var(--accent-teal);
    box-shadow: 0 0 20px rgba(16,185,129,0.15);
}
.omro-step-num-ring span {
    font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--accent-teal);
}
.omro-step-card h4 {
    font-size: var(--text-md); font-weight: var(--weight-semibold);
    color: var(--text-primary); margin: 0 0 0.35rem;
}
.omro-step-card p {
    font-size: var(--text-xs); color: var(--text-muted);
    line-height: 1.65; margin: 0;
}
.omro-step-connector {
    display: flex; align-items: center; padding-top: 2.5rem;
    width: 60px; flex-shrink: 0;
}
.omro-step-line {
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), transparent 50%, var(--accent-teal));
    opacity: 0.25;
}

/* -- Trust Banner ------------------------------------------------------ */
.omro-trust-banner {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: rgba(16,185,129,0.03);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    max-width: 720px; margin: 0 auto;
}
.omro-trust-icon {
    width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    color: var(--accent-teal); font-size: 22px;
}
.omro-trust-text h3 {
    font-size: var(--text-md); font-weight: var(--weight-bold);
    color: var(--text-primary); margin: 0 0 0.35rem;
}
.omro-trust-text p {
    font-size: var(--text-sm); color: var(--text-secondary);
    line-height: 1.6; margin: 0;
}

/* -- CTA Section ------------------------------------------------------- */
.omro-cta-section { padding: 1.5rem 1.5rem 2.5rem; }
.omro-cta-group {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; flex-wrap: wrap;
}
.omro-cta-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2.25rem; border-radius: var(--radius-md);
    font-size: var(--text-md); font-weight: var(--weight-semibold);
    text-decoration: none; transition: all 0.25s ease;
    cursor: pointer; position: relative; overflow: hidden;
}
.omro-cta-primary {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
    color: var(--text-inverse);
    box-shadow: 0 0 30px rgba(16,185,129,0.25), 0 4px 16px rgba(0,0,0,0.2);
}
.omro-cta-primary:hover {
    box-shadow: 0 0 50px rgba(16,185,129,0.4), 0 8px 24px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}
.omro-btn-shine {
    position: absolute; top: 0; left: -100%; width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    animation: omro-btn-shine 3s ease-in-out infinite;
}
@keyframes omro-btn-shine { 0% { left: -100%; } 100% { left: 100%; } }

.omro-cta-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.omro-cta-outline:hover {
    border-color: var(--accent-teal); color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(16,185,129,0.1);
}
.omro-cta-note {
    margin-top: 1rem; font-size: var(--text-xs); color: var(--text-muted);
}

/* -- Footer ------------------------------------------------------------ */
.omro-footer {
    position: relative; z-index: 1;
    text-align: center; padding: 2rem 1.5rem;
    font-size: var(--text-xs); color: var(--text-muted);
    border-top: 1px solid var(--border-subtle);
}

/* -- Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
    .omro-cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .omro-hero { min-height: 55vh; padding: 2rem 1rem 1rem; }
    .omro-robot-stage { width: 170px; height: 210px; }
    .omro-robot { width: 160px; height: 186px; }
    .omro-title { font-size: 3.5rem; }
    .omro-subtitle { font-size: 0.8rem; letter-spacing: 2px; }
    .omro-cap-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .omro-glass-card { padding: 1.25rem 1rem; }
    .omro-steps-row { flex-direction: column; align-items: center; }
    .omro-step-connector { width: 2px; height: 30px; padding: 0; }
    .omro-step-line { width: 2px; height: 100%; }
    .omro-section { padding: 2rem 1rem; }
    .omro-trust-banner { flex-direction: column; text-align: center; gap: 0.75rem; padding: 1.25rem; }
    .omro-cta-btn { padding: 0.75rem 1.5rem; font-size: var(--text-sm); }
    .omro-bubble-inner { font-size: var(--text-xs); padding: 0.6rem 1rem; }
}
