:root {
  --bg: #07030d;
  --panel: #12081d;
  --panel-2: #1b0d2a;
  --text: #f5ecff;
  --muted: #c7b5d9;
  --line: #46205f;
  --hot: #d22cff;
  --hot-2: #ff5cf4;
  --violet: #7d3cff;
  --green: #6dffad;
  --shadow: 0 22px 80px rgba(210, 44, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 3, 13, 0.78);
  border-bottom: 1px solid rgba(210, 44, 255, 0.22);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 12px clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 900;
  gap: 10px;
  min-width: 0;
}

.brand img {
  height: 38px;
  width: 38px;
}

.brand span {
  color: var(--hot);
  font-size: 18px;
  letter-spacing: 0;
}

.nav {
  align-items: center;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.site-language-control select {
  background: rgba(21, 10, 31, 0.95);
  border: 1px solid rgba(210, 44, 255, 0.46);
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 7px;
}

.standalone-language-control {
  position: fixed;
  right: 18px;
  top: 16px;
  z-index: 100;
}

.standalone-language-control select {
  background: rgba(21, 10, 31, 0.96);
  border: 1px solid rgba(210, 44, 255, 0.5);
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 9px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--hot), var(--violet));
  box-shadow: 0 12px 34px rgba(210, 44, 255, 0.32);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(210, 44, 255, 0.42);
}

.button.full {
  width: 100%;
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  position: relative;
}

.hero-video,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 3, 13, 0.94), rgba(7, 3, 13, 0.68) 46%, rgba(7, 3, 13, 0.24)),
    linear-gradient(180deg, rgba(7, 3, 13, 0.2), var(--bg));
}

.hero-content {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 94vh;
  padding: 112px clamp(20px, 6vw, 84px) 80px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
}

.free-hero-badge {
  background: rgba(109, 255, 173, 0.12);
  border: 1px solid rgba(109, 255, 173, 0.72);
  box-shadow: 0 0 28px rgba(109, 255, 173, 0.13);
  color: var(--green);
  display: inline-block;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0 0 24px;
  padding: 10px 14px;
}

.eyebrow {
  color: var(--hot-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: #ffffff;
  font-size: clamp(64px, 12vw, 154px);
  line-height: 0.86;
  margin-bottom: 16px;
  text-shadow: 0 0 34px rgba(210, 44, 255, 0.72);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(18px, 2.5vw, 25px);
  line-height: 1.45;
  max-width: 680px;
}

.hero-subtitle {
  color: var(--hot-2);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(210, 44, 255, 0.74);
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.free-download {
  font-size: 17px;
  min-height: 54px;
  padding-inline: 28px;
}

.free-assurance {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  margin: 14px 0 0;
}

.hero-note {
  border-left: 3px solid var(--hot);
  color: var(--text);
  line-height: 1.6;
  margin-top: 34px;
  max-width: 620px;
  padding-left: 18px;
}

.status-panel {
  align-self: end;
  background: rgba(18, 8, 29, 0.82);
  border: 1px solid rgba(210, 44, 255, 0.36);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: 22px;
}

.status-panel img {
  filter: drop-shadow(0 0 20px rgba(210, 44, 255, 0.55));
  margin: auto;
  width: 180px;
}

.status-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.status-panel strong {
  color: var(--green);
}

.status-dot {
  background: var(--green);
  box-shadow: 0 0 16px rgba(109, 255, 173, 0.8);
  display: inline-block;
  height: 10px;
  margin-right: 8px;
  width: 10px;
}

.section {
  padding: 92px clamp(20px, 6vw, 84px);
}

.identity {
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(7, 3, 13, 0.96), rgba(7, 3, 13, 0.72) 38%, rgba(7, 3, 13, 0.05)),
    url("assets/scarleth-identity.png");
  background-position: center, center top;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, cover;
  display: flex;
  min-height: 720px;
  padding: 110px clamp(20px, 6vw, 84px);
  position: relative;
}

.identity-copy {
  max-width: 620px;
}

.identity-kicker {
  color: var(--hot-2);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 18px;
}

.identity h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  margin-bottom: 24px;
}

.identity p:not(.identity-kicker) {
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.32;
  max-width: 560px;
}

.identity-usecase {
  border-left: 3px solid var(--hot);
  height: 70px;
  margin-top: 34px;
  overflow: hidden;
  padding-left: 18px;
  position: relative;
}

