
        @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

        .nyral-root {
          --bg: #06060a; --bg-2: #0b0b12; --text: #f2f3f8; --muted: #9297a6; --muted-2: #5c6070;
          --blue: #4c6ef5; --purple: #9b5de5; --magenta: #f15bb5; --orange: #ff8c42;
          --line: rgba(255,255,255,0.08); --glass: rgba(255,255,255,0.035);
          font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text);
          position: relative; overflow-x: hidden; min-height: 100vh;
        }
        .nyral-root * { box-sizing: border-box; }
        @media (pointer: fine) { .nyral-root { cursor: none; } .nyral-root a, .nyral-root button { cursor: none; } }
        .mono { font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.06em; }
        .display { font-family: 'Space Grotesk', sans-serif; }

        /* cursor autoral */
        .cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 100; display: none; }
        @media (pointer: fine) { .cursor-dot, .cursor-ring { display: block; } }
        .cursor-dot { width: 6px; height: 6px; margin: -3px; border-radius: 50%; background: #fff; }
        .cursor-ring { width: 30px; height: 30px; margin: -15px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
        .cursor-ring.cursor-hover { width: 56px; height: 56px; margin: -28px; border-color: rgba(240,60,150,0.85); background: rgba(240,60,150,0.10); }

        /* fundo ambiente */
        .ambient-wrap { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
        .ambient-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
        .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; mix-blend-mode: screen; animation: drift 34s ease-in-out infinite; }
        .blob-a { width: 46vw; height: 46vw; background: radial-gradient(circle, var(--blue), transparent 70%); top: -10%; left: -10%; animation-duration: 38s; }
        .blob-b { width: 40vw; height: 40vw; background: radial-gradient(circle, var(--purple), transparent 70%); bottom: -15%; right: -5%; animation-duration: 44s; animation-direction: reverse; }
        .blob-c { width: 30vw; height: 30vw; background: radial-gradient(circle, var(--magenta), transparent 70%); top: 40%; left: 55%; animation-duration: 50s; }
        @keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(4%,6%) scale(1.08); } 66% { transform: translate(-5%,-3%) scale(0.95); } }
        .grain { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.5; }
        @media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

        .shell { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
        .section { position: relative; padding: 130px 0; }
        .eyebrow { font-size: 12px; text-transform: uppercase; color: var(--muted-2); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
        .eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--muted-2); }

        /* costura de luz — divisor assinatura */
        .seam-wrap { position: relative; height: 1px; }
        .seam { position: relative; height: 1px; background: var(--line); overflow: visible; }
        .seam::after { content: ""; position: absolute; top: -1px; left: -10%; width: 140px; height: 3px; background: linear-gradient(90deg, transparent, #cfe0ff, #ffd7ae, transparent); filter: blur(2.5px); opacity: 0; }
        .seam.seam-active::after { animation: seamTravel 1.6s cubic-bezier(.4,0,.2,1) forwards; }
        @keyframes seamTravel { 0% { left: -10%; opacity: 0; } 15% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
        @media (prefers-reduced-motion: reduce) { .seam::after { display: none; } }

        /* header */
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 40; transition: background 0.5s ease, border-color 0.5s ease; border-bottom: 1px solid transparent; }
        .header.scrolled { background: rgba(6,6,10,0.72); backdrop-filter: blur(16px); border-color: var(--line); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; max-width: 1180px; margin: 0 auto; }
        .logo { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 20px; color: var(--text); text-decoration: none; display: inline-flex; align-items: center; }
        .logo-img { height: 20px; width: auto; display: block; }
        .nav { display: none; align-items: center; gap: 36px; }
        .nav button { background: none; border: none; color: var(--muted); font-size: 14px; font-family: 'Inter'; transition: color 0.25s ease; padding: 0; }
        .nav button:hover, .nav button:focus-visible { color: var(--text); }
        @media (min-width: 860px) { .nav { display: flex; } .menu-btn { display: none; } }
        .cta-btn { display: inline-block; text-decoration: none; font-size: 13px; font-family: 'Inter'; font-weight: 500; color: #fff; background: linear-gradient(120deg, #ff5fa8, #e0298f); padding: 11px 22px; border-radius: 999px; border: none; transition: transform 0.25s ease, box-shadow 0.25s ease; }
        .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(224,41,143,0.4); }
        .cta-ghost { display: inline-block; text-decoration: none; font-size: 13px; color: var(--text); background: transparent; border: 1px solid var(--line); padding: 10px 22px; border-radius: 999px; transition: border-color 0.25s ease, background 0.25s ease; }
        .cta-ghost:hover { border-color: rgba(255,255,255,0.3); background: var(--glass); }
        .menu-btn { background: none; border: none; color: var(--text); }
        .header-cta { display: none; }
        @media (min-width: 640px) { .header-cta { display: inline-block; } }
        .mobile-nav { position: fixed; inset: 0; z-index: 39; background: rgba(6,6,10,0.98); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; transform: translateY(-100%); transition: transform 0.4s ease; }
        .mobile-nav.open { transform: translateY(0); }
        .mobile-nav button { background: none; border: none; color: var(--text); font-size: 22px; font-family: 'Space Grotesk'; }

        /* hero */
        .hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 60px; --hx: 50%; --hy: 45%; }
        .hero-spotlight { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px circle at var(--hx) var(--hy), rgba(230,60,150,0.10), transparent 60%); }
        .hero-solo { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 640px; margin: 0 auto; }

        .hero-logo-main { width: clamp(180px, 26vw, 280px); height: auto; margin-bottom: 16px; }
        .hero-slogan { font-size: 12px; letter-spacing: 0.08em; color: var(--muted-2); margin: 0 0 8px; }

        .hero-solo { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 640px; margin: 0 auto; }
        .hero-title-overlay { position: relative; margin-top: 4px; }

        .hero-title-split { font-family: 'Space Grotesk', sans-serif; font-weight: 500; letter-spacing: -0.02em; font-size: clamp(32px, 5.5vw, 54px); line-height: 1.08; margin: 0 0 20px; }
        .hero-title-split .accent { color: #f13d8c; }
        .hero-sub-solo { color: var(--muted); font-size: 16px; max-width: 460px; margin: 0 auto 32px; line-height: 1.65; }
        .hero-actions-solo { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
        .hero-stats-solo { display: grid; grid-template-columns: repeat(2, auto); gap: 22px 36px; justify-content: center; }
        .hero-stats-solo .stat { text-align: center; }
        @media (min-width: 640px) { .hero-stats-solo { grid-template-columns: repeat(4, auto); gap: 0 32px; } }
        .stat-value { font-family: 'Space Grotesk'; font-size: 17px; color: var(--text); white-space: nowrap; }
        .stat-label { font-size: 9px; color: var(--muted-2); text-transform: uppercase; margin-top: 4px; white-space: nowrap; }
        @media (min-width: 640px) { .hero-stats-solo { gap: 32px; } .stat-value { font-size: 20px; } .stat-label { font-size: 10px; } }

        .scroll-hint { position: relative; z-index: 1; margin: 50px auto 0; font-size: 11px; color: var(--muted-2); display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--muted-2), transparent); animation: scrollLine 2.4s ease-in-out infinite; }
        @keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

        .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal-visible { opacity: 1; transform: translateY(0); }

        .intro-solo { max-width: 640px; margin: 0 auto; text-align: center; }
        .intro-title { font-family: 'Space Grotesk'; font-size: clamp(28px, 4vw, 40px); line-height: 1.2; margin-bottom: 20px; font-weight: 500; }
        .intro-text { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 440px; }
        .intro-solo .intro-text { margin-left: auto; margin-right: auto; }

        .services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
        @media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
        @media (min-width: 980px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
        .tilt-card { position: relative; padding: 30px 26px; border-radius: 16px; height: 100%; background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(10px); transition: transform 0.15s ease, border-color 0.3s ease; --mx: 50%; --my: 50%; }
        .tilt-card:hover { border-color: rgba(255,255,255,0.18); }
        .tilt-card-glow { position: absolute; inset: 0; border-radius: 16px; opacity: 0; pointer-events: none; background: radial-gradient(220px circle at var(--mx) var(--my), rgba(140,170,255,0.16), transparent 70%); transition: opacity 0.3s ease; }
        .tilt-card:hover .tilt-card-glow { opacity: 1; }
        .tilt-card-index { font-size: 12px; color: var(--muted-2); }
        .tilt-card-title { font-family: 'Space Grotesk'; font-size: 19px; margin: 18px 0 10px; font-weight: 500; }
        .tilt-card-desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

        .slider-wrap { position: relative; }
        .slider-track {
          display: flex; align-items: center; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch; cursor: grab; padding: 30px 4px 34px;
          scrollbar-width: none;
        }
        .slider-track::-webkit-scrollbar { display: none; }
        .slider-track.dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
        .slider-item {
          flex: 0 0 auto; width: min(210px, 58vw); scroll-snap-align: center;
          transition: transform 0.2s ease-out, opacity 0.2s ease-out;
          will-change: transform, opacity;
        }
        @media (min-width: 640px) { .slider-item { width: 220px; } }
        .slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
        .slider-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text); font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
        .slider-arrow:hover:not(:disabled) { border-color: rgba(255,255,255,0.35); background: var(--glass); }
        .slider-arrow:disabled { opacity: 0.28; cursor: default; }
        .slider-dots { display: flex; align-items: center; gap: 8px; }
        .slider-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); border: none; padding: 0; transition: all 0.25s ease; }
        .slider-dot.active { background: #f13d8c; width: 22px; border-radius: 4px; }

        .port-card { position: relative; aspect-ratio: 9/16; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; background: var(--bg-2); transition: transform 0.3s ease, border-color 0.4s ease; }
        .port-card:hover { border-color: rgba(255,255,255,0.22); }
        .port-card-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.4s ease; filter: brightness(0.82); }
        .port-card:hover .port-card-thumb { transform: scale(1.06); filter: brightness(0.62); }
        .port-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,3,6,0.92) 0%, rgba(3,3,6,0.15) 45%, rgba(3,3,6,0.35) 100%); }
        .port-card-play {
          position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
          width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
          background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(6px);
          color: #fff; opacity: 0; transition: all 0.35s ease;
        }
        .port-card:hover .port-card-play { opacity: 1; transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 30px 6px rgba(140,170,255,0.35); }
        .port-card-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; }
        .port-card-cat { font-size: 10.5px; color: rgba(255,255,255,0.7); text-transform: uppercase; }
        .port-card-title { font-family: 'Space Grotesk'; font-size: 16px; margin: 4px 0 4px; color: #fff; }
        .port-card-desc { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.4; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.35s ease; }
        .port-card:hover .port-card-desc { max-height: 50px; opacity: 1; }

        .video-modal-backdrop { position: fixed; inset: 0; background: rgba(3,3,6,0.85); backdrop-filter: blur(6px); z-index: 60; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
        .video-modal-backdrop.open { opacity: 1; pointer-events: auto; }
        .video-modal {
          position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(0.96); z-index: 61;
          width: min(92vw, 380px); max-height: 90vh; overflow-y: auto;
          background: #0a0a10; border: 1px solid var(--line); border-radius: 20px;
          opacity: 0; pointer-events: none; transition: opacity 0.35s ease, transform 0.35s ease;
        }
        .video-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
        .video-modal-close {
          position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
          background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); color: #fff;
          display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px);
        }
        .video-modal-frame { position: relative; width: 100%; aspect-ratio: 9/16; background: #000; border-radius: 20px 20px 0 0; overflow: hidden; }
        .video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
        .video-modal-info { padding: 20px 22px 24px; }
        .video-modal-title { font-family: 'Space Grotesk'; font-size: 20px; margin: 6px 0 8px; }
        .video-modal-desc { color: var(--muted); font-size: 14px; line-height: 1.6; }

        /* artista */
        .squad-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; }
        .squad-card {
          background: var(--glass); border: 1px solid var(--line); border-radius: 16px;
          padding: 28px 22px; text-align: center; height: 100%;
          transition: border-color 0.3s ease, transform 0.3s ease;
        }
        .squad-card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-4px); }
        .squad-avatar-wrap { position: relative; width: 96px; height: 96px; margin: 0 auto 18px; }
        .squad-ring { position: absolute; inset: -6px; border-radius: 50%; background: conic-gradient(from 180deg, var(--blue), var(--purple), var(--magenta), var(--orange), var(--blue)); opacity: 0.55; filter: blur(8px); animation: ringSpin 12s linear infinite; }
        @keyframes ringSpin { to { transform: rotate(360deg); } }
        @media (prefers-reduced-motion: reduce) { .squad-ring { animation: none; } }
        .squad-avatar { position: relative; width: 96px; height: 96px; border-radius: 50%; object-fit: cover; display: block; border: 2px solid rgba(6,6,10,0.9); }
        .squad-name { font-family: 'Space Grotesk'; font-size: 18px; margin: 0 0 4px; }
        .squad-role { font-size: 10.5px; color: var(--muted-2); text-transform: uppercase; margin-bottom: 14px; letter-spacing: 0.04em; }
        .squad-quote { color: var(--muted); font-size: 13.5px; line-height: 1.6; }
        .squad-quote::before { content: '"'; color: var(--muted-2); }
        .squad-quote::after { content: '"'; color: var(--muted-2); }

        .process-list { position: relative; }
        .process-line { position: absolute; left: 21px; top: 12px; bottom: 12px; width: 1px; background: var(--line); }
        .process-item { position: relative; display: flex; gap: 26px; padding: 26px 0; align-items: flex-start; }
        .process-dot { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--muted-2); background: var(--bg); transition: all 0.5s ease; z-index: 1; }
        .process-item.active .process-dot { border-color: rgba(140,170,255,0.6); color: #fff; box-shadow: 0 0 24px 4px rgba(120,150,255,0.35); }
        .process-title { font-family: 'Space Grotesk'; font-size: 20px; margin-bottom: 6px; transition: color 0.5s ease; color: var(--muted-2); }
        .process-item.active .process-title { color: var(--text); }
        .process-desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; max-width: 460px; }

        .cta-section { text-align: center; position: relative; overflow: hidden; padding: 150px 0 130px; }
        .cta-glow { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 2px; height: 140px; background: linear-gradient(180deg, transparent, #9fc4ff, #ff8c42, transparent); filter: blur(2px); opacity: 0.8; }
        .cta-title { font-family: 'Space Grotesk'; font-size: clamp(28px, 4.4vw, 46px); font-weight: 500; margin: 40px 0 16px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.2; }
        .cta-text { color: var(--muted); font-size: 16px; margin-bottom: 38px; }
        .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

        .footer { position: relative; overflow: hidden; padding: 50px 0; border-top: 1px solid var(--line); }
        .footer-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 26px; }
        @media (min-width: 700px) { .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; } }
        .footer-brand { font-family: 'Space Grotesk'; font-size: 17px; }
        .footer-tag { color: var(--muted-2); font-size: 13px; margin-top: 4px; }
        .footer-links { display: flex; gap: 18px; }
        .footer-links a { color: var(--muted); transition: color 0.25s ease; }
        .footer-links a:hover { color: var(--text); }

        .nyra-fab {
          position: fixed; right: 18px; bottom: 18px; z-index: 45;
          display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text);
          background: rgba(10,10,16,0.75); backdrop-filter: blur(14px); border: 1px solid var(--line);
          border-radius: 999px; padding: 7px 18px 7px 7px; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
          transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
        }
        .nyra-fab:hover { transform: translateY(-3px); border-color: rgba(240,60,150,0.5); box-shadow: 0 14px 40px rgba(240,60,150,0.22); }
        .nyra-fab-hidden { opacity: 0; pointer-events: none; transform: translateY(12px); }
        .nyra-fab-avatar { position: relative; width: 38px; height: 38px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(240,60,150,0.55); flex-shrink: 0; }
        .nyra-fab-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .nyra-fab-status {
          position: absolute; bottom: -1px; right: -1px; width: 10px; height: 10px; border-radius: 50%;
          background: #35d07f; border: 2px solid #0a0a10; animation: fabPulse 2s ease-in-out infinite;
        }
        @keyframes fabPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(53,208,127,0.5); } 50% { box-shadow: 0 0 0 5px rgba(53,208,127,0); } }
        .nyra-fab-text { display: flex; flex-direction: column; line-height: 1.25; }
        .nyra-fab-title { font-size: 12.5px; font-weight: 500; }
        .nyra-fab-sub { font-size: 9.5px; color: var(--muted-2); }
        @media (max-width: 480px) { .nyra-fab-text { display: none; } .nyra-fab { padding: 5px; } }

        button:focus-visible, a:focus-visible { outline: 2px solid #8ab0ff; outline-offset: 3px; }
      
html, body { margin: 0; padding: 0; }
