/* ── RESET & TOKENS ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:     #09090b;
      --bg2:    #0e0e12;
      --bg3:    #13131a;
      --pink:   #f72585;
      --teal:   #00d1b2;
      --white:  #e4e4e7;
      --gray:   #71717a;
      --dim:    #52525b;
      --border: #27272a;
      --font-head: 'Righteous', sans-serif;
      --font-body: 'Poppins', sans-serif;
      --font-mono: 'Space Mono', monospace;

      /* novos acentos */
      --sky:    #4cc9f0;
      --amber:  #fca311;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--font-body);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    img, video { display: block; }
    button, [role="button"] { cursor: pointer; }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.25rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s, border-color 0.4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(9,9,11,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--border);
    }
    .nav-logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
    .nav-logo img { height: 60px; width: auto; display: block; }
    .nav-logo-text { font-family: var(--font-head); font-size: 1rem; }
    .nav-logo-text em { color: var(--teal); font-style: normal; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: var(--gray);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-links a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
    .btn-nav {
      background: var(--pink);
      color: #fff;
      border: none;
      padding: 0.6rem 1.4rem;
      border-radius: 6px;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      cursor: pointer;
      box-shadow: 0 0 20px rgba(247,37,133,0.4);
      transition: box-shadow 0.25s, transform 0.2s;
    }
    .btn-nav:hover { box-shadow: 0 0 36px rgba(247,37,133,0.65); transform: translateY(-1px); }
    .btn-nav:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

    /* ── LANGUAGE SWITCH ── */
    .lang-switch {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      margin-left: 0.9rem;
      padding: 0.2rem;
      border: 1px solid var(--border);
      border-radius: 100px;
      background: rgba(255,255,255,0.03);
    }
    .lang-btn {
      background: transparent;
      border: none;
      color: var(--gray);
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 0.32rem 0.6rem;
      border-radius: 100px;
      cursor: pointer;
      transition: color 0.2s, background 0.2s;
    }
    .lang-btn:hover { color: var(--white); }
    .lang-btn.active { background: var(--teal); color: #06201c; }
    .lang-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
    @media (max-width: 900px) {
      .lang-switch { margin-left: 0.4rem; }
    }
    /* ── TABLET SHRINK — header menor em tablets (769–1366px) ── */
    @media (max-width: 1366px) and (min-width: 769px) {
      nav { padding: 0.85rem clamp(1rem, 3vw, 1.75rem); }
      .nav-logo img { height: 36px; }
      .nav-links { gap: 1.1rem; }
      .nav-links a { font-size: 0.66rem; }
      .btn-nav { padding: 0.45rem 1rem; font-size: 0.7rem; }
      .lang-switch { margin-left: 0.5rem; padding: 0.15rem; }
      .lang-btn { font-size: 0.58rem; padding: 0.24rem 0.5rem; }
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.12;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 55% at 50% 40%, rgba(247,37,133,0.08) 0%, transparent 65%),
        linear-gradient(to bottom, rgba(9,9,11,0.2) 0%, rgba(9,9,11,0) 35%, rgba(9,9,11,0.97) 100%);
    }
    #heroCanvas {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 240px;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 2rem;
      max-width: 980px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(0,209,178,0.08);
      border: 1px solid rgba(0,209,178,0.25);
      color: var(--teal);
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.45rem 1.1rem;
      border-radius: 100px;
      margin-bottom: 2.5rem;
    }
    .badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 8px var(--teal);
      animation: blink 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(3.5rem, 10vw, 9rem);
      font-weight: 400; /* Righteous is already bold */
      line-height: 0.9;
      letter-spacing: -0.01em;
      margin-bottom: 2rem;
    }
    .h1-line { display: block; }
    .h1-white { color: var(--white); }
    .h1-pink {
      color: var(--pink);
      text-shadow: 0 0 80px rgba(247,37,133,0.4), 0 0 30px rgba(247,37,133,0.25);
    }
    .h1-teal { color: var(--teal); }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--gray);
      max-width: 540px;
      margin: 0 auto 3rem;
      line-height: 1.75;
      font-weight: 400;
    }
    .hero-sub strong { color: var(--white); font-weight: 600; }

    .hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      background: var(--pink);
      color: #fff;
      padding: 0.9rem 2.4rem;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: 0 0 30px rgba(247,37,133,0.45);
      transition: box-shadow 0.25s, transform 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }
    .btn-primary:hover { box-shadow: 0 0 50px rgba(247,37,133,0.7); transform: translateY(-2px); }
    .btn-primary:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

    .btn-ghost {
      border: 1px solid var(--border);
      color: var(--white);
      padding: 0.9rem 2rem;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 500;
      transition: border-color 0.2s, color 0.2s;
      cursor: pointer;
    }
    .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

    .scroll-hint {
      position: absolute;
      bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.3;
      pointer-events: none;
    }
    .scroll-hint span {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .scroll-line {
      width: 1px; height: 44px;
      background: linear-gradient(to bottom, var(--teal), transparent);
      animation: scrollAnim 2.5s ease-in-out infinite;
    }
    @keyframes scrollAnim {
      0%  { transform: scaleY(0); transform-origin: top;    opacity: 0; }
      50% { transform: scaleY(1);                           opacity: 1; }
      100%{ transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--pink);
      padding: 0.8rem 0;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
    }
    .ticker::before, .ticker::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 1;
    }
    .ticker::before { left:  0; background: linear-gradient(to right, var(--pink), transparent); }
    .ticker::after  { right: 0; background: linear-gradient(to left,  var(--pink), transparent); }
    .ticker-track { display: inline-flex; animation: marquee 35s linear infinite; }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0 1.5rem;
      font-family: var(--font-mono);
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.92);
    }
    .ticker-item::after { content: '✦'; font-size: 0.5rem; opacity: 0.55; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── SHARED LAYOUT ── */
    .section-wrap {
      padding: 7rem 3rem;
      max-width: 1300px;
      margin: 0 auto;
    }
    .eyebrow {
      font-family: var(--font-mono);
      font-size: 0.63rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 1rem;
    }
    .section-h2 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4.5vw, 3.6rem);
      font-weight: 400;
      letter-spacing: -0.01em;
      line-height: 1.05;
      margin-bottom: 1.25rem;
    }
    .section-lead {
      color: var(--gray);
      font-size: 1.05rem;
      max-width: 540px;
      line-height: 1.8;
      margin-bottom: 4rem;
      font-weight: 400;
    }
    .glow-divider {
      height: 1px;
      background: linear-gradient(to right, transparent 0%, var(--teal) 30%, var(--pink) 70%, transparent 100%);
      opacity: 0.2;
    }

    /* ── FEATURES GRID ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .feature-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2rem;
      backdrop-filter: blur(6px);
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.55s ease-out, transform 0.55s ease-out, border-color 0.3s, box-shadow 0.3s;
      cursor: default;
    }
    .feature-card.visible { opacity: 1; transform: translateY(0); }
    .feature-card:hover {
      border-color: rgba(0,209,178,0.4);
      box-shadow: 0 0 40px rgba(0,209,178,0.07);
      transform: translateY(-5px) !important;
    }
    .feature-card:nth-child(1) { transition-delay: 0s; }
    .feature-card:nth-child(2) { transition-delay: 0.07s; }
    .feature-card:nth-child(3) { transition-delay: 0.14s; }
    .feature-card:nth-child(4) { transition-delay: 0.21s; }
    .feature-card:nth-child(5) { transition-delay: 0.28s; }
    .feature-card.wide { grid-column: span 2; }
    .feature-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: rgba(0,209,178,0.07);
      border: 1px solid rgba(0,209,178,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      flex-shrink: 0;
    }
    .feature-h3 {
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 0.65rem;
      line-height: 1.2;
    }
    .feature-p {
      color: var(--gray);
      font-size: 0.88rem;
      line-height: 1.75;
      font-weight: 400;
    }
    .feature-chip {
      display: inline-block;
      margin-top: 1.25rem;
      font-family: var(--font-mono);
      font-size: 0.59rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--pink);
      background: rgba(247,37,133,0.08);
      border: 1px solid rgba(247,37,133,0.2);
      padding: 0.25rem 0.65rem;
      border-radius: 4px;
    }

    /* ── FEATURE DEMOS ── */
    .feat-demos {
      margin-top: 2.5rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      backdrop-filter: blur(8px);
    }
    .feat-demo-tabs {
      display: flex;
      gap: .75rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }
    .feat-tab {
      display: flex;
      align-items: center;
      gap: .45rem;
      padding: .55rem 1.35rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      color: var(--gray);
      font-family: var(--font-mono);
      font-size: .68rem;
      letter-spacing: .09em;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color 200ms, color 200ms, background 200ms, box-shadow 200ms;
    }
    .feat-tab:hover { border-color: rgba(247,37,133,0.45); color: #fff; }
    .feat-tab.active {
      border-color: var(--pink);
      background: rgba(247,37,133,0.1);
      color: #fff;
      box-shadow: 0 0 24px rgba(247,37,133,0.18);
    }
    .feat-demo-viewport {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      background: #000;
      border: 1px solid var(--border);
    }
    .feat-demo-viewport video {
      display: block;
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      transition: opacity 180ms ease;
    }
    .feat-demo-viewport video.fd-fade { opacity: 0; }
    .feat-demo-badge {
      position: absolute;
      bottom: .85rem;
      left: .85rem;
      font-family: var(--font-mono);
      font-size: .6rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--sky);
      background: rgba(9,9,11,0.72);
      backdrop-filter: blur(6px);
      padding: .3rem .75rem;
      border-radius: 999px;
      border: 1px solid rgba(76,201,240,0.2);
      pointer-events: none;
    }

    /* ── EFFECTS RACK ── */
    .effects-section {
      padding: 7rem 3rem;
      background: var(--bg2);
    }
    .effects-inner { max-width: 1300px; margin: 0 auto; }
    .effects-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
      margin-bottom: 4rem;
    }
    .effects-header .section-lead { margin-bottom: 0; }
    .effects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .effect-cat {
      background: rgba(255,255,255,0.015);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.75rem;
      transition: border-color 0.3s;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.48s ease-out, transform 0.48s ease-out, border-color 0.3s;
    }
    .effect-cat.visible { opacity: 1; transform: translateY(0); }
    .effect-cat:hover { border-color: rgba(247,37,133,0.3); }
    .effect-cat:nth-child(1){transition-delay:0s}
    .effect-cat:nth-child(2){transition-delay:.06s}
    .effect-cat:nth-child(3){transition-delay:.12s}
    .effect-cat:nth-child(4){transition-delay:.18s}
    .effect-cat:nth-child(5){transition-delay:.24s}
    .effect-cat:nth-child(6){transition-delay:.30s}
    .effect-cat-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid var(--border);
    }
    .effect-cat-name {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--teal);
    }
    .effect-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .effect-pill {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      color: var(--gray);
      font-size: 0.75rem;
      padding: 0.3rem 0.7rem;
      border-radius: 6px;
      font-weight: 400;
    }

    /* ── EFFECTS: ENGINE (JSI/C++ explainer) ── */
    .effects-engine {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 3rem;
      align-items: start;
      background: rgba(255,255,255,0.015);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem;
      margin-bottom: 4rem;
    }
    .effects-engine h3 {
      font-family: var(--font-head);
      font-weight: 400;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .effects-engine p {
      color: var(--gray);
      font-size: 0.92rem;
      line-height: 1.85;
      margin-bottom: 1rem;
    }
    /* ── EFFECTS: SHOWCASE MEDIA (1 imagem + 1 vídeo) ── */
    .effects-showcase-media {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }
    .effects-showcase-media img,
    .effects-showcase-media video {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 14px;
      border: 1px solid var(--border);
      display: block;
      background: #000;
    }
    @media (max-width: 700px) {
      .effects-showcase-media { grid-template-columns: 1fr; }
    }

    /* ── EFFECTS: CATEGORY TABS ── */
    .ecat-tabs {
      display: flex;
      gap: .75rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }
    .ecat-tab {
      display: flex;
      align-items: center;
      gap: .45rem;
      padding: .6rem 1.35rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      color: var(--gray);
      font-family: var(--font-mono);
      font-size: .68rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color 200ms, color 200ms, background 200ms, box-shadow 200ms;
    }
    .ecat-tab:hover { border-color: rgba(245,158,11,0.45); color: #fff; }
    .ecat-tab.active {
      border-color: var(--amber);
      background: rgba(252,163,17,0.1);
      color: #fff;
      box-shadow: 0 0 24px rgba(252,163,17,0.18);
    }
    /* ── EFFECTS: PEDAL ACCORDION ── */
    .ecat-panel { display: none; }
    .ecat-panel.active { display: block; }
    .pedal-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 4rem; }
    .pedal-item {
      background: rgba(255,255,255,0.015);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }
    .pedal-item summary {
      list-style: none;
      cursor: pointer;
      padding: 1.1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-family: var(--font-head);
      font-weight: 400;
      font-size: 1rem;
      transition: color 0.2s;
    }
    .pedal-item summary::-webkit-details-marker { display: none; }
    .pedal-item summary:hover { color: var(--amber); }
    .pedal-item summary::after {
      content: '+';
      font-family: var(--font-mono);
      font-size: 1.2rem;
      color: var(--dim);
      transition: transform 0.25s;
      flex-shrink: 0;
    }
    .pedal-item[open] summary::after { content: '−'; color: var(--amber); }
    .pedal-item-body {
      padding: 0 1.5rem 1.35rem;
      color: var(--gray);
      font-size: 0.88rem;
      line-height: 1.8;
    }
    .pedal-item-body code {
      font-family: var(--font-mono);
      font-size: 0.8em;
      background: rgba(255,255,255,0.06);
      padding: 0.1em 0.4em;
      border-radius: 4px;
      color: var(--sky);
    }

    /* ── EFFECTS: WORKFLOW GRID ── */
    .workflow-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .workflow-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }
    .workflow-card:hover { border-color: rgba(252,163,17,0.35); transform: translateY(-4px); }
    .workflow-card-media { aspect-ratio: 4/3; background: #000; overflow: hidden; }
    .workflow-card-media img, .workflow-card-media video { width: 100%; height: 100%; object-fit: cover; }
    .workflow-card-body { padding: 1.25rem 1.4rem 1.5rem; }
    .workflow-card h4 {
      font-family: var(--font-head);
      font-weight: 400;
      font-size: 0.98rem;
      margin-bottom: 0.5rem;
    }
    .workflow-card p { color: var(--gray); font-size: 0.82rem; line-height: 1.7; }

    @media (max-width: 900px) {
      .effects-engine { grid-template-columns: 1fr; }
      .workflow-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .workflow-grid { grid-template-columns: 1fr; }
    }

    /* ── LIVE PADS SECTION ── */
    .livepads-section { padding: 7rem 3rem; background: var(--bg); }
    .livepads-inner { max-width: 1300px; margin: 0 auto; }
    .lp-block { margin-bottom: 4.5rem; }
    .lp-block:last-child { margin-bottom: 0; }
    .lp-block-head { max-width: 760px; margin-bottom: 1.75rem; }
    .lp-block-head .eyebrow { margin-bottom: 0.6rem; }
    .lp-block-head h3 {
      font-family: var(--font-head);
      font-weight: 400;
      font-size: 1.6rem;
      margin-bottom: 0.9rem;
      line-height: 1.25;
    }
    .lp-block-head p {
      color: var(--gray);
      font-size: 0.95rem;
      line-height: 1.85;
      margin-bottom: 0.75rem;
    }
    .lp-block-head p:last-child { margin-bottom: 0; }
    .lp-block-head strong { color: var(--white); font-weight: 600; }

    .engine-note {
      background: rgba(255,255,255,0.015);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem 2.1rem;
      margin-top: 1.5rem;
    }
    .engine-note p { color: var(--gray); font-size: 0.88rem; line-height: 1.85; margin: 0; }
    .engine-note code {
      font-family: var(--font-mono);
      font-size: 0.85em;
      color: var(--sky);
      background: rgba(255,255,255,0.06);
      padding: 0.1em 0.4em;
      border-radius: 4px;
    }

    /* ── EM CONSTRUÇÃO (DAW / Tutoriais) ── */
    .construction-section {
      padding: 6rem 3rem;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }
    .construction-icon { font-size: 2.6rem; margin-bottom: 1.5rem; opacity: 0.8; }

    /* ── GALLERY / SCREENSHOTS ── */
    .gallery-section { padding: 7rem 3rem; background: var(--bg2); }
    .gallery-inner { max-width: 1300px; margin: 0 auto; }
    .gallery-header { text-align: center; margin-bottom: 4rem; }
    .gallery-header .section-lead { margin: 0 auto; text-align: center; }

    .gallery-component {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 2rem;
      align-items: start;
    }

    /* Thumbnails */
    .gallery-thumbs {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .gthumb {
      width: 100%;
      height: 88px;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--border);
      cursor: pointer;
      background: none;
      padding: 0;
      opacity: 0.45;
      filter: saturate(0.4) brightness(0.7);
      transform: translateX(0);
      transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .gthumb img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top left;
      display: block;
    }
    .gthumb-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 0.4rem 0.6rem;
      background: linear-gradient(to top, rgba(9,9,11,0.92), transparent);
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 600;
      color: var(--white);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .gthumb-num {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.52rem;
      color: var(--dim);
      margin-bottom: 0.1rem;
    }
    .gthumb.active {
      opacity: 1;
      filter: none;
      transform: translateX(4px);
    }

    /* Viewport */
    .gallery-viewport { display: flex; flex-direction: column; gap: 1.5rem; }
    .gallery-device {
      border-radius: 22px;
      overflow: visible;
      position: relative;
      transition: box-shadow 0.5s ease;
    }
    .device-bezel {
      background: linear-gradient(145deg, #1e1e24 0%, #141418 50%, #1a1a20 100%);
      border-radius: 22px;
      padding: 14px 16px 18px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 20px 60px rgba(0,0,0,0.8),
        0 4px 16px rgba(0,0,0,0.5);
      position: relative;
    }
    .device-camera {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #0f0f12;
      box-shadow: inset 0 0 4px rgba(0,0,0,0.8), 0 0 0 1px #1a1a1e;
      margin: 0 auto 10px;
    }
    .device-inner {
      border-radius: 12px;
      overflow: hidden;
      background: #0a0a0d;
      padding: 2px;
      position: relative;
    }
    .device-screen {
      width: 100%; display: block;
      border-radius: 10px;
      aspect-ratio: 16/10;
      object-fit: cover;
      object-position: top left;
      transition: opacity 0.2s ease-in, transform 0.2s ease-in;
    }
    .device-screen.switching { opacity: 0; transform: scale(0.98); }
    .device-reflect {
      position: absolute; inset: 0;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%);
      pointer-events: none;
    }

    /* Caption */
    .gallery-caption {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1.5rem;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .gallery-caption.switching { opacity: 0; transform: translateY(-8px); }
    .caption-meta {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      color: var(--dim);
      margin-bottom: 0.35rem;
      letter-spacing: 0.1em;
    }
    .caption-title {
      font-family: var(--font-head);
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }
    .caption-text {
      font-size: 0.87rem;
      color: var(--gray);
      line-height: 1.7;
      max-width: 540px;
    }
    .caption-chip {
      flex-shrink: 0;
      font-family: var(--font-mono);
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 5px;
      white-space: nowrap;
    }

    @media (max-width: 1024px) {
      .gallery-component { grid-template-columns: 1fr; }
      .gallery-thumbs { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; }
      .gallery-thumbs::-webkit-scrollbar { display: none; }
      .gthumb { width: 130px; min-width: 130px; height: 70px; scroll-snap-align: start; flex-shrink: 0; }
      .gthumb.active { transform: translateY(-4px); }
    }
    @media (max-width: 768px) {
      .gthumb { width: 110px; min-width: 110px; height: 58px; }
      .gallery-caption { flex-direction: column; gap: 0.75rem; }
      .device-bezel { padding: 8px 10px 12px; }
      .device-camera { display: none; }
    }

    /* ── SHOWCASE ── */
    .showcase { padding: 7rem 3rem; background: var(--bg3); }
    .showcase-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .showcase-media {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
    }
    .showcase-media img { width:100%; height:100%; object-fit:cover; }
    .showcase-media::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,209,178,0.09) 0%, transparent 55%);
      pointer-events: none;
      z-index: 1;
    }
    .showcase-reel {
      display: flex;
      gap: 0.9rem;
      height: 100%;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }
    .showcase-reel::-webkit-scrollbar { height: 5px; }
    .showcase-reel::-webkit-scrollbar-track { background: transparent; }
    .showcase-reel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
    .reel-item {
      flex: 0 0 auto;
      width: 62%;
      height: 100%;
      border: none;
      padding: 0;
      border-radius: 16px;
      overflow: hidden;
      scroll-snap-align: center;
      cursor: pointer;
      position: relative;
      background: #000;
    }
    .reel-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .reel-play-icon {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(9,9,11,0.15);
      transition: background 0.2s;
      pointer-events: none;
    }
    .reel-item:hover .reel-play-icon { background: rgba(9,9,11,0.3); }
    .reel-play-icon svg { width: 44px; height: 44px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }
    .media-glow {
      position: absolute; inset: -1px;
      border-radius: 25px;
      box-shadow: 0 0 60px rgba(0,209,178,0.12), 0 0 120px rgba(247,37,133,0.06);
      pointer-events: none;
    }
    .spec-list { list-style: none; margin: 2rem 0 2.5rem; }
    .spec-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.88rem;
      color: var(--gray);
      line-height: 1.6;
      font-weight: 400;
    }
    .spec-list li:last-child { border-bottom: none; }
    .spec-list li::before {
      content: ''; width: 7px; height: 7px;
      border-radius: 50%; background: var(--teal);
      box-shadow: 0 0 7px var(--teal);
      flex-shrink: 0; margin-top: 0.35rem;
    }
    .spec-list li strong { color: var(--white); font-weight: 600; }

    /* ── MANIFESTO ── */
    .manifesto-section {
      padding: 8rem 3rem;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .manifesto-section::before {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(247,37,133,0.05) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .manifesto-inner { max-width: 1300px; margin: 0 auto; }
    .manifesto-pull {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 4vw, 3.2rem);
      font-weight: 400;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 3rem;
      max-width: 700px;
      position: relative;
    }
    .manifesto-pull::before {
      content: '"';
      font-size: 8rem;
      font-family: var(--font-head);
      color: var(--pink);
      opacity: 0.15;
      position: absolute;
      top: -2.5rem;
      left: -1.5rem;
      line-height: 1;
      pointer-events: none;
    }
    .manifesto-body {
      max-width: 640px;
      color: var(--gray);
      font-size: 1rem;
      line-height: 1.85;
      margin-bottom: 1.5rem;
      font-weight: 400;
    }
    .manifesto-attr {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--dim);
      letter-spacing: 0.1em;
      margin-bottom: 5rem;
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      border-top: 1px solid var(--border);
      padding-top: 4rem;
    }
    .pillar {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .pillar.visible { opacity: 1; transform: translateY(0); }
    .pillar:nth-child(1){transition-delay:0s}
    .pillar:nth-child(2){transition-delay:.09s}
    .pillar:nth-child(3){transition-delay:.18s}
    .pillar-number {
      font-family: var(--font-head);
      font-size: 3rem;
      color: rgba(255,255,255,0.05);
      line-height: 1;
      margin-bottom: -0.5rem;
    }
    .pillar-name {
      font-family: var(--font-head);
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 0.6rem;
    }
    .pillar-text {
      font-size: 0.87rem;
      color: var(--gray);
      line-height: 1.75;
    }
    .pillar-line {
      width: 32px; height: 2px;
      margin-bottom: 1rem;
    }
    .pillar:nth-child(1) .pillar-line { background: var(--teal); }
    .pillar:nth-child(2) .pillar-line { background: var(--pink); }
    .pillar:nth-child(3) .pillar-line { background: rgba(255,255,255,0.3); }

    /* ── SOBRE: SOB O CAPÔ (engenharia) ── */
    .sobre-engine { margin-top: 5rem; border-top: 1px solid var(--border); padding-top: 4rem; }
    .sobre-engine-head { max-width: 760px; margin-bottom: 2.5rem; }
    .sobre-engine-head h3 {
      font-family: var(--font-head);
      font-weight: 400;
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .sobre-engine-head p { color: var(--gray); font-size: 0.95rem; line-height: 1.85; }
    .engine-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .engine-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out, border-color 0.3s;
    }
    .engine-card.visible { opacity: 1; transform: translateY(0); }
    .engine-card:hover { border-color: rgba(76,201,240,0.35); }
    .engine-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-bottom: 1px solid var(--border); }
    .engine-card-body { padding: 1.5rem 1.6rem; }
    .engine-card h4 { font-family: var(--font-head); font-weight: 400; font-size: 1.02rem; margin-bottom: 0.6rem; }
    .engine-card p { color: var(--gray); font-size: 0.84rem; line-height: 1.75; }
    .engine-card code {
      font-family: var(--font-mono);
      font-size: 0.82em;
      color: var(--sky);
      background: rgba(255,255,255,0.06);
      padding: 0.1em 0.35em;
      border-radius: 4px;
    }
    @media (max-width: 900px) { .engine-cards-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .engine-cards-grid { grid-template-columns: 1fr; } }

    /* ── ROADMAP ── */
    .roadmap-section { padding: 7rem 3rem; background: var(--bg3); }
    .roadmap-inner { max-width: 1300px; margin: 0 auto; }
    .roadmap-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 4rem;
    }
    .roadmap-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem;
      background: rgba(255,255,255,0.015);
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out, border-color 0.3s;
    }
    .roadmap-card.visible { opacity: 1; transform: translateY(0); }
    .roadmap-card:hover { border-color: rgba(0,209,178,0.25); }
    .roadmap-card:nth-child(1){transition-delay:0s}
    .roadmap-card:nth-child(2){transition-delay:.08s}
    .roadmap-card:nth-child(3){transition-delay:.16s}
    .roadmap-card:nth-child(4){transition-delay:.24s}
    .roadmap-badge {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.57rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      margin-bottom: 1rem;
    }
    .badge-soon { background:rgba(247,37,133,0.12); color:var(--pink); border:1px solid rgba(247,37,133,0.22); }
    .badge-next { background:rgba(0,209,178,0.1); color:var(--teal); border:1px solid rgba(0,209,178,0.22); }
    .roadmap-icon { font-size: 1.4rem; margin-bottom: 0.75rem; }
    .roadmap-h3 {
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    .roadmap-p { color: var(--gray); font-size: 0.8rem; line-height: 1.65; font-weight: 400; }

    /* ── CTA FINAL ── */
    .cta-section {
      padding: 9rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 75% 75% at 50% 50%, rgba(247,37,133,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-section .section-h2 {
      font-size: clamp(2.5rem, 5.5vw, 4.8rem);
      max-width: 700px;
      margin: 0 auto 1.5rem;
      position: relative;
    }
    .cta-section .section-lead {
      margin: 0 auto 3rem;
      text-align: center;
      position: relative;
      max-width: 460px;
    }
    .btn-cta {
      position: relative;
      background: var(--pink);
      color: #fff;
      padding: 1.1rem 3rem;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: 0 0 40px rgba(247,37,133,0.5);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: box-shadow 0.25s, transform 0.2s;
      cursor: pointer;
    }
    .btn-cta:hover { box-shadow: 0 0 65px rgba(247,37,133,0.75); transform: translateY(-3px); }
    .btn-cta:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
    .cta-sub {
      margin-top: 1.25rem;
      font-size: 0.78rem;
      color: var(--dim);
      position: relative;
    }
    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
      position: relative;
    }
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      color: var(--dim);
      font-family: var(--font-mono);
      letter-spacing: 0.05em;
    }
    .trust-badge::before {
      content: '✓';
      color: var(--teal);
      font-size: 0.8rem;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 3.5rem 3rem 2.5rem;
    }
    .footer-inner { max-width: 1300px; margin: 0 auto; }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand .logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      margin-bottom: 1rem;
    }
    .footer-brand .logo img { height:32px; width:auto; }
    .footer-brand .logo-text { font-family: var(--font-head); font-size: 0.95rem; }
    .footer-brand .logo-text em { color: var(--teal); font-style: normal; }
    .footer-brand-tagline {
      color: var(--gray);
      font-size: 0.85rem;
      line-height: 1.65;
      max-width: 230px;
      font-weight: 400;
    }
    .footer-col h4 {
      font-family: var(--font-mono);
      font-size: 0.59rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul li a { color: var(--gray); font-size: 0.83rem; transition: color 0.2s; cursor: pointer; }
    .footer-col ul li a:hover { color: var(--teal); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-copy { color: var(--dim); font-size: 0.73rem; line-height: 1.6; }
    .footer-social { display: flex; gap: 0.75rem; }
    .footer-social a {
      width: 36px; height: 36px;
      border-radius: 8px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      color: var(--gray);
      transition: border-color 0.2s, color 0.2s;
      cursor: pointer;
    }
    .footer-social a:hover { border-color: var(--teal); color: var(--teal); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: repeat(2,1fr); }
      .feature-card.wide { grid-column: span 2; }
      .effects-header { grid-template-columns: 1fr; }
      .effects-grid { grid-template-columns: repeat(2,1fr); }
      .roadmap-grid { grid-template-columns: repeat(2,1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .section-wrap { padding: 5rem 1.5rem; }
      .effects-section, .showcase, .manifesto-section,
      .roadmap-section, .cta-section { padding: 5rem 1.5rem; }
      .features-grid { grid-template-columns: 1fr; }
      .feature-card.wide { grid-column: span 1; }
      .effects-grid { grid-template-columns: 1fr; }
      .showcase-inner { grid-template-columns: 1fr; }
      .pillars-grid { grid-template-columns: 1fr; gap: 2rem; }
      .roadmap-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(2.8rem, 14vw, 5rem); }
      .roadmap-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .trust-badges { gap: 1rem; }
    }

    /* ── Video modal ── */
    #videoModal {
      border: none;
      background: transparent;
      padding: 0;
      max-width: 90vw;
      width: 900px;
      border-radius: 16px;
      overflow: hidden;
    }
    #videoModal::backdrop {
      background: rgba(0,0,0,0.88);
      backdrop-filter: blur(6px);
    }
    .modal-inner {
      position: relative;
      background: var(--bg2, #0e0e12);
      border-radius: 16px;
      border: 1px solid var(--border, #27272A);
    }
    .modal-inner video {
      display: block;
      width: 100%;
      border-radius: 16px;
    }
    .modal-close {
      position: absolute;
      top: .75rem; right: .75rem;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(9,9,11,0.72);
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 150ms ease;
      z-index: 10;
    }
    .modal-close:hover { background: rgba(247,37,133,0.25); }

    /* ── SUBPÁGINAS: espaço p/ a nav fixa (adicionado na reestruturação multi-página) ── */
    body.subpage { padding-top: 5.5rem; }
    @media (max-width: 1366px) and (min-width: 769px) { body.subpage { padding-top: 4.25rem; } }
    body.subpage .construction-section { min-height: calc(100vh - 5.5rem); display: flex; flex-direction: column; align-items: center; justify-content: center; }