@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');


:root {
  --ink: #0e0e11;
  --ink-2: #1c1c22;
  --ink-3: #2a2a33;
  --muted: #6b6b7a;
  --faint: #a0a0b0;
  --line: rgba(255, 255, 255, 0.08);
  --paper: #f4f3f0;
  --white: #ffffff;
  --blue: #3b6eff;
  --blue-dim: rgba(59, 110, 255, 0.15);
  --blue-line: rgba(59, 110, 255, 0.35);
  --green: #00c47a;
  --amber: #f59e0b;
  --red: #ef4444;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: none;
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}


em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}


.cursor {
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
  mix-blend-mode: difference;
}

body.cursor-expand .cursor {
  width: 40px;
  height: 40px;
}


.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 10000;
  transition: opacity .7s var(--ease), visibility .7s;
}

.loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-word {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -.01em;
}

.loader-word span {
  color: var(--blue);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 2px;
  transition: width .05s linear;
}

.loader-hint {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .06em;
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background .4s var(--ease);
}

.nav.solid {
  background: rgba(14, 14, 17, .9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--faint);
  transition: color .2s, background .2s;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.nav-btn {
  background: var(--white);
  color: var(--ink);
  padding: 9px 22px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: opacity .2s, transform .2s;
}

.nav-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.nav-line {
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.nav.solid .nav-line {
  transform: scaleX(1);
}


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0;
  animation: fadeUp .6s .2s var(--ease) forwards;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp .7s .35s var(--ease) forwards;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--faint);
  max-width: 460px;
  opacity: 0;
  animation: fadeUp .6s .5s var(--ease) forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .6s .65s var(--ease) forwards;
}

.btn-dark {
  background: var(--white);
  color: var(--ink);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .2s, transform .2s;
}

.btn-dark:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.play-icon {
  font-size: .75rem;
}

.btn-ghost {
  padding: 13px 26px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--faint);
  border: 1px solid var(--line);
  transition: color .2s, border-color .2s, transform .2s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-2px);
}

.hero-numbers {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp .6s .8s var(--ease) forwards;
}

.hero-num {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hn-val {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  display: inline;
}

.hn-unit {
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 600;
}

.hn-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hero-sep {
  width: 1px;
  height: 36px;
  background: var(--line);
}


.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn .8s .4s var(--ease) forwards;
}

.hero-product-frame {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: floatImg 7s ease-in-out infinite;
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-product-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 110, 255, .2);
  animation: ringSpin linear infinite;
}

.r1 {
  width: 380px;
  height: 380px;
  animation-duration: 22s;
}

.r2 {
  width: 310px;
  height: 310px;
  border-style: dashed;
  animation-duration: 16s;
  animation-direction: reverse;
}

@keyframes ringSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-tag {
  position: absolute;
  z-index: 5;
  background: rgba(14, 14, 17, .9);
  border: 1px solid rgba(59, 110, 255, .3);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--faint);
  backdrop-filter: blur(10px);
  animation: tagFloat 4s ease-in-out infinite;
}

.ht1 {
  top: 14%;
  left: -2%;
  animation-delay: 0s;
}

.ht2 {
  top: 25%;
  right: -4%;
  animation-delay: -.8s;
  color: var(--blue);
}

.ht3 {
  bottom: 22%;
  right: -2%;
  animation-delay: -1.6s;
  color: var(--green);
}

@keyframes tagFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}


.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.band-track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  animation: bandScroll 18s linear infinite;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
}

.band-track .sep {
  color: var(--line);
}

@keyframes bandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  border-top: 1px solid var(--line);
}


.story-scene-col {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
  border-right: 1px solid var(--line);
  overflow: hidden;
}


.story-scene {
  width: 100%;
  max-width: 380px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
  position: relative;
}


.scene-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 500;
  color: var(--faint);
  transition: all .5s var(--ease);
}


.scene-stage {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px 16px;
  position: relative;
  border-bottom: 1px solid var(--line);
}


.character {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.char-body {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .4s var(--ease);
}

.char-body.speaking {
  border-color: var(--blue);
  animation: speakRing .6s ease infinite alternate;
}

@keyframes speakRing {
  from {
    box-shadow: 0 0 0 0 rgba(59, 110, 255, .4);
  }

  to {
    box-shadow: 0 0 0 8px rgba(59, 110, 255, 0);
  }
}

.char-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.char-name {
  font-size: .65rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}


.escuchaia-dot {
  position: absolute;
  top: 2px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s;
}

.escuchaia-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--blue-dim);
  animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(.6);
    opacity: .5;
  }

  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}


