/* ======================================== G1 Moves — Showcase Site ======================================== */ /* Reset */ *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-primary: #07070b; --bg-secondary: #0d0d14; --bg-card: #12121b; --bg-card-hover: #181824; --border: #1c1c2c; --border-hover: #28283e; --accent: #00d4ff; --accent-dim: rgba(0, 212, 255, 0.10); --accent-glow: rgba(0, 212, 255, 0.20); --warm: #ff6b35; --success: #22c55e; --text-primary: #e2e2ec; --text-secondary: #8585a0; --text-tertiary: #555570; --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif; --font-body: 'Manrope', system-ui, sans-serif; --font-mono: 'IBM Plex Mono', 'Menlo', monospace; --radius: 8px; --radius-lg: 12px; } html { scroll-behavior: smooth; } body { background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; } /* Tropical cloud background */ .tropical-clouds { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; } .tropical-clouds::before, .tropical-clouds::after { content: ''; position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; } .tropical-clouds::before { width: 800px; height: 700px; background: radial-gradient(ellipse, #0ea5e9 0%, #06b6d4 30%, transparent 70%); top: -15%; left: -10%; opacity: 0.35; animation: cloud-wave-1 20s ease-in-out infinite; } .tropical-clouds::after { width: 700px; height: 600px; background: radial-gradient(ellipse, #22d3ee 0%, #67e8f9 25%, transparent 70%); top: 10%; right: -12%; opacity: 0.3; animation: cloud-wave-2 16s ease-in-out infinite; } .cloud-blob-1, .cloud-blob-2, .cloud-blob-3 { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; pointer-events: none; } .cloud-blob-1 { width: 750px; height: 650px; background: radial-gradient(ellipse, #38bdf8 0%, #7dd3fc 30%, transparent 70%); bottom: 5%; left: 20%; opacity: 0.28; animation: cloud-wave-3 24s ease-in-out infinite; } .cloud-blob-2 { width: 600px; height: 550px; background: radial-gradient(ellipse, #a78bfa 0%, #c4b5fd 25%, transparent 70%); top: 40%; right: 5%; opacity: 0.22; animation: cloud-wave-4 18s ease-in-out infinite; } .cloud-blob-3 { width: 650px; height: 500px; background: radial-gradient(ellipse, #2dd4bf 0%, #5eead4 30%, transparent 70%); top: 60%; left: -5%; opacity: 0.25; animation: cloud-wave-5 22s ease-in-out infinite; } /* Fade clouds below the hero */ .tropical-clouds-fade { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient( to bottom, transparent 0%, transparent 25%, rgba(7, 7, 11, 0.4) 55%, rgba(7, 7, 11, 0.7) 100% ); } @keyframes cloud-wave-1 { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 20% { transform: translate(120px, 30px) scale(1.15) rotate(2deg); } 40% { transform: translate(60px, 80px) scale(0.9) rotate(-1deg); } 60% { transform: translate(-80px, 50px) scale(1.1) rotate(3deg); } 80% { transform: translate(-40px, -20px) scale(1.05) rotate(-2deg); } 100% { transform: translate(0, 0) scale(1) rotate(0deg); } } @keyframes cloud-wave-2 { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 20% { transform: translate(-100px, 60px) scale(1.12) rotate(-3deg); } 40% { transform: translate(-50px, -50px) scale(0.88) rotate(2deg); } 60% { transform: translate(70px, 30px) scale(1.18) rotate(-1deg); } 80% { transform: translate(30px, -30px) scale(0.95) rotate(3deg); } 100% { transform: translate(0, 0) scale(1) rotate(0deg); } } @keyframes cloud-wave-3 { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 20% { transform: translate(80px, -70px) scale(1.2) rotate(2deg); } 40% { transform: translate(-60px, -30px) scale(0.85) rotate(-3deg); } 60% { transform: translate(40px, 60px) scale(1.1) rotate(1deg); } 80% { transform: translate(-30px, 20px) scale(1.05) rotate(-2deg); } 100% { transform: translate(0, 0) scale(1) rotate(0deg); } } @keyframes cloud-wave-4 { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 20% { transform: translate(-90px, -40px) scale(1.15) rotate(-2deg); } 40% { transform: translate(60px, 50px) scale(0.9) rotate(3deg); } 60% { transform: translate(-30px, -60px) scale(1.12) rotate(-1deg); } 80% { transform: translate(50px, 30px) scale(0.95) rotate(2deg); } 100% { transform: translate(0, 0) scale(1) rotate(0deg); } } @keyframes cloud-wave-5 { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 20% { transform: translate(100px, 40px) scale(1.1) rotate(3deg); } 40% { transform: translate(-40px, 70px) scale(0.92) rotate(-2deg); } 60% { transform: translate(60px, -30px) scale(1.15) rotate(1deg); } 80% { transform: translate(-70px, 20px) scale(1.02) rotate(-3deg); } 100% { transform: translate(0, 0) scale(1) rotate(0deg); } } ::selection { background: rgba(0, 212, 255, 0.20); color: var(--accent); } ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: var(--bg-primary); } ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: var(--border-hover); } :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; } a:hover { opacity: 0.8; } /* ======================================== Hero ======================================== */ /* Ensure all content sits above clouds */ header, section, footer { position: relative; z-index: 1; } .hero { position: relative; min-height: 55vh; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--border); } .hero-bg { position: absolute; inset: 0; background-image: radial-gradient( circle at 1px 1px, rgba(0, 212, 255, 0.07) 1px, transparent 0 ); background-size: 28px 28px; mask-image: radial-gradient(ellipse 80% 70% at center, black 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 10%, transparent 70%); } .hero-scan { position: absolute; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%); box-shadow: 0 0 24px var(--accent-glow), 0 0 48px var(--accent-dim); animation: scan 7s ease-in-out infinite; opacity: 0.5; } @keyframes scan { 0% { top: 12%; opacity: 0; } 8% { opacity: 0.5; } 50% { top: 88%; } 92% { opacity: 0.5; } 100% { top: 12%; opacity: 0; } } .hero-content { position: relative; z-index: 1; text-align: center; padding: 3.5rem 2rem 1.5rem; } .logo { display: block; margin: 0 auto 1.5rem; } .hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 7.5rem); letter-spacing: 0.1em; line-height: 1; background: linear-gradient(180deg, var(--text-primary) 20%, var(--text-secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.05rem; color: var(--text-secondary); margin-top: 0.6rem; font-weight: 400; letter-spacing: 0.01em; } .hero-video-wrap { margin-top: 1rem; width: 100%; max-width: 720px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); } .hero-video-wrap video { width: 100%; display: block; } .download-btn { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.75rem; padding: 0.9rem 2.2rem; background: var(--accent); color: #000; font-family: var(--font-mono); font-size: 0.95rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 6px; border: 2px solid var(--accent); transition: background 0.2s, color 0.2s, box-shadow 0.2s; } .download-btn:hover { background: transparent; color: var(--accent); box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); } .download-btn svg { flex-shrink: 0; } /* Pipeline strip */ .pipeline-strip { display: flex; align-items: center; justify-content: center; margin-top: 1rem; margin-bottom: 0; } .pipeline-stage { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; } .stage-dot { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-card); border: 1.5px solid var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600; color: var(--accent); transition: all 0.3s; } .pipeline-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--text-tertiary); text-transform: uppercase; } .pipeline-connector { width: 44px; height: 1.5px; background: var(--border); position: relative; overflow: hidden; margin: 0 6px; margin-bottom: 1.2rem; } .pipeline-flow { position: absolute; top: 0; left: -40%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, var(--accent), transparent); animation: flow 2.5s ease-in-out infinite; } @keyframes flow { 0% { left: -40%; } 100% { left: 100%; } } /* ======================================== Demo Video ======================================== */ .demo-video { position: relative; width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; } .demo-video video { width: 100%; border-radius: var(--radius-lg); display: block; } /* ======================================== Stats Bar ======================================== */ .stats-bar { display: flex; justify-content: center; gap: 3rem; padding: 1.75rem 2rem; border-bottom: 1px solid var(--border); background: var(--bg-secondary); } .stat { text-align: center; } .stat-value { font-family: var(--font-display); font-size: 2.2rem; color: var(--text-primary); letter-spacing: 0.04em; line-height: 1.1; } .stat-accent .stat-value { color: var(--accent); } .stat-label { font-size: 0.65rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-mono); margin-top: 0.15rem; } /* ======================================== Controls ======================================== */ .controls { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 2rem; max-width: 1440px; margin: 0 auto; flex-wrap: wrap; gap: 1rem; } .filter-group { display: flex; align-items: center; gap: 0.4rem; } .filter-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; color: var(--text-tertiary); text-transform: uppercase; margin-right: 0.4rem; } .category-btn { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em; padding: 0.4rem 0.85rem; border: 1px solid var(--border); border-radius: 100px; background: transparent; color: var(--text-secondary); cursor: pointer; transition: all 0.2s; } .category-btn:hover { border-color: var(--border-hover); color: var(--text-primary); } .category-btn.active { background: var(--accent-dim); border-color: rgba(0, 212, 255, 0.35); color: var(--accent); } /* ======================================== Gallery Grid ======================================== */ .gallery { max-width: 1440px; margin: 0 auto; padding: 0.5rem 2rem 4rem; } .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; } .empty-state { display: none; text-align: center; padding: 4rem 2rem; color: var(--text-tertiary); font-family: var(--font-mono); font-size: 0.85rem; } .empty-state.visible { display: block; } .page-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 2rem auto; } .page-nav-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.2s ease; } .page-nav-btn:hover:not(:disabled) { background: var(--bg-card-hover); border-color: var(--border-hover); color: var(--accent); } .page-nav-btn:disabled { opacity: 0.3; cursor: default; } .page-nav-counter { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-secondary); min-width: 4rem; text-align: center; } /* ======================================== Clip Card ======================================== */ .clip-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s; opacity: 0; transform: translateY(16px); } .clip-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.3s, box-shadow 0.3s; } .clip-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 212, 255, 0.06); } .card-media { position: relative; aspect-ratio: 1; background: var(--bg-secondary); cursor: pointer; overflow: hidden; } .card-media img, .card-media video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; } .clip-card:hover .card-media img, .clip-card:hover .card-media video { transform: scale(1.04); } .card-media::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(transparent, rgba(0, 0, 0, 0.45)); pointer-events: none; } /* Preview → WASM viewer swap */ .card-preview { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; transition: opacity 0.6s ease; } .card-preview-hidden { opacity: 0; pointer-events: none; } .card-viewer-hidden { opacity: 0; position: absolute; top: 0; left: 0; z-index: 1; } .card-viewer-ready { opacity: 1; transition: opacity 0.6s ease; z-index: 3; } .card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-tertiary); font-size: 0.8rem; font-family: var(--font-mono); letter-spacing: 0.04em; } .card-duration { position: absolute; bottom: 8px; right: 8px; z-index: 1; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); padding: 2px 7px; border-radius: 4px; font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500; color: var(--text-primary); } .card-badge { position: absolute; top: 8px; left: 8px; z-index: 1; background: rgba(34, 197, 94, 0.85); padding: 2px 7px; border-radius: 4px; font-family: var(--font-mono); font-size: 0.55rem; font-weight: 600; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; } .card-info { padding: 0.85rem 1rem 1rem; } .card-title { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--text-primary); line-height: 1.3; } .card-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.3rem; margin-bottom: 0.7rem; font-size: 0.7rem; color: var(--text-tertiary); } .card-category { font-family: var(--font-mono); font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 1px 5px; border: 1px solid var(--border); border-radius: 3px; color: var(--text-secondary); } .card-separator { width: 3px; height: 3px; border-radius: 50%; background: var(--text-tertiary); } .card-loading-status { font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent); opacity: 0.7; margin-bottom: 0.25rem; animation: pulse-status 1.5s ease-in-out infinite; } @keyframes pulse-status { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } } .card-actions { display: flex; align-items: center; gap: 0.4rem; } .card-refresh-btn { width: 28px; height: 28px; border-radius: 4px; border: 1px solid var(--border); background: transparent; color: var(--text-secondary); cursor: pointer; transition: all 0.15s; display: flex; align-items: center; justify-content: center; padding: 0; } .card-refresh-btn:hover { border-color: var(--accent); color: var(--accent); } .card-refresh-btn svg { flex-shrink: 0; } .card-view-btn { display: flex; align-items: center; gap: 4px; margin-left: auto; padding: 4px 10px; border-radius: 4px; border: 1px solid rgba(34, 197, 94, 0.35); background: rgba(34, 197, 94, 0.1); color: var(--success); font-family: var(--font-mono); font-size: 0.6rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; } .card-view-btn:hover { background: rgba(34, 197, 94, 0.2); border-color: rgba(34, 197, 94, 0.6); color: #4ade80; } .card-view-btn svg { flex-shrink: 0; } /* ======================================== Modal ======================================== */ .modal { position: fixed; inset: 0; z-index: 1000; background: rgba(0, 0, 0, 0.80); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; } .modal.open { opacity: 1; visibility: visible; } .modal-content { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); width: 100%; max-width: 960px; max-height: 85vh; overflow-y: auto; padding: 2rem; transform: scale(0.96) translateY(8px); transition: transform 0.3s ease; } .modal.open .modal-content { transform: scale(1) translateY(0); } .modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; gap: 1rem; } .modal-title { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.06em; line-height: 1.1; } .modal-meta { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-tertiary); margin-top: 0.3rem; letter-spacing: 0.02em; } .modal-close { background: none; border: 1px solid var(--border); color: var(--text-secondary); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; line-height: 1; transition: all 0.2s; flex-shrink: 0; } .modal-close:hover { border-color: var(--text-secondary); color: var(--text-primary); } .modal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } .modal-stage { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; } .modal-stage.unavailable { opacity: 0.3; } .modal-stage-label { padding: 0.45rem 0.7rem; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); background: var(--bg-card); border-bottom: 1px solid var(--border); } .modal-stage img, .modal-stage video { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; } .modal-placeholder { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; color: var(--text-tertiary); font-family: var(--font-mono); font-size: 0.75rem; background: var(--bg-primary); } /* ======================================== Launch Video ======================================== */ .launch-video { padding: 4rem 1.5rem 2rem; max-width: 960px; margin: 0 auto; } .launch-video h2 { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.08em; color: var(--text-primary); margin-bottom: 1.5rem; text-align: center; } .launch-video-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); } .launch-video-wrap video { width: 100%; display: block; } .showcase-label { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.08em; color: var(--text-secondary); margin: 2rem 0 1rem; text-align: center; } /* ======================================== About ======================================== */ .about { border-top: 1px solid var(--border); background: var(--bg-secondary); } .about-inner { max-width: 1440px; margin: 0 auto; padding: 4rem 2rem; } .about h2, .credits h2, .equipment h2 { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.08em; margin-bottom: 2rem; } .about-intro { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; max-width: 720px; margin-bottom: 2.5rem; } .about-intro a { color: var(--accent); text-decoration: none; } .about-intro a:hover { text-decoration: underline; } .about-process { display: flex; align-items: flex-start; gap: 0; } .process-step { flex: 1; padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); } .process-num { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600; color: var(--accent); padding: 0.2rem 0.5rem; border: 1px solid rgba(0, 212, 255, 0.25); border-radius: 4px; display: inline-block; margin-bottom: 0.6rem; } .process-step h3 { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; } .process-step p { font-size: 0.78rem; color: var(--text-tertiary); line-height: 1.6; } .process-step a { color: var(--accent); text-decoration: none; } .process-step a:hover { text-decoration: underline; } .process-connector { display: flex; align-items: center; padding: 0 0.5rem; flex-shrink: 0; align-self: center; } .process-arrow { width: 24px; height: 2px; background: var(--border); position: relative; } .process-arrow::after { content: ''; position: absolute; right: 0; top: -3px; border: solid var(--text-tertiary); border-width: 0 2px 2px 0; padding: 3px; transform: rotate(-45deg); } /* ======================================== Deploy ======================================== */ .deploy { border-top: 1px solid var(--border); background: var(--bg-secondary); } .deploy h2 { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.08em; margin-bottom: 0.75rem; } .deploy-intro { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; max-width: 720px; } .deploy-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } a.deploy-option, .deploy-option { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color 0.2s; text-decoration: none; color: inherit; display: block; cursor: pointer; } a.deploy-option:hover, .deploy-option:hover { border-color: var(--accent); } .deploy-num { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; color: var(--accent); padding: 0.25rem 0.5rem; border: 1px solid rgba(0, 212, 255, 0.25); border-radius: 4px; display: inline-block; margin-bottom: 0.75rem; } .deploy-option h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; } .deploy-option p { color: var(--text-secondary); font-size: 0.8rem; line-height: 1.6; margin-bottom: 0.75rem; } .deploy-footer { color: var(--text-tertiary); font-size: 0.8rem; margin-top: 1.5rem; } .deploy-footer a { color: var(--accent); text-decoration: none; } @media (max-width: 900px) { .deploy-options { grid-template-columns: 1fr; } } /* ======================================== Credits ======================================== */ .credits { max-width: 1440px; margin: 0 auto; padding: 4rem 2rem; border-top: 1px solid var(--border); } .credits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; } a.credit-card, .credit-card { padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; } .credit-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 0.75rem; border: 2px solid var(--border); } .credit-initials { display: flex; align-items: center; justify-content: center; background: var(--border); color: var(--text-secondary); font-family: var(--font-mono); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.05em; } a.credit-card:hover, .credit-card:hover { border-color: var(--accent); } .credit-role { font-family: var(--font-mono); font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 0.4rem; } .credit-name { font-weight: 700; font-size: 1rem; color: var(--text-primary); text-decoration: none; display: block; } .credit-name:hover { color: var(--accent); opacity: 1; } /* ======================================== About Company ======================================== */ .about-company { max-width: 1440px; margin: 0 auto; padding: 4rem 2rem; border-top: 1px solid var(--border); } .about-company-inner { max-width: 800px; margin: 0 auto; text-align: center; } .about-company-logo { opacity: 0.9; margin-bottom: 1rem; } .about-company-tagline { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1.25rem; } .about-company-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; } .about-company-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; } .about-service { padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); text-align: left; } .about-service h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-primary); } .about-service p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; } .about-company-cta { display: inline-block; padding: 0.6rem 1.8rem; font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); border: 1px solid var(--accent); border-radius: 6px; text-decoration: none; transition: background 0.2s, color 0.2s; } .about-company-cta:hover { background: var(--accent); color: #000; } /* ======================================== Footer ======================================== */ .qr-section { display: flex; justify-content: center; padding: 4rem 2rem 2rem; } .qr-code { width: 280px; height: 280px; border-radius: var(--radius); border: 1px solid var(--border); filter: invert(1); } .site-footer { border-top: 1px solid var(--border); padding: 3rem 2rem; text-align: center; position: relative; z-index: 1; } .footer-inner { max-width: 600px; margin: 0 auto; } .footer-logo { opacity: 0.7; margin-bottom: 1rem; } .footer-tagline { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.5rem; } .footer-tagline a { color: var(--accent); text-decoration: none; } .footer-tagline a:hover { text-decoration: underline; } .footer-claude { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.25rem; } .footer-claude a { color: var(--text-secondary); text-decoration: none; } .footer-claude a:hover { color: var(--accent); text-decoration: underline; } .footer-copy { font-size: 0.7rem; color: var(--text-tertiary); font-family: var(--font-mono); } @media (max-width: 768px) { .about-company-services { grid-template-columns: 1fr; } } /* ======================================== Equipment ======================================== */ .equipment { max-width: 1440px; margin: 0 auto; padding: 4rem 2rem; border-top: 1px solid var(--border); } .equipment-sections { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } a.equip-block, .equip-block { text-decoration: none; color: inherit; display: block; cursor: pointer; transition: border-color 0.2s; border: 1px solid transparent; border-radius: var(--radius); padding: 1rem; } a.equip-block:hover, .equip-block:hover { border-color: var(--accent); } .equip-block h3 { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-tertiary); margin-bottom: 0.5rem; } .equip-photo { width: 100%; height: 140px; object-fit: contain; border-radius: var(--radius); margin-bottom: 0.75rem;} .equip-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--accent); } .equipment-grid { display: flex; flex-direction: column; gap: 0.5rem; } .equipment-item { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0.85rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); } .explore-hardware-btn { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 1.5rem auto 0; padding: 0.6rem 1.5rem; background: var(--accent-dim); border: 1px solid var(--accent); border-radius: var(--radius); color: var(--accent); font-family: var(--font-mono); font-size: 0.85rem; text-decoration: none; transition: all 0.2s; width: fit-content; } .explore-hardware-btn:hover { background: rgba(0, 212, 255, 0.20); box-shadow: 0 0 20px rgba(0, 212, 255, 0.15); } .equipment-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-tertiary); letter-spacing: 0.05em; } .equipment-value { font-size: 0.8rem; font-weight: 600; } /* ======================================== Disclaimer ======================================== */ /* ======================================== Citation ======================================== */ .citation { padding: 4rem 2rem; background: var(--bg-secondary); border-top: 1px solid var(--border); } .citation-inner { max-width: 800px; margin: 0 auto; } .citation h2 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.08em; color: var(--text-primary); text-align: center; margin-bottom: 0.75rem; } .citation-intro { text-align: center; color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; } .citation-block { position: relative; background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; overflow-x: auto; } .citation-block pre { margin: 0; font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.65; color: var(--text-secondary); white-space: pre; } .citation-block code { font-family: inherit; } .whitepaper-btn { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 auto 1.5rem; padding: 10px 24px; background: var(--accent-dim); border: 1px solid var(--accent); border-radius: var(--radius); color: var(--accent); font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all 0.2s; width: fit-content; } .whitepaper-btn:hover { background: rgba(0, 212, 255, 0.20); box-shadow: 0 0 20px rgba(0, 212, 255, 0.15); } .citation-copy { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 6px 8px; cursor: pointer; color: var(--text-secondary); transition: all 0.2s; display: flex; align-items: center; gap: 4px; font-family: var(--font-mono); font-size: 0.7rem; } .citation-copy:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-dim); } .citation-copy.copied { color: var(--success); border-color: var(--success); } /* ======================================== Disclaimer ======================================== */ .disclaimer { border-top: 1px solid var(--border); background: var(--bg-primary); } .disclaimer-inner { max-width: 1440px; margin: 0 auto; padding: 3rem 2rem; } .disclaimer h3 { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--warm); margin-bottom: 1rem; } .disclaimer p { font-size: 0.72rem; color: var(--text-tertiary); line-height: 1.7; margin-bottom: 0.75rem; } .disclaimer p:last-child { margin-bottom: 0; } .disclaimer p strong { color: var(--text-secondary); } /* ======================================== Footer ======================================== */ footer { padding: 2.5rem 2rem; border-top: 1px solid var(--border); text-align: center; } .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 0.75rem; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; } .footer-copy { font-size: 0.7rem; color: var(--text-tertiary); } /* ======================================== Scroll Reveal ======================================== */ .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; } .reveal.revealed { opacity: 1; transform: none; } /* ======================================== Responsive ======================================== */ @media (max-width: 1024px) { .about-process { flex-wrap: wrap; gap: 1rem; } .process-step { flex: 1 1 calc(50% - 2rem); min-width: 200px; } .process-connector { display: none; } .equipment-sections { grid-template-columns: 1fr 1fr; gap: 2rem; } } @media (max-width: 600px) { .equipment-sections { grid-template-columns: 1fr; } } @media (max-width: 768px) { .hero { min-height: 45vh; } .hero-title { font-size: 3.2rem; } .stats-bar { flex-wrap: wrap; gap: 1.5rem 2.5rem; padding: 1.5rem; } .controls { flex-direction: column; align-items: flex-start; } .grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } .pipeline-strip { transform: scale(0.85); } .modal-grid { grid-template-columns: 1fr; } .modal-content { padding: 1.5rem; } } @media (max-width: 480px) { .hero-content { padding: 2.5rem 1.5rem 3rem; } .hero-title { font-size: 2.8rem; } .grid { grid-template-columns: 1fr; gap: 0.75rem; } .card-media { aspect-ratio: 4/3; } .card-info { padding: 0.6rem 0.75rem 0.75rem; } .card-title { font-size: 0.85rem; } .card-meta { font-size: 0.65rem; } .pipeline-strip { transform: scale(0.7); } .stats-bar { gap: 1rem 2rem; } .stat-value { font-size: 1.6rem; } .about-inner, .credits, .equipment { padding: 3rem 1.5rem; } } /* ======================================== Carousel (mobile) ======================================== */ .carousel { display: flex; flex-direction: column; gap: 0.75rem; } .carousel-counter { text-align: center; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-tertiary); letter-spacing: 0.08em; } .carousel-card-wrap { min-height: 200px; } .carousel-card-wrap .clip-card { opacity: 1; transform: none; } .carousel-nav { display: flex; justify-content: center; gap: 1.5rem; padding: 0.25rem 0; } .carousel-btn { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--border-hover); background: var(--bg-card); color: var(--text-primary); font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; -webkit-tap-highlight-color: transparent; } .carousel-btn:not(:disabled):active { background: var(--accent-dim); border-color: rgba(0, 212, 255, 0.35); color: var(--accent); } .carousel-btn:disabled { opacity: 0.2; cursor: default; }