.identity-usecase span {
  animation: usecaseFrames 12s infinite;
  color: #fff;
  display: block;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 900;
  left: 18px;
  line-height: 1.18;
  opacity: 0;
  position: absolute;
  text-shadow: 0 0 22px rgba(210, 44, 255, 0.56);
  top: 0;
  transform: translateY(18px);
}

.identity-usecase span:nth-child(2) {
  animation-delay: 3s;
}

.identity-usecase span:nth-child(3) {
  animation-delay: 6s;
}

.identity-usecase span:nth-child(4) {
  animation-delay: 9s;
}

@keyframes usecaseFrames {
  0%,
  12% {
    opacity: 0;
    transform: translateY(18px);
  }

  18%,
  36% {
    opacity: 1;
    transform: translateY(0);
  }

  44%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

.identity-sequence {
  height: 128px;
  margin-bottom: 34px;
  overflow: hidden;
  position: relative;
  width: min(100%, 680px);
}

.identity-sequence span {
  animation: identityFrames 12s infinite;
  color: #fff;
  display: block;
  font-size: clamp(25px, 3.4vw, 46px);
  font-weight: 900;
  left: 0;
  line-height: 1.08;
  opacity: 0;
  position: absolute;
  text-shadow: 0 0 26px rgba(210, 44, 255, 0.72);
  top: 0;
  transform: translateY(18px);
  width: 100%;
}

.identity-sequence span:nth-child(2) {
  animation-delay: 2.4s;
}

.identity-sequence span:nth-child(3) {
  animation-delay: 4.8s;
}

.identity-sequence span:nth-child(4) {
  animation-delay: 7.2s;
}

.identity-sequence span:nth-child(5) {
  animation-delay: 9.6s;
}

@keyframes identityFrames {
  0%,
  17% {
    opacity: 0;
    transform: translateY(18px);
  }

  22%,
  34% {
    opacity: 1;
    transform: translateY(0);
  }

  39%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

.section-heading {
  max-width: 850px;
}

.compact {
  margin: 0 auto 34px;
  text-align: center;
}

.intro-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.intro-grid article,
.price-card,
.privacy-box {
  background: linear-gradient(180deg, rgba(27, 13, 42, 0.92), rgba(12, 5, 20, 0.92));
  border: 1px solid var(--line);
  padding: 26px;
}

.intro-grid span {
  color: var(--hot);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 24px;
}

.intro-grid p,
.product-copy p,
.moment-copy p,
.privacy-box p,
.price-card p,
.download p,
.site-footer {
  color: var(--muted);
  line-height: 1.62;
}

.moment {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 3, 15, 0.94), rgba(24, 8, 36, 0.78)),
    url("assets/scarleth-panels.png") center/cover;
  border-top: 1px solid rgba(210, 44, 255, 0.22);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.moment-copy {
  max-width: 780px;
}

.moment-sequence {
  height: 132px;
  margin-bottom: 26px;
  overflow: hidden;
  position: relative;
}

.moment-sequence span {
  animation: momentFrames 12s infinite;
  color: #fff;
  display: block;
  font-size: clamp(32px, 4.8vw, 70px);
  font-weight: 900;
  left: 0;
  line-height: 1.05;
  opacity: 0;
  position: absolute;
  text-shadow: 0 0 30px rgba(210, 44, 255, 0.55);
  top: 0;
  transform: translateY(22px);
  width: min(100%, 980px);
}

.moment-sequence span:nth-child(2) {
  animation-delay: 3s;
}

.moment-sequence span:nth-child(3) {
  animation-delay: 6s;
}

.moment-sequence span:nth-child(4) {
  animation-delay: 9s;
}

@keyframes momentFrames {
  0%,
  12% {
    opacity: 0;
    transform: translateY(22px);
  }

  18%,
  35% {
    opacity: 1;
    transform: translateY(0);
  }

  43%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.voice-command {
  background: linear-gradient(180deg, rgba(27, 13, 42, 0.92), rgba(12, 5, 20, 0.92));
  border: 1px solid rgba(210, 44, 255, 0.58);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

.voice-command span {
  color: var(--hot-2);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.voice-command strong {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.voice-command p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 22px 0 0;
}

.product,
.pro-preview,
.security {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
}

.pro-preview {
  grid-template-columns: minmax(300px, 1.1fr) minmax(0, 0.9fr);
  padding-top: 30px;
}

.app-showcase {
  background: #0b0612;
  border: 1px solid rgba(210, 44, 255, 0.34);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-showcase img {
  display: block;
  width: 100%;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  border-left: 2px solid var(--hot);
  padding-left: 16px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
  margin-top: 4px;
}

.versions {
  background:
    linear-gradient(180deg, rgba(210, 44, 255, 0.08), transparent),
    #090411;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}

.price-card {
  position: relative;
}

.price-card:first-child {
  border-color: rgba(109, 255, 173, 0.46);
}

.price-card:first-child .edition-label {
  color: var(--green);
}

.price-card.pro {
  border-color: rgba(210, 44, 255, 0.86);
  box-shadow: var(--shadow);
}

.badge {
  background: var(--hot);
  color: #fff;
  font-weight: 900;
  padding: 8px 12px;
  position: absolute;
  right: 24px;
  top: 24px;
}

.price-top {
  padding-right: 80px;
}

ul {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

li {
  color: var(--muted);
  line-height: 1.45;
  margin: 14px 0;
  padding-left: 26px;
  position: relative;
}

li::before {
  color: var(--hot-2);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.mini-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.mini-grid span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(210, 44, 255, 0.22);
  color: var(--muted);
  padding: 14px;
}

.upgrade-steps {
  border-left: 3px solid var(--hot);
  height: 86px;
  margin: 0 0 28px;
  overflow: hidden;
  padding-left: 18px;
  position: relative;
}

.upgrade-steps span {
  animation: upgradeSteps 15s infinite;
  color: #fff;
  display: block;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  left: 18px;
  line-height: 1.18;
  opacity: 0;
  position: absolute;
  text-shadow: 0 0 22px rgba(210, 44, 255, 0.55);
  top: 0;
  transform: translateY(18px);
  width: calc(100% - 18px);
}

.upgrade-steps span:nth-child(2) {
  animation-delay: 3s;
}

.upgrade-steps span:nth-child(3) {
  animation-delay: 6s;
}

.upgrade-steps span:nth-child(4) {
  animation-delay: 9s;
}

.upgrade-steps span:nth-child(5) {
  animation-delay: 12s;
}

@keyframes upgradeSteps {
  0%,
  10% {
    opacity: 0;
    transform: translateY(18px);
  }

  15%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }

  36%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

.upgrade-callout {
  background: linear-gradient(180deg, rgba(27, 13, 42, 0.72), rgba(12, 5, 20, 0.74));
  border: 1px solid rgba(210, 44, 255, 0.5);
  box-shadow: 0 16px 45px rgba(210, 44, 255, 0.14);
  margin-top: 26px;
  padding: 20px;
}

.upgrade-callout strong {
  color: #fff;
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.upgrade-callout p {
  margin-bottom: 0;
}

.upgrade-callout a {
  color: var(--hot-2);
  font-weight: 900;
}

.security {
  background: #08030f;
  min-height: 700px;
  overflow: hidden;
  position: relative;
}

.security::before {
  background: url("assets/olimpo-security.png") center 44%/96% auto no-repeat;
  content: "";
  filter: brightness(1.55) saturate(1.7) contrast(1.18);
  inset: 0;
  opacity: 0.9;
  position: absolute;
  transform: scale(1.02);
  z-index: 0;
}

.security::after {
  background:
    linear-gradient(90deg, rgba(8, 3, 15, 0.78), rgba(8, 3, 15, 0.18) 48%, rgba(8, 3, 15, 0.5)),
    linear-gradient(180deg, rgba(8, 3, 15, 0.08), rgba(8, 3, 15, 0.28) 55%, rgba(8, 3, 15, 0.72));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.security-visual {
  display: none;
}

.security-copy,
.privacy-box {
  position: relative;
  z-index: 1;
}

.security-copy {
  max-width: 820px;
}

.security .privacy-box {
  backdrop-filter: blur(7px);
  background: linear-gradient(180deg, rgba(27, 13, 42, 0.34), rgba(12, 5, 20, 0.38));
  border-color: rgba(210, 44, 255, 0.58);
  box-shadow: 0 20px 70px rgba(210, 44, 255, 0.2);
}

.privacy-subtitle {
  display: block;
  margin-top: 20px;
}

.privacy-deny {
  display: grid;
  gap: 8px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 14px 0 22px;
}

.privacy-deny li {
  margin: 0;
}

.privacy-deny li::before {
  color: var(--hot-2);
  content: "×";
}

.download {
  background: #07030d;
  overflow: hidden;
  padding: 92px 20px;
  position: relative;
}

.download::before {
  background: url("assets/scarleth-panels.png") center 44%/115% auto no-repeat;
  content: "";
  filter: blur(9px) brightness(0.72) saturate(1.35);
  inset: -22px;
  opacity: 0.68;
  position: absolute;
  transform: scale(1.04);
}

.download::after {
  background:
    linear-gradient(90deg, rgba(7, 3, 13, 0.9), rgba(7, 3, 13, 0.46), rgba(7, 3, 13, 0.9)),
    linear-gradient(180deg, rgba(7, 3, 13, 0.2), rgba(7, 3, 13, 0.96));
  content: "";
  inset: 0;
  position: absolute;
}

.download-inner {
  backdrop-filter: blur(10px);
  background: rgba(7, 3, 13, 0.68);
  border: 1px solid rgba(210, 44, 255, 0.52);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 820px;
  padding: clamp(28px, 5vw, 56px);
  position: relative;
  z-index: 1;
  text-align: center;
}

.download-inner img {
  filter: drop-shadow(0 0 20px rgba(210, 44, 255, 0.62));
  width: 110px;
}

.download-actions {
  justify-content: center;
}

.download-security-notice {
  background: rgba(18, 11, 28, 0.86);
  border: 1px solid rgba(212, 163, 255, 0.46);
  border-left: 4px solid #b92cff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
  color: #eee6f7;
  margin: 24px auto 0;
  max-width: 720px;
  padding: 18px 20px;
  text-align: left;
}

.download-security-notice > strong {
  color: #fff;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.download-security-notice p {
  line-height: 1.55;
  margin: 8px 0;
}

.download-security-rule {
  color: #fff;
  font-weight: 700;
}

.download small {
  color: var(--muted);
  display: block;
  margin-top: 22px;
}

.contact {
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 44, 255, 0.14), transparent 34%),
    #07030d;
  padding-top: clamp(52px, 7vw, 88px);
}

.contact-inner {
  border: 1px solid rgba(210, 44, 255, 0.42);
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
}

.contact-inner h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin: 8px auto 18px;
  max-width: 780px;
}

.contact-inner p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 auto 22px;
  max-width: 760px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.contact-links a {
  background: rgba(27, 13, 42, 0.78);
  border: 1px solid rgba(210, 44, 255, 0.38);
  color: #fff;
  font-weight: 800;
  padding: 14px 18px;
  text-decoration: none;
}

.contact-links a:hover {
  border-color: rgba(255, 91, 255, 0.78);
  box-shadow: 0 0 22px rgba(210, 44, 255, 0.18);
}

.contact-inner .support-note {
  color: #fff;
  font-weight: 800;
  margin: 20px auto 0;
}

.official-site {
  color: var(--muted);
  font-size: 14px;
  margin: 20px auto 0;
  max-width: 680px;
}

.official-site a,
.site-footer a {
  color: var(--hot);
  font-weight: 800;
  text-decoration: none;
}

.official-site a:hover,
.site-footer a:hover {
  color: #fff;
}

.site-footer {
  align-items: center;
  background: rgba(7, 3, 13, 0.96);
  border-top: 1px solid rgba(210, 44, 255, 0.22);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 34px clamp(20px, 6vw, 84px);
  text-align: center;
}

.site-footer strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  margin-top: 6px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  margin-top: 4px;
}

.footer-legal a {
  font-size: 14px;
}

.site-footer small {
  color: rgba(238, 229, 255, 0.58);
  margin-top: 10px;
}

.site-footer .copyright-notice {
  margin-top: -4px;
}

.legal-page {
  background: #07030d;
  color: var(--muted);
  min-height: 100vh;
  padding: 48px 20px;
}

.legal-shell {
  background: rgba(18, 8, 28, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(115, 24, 156, 0.18);
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(26px, 5vw, 58px);
}

.legal-shell h1,
.legal-shell h2 {
  color: #fff;
}

.legal-shell h2 {
  margin-top: 32px;
}

.legal-shell p,
.legal-shell li {
  line-height: 1.7;
}

.legal-shell a {
  color: var(--hot);
}

.legal-note {
  background: rgba(210, 44, 255, 0.08);
  border-left: 3px solid var(--hot);
  padding: 14px 18px;
}

.third-party-notice {
  color: var(--muted);
  display: block;
  line-height: 1.5;
  max-width: 820px;
}

.legal-back {
  display: inline-block;
  font-weight: 800;
  margin-bottom: 24px;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .identity {
    background-position: center, 62% top;
    min-height: 640px;
  }

  .hero-content,
  .moment,
  .product,
  .pro-preview,
  .security,
  .intro-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 104px;
  }

  .status-panel {
    align-self: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .identity {
    background-image:
      linear-gradient(180deg, rgba(7, 3, 13, 0.88), rgba(7, 3, 13, 0.58), rgba(7, 3, 13, 0.9)),
      url("assets/scarleth-identity.png");
    background-position: center, 62% top;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, cover;
    min-height: 680px;
    padding: 86px 18px;
  }

  .identity-sequence {
    height: 96px;
  }

  .moment-sequence {
    height: 190px;
  }

  .button {
    width: 100%;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .privacy-deny {
    grid-template-columns: 1fr;
  }
}


/* RC63 Comercial */
.launch-price { display:flex; flex-direction:column; gap:6px; margin:20px 0 10px; }
.launch-price .old-price { color:var(--muted); font-size:18px; text-decoration:line-through; }
.launch-price strong { color:#fff; font-size:clamp(42px,5vw,66px); line-height:1; text-shadow:0 0 24px rgba(210,44,255,.5); }
.launch-price small { color:var(--muted); font-size:16px; font-weight:700; }
.launch-note { color:var(--hot-2) !important; font-weight:800; }
.secure-payment-note { color:var(--muted); font-size:13px; line-height:1.5; margin:14px 0 0; text-align:center; }
.payment-page { min-height:100vh; display:grid; place-items:center; padding:28px; background:radial-gradient(circle at 50% 10%, rgba(210,44,255,.18), transparent 38%), var(--bg); }
.payment-card { background:rgba(18,8,29,.92); border:1px solid rgba(210,44,255,.45); box-shadow:var(--shadow); max-width:720px; padding:clamp(28px,6vw,60px); text-align:center; }
.payment-card img { width:110px; filter:drop-shadow(0 0 20px rgba(210,44,255,.62)); }
.payment-card h1 { font-size:clamp(38px,7vw,72px); line-height:1; margin:22px 0 18px; }
.payment-card p { color:var(--muted); font-size:18px; line-height:1.65; }
.payment-card .button { margin-top:18px; }

.edition-label { display:inline-block; color:#cfd0da; font-size:12px; letter-spacing:.14em; margin-top:-8px; text-transform:uppercase; }
.pro-checkout { display:grid; gap:12px; margin-top:20px; text-align:left; }
.pro-checkout label:not(.checkout-consent) { color:var(--text); display:grid; font-size:13px; font-weight:700; gap:6px; }
.pro-checkout input[type="text"], .pro-checkout input[type="email"] { background:#120b1b; border:1px solid rgba(210,44,255,.38); border-radius:8px; color:#fff; font:inherit; padding:12px 14px; width:100%; }
.pro-checkout input:focus { border-color:#d22cff; box-shadow:0 0 0 3px rgba(210,44,255,.15); outline:none; }
.checkout-consent { align-items:flex-start; color:var(--muted); display:flex; font-size:12px; gap:9px; line-height:1.45; }
.checkout-consent input { accent-color:#d22cff; margin-top:3px; }
.checkout-consent a { color:#ecb8ff; }
.checkout-status { color:#ecb8ff; font-size:13px; line-height:1.4; margin:0; min-height:18px; text-align:center; }
.pro-checkout button:disabled { cursor:wait; opacity:.65; }
.payment-provider-buttons { display:grid; gap:12px; margin-top:4px; }
.payment-provider-button { flex-direction:column; gap:2px; min-height:58px; }
.payment-provider-button small { font-size:11px; font-weight:700; opacity:.86; }
.paypal-payment-button { align-items:center; background:transparent; border:0; cursor:pointer; display:flex; flex-direction:column; gap:6px; margin:0 auto; max-width:420px; padding:0; width:100%; }
.paypal-payment-button img { display:block; height:auto; max-height:86px; max-width:100%; object-fit:contain; width:100%; }
.paypal-payment-button span { color:#ecb8ff; font-size:12px; font-weight:800; line-height:1.3; }
.paypal-payment-button:focus-visible { border-radius:999px; outline:3px solid rgba(236,184,255,.8); outline-offset:4px; }
@media (max-width:520px) {
  .paypal-payment-button { max-width:330px; }
  .paypal-payment-button img { max-height:68px; }
}

.scarleth-chat-toggle { align-items:center; background:linear-gradient(135deg,#21102f,#8b16b5); border:1px solid rgba(244,170,255,.7); border-radius:999px; bottom:22px; box-shadow:0 14px 40px rgba(0,0,0,.48),0 0 22px rgba(210,44,255,.3); color:#fff; cursor:pointer; display:flex; font-weight:800; gap:8px; padding:9px 16px 9px 9px; position:fixed; right:22px; z-index:80; }
.scarleth-chat-toggle img { border-radius:50%; height:38px; object-fit:cover; width:38px; }
.scarleth-chat { background:rgba(10,5,17,.98); border:1px solid rgba(210,44,255,.5); border-radius:18px; bottom:82px; box-shadow:0 24px 70px rgba(0,0,0,.65); max-height:min(620px,calc(100vh - 110px)); overflow:hidden; position:fixed; right:22px; width:min(390px,calc(100vw - 28px)); z-index:90; }
.scarleth-chat[hidden] { display:none; }
.scarleth-chat > header { align-items:center; background:linear-gradient(135deg,#1d0d2b,#371049); display:flex; gap:10px; padding:13px 15px; }
.scarleth-chat > header img { height:42px; object-fit:contain; width:42px; }
.scarleth-chat > header div { display:grid; flex:1; }
.scarleth-chat > header span { color:#c9b8d3; font-size:12px; }
.scarleth-chat > header button { background:transparent; border:0; color:#fff; cursor:pointer; font-size:26px; }
.scarleth-chat > header .chat-new { font-size:20px; padding:2px 4px; }
.chat-language { background:#170b22; border:1px solid rgba(210,44,255,.45); border-radius:8px; color:#fff; font-family:inherit; font-size:12px; font-weight:700; padding:6px; }
.chat-messages { display:flex; flex-direction:column; gap:10px; max-height:310px; min-height:180px; overflow-y:auto; padding:16px; }
.chat-message { border-radius:14px; font-size:14px; line-height:1.5; margin:0; max-width:88%; padding:10px 12px; }
.chat-message.scarleth { align-self:flex-start; background:#21152c; color:#f8f1fb; }
.chat-message.user { align-self:flex-end; background:#7d169e; color:#fff; margin-left:auto; }
.chat-action { color:#efb9ff; display:inline-block; font-size:13px; font-weight:800; margin:6px 0 0 8px; }
.chat-suggestions { display:flex; flex-wrap:wrap; gap:6px; padding:0 14px 10px; }
.chat-suggestions button { background:#1a1023; border:1px solid rgba(210,44,255,.38); border-radius:999px; color:#e9dcef; cursor:pointer; font-size:11px; padding:7px 9px; }
.chat-form { border-top:1px solid rgba(210,44,255,.25); display:flex; gap:8px; padding:12px; }
.chat-form input { background:#150d1e; border:1px solid rgba(210,44,255,.35); border-radius:10px; color:#fff; flex:1; min-width:0; padding:10px 11px; }
.chat-form button { background:#b321df; border:0; border-radius:10px; color:#fff; cursor:pointer; font-weight:800; padding:0 13px; }
.chat-form button:disabled, .chat-suggestions button:disabled { cursor:wait; opacity:.55; }
.chat-status { color:#c9b8d3; font-size:12px; margin:0; min-height:18px; padding:0 14px 5px; }
.scarleth-chat > small { color:#9d90a6; display:block; padding:0 14px 12px; }

@media (max-width:600px) {
  .scarleth-chat-toggle { bottom:14px; right:14px; }
  .scarleth-chat { bottom:72px; right:14px; }
}
.download-page { min-height:100vh; padding:110px 20px 60px; background:radial-gradient(circle at 50% 0%, rgba(210,44,255,.2), transparent 34%), var(--bg); }
.download-shell { margin:0 auto; max-width:980px; }
.download-hero-card { background:rgba(18,8,29,.9); border:1px solid rgba(210,44,255,.42); box-shadow:var(--shadow); padding:clamp(28px,5vw,58px); text-align:center; }
.download-hero-card img { width:125px; filter:drop-shadow(0 0 20px rgba(210,44,255,.62)); }
.download-hero-card h1 { font-size:clamp(46px,8vw,88px); margin:20px 0; }
.download-hero-card p { color:var(--muted); font-size:18px; line-height:1.65; }
.download-info-grid { display:grid; gap:18px; grid-template-columns:repeat(3,1fr); margin-top:24px; }
.download-info-grid article { background:rgba(27,13,42,.75); border:1px solid rgba(210,44,255,.28); padding:22px; }
.download-info-grid p { color:var(--muted); line-height:1.55; margin:0; }
@media(max-width:760px){.download-info-grid{grid-template-columns:1fr}.launch-price strong{font-size:48px}}

/* Información legal unificada — RC1 */
.legal-page-unified {
  padding: 28px 18px;
}

.legal-shell-compact {
  max-width: 880px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

.legal-header {
  border-bottom: 1px solid rgba(210, 44, 255, 0.18);
  padding-bottom: 24px;
}

.legal-shell-compact .legal-back {
  margin-bottom: 18px;
  font-size: 14px;
}

.legal-shell-compact .eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-shell-compact h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-shadow: none;
}

.legal-updated {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(238, 229, 255, 0.62);
}

.legal-responsible {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(210, 44, 255, 0.16);
  border-radius: 9px;
  font-size: 14px;
}

.legal-responsible strong {
  color: #fff;
}

.legal-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
}

.legal-index a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.legal-section {
  scroll-margin-top: 24px;
  padding: 30px 0 4px;
}

.legal-section + .legal-section {
  border-top: 1px solid rgba(210, 44, 255, 0.18);
  margin-top: 26px;
}

.legal-shell-compact .legal-section h2 {
  margin: 0 0 20px;
  font-size: clamp(24px, 3.5vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-shadow: none;
}

.legal-shell-compact .legal-section h3 {
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.35;
  margin: 22px 0 7px;
}

.legal-shell-compact .legal-section p,
.legal-shell-compact .legal-section li {
  font-size: 14px;
  line-height: 1.65;
}

.legal-shell-compact .legal-section p {
  margin: 0 0 12px;
}

.legal-shell-compact .legal-section ul {
  margin: 8px 0 14px;
  padding-left: 22px;
}

.legal-shell-compact .legal-section li + li {
  margin-top: 5px;
}

.legal-footer {
  border-top: 1px solid rgba(210, 44, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 34px;
  padding-top: 22px;
  font-size: 13px;
}

.legal-footer span {
  color: #fff;
  font-weight: 700;
}

.legal-footer a {
  text-decoration: none;
}

.legal-footer small {
  color: rgba(238, 229, 255, 0.55);
  flex-basis: 100%;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .legal-page-unified {
    padding: 0;
  }

  .legal-shell-compact {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    min-height: 100vh;
    padding: 24px 18px 32px;
  }

  .legal-index {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hero-audio {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 22px;
  position: relative;
  width: fit-content;
}

.hero-audio audio {
  display: none;
}

.audio-toggle {
  background: rgba(21, 8, 32, 0.82);
  border: 1px solid rgba(210, 44, 255, 0.65);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 15px 24px;
  text-transform: uppercase;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
  background: #a81bd1;
  box-shadow: 0 0 22px rgba(210, 44, 255, 0.35);
  outline: none;
  transform: translateY(-1px);
}

.scarleth-social-links {
  align-items: center;
  background: rgba(10, 3, 18, 0.94);
  border: 1px solid rgba(210, 44, 255, 0.55);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
  display: flex;
  gap: 5px;
  left: 18px;
  padding: 6px;
  position: fixed;
  z-index: 80;
}

.scarleth-social-links a {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  width: 32px;
}

.scarleth-social-links svg {
  display: block;
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.scarleth-social-links a:hover,
.scarleth-social-links a:focus-visible {
  background: #d22cff;
  color: #09020f;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .scarleth-social-links {
    bottom: 10px;
    left: 10px;
  }
}


/* Scarleth RC63.8A - registro ejecutivo de actualizaciones */
.update-console {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #e6edf3;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.035em;
  line-height: 1.55;
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  text-align: left;
  top: 523px;
  width: 360px;
  max-width: calc(100vw - 40px);
  z-index: 3;
}

.update-console summary {
  cursor: pointer;
  display: grid;
  gap: 2px;
  list-style: none;
  outline: none;
}

.update-console summary::-webkit-details-marker {
  display: none;
}

.update-console-title {
  color: #58a6ff;
  font-weight: 700;
}

.update-console-date {
  color: #e6edf3;
}

.update-console-date b,
.update-console-details b {
  color: #79c0ff;
  font-weight: 600;
}

.update-console-more {
  color: #f2cc60;
  display: inline-block;
  margin-top: 3px;
  text-decoration: none;
  width: max-content;
}

.update-console summary:hover .update-console-more,
.update-console summary:focus-visible .update-console-more {
  color: #fff3a3;
  text-shadow: 0 0 10px rgba(242, 204, 96, 0.42);
}

.update-console-details {
  border-left: 1px solid rgba(88, 166, 255, 0.5);
  color: #c9d1d9;
  display: grid;
  gap: 2px;
  margin-top: 8px;
  max-width: 330px;
  padding-left: 9px;
}

.update-console-details span {
  display: block;
}

@media (max-width: 900px) {
  .update-console {
    margin: -8px 0 10px;
    position: static;
    right: auto;
    top: auto;
    width: 100%;
  }
}


/* Llamada holográfica hacia la voz de Scarleth */
.hero-audio::before,
.hero-audio::after {
  color: #6dffad;
  filter: drop-shadow(0 0 5px #20ff8a) drop-shadow(0 0 14px rgba(32,255,138,.9));
  font-family: "Segoe UI Symbol", sans-serif;
  font-size: 30px;
  font-weight: 900;
  opacity: .95;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-audio::before {
  animation: holo-arrow-left 1s ease-in-out infinite;
  content: "➤";
  left: -52px;
}

.hero-audio::after {
  animation: holo-arrow-right 1s ease-in-out infinite;
  content: "◀";
  right: -52px;
}

.audio-toggle {
  box-shadow: 0 0 14px rgba(210,44,255,.38), 0 0 26px rgba(109,255,173,.18);
}

@keyframes holo-arrow-left {
  0%, 100% { opacity: .42; transform: translate(-7px,-50%) scale(.9); }
  50% { opacity: 1; transform: translate(5px,-50%) scale(1.08); }
}

@keyframes holo-arrow-right {
  0%, 100% { opacity: .42; transform: translate(7px,-50%) scale(.9); }
  50% { opacity: 1; transform: translate(-5px,-50%) scale(1.08); }
}

@media (max-width: 600px) {
  .hero-audio::before { left: -38px; }
  .hero-audio::after { display: none; }
  .audio-toggle { font-size: 13px; padding: 14px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-audio::before,
  .hero-audio::after { animation: none; }
}

/* Historial visual Scarleth 15 AGO 2026 */
.update-console { font-size: 12px; line-height: 1.62; width: 390px; }
.update-console-details { max-width: 370px; gap: 10px; }
.update-current { color: #e9f7ff; }
.update-current strong { color: #63f5c4; text-shadow: 0 0 10px rgba(99,245,196,.25); }
.update-previous { margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(170,170,180,.22); color: rgba(190,190,200,.58); }
.update-previous strong { color: rgba(205,205,215,.72); }
.update-previous li::marker { color: rgba(175,175,185,.55); }
@media (max-width: 900px) { .update-console { width: 100%; font-size: 11.5px; } .update-console-details { max-width: 100%; } }

/* Correccion segura del historial bilingue y sin superposicion */
@media (min-width: 921px) {
  .hero-content { align-items: stretch; grid-template-columns: minmax(0, 1fr) 390px; grid-template-rows: auto auto; }
  .hero-copy { align-self: center; grid-column: 1; grid-row: 1 / span 2; }
  .update-console { align-self: end; grid-column: 2; grid-row: 1; margin: 0 0 20px; max-width: 390px; position: static; right: auto; top: auto; width: 390px; }
  .status-panel { align-self: start; box-sizing: border-box; grid-column: 2; grid-row: 2; justify-self: end; width: 360px; }
}
@media (max-width: 920px) {
  .update-console { margin: -8px 0 10px; max-width: 100%; position: static; right: auto; top: auto; width: 100%; }
}