.speech-bubble {
  position: absolute;
  bottom: 110%;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  max-width: 160px;
  white-space: normal;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px) scale(.92);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
  z-index: 10;
}

.speech-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bubble-left {
  left: 0;
  border-color: rgba(59, 110, 255, .35);
}

.bubble-right {
  right: 0;
}


.scene-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding-bottom: 16px;
}

#wave-canvas {
  border-radius: 6px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

#wave-canvas.show {
  opacity: 1;
}


.ai-chip-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.ai-chip-wrap.show {
  opacity: 1;
  transform: scale(1);
}

.ai-chip {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--ink-3);
  border: 1px solid var(--blue-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.chip-inner {
  font-size: .75rem;
  font-weight: 700;
  color: var(--blue);
  z-index: 2;
  position: relative;
}

.chip-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--blue-line);
  animation: chipRingAnim linear infinite;
}

.cr1 {
  width: 70px;
  height: 70px;
  animation-duration: 3s;
}

.cr2 {
  width: 90px;
  height: 90px;
  animation-duration: 5s;
  animation-direction: reverse;
}

@keyframes chipRingAnim {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.chip-ms {
  font-size: .62rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .04em;
}


.scene-sub {
  padding: 12px 16px;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.sub-text {
  font-size: .72rem;
  color: var(--faint);
  font-weight: 500;
  transition: opacity .3s;
}


.scene-step-counter {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: .65rem;
  font-weight: 600;
  color: var(--muted);
}


.story-text-col {
  display: flex;
  flex-direction: column;
  padding: 60px 56px;
  max-height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
}


.story-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.story-progress-track {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.story-progress-fill {
  height: 100%;
  background: var(--blue);
  width: 0%;
  border-radius: 2px;
  transition: width linear;
}

.play-pause-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--faint);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, border-color .2s;
}

.play-pause-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}


.story-panels {
  position: relative;
  flex: 1;
}

.story-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}

.story-panel.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.story-panel.exit {
  opacity: 0;
  transform: translateY(-20px);
  position: absolute;
}

.panel-num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.panel-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.panel-body {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--faint);
  max-width: 420px;
}


