/* Reset and Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; overflow-x: hidden; background-color: #020a0a; color: white; line-height: 1.6; }
        /* 3D Canvas Container */
        #canvas-container { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; transition: opacity 1.5s ease; }
        /* UI Overlay - The Hero Content */
.hero-section { position: relative; z-index: 1; width: 100%; min-height: calc(100vh - 88px); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0 10%; padding-bottom: 1rem; pointer-events: none; }
        .hero-content { pointer-events: auto; max-width: 1000px; width: 100%; background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(0, 214, 214, 0.2); padding: 3rem; border-radius: 24px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); transform: none; opacity: 0; animation: slideUp 1s ease 0.3s forwards; }
        :root { --h1-font-size: 3.5rem; }
        h1 { font-size: var(--h1-font-size); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.5); display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
        .highlight { color: #00d6d6; text-shadow: 0 0 20px rgba(0, 214, 214, 0.4); }
        .roller-container { height: var(--h1-font-size); overflow: hidden; display: block; }
        .roller { display: flex; flex-direction: column; transition: none; will-change: transform; transform: translateY(0); }
        .roller span { height: var(--h1-font-size); line-height: 1.1; display: flex; align-items: center; justify-content: flex-start; }
        .hero-section p { font-size: 1.125rem; line-height: 1.6; color: #d0d0d0; margin-bottom: 2.5rem; max-width: 90%; }
        .btn-group { display: flex; gap: 1rem; pointer-events: auto; }
        .btn-group > .btn { border-radius: 50px !important; }
        .btn { padding: 1rem 2rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; font-size: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; }
        .btn-tertiary { background-color: #e43f86; color: white; box-shadow: 0 0 15px rgba(228, 63, 134, 0.3); border: 1px solid #e43f86; padding: 0.75rem 1.5rem; font-size: 0.95rem; font-weight: 500; }
        .btn-tertiary:hover { background-color: #ff5f9e; box-shadow: 0 0 25px rgba(228, 63, 134, 0.6); transform: translateY(-2px); }
        .btn-primary { background-color: #00d6d6; color: #000; box-shadow: 0 0 15px rgba(0, 214, 214, 0.3); border: 1px solid #00d6d6; }
        .btn-primary:hover { background-color: #00ffff; box-shadow: 0 0 25px rgba(0, 214, 214, 0.6); transform: translateY(-2px); }
        .btn-secondary { background: rgba(255,255,255,0.05); border: 1px solid rgba(255, 255, 255, 0.2); color: white; backdrop-filter: blur(5px); }
        .btn-secondary:hover { border-color: #00d6d6; color: #00d6d6; background: rgba(0, 214, 214, 0.05); }
        .scroll-indicator { position: relative; margin-top: 0.25rem; left: auto; bottom: auto; transform: none; display: flex; flex-direction: column; align-items: center; opacity: 0.6; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; pointer-events: none; }
        .mouse { width: 24px; height: 40px; border: 2px solid #00d6d6; border-radius: 12px; margin-bottom: 8px; position: relative; }
        .wheel { width: 4px; height: 4px; background: #00d6d6; border-radius: 50%; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scroll 1.5s infinite; }
        .feature-section { position: relative; z-index: 1; width: 100%; padding: 5rem 10%; display: flex; flex-direction: column; align-items: center; gap: 4rem; background-color: transparent; }
        .feature-panels { display: flex; flex-direction: column; gap: 6rem; max-width: 1000px; width: 100%; }
        .glass-panel { position: relative; background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(0, 214, 214, 0.2); border-radius: 24px; padding: 3rem; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); pointer-events: auto; overflow: hidden; }
        .clearfix::after { content: ""; display: table; clear: both; }
        .content-flex-container { display: flex; align-items: stretch; gap: 2%; }
        .text-group { width: 68%; flex-shrink: 0; position: relative; z-index: 2; display: flex; flex-direction: column; }
        .text-group h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: white; opacity: 0; transition: opacity 0.8s ease; line-height: 1.2; margin-top: 0; }
        .media-group { width: 30%; flex-shrink: 0; position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 1rem; background-color: rgba(255, 255, 255, 1.0); border-radius: 20px; }
        .media-group video { width: 100%; height: 100%; display: block; object-fit: cover; border: none; box-shadow: none; background-color: transparent; border-radius: 12px; opacity: 0.85; min-height: 150px; color: #000; font-size: 0.8rem; text-align: center; padding: 1rem; display: flex; align-items: center; justify-content: center; }
        .media-group video p { margin: 0; color: #000; font-weight: 600; }
        .text-content { text-align: left; width: 100%; opacity: 0; transition: opacity 0.8s ease; flex-grow: 1; }
        .text-content p { margin-bottom: 1.5rem; }
        .svg-in-text { float: left; width: 40%; margin: 0.5rem 1.5rem 1rem 0; display: block; position: relative; shape-outside: polygon(0 0, 100% 0, 100% 100%, 0 80%); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
        .svg-in-text img { width: 100%; height: auto; display: block; object-fit: contain; }
        .text-content p { font-size: 1.1rem; color: #ffffff; text-shadow: none; }
        .media-left, .media-right { opacity: 0; transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .media-left { transform: translateX(-100px); }
        .media-right { transform: translateX(100px); }
        .glass-panel.is-visible h2 { opacity: 1; transition-delay: 0.1s; }
        .glass-panel.is-visible .text-content { opacity: 1; transition-delay: 0.3s; }
        .glass-panel.is-visible .media-left { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
        .glass-panel.is-visible .media-right { opacity: 1; transform: translateX(0); transition-delay: 0.7s; }
        @keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
        @keyframes scroll { 0% { top: 6px; opacity: 1; } 100% { top: 24px; opacity: 0; } }
        @media (max-width: 1024px) { .glass-panel { padding: 2rem; } :root { --h1-font-size: 2.5rem; } .content-flex-container { flex-direction: column; gap: 0; } .text-group, .media-group { width: 100%; height: auto; } .text-group { order: 0; } .media-group { order: 1; margin-top: 2rem; margin-bottom: 0; min-height: 200px; } .media-left, .media-right { transform: translateY(-50px); } .glass-panel.is-visible .media-left, .glass-panel.is-visible .media-right { transform: translateY(0); } .svg-in-text { float: none; width: 100%; margin: 1.5rem 0; shape-outside: none; clip-path: none; } }
        @media (max-width: 768px) { .hero-section { padding: 0 5%; min-height: calc(100vh - 88px); justify-content: center; padding-bottom: 0.75rem; } .hero-content { padding: 2rem; margin-top: 0; max-width: 100%; } h1 { font-size: 2.5rem; } .feature-panels { gap: 4rem; } .btn-group { flex-direction: column; gap: 0.75rem; } .btn { width: 100%; } }
        /* Ultra-compact phones */
@media (max-width: 600px) {
  .hero-section { min-height: auto; justify-content: flex-start; padding: 0 1.25rem 0.75rem; margin-top: 0.75rem; }
  .hero-content { padding: 1.5rem 1.25rem; border-radius: 20px; }
  :root { --h1-font-size: 2.1rem; }
  h1 { gap: 0.4rem; margin-bottom: 1rem; }
  .hero-section p { font-size: 1rem; margin-bottom: 1.25rem; }
  .btn { padding: 0.85rem 1.4rem; font-size: 0.95rem; }
  .btn-group { gap: 0.6rem; }
  .feature-section { padding: 2.5rem 1.25rem; gap: 2rem; }
  .feature-panels { gap: 3rem; }
  .glass-panel { padding: 1.75rem 1.25rem; border-radius: 20px; }
  .text-group h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
  .text-content p { font-size: 0.95rem; }
  .media-group { padding: 0.75rem; }
  .media-group video { min-height: 140px; padding: 0.5rem; }
  .scroll-indicator { display: none; }
}
.hero-section, .feature-section { position: relative; z-index: 1; }