.panel-status {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.ps-item {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s;
}

.ps-item.on {
  color: var(--green);
}


.speech-card {
  margin-top: 24px;
  background: var(--ink-2);
  border: 1px solid rgba(59, 110, 255, .25);
  border-radius: 12px;
  padding: 18px 20px;
}

.sc-lang {
  font-size: .68rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.sc-text {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 8px;
}

.sc-romanji {
  font-size: .72rem;
  color: var(--muted);
  font-style: italic;
}


.capture-card {
  margin-top: 24px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cc-label {
  font-size: .75rem;
  font-weight: 600;
  width: 110px;
}

.cc-label.bad {
  color: var(--red);
}

.cc-label.good {
  color: var(--green);
}

.cc-bar {
  flex: 1;
  height: 6px;
  border-radius: 6px;
}

.bad-bar {
  background: rgba(239, 68, 68, .25);
  animation: badFlicker 1.2s ease infinite;
}

@keyframes badFlicker {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

.good-bar {
  background: linear-gradient(90deg, var(--green), rgba(0, 196, 122, .3));
}

.cc-val {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  width: 40px;
  text-align: right;
}

.cc-accent {
  color: var(--green);
}


.pipeline-card {
  margin-top: 24px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pc-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  color: var(--muted);
}

.pc-step.done {
  color: var(--green);
  border-color: rgba(0, 196, 122, .2);
  background: rgba(0, 196, 122, .04);
}

.pc-step.active {
  color: var(--blue);
  border-color: var(--blue-line);
  background: var(--blue-dim);
}

.pc-step.pending {
  color: var(--ink-3);
}

.pc-check {
  margin-left: auto;
  font-weight: 800;
  color: var(--green);
}

.pc-dots {
  margin-left: auto;
  color: var(--muted);
  animation: dotsAnim 1s infinite;
}

@keyframes dotsAnim {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

.pc-spin {
  margin-left: auto;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top-color: var(--blue);
  border-right-color: rgba(59, 110, 255, .4);
  border-radius: 50%;
  animation: spin .5s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pc-arrow {
  font-size: .75rem;
  color: var(--ink-3);
  padding-left: 12px;
}


.result-card {
  margin-top: 24px;
  background: var(--ink-2);
  border: 1px solid rgba(0, 196, 122, .25);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rc-original,
.rc-translated {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rc-flag {
  font-size: 1.1rem;
}

.rc-orig-text {
  font-size: .85rem;
  color: var(--muted);
}

.rc-arrow {
  font-size: .7rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rc-arrow span {
  font-size: .65rem;
  letter-spacing: .03em;
}

.rc-tr-text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--green);
}

.cursor-blink {
  animation: cursorBlink .7s step-end infinite;
  color: var(--green);
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.rc-confidence {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.rcc-bar {
  flex: 1;
  height: 3px;
  background: rgba(0, 196, 122, .1);
  border-radius: 3px;
  overflow: hidden;
}

.rcc-fill {
  height: 100%;
  background: var(--green);
  transition: width 1s var(--ease-out);
}

#rcc-pct {
  font-size: .68rem;
  font-weight: 700;
  color: var(--green);
}


.flow-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.fs-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.fs-lbl {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}


.story-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 40px;
}

.sdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-3);
  cursor: pointer;
  transition: all .3s var(--ease);
}

.sdot.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}


.comparison-section {
  border-top: 1px solid var(--line);
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.comp-intro {
  margin-bottom: 80px;
}

.comp-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.comp-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 14px;
}

.comp-sub {
  font-size: 1rem;
  color: var(--faint);
  max-width: 540px;
  line-height: 1.7;
}


.comp-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 80px;
}

.comp-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 36px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.comp-product-card:hover {
  transform: translateY(-4px);
}

.escuchaia-card {
  border-color: rgba(59, 110, 255, .3);
}

.escuchaia-card:hover {
  border-color: rgba(59, 110, 255, .7);
}

.cpc-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 100px;
  background: radial-gradient(circle, rgba(59, 110, 255, .3), transparent 70%);
  pointer-events: none;
}

.cpc-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
}

.cpc-img-light {
  object-fit: contain;
  background: rgba(255, 255, 255, .04);
}

.cpc-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.cpc-tagline {
  font-size: .72rem;
  color: var(--muted);
}

.comp-vs {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--muted);
  font-style: italic;
}


.comp-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.comp-header-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  padding: 10px 20px;
  margin-bottom: 4px;
}

.chr-feature {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.chr-brand {
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
}

.escuchaia-col {
  color: var(--blue);
}

.airpods-col {
  color: var(--muted);
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: border-color .25s, background .25s;
}

.comp-row:hover {
  border-color: rgba(255, 255, 255, .12);
  background: var(--ink-3);
}

.cr-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cr-icon {
  font-size: 1.2rem;
}

.cr-feature>div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cr-feature strong {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}

.cr-feature span {
  font-size: .72rem;
  color: var(--muted);
}

.cr-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.cr-detail {
  font-size: .68rem;
  color: var(--muted);
}

.win-badge {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0, 196, 122, .1);
  border: 1px solid rgba(0, 196, 122, .2);
}

.lose-badge {
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .15);
}

.warn-badge {
  font-size: .8rem;
  font-weight: 600;
  color: var(--amber);
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .2);
}


.comp-verdict {
  margin-top: 64px;
  padding: 40px 48px;
  background: var(--ink-2);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.verdict-quote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--faint);
  font-style: italic;
}

.verdict-quote em {
  color: var(--white);
  font-style: italic;
}


.access-section {
  border-top: 1px solid var(--line);
  padding: 120px 48px;
}

.access-inner {
  max-width: 600px;
  margin: 0 auto;
}

.access-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.access-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.access-body {
  font-size: .95rem;
  color: var(--faint);
  line-height: 1.7;
  margin-bottom: 40px;
}

.access-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.af-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.af-input {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-size: .9rem;
  font-family: var(--sans);
  transition: border-color .2s, box-shadow .2s;
}

.af-input:focus {
  outline: none;
  border-color: rgba(59, 110, 255, .5);
  box-shadow: 0 0 0 3px rgba(59, 110, 255, .1);
}

.af-input::placeholder {
  color: var(--muted);
}

.af-input option {
  background: var(--ink-2);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  border-radius: 10px;
  font-size: .95rem;
}

.access-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  border: 1px solid rgba(0, 196, 122, .25);
  border-radius: 16px;
  text-align: center;
}

.access-success.show {
  display: flex;
  animation: fadeUp .4s var(--ease) both;
}

.success-mark {
  font-size: 2rem;
  color: var(--green);
}

.access-success p {
  font-size: .9rem;
  color: var(--faint);
}


.footer {
  border-top: 1px solid var(--line);
  padding: 32px 48px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--faint);
}

.footer-links {
  display: flex;
  gap: 24px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: .8rem;
  color: var(--muted);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: .75rem;
  color: var(--muted);
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 24px 60px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-body {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-numbers {
    justify-content: center;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-scene-col {
    position: relative;
    height: auto;
    padding: 60px 24px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .story-text-col {
    max-height: none;
    overflow: visible;
    padding: 40px 24px;
  }

  .story-panel {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    margin-bottom: 48px;
  }

  .story-panel.exit {
    display: none;
  }

  .story-controls {
    display: none;
  }

  .comp-visual {
    flex-wrap: wrap;
  }

  .comp-header-row,
  .comp-row {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .nav-inner {
    padding: 16px 24px;
  }

  .hero-right {
    order: -1;
  }

  .hero-product-frame {
    width: 300px;
    height: 300px;
  }

  .hero-product-img {
    width: 220px;
    height: 220px;
  }

  .r1 {
    width: 280px;
    height: 280px;
  }

  .r2 {
    width: 230px;
    height: 230px;
  }

  .comparison-section,
  .access-section {
    padding: 80px 24px;
  }

  .footer {
    padding: 24px;
  }

  .af-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-btn {
    padding: 7px 14px;
    font-size: .78rem;
  }

  .comp-header-row,
  .comp-row {
    display: grid !important;
    grid-template-columns: 1.1fr 1fr 1fr !important;
    padding: 12px 6px !important;
    gap: 6px !important;
  }

  .chr-brand {
    display: block !important;
    font-size: 0.7rem !important;
  }

  .cr-feature {
    font-size: 0.7rem !important;
  }

  .cr-feature .cr-icon {
    display: none !important;
  }

  .win-badge,
  .lose-badge,
  .warn-badge {
    font-size: 0.65rem !important;
    padding: 2px 6px !important;
  }

  .cr-detail {
    font-size: 0.58rem !important;
    line-height: 1.2 !important;
  }

  .comp-intro {
    margin-bottom: 40px !important;
  }

  .comp-visual {
    gap: 20px !important;
  }

  .comp-product-card {
    padding: 24px 16px !important;
    width: 140px !important;
  }

  .cpc-img {
    width: 80px !important;
    height: 80px !important;
  }

  .cpc-name {
    font-size: 0.78rem !important;
  }

  .cpc-tagline {
    font-size: 0.62rem !important;
  }

  .comp-vs {
    font-size: 1.1rem !important;
  }

  .speech-bubble {
    font-size: 0.65rem !important;
    max-width: 120px !important;
    padding: 5px 8px !important;
  }

  .promo-card {
    padding: 6px 10px !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }

  .pc-icon {
    width: 14px !important;
    height: 14px !important;
  }

  .pc-text h4 {
    font-size: 0.68rem !important;
  }

  .pc-text p {
    font-size: 0.58rem !important;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

  .cursor {
    display: none;
  }

  body {
    cursor: auto;
  }

  button,
  a {
    cursor: pointer;
  }

  .comparison-section,
  .access-section {
    padding: 60px 16px;
  }

  .nav-inner {
    padding: 12px 16px;
  }
}




.htag-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}


.ps-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--green);
  fill: none;
}

.ps-item {
  gap: 10px;
}


.sc-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-lang-icon {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}


.cc-icon {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.cc-label {
  gap: 6px;
  display: flex;
  align-items: center;
}


.pc-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

.pc-check-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--green);
  fill: none;
}

.pc-arrow {
  display: flex;
  align-items: center;
  padding-left: 12px;
  color: var(--ink-3);
}

.pc-arrow svg {
  stroke: var(--muted);
  opacity: .4;
}


.sub-icon {
  stroke: var(--muted);
  fill: none;
  flex-shrink: 0;
}

.scene-sub {
  gap: 8px;
}


.pill-icon {
  width: 12px;
  height: 12px;
  stroke: var(--blue);
  fill: none;
  flex-shrink: 0;
}


.chip-svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  position: relative;
  z-index: 2;
}


.char-svg {
  width: 42px;
  height: 42px;
  display: block;
}


.cr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.cr-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--faint);
  fill: none;
}


.rc-lang-tag {
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.ja-tag {
  color: var(--muted);
}

.es-tag {
  color: var(--green);
}


.sub-text {
  transition: opacity .25s var(--ease);
}


.viewer-wrap {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.promo-showcase {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.promo-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 110, 255, 0.12) 0%, rgba(59, 110, 255, 0.02) 60%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}


.promo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.promo-ring.r1 {
  width: 480px;
  height: 480px;
  border-color: rgba(59, 110, 255, 0.08);
  animation: rotateClockwise 30s linear infinite;
}

.promo-ring.r2 {
  width: 380px;
  height: 380px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.04);
  animation: rotateCounterClockwise 20s linear infinite;
}

.promo-ring.r3 {
  width: 280px;
  height: 280px;
  border-color: rgba(59, 110, 255, 0.12);
  animation: rotateClockwise 15s linear infinite;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateCounterClockwise {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}


.promo-img-wrap {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 14, 17, 0.5) 0%, rgba(14, 14, 17, 0.9) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(59, 110, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatProduct 6s ease-in-out infinite;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.promo-img-wrap:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(59, 110, 255, 0.3),
    0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(59, 110, 255, 0.2);
}

.promo-hero-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}

.promo-img-wrap:hover .promo-hero-img {
  transform: scale(1.06) rotate(4deg);
}

@keyframes floatProduct {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}


.promo-pulse {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: wavePulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes wavePulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}


.promo-card {
  position: absolute;
  z-index: 10;
  background: rgba(20, 20, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(59, 110, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease);
  cursor: default;
}

.promo-card:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(59, 110, 255, 0.35);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(59, 110, 255, 0.15);
}

.pc-icon {
  width: 20px;
  height: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.pc-text {
  display: flex;
  flex-direction: column;
}

.pc-text h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.pc-text p {
  font-size: 0.68rem;
  color: var(--faint);
  margin: 2px 0 0 0;
}


.pc-top-left {
  top: 15%;
  left: -8%;
  animation: floatCard1 5s ease-in-out infinite alternate;
}

.pc-right {
  top: 40%;
  right: -10%;
  animation: floatCard2 6s ease-in-out infinite alternate;
}

.pc-bottom {
  bottom: 12%;
  left: 6%;
  animation: floatCard3 5.5s ease-in-out infinite alternate;
}

@keyframes floatCard1 {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

@keyframes floatCard2 {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(8px);
  }
}

@keyframes floatCard3 {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}


@media (max-width: 1100px) {
  .promo-showcase {
    width: 400px;
    height: 400px;
  }

  .promo-img-wrap,
  .promo-pulse {
    width: 220px;
    height: 220px;
  }

  .promo-ring.r1 {
    width: 380px;
    height: 380px;
  }

  .promo-ring.r2 {
    width: 300px;
    height: 300px;
  }

  .promo-ring.r3 {
    width: 220px;
    height: 220px;
  }

  .pc-top-left {
    left: -4%;
  }

  .pc-right {
    right: -6%;
  }

  .pc-bottom {
    left: 4%;
  }
}

@media (max-width: 640px) {
  .promo-showcase {
    width: 320px;
    height: 320px;
  }

  .promo-img-wrap,
  .promo-pulse {
    width: 180px;
    height: 180px;
  }

  .promo-ring {
    display: none;
  }

  .pc-top-left {
    top: 5%;
    left: -2%;
  }

  .pc-right {
    top: 75%;
    right: -2%;
  }

  .pc-bottom {
    display: none;
  }
}

.qr-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 17, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.qr-modal.show {
  opacity: 1;
  visibility: visible;
}

.qr-modal-content {
  background: rgba(20, 20, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 100%;
  max-width: 360px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(59, 110, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease);
}

.qr-modal.show .qr-modal-content {
  transform: scale(1);
}

.qr-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}

.qr-modal-close:hover {
  color: var(--white);
}

.qr-header {
  text-align: center;
  margin-bottom: 24px;
}

.qr-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--blue);
  font-style: italic;
  display: block;
  margin-bottom: 8px;
}

.qr-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.qr-header p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 0 10px;
}

.qr-canvas-wrap {
  background: var(--white);
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

#qr-canvas {
  display: block;
  width: 200px !important;
  height: 200px !important;
}

.btn-download {
  width: 100%;
  padding: 14px;
  font-size: 0.88rem;
  border-radius: 10px;
  font-weight: 600;
  justify-content: center;
}