:root {
  --bg: #f4ede2;
  --bg-2: #fffaf2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #162236;
  --muted: #687588;
  --line: rgba(22, 34, 54, 0.09);
  --accent: #158dff;
  --accent-2: #caff64;
  --accent-3: #ff8c43;
  --accent-4: #7b68ff;
  --shadow: 0 28px 80px rgba(29, 36, 46, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --content: 1720px;
}

body[data-theme="dark"] {
  --bg: #08111f;
  --bg-2: #111d31;
  --surface: rgba(15, 27, 45, 0.78);
  --surface-strong: rgba(18, 32, 52, 0.94);
  --ink: #f4f8ff;
  --muted: #a9b7ca;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .site-header,
body[data-theme="dark"] .brand,
body[data-theme="dark"] .hero-copy,
body[data-theme="dark"] .hero-stage,
body[data-theme="dark"] .product,
body[data-theme="dark"] .interactive-explorer,
body[data-theme="dark"] .scenes-section,
body[data-theme="dark"] .pricing,
body[data-theme="dark"] .contact,
body[data-theme="dark"] .preference-panel,
body[data-theme="dark"] .legal-page {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-theme="dark"] .explorer-trigger {
  background:
    linear-gradient(180deg, rgba(17, 31, 52, 0.88), rgba(14, 26, 43, 0.8)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.05), rgba(123, 104, 255, 0.05));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"] .explorer-trigger::before {
  background: linear-gradient(90deg, transparent, rgba(112, 232, 255, 0.18), transparent);
}

body[data-theme="dark"] .explorer-trigger.active {
  border-color: rgba(112, 232, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(18, 35, 58, 0.96), rgba(12, 24, 40, 0.92)),
    linear-gradient(135deg, rgba(202, 255, 100, 0.08), rgba(112, 232, 255, 0.1));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(112, 232, 255, 0.1) inset,
    0 0 32px rgba(112, 232, 255, 0.08);
}

body[data-theme="dark"] .explorer-panel {
  background:
    radial-gradient(circle at 86% 12%, rgba(202, 255, 100, 0.1), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(21, 141, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 27, 45, 0.96), rgba(10, 20, 34, 0.92));
}

body[data-theme="dark"] .explorer-kicker {
  color: #b4f45d;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(202, 255, 100, 0.12);
}

body[data-theme="dark"] .explorer-points li {
  color: #d3ddee;
  background:
    linear-gradient(180deg, rgba(18, 32, 52, 0.92), rgba(15, 27, 45, 0.84));
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .explorer-note {
  color: #dce7f8;
  background:
    linear-gradient(135deg, rgba(202, 255, 100, 0.1), rgba(112, 232, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(112, 232, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(21, 141, 255, 0.18), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(202, 255, 100, 0.18), transparent 16%),
    radial-gradient(circle at 50% 100%, rgba(255, 140, 67, 0.14), transparent 24%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

body.is-booting {
  overflow: hidden;
}

body.is-booting .bg-orb,
body.is-booting .bg-grid,
body.is-booting .site-header,
body.is-booting main,
body.is-booting .site-footer,
body.is-booting .back-to-top {
  opacity: 0;
}

.bg-orb,
.bg-grid,
.site-header,
main,
.site-footer,
.back-to-top {
  transition: opacity 180ms ease;
}

.bg-orb,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-orb {
  filter: blur(60px);
  opacity: 0.48;
}

.orb-a {
  background: radial-gradient(circle at 22% 18%, rgba(21, 141, 255, 0.18), transparent 30%);
}

.orb-b {
  background: radial-gradient(circle at 82% 18%, rgba(123, 104, 255, 0.14), transparent 24%);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(22, 34, 54, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 34, 54, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
}

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

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), var(--content));
  margin: 0 auto;
}

main {
  z-index: 2;
}

.site-footer {
  z-index: 1;
}

.site-header,
.brand,
.site-nav,
.header-actions,
.quick-actions,
.hero-actions,
.hero-tags,
.stage-header,
.scene-top,
.stage-dots,
.product-grid,
.feature-grid,
.pricing-layout,
.contact-links {
  display: flex;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 60;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(22, 34, 54, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(22px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(22, 34, 54, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.16);
}

.brand {
  align-items: center;
  gap: 12px;
  padding: 7px 16px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #1f1f1f;
  box-shadow: 0 12px 26px rgba(21, 141, 255, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
}

.site-nav {
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.header-actions,
.hero-actions,
.hero-tags,
.product-grid,
.feature-grid,
.contact-links {
  gap: 12px;
}

.header-actions {
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.quick-actions {
  gap: 10px;
  justify-content: flex-end;
}

.site-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.page-controls {
  justify-content: center;
  justify-self: end;
  width: fit-content;
  max-width: 100%;
}

.site-controls label,
.control-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body:not([data-theme="dark"]) .control-group,
body:not([data-theme="dark"]) .control-button-theme {
  min-height: 32px;
  padding: 0 5px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-controls > * + * {
  margin-left: 4px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

body:not([data-theme="dark"]) .site-controls > * + * {
  margin-left: 4px;
  padding-left: 12px;
  border-left: 1px solid rgba(22, 34, 54, 0.1);
}

.control-label,
.control-button {
  display: inline-flex;
  align-items: center;
}

.control-label::before,
.control-button-theme::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  flex: 0 0 auto;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.control-label-currency::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e8fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8.6' stroke='%23b9d9ff' stroke-width='1.2' fill='%23eef6ff'/><path d='M12 6.2v11.6'/><path d='M15.8 8.8c0-1.4-1.5-2.6-3.4-2.6S9 7.2 9 8.8s1.3 2.2 3.4 2.8c2 .5 3.4 1.2 3.4 2.8 0 1.6-1.5 2.7-3.4 2.7S9 16 9 14.4'/></svg>");
}

.control-label-language::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2358b8ff' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8.6' stroke='%23caecff' stroke-width='1.2' fill='%23f3fbff'/><path d='M4.4 12h15.2'/><path d='M12 4.1c2.1 2 3.4 4.9 3.4 7.9 0 3-1.3 5.9-3.4 7.9-2.1-2-3.4-4.9-3.4-7.9 0-3 1.3-5.9 3.4-7.9Z'/></svg>");
}

.control-button-theme::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='8.6' fill='%23f2f4fa' stroke='%23d7deea' stroke-width='1.2'/><path d='M15.6 6.4a5.9 5.9 0 1 0 3.1 10.7 6.8 6.8 0 0 1-2 .3A6.6 6.6 0 0 1 10.1 10c0-1.5.5-2.8 1.4-3.9 1.3.5 2.8.6 4.1.3Z' fill='%2356667f'/></svg>");
}

.site-controls select,
.control-button {
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--surface-strong);
}

body:not([data-theme="dark"]) .custom-select-trigger {
  background: rgba(236, 242, 250, 0.96);
  box-shadow: inset 0 0 0 1px rgba(22, 34, 54, 0.04);
}

body:not([data-theme="dark"]) .control-button-theme {
  background: rgba(236, 242, 250, 0.96);
  box-shadow: inset 0 0 0 1px rgba(22, 34, 54, 0.04);
}

.site-controls select {
  padding: 0 28px 0 10px;
  color-scheme: light;
}

.native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  display: inline-flex;
}

.custom-select-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 68px;
  min-height: 30px;
  padding: 0 10px 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--surface-strong);
  cursor: pointer;
}

.custom-select-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 78px;
  padding: 4px;
  border: 1px solid rgba(22, 34, 54, 0.12);
  border-radius: 12px;
  background: #fffaf2;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.custom-select.is-open .custom-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.custom-options button {
  min-width: 68px;
  min-height: 30px;
  padding: 6px 11px;
  border: 0;
  border-radius: 9px;
  color: #162236;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.custom-options button:hover,
.custom-options button[aria-selected="true"] {
  color: #06101d;
  background: linear-gradient(135deg, #caff64, #70e8ff);
}

.site-controls select option {
  color: #162236;
  background: #fffaf2;
}

.site-controls select option:checked {
  color: #06101d;
  background: linear-gradient(135deg, #caff64, #70e8ff);
}

.control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px; 
  padding: 0 18px 0 14px; 
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 20;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #0b1020;
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-2), #6fe9ff);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(16px) scale(0.88);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 58px rgba(111, 233, 255, 0.28);
}

.solid-button,
.ghost-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solid-button::before,
.ghost-button::before {
  content: "";
  position: absolute;
  inset: -70% auto -70% -45%;
  z-index: 0;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg) translateX(-120%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.solid-button:hover::before,
.ghost-button:hover::before {
  transform: skewX(-18deg) translateX(420%);
}

.solid-button > *,
.ghost-button > * {
  position: relative;
  z-index: 1;
}

.solid-button {
  color: #0b1020;
  background: linear-gradient(135deg, var(--accent-2), #6fe9ff);
  box-shadow: 0 18px 34px rgba(202, 255, 100, 0.18);
}

.ghost-button {
  border: 1px solid var(--line);
  background: var(--surface);
}

.solid-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.solid-button:hover {
  box-shadow: 0 22px 46px rgba(111, 233, 255, 0.26);
}

.ghost-button:hover {
  border-color: rgba(21, 141, 255, 0.22);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.large {
  min-height: 54px;
  padding: 0 24px;
}

.hero-demo-button {
  min-width: 214px;
  box-shadow:
    0 18px 34px rgba(202, 255, 100, 0.2),
    0 0 0 1px rgba(112, 232, 255, 0.12) inset;
}

.hero-demo-button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.hero-demo-button:hover::after {
  transform: rotate(45deg) translate(3px, 1px);
}

.hero,
.marquee,
.product,
.interactive-explorer,
.scenes-section,
.pricing,
.contact,
.preference-panel {
  margin-top: 22px;
}

.hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}

.hero-copy,
.hero-stage,
.marquee,
.product,
.interactive-explorer,
.scenes-section,
.pricing,
.contact,
.preference-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-stage,
.product,
.interactive-explorer,
.scenes-section,
.pricing,
.contact,
.preference-panel {
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 13px;
  border: 1px solid rgba(74, 138, 36, 0.14);
  border-radius: 999px;
  color: #4e8717;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #caff64, #70e8ff);
  box-shadow: 0 0 0 6px rgba(112, 232, 255, 0.08);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.3rem, 4.15vw, 3.8rem);
  line-height: 0.9;
}

.hero-copy h1 {
  display: grid;
  gap: 0;
  max-width: none;
  text-wrap: initial;
}

.hero-line {
  display: block;
}

.hero-line-accent {
  color: transparent;
  background: linear-gradient(135deg, #158dff 10%, #2f9bff 48%, #70e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-line-brand,
.hero-line-tail {
  letter-spacing: -0.05em;
}

.hero-line-brand {
  font-size: 0.98em;
}

.hero-line-brand,
.hero-line-accent,
.hero-line-tail {
  text-wrap: nowrap;
}

.hero-line-accent {
  font-size: 0.93em;
}

.hero-line-tail {
  font-size: 0.98em;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(112, 232, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.78));
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: -82px;
  bottom: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(112, 232, 255, 0.11), transparent 64%),
    radial-gradient(circle at 35% 35%, rgba(202, 255, 100, 0.09), transparent 58%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 232, 255, 0.24), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy > .eyebrow {
  transform: translateY(clamp(-106px, -8vw, -72px));
}

.hero-stage {
  position: relative;
  padding: 22px 22px 18px;
}

.hero-text {
  max-width: 50ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
  font-weight: 520;
}

.hero-actions {
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-tags {
  max-width: 520px;
  margin-top: 22px;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tags span {
  position: relative;
  min-height: 38px;
  padding: 9px 14px 9px 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #27405b;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54), 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 141, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 14px 30px rgba(15, 23, 42, 0.08);
}

.hero-tags span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #caff64, #70e8ff);
  transform: translateY(-50%);
}

.stage-header {
  gap: 8px;
  padding: 2px 0 0;
}

.stage-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.stage-header span:nth-child(1) {
  background: rgba(255, 159, 122, 0.9);
}

.stage-header span:nth-child(2) {
  background: rgba(255, 213, 102, 0.92);
}

.stage-header span:nth-child(3) {
  background: rgba(112, 232, 255, 0.9);
}

.hero-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.08), rgba(123, 104, 255, 0.06));
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 82% 8%, rgba(202, 255, 100, 0.14), transparent 18%),
    radial-gradient(circle at 16% 20%, rgba(112, 232, 255, 0.1), transparent 24%);
  pointer-events: none;
}

.stage-frame {
  position: relative;
  min-height: 510px;
  margin-top: 14px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(14, 23, 42, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 12%, rgba(126, 255, 139, 0.24), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(112, 232, 255, 0.22), transparent 30%),
    linear-gradient(145deg, #f9fcff 0%, #fff9ed 100%);
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 25px;
  background:
    linear-gradient(rgba(20, 36, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 36, 58, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 88%);
  pointer-events: none;
}

.scene-track {
  position: relative;
  display: grid;
  z-index: 1;
  min-height: 482px;
}

.scene-card {
  position: relative;
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 482px;
  padding: 16px;
  border: 1px solid rgba(17, 31, 52, 0.08);
  border-radius: 27px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transform: translateX(12%) scale(0.96);
  transition: opacity 520ms ease, transform 520ms ease;
  pointer-events: none;
}

.scene-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.scene-top {
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 36, 58, 0.08);
}

.scene-top p {
  color: #4a8a24;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scene-top h2 {
  margin-top: 6px;
  max-width: 21ch;
  color: #14243a;
  font-size: clamp(1.12rem, 1.62vw, 1.5rem);
  line-height: 1.04;
}

.scene-top strong {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #0d1626;
  font-size: 0.86rem;
  background: linear-gradient(135deg, var(--accent-2), #6fe9ff);
  box-shadow: 0 12px 26px rgba(55, 199, 160, 0.22);
}

.app-window {
  display: grid;
  align-content: start;
  gap: 14px;
  flex: 1;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 54, 0.1);
  border-radius: 26px;
  background: #f8fbff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.75),
    0 14px 28px rgba(15, 23, 42, 0.06);
}

.real-screen {
  position: relative;
  grid-template-columns: 52px minmax(0, 1fr);
  align-content: stretch;
  gap: 12px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(239, 246, 255, 0.92)),
    #f8fbff;
}

.real-screen::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px 52%;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(112, 232, 255, 0.22));
  filter: blur(8px);
  pointer-events: none;
}

.real-screen > :not(.mini-sidebar) {
  grid-column: 2;
}

.mini-sidebar {
  grid-row: 1 / span 5;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 11px;
  min-height: 100%;
  padding: 10px 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, #10233c, #081320);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mini-brand {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 11px;
  color: #081320;
  font-size: 0.82rem;
  font-weight: 1000;
  background: linear-gradient(135deg, var(--accent-2), #70e8ff);
}

.mini-sidebar i {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-sidebar i.active {
  background:
    linear-gradient(135deg, rgba(202, 255, 100, 0.95), rgba(112, 232, 255, 0.9));
  box-shadow: 0 10px 22px rgba(112, 232, 255, 0.18);
}

.real-screen .mock-toolbar {
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 32, 54, 0.08);
  color: #10233c;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.9));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.real-screen .mock-toolbar strong {
  color: #14243a;
}

.real-screen .mock-toolbar em {
  color: #718198;
}

.real-screen .window-controls span {
  width: 7px;
  height: 7px;
}

.real-screen .mock-panel,
.real-screen .stock-table,
.real-screen .portal-card,
.real-screen .route-card,
.real-screen .order-board,
.real-screen .mock-strip {
  border-color: rgba(17, 31, 52, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.real-screen .mock-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.9));
}

.real-screen .main-ticket::after {
  width: 92px;
  height: 58px;
  opacity: 0.16;
  filter: blur(0.5px);
}

.real-screen .workflow-steps span,
.real-screen .ticket-meta span,
.real-screen .route-card small,
.real-screen .portal-card b {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.real-screen .order-board,
.real-screen .mock-strip,
.real-screen .stock-table {
  position: relative;
}

.real-screen .order-board::after,
.real-screen .stock-table::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38%;
  height: 10px;
  border-radius: 999px;
  background: rgba(21, 141, 255, 0.08);
}

.mock-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 18px;
  color: #ecf6ff;
  background: linear-gradient(135deg, #13243c, #1d3352);
}

.window-controls {
  display: inline-flex;
  gap: 5px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #70e8ff;
  opacity: 0.82;
}

.window-controls span:nth-child(2) {
  background: #c6ff68;
}

.window-controls span:nth-child(3) {
  background: #ffba7a;
}

.mock-toolbar strong,
.mock-toolbar em {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mock-toolbar strong {
  font-size: 0.92rem;
}

.mock-toolbar em {
  color: #a9bed6;
  font-size: 0.76rem;
  font-style: normal;
}

.mock-grid,
.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.75fr);
  gap: 12px;
}

.mock-panel,
.stock-table,
.portal-card,
.route-card,
.order-board,
.mock-strip {
  border: 1px solid rgba(17, 31, 52, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.mock-panel {
  padding: 15px;
}

.mock-label {
  display: block;
  color: #718198;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mock-panel h3 {
  margin-top: 7px;
  color: #13243c;
  font-size: 1.02rem;
}

.mock-panel p {
  margin-top: 7px;
  color: #66758c;
  font-size: 0.9rem;
  line-height: 1.45;
}

.main-ticket {
  position: relative;
  overflow: hidden;
}

.main-ticket::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.55) 42% 58%, transparent 58%),
    linear-gradient(135deg, #ffba7a, #1d8cff);
  opacity: 0.2;
  transform: rotate(-8deg);
}

.ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ticket-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #31445f;
  font-size: 0.78rem;
  font-weight: 800;
  background: #edf5ff;
}

.workflow-steps {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.workflow-steps span {
  position: relative;
  padding: 10px 10px 10px 30px;
  border-radius: 13px;
  color: #52657d;
  font-size: 0.78rem;
  font-weight: 900;
  background: #f1f5fa;
}

.workflow-steps span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  transform: translateY(-50%);
}

.workflow-steps .done {
  color: #143116;
  background: #e9ffd5;
}

.workflow-steps .done::before {
  background: #79e86e;
}

.order-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: #e5edf6;
}

.order-board div {
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(198, 255, 104, 0.12), rgba(112, 232, 255, 0.1)),
    #ffffff;
}

.order-board strong {
  display: block;
  margin-top: 6px;
  color: #13243c;
  line-height: 1.25;
}

.mock-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: #e5edf6;
}

.mock-strip span {
  display: grid;
  gap: 3px;
  padding: 12px;
  color: #13243c;
  font-weight: 900;
  background: #ffffff;
}

.mock-strip b {
  color: #73839a;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calendar-chip {
  float: right;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #0e1728;
  background: linear-gradient(135deg, var(--accent-2), #70e8ff);
}

.calendar-chip b {
  margin-bottom: -10px;
  font-size: 1.4rem;
}

.calendar-chip span {
  color: #2a405d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-line {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 9px;
  align-items: center;
  margin-top: 14px;
  color: #596a82;
  font-size: 0.82rem;
  font-weight: 800;
}

.visit-line i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #1d8cff;
  box-shadow: 0 0 0 7px rgba(29, 140, 255, 0.11);
}

.visit-checklist ul {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.visit-checklist li {
  position: relative;
  padding-left: 20px;
  color: #31445f;
  font-size: 0.83rem;
  font-weight: 800;
}

.visit-checklist li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #79e86e;
}

.route-card {
  display: grid;
  grid-template-columns: 18px auto 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  color: #13243c;
}

.route-card span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #1d8cff;
}

.route-card i {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d8cff, #79e86e);
}

.route-card small {
  padding: 7px 9px;
  border-radius: 999px;
  color: #0e1728;
  font-weight: 900;
  background: #e9ffd5;
}

.stock-table {
  overflow: hidden;
}

.stock-head,
.stock-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(120px, 0.8fr) 58px;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
}

.stock-head {
  color: #718198;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #edf5ff;
}

.stock-row {
  color: #334761;
  border-top: 1px solid #edf1f7;
}

.stock-row strong {
  color: #13243c;
}

.stock-row em {
  justify-self: start;
  min-width: 36px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0e1728;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  background: #e9ffd5;
}

.stock-row.featured {
  background: linear-gradient(90deg, rgba(198, 255, 104, 0.18), rgba(112, 232, 255, 0.1));
}

.portal-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
}

.portal-card strong,
.portal-card p {
  display: block;
}

.portal-card strong {
  margin-top: 7px;
  color: #13243c;
  line-height: 1.25;
}

.portal-card p {
  margin-top: 7px;
  color: #66758c;
  font-size: 0.88rem;
  line-height: 1.42;
}

.portal-card b {
  padding: 10px 12px;
  border-radius: 999px;
  color: #0e1728;
  background: linear-gradient(135deg, var(--accent-2), #70e8ff);
}

.stage-footer {
  margin-top: 18px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 30, 48, 0.09);
}

.progress-bar span {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  transition: transform 520ms ease;
}

.stage-dots {
  gap: 10px;
  margin-top: 14px;
}

.dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 34, 54, 0.18);
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

.marquee {
  padding: 16px 0;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  padding-left: 24px;
  animation: marquee-move 22s linear infinite;
}

.marquee-group {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
  flex-shrink: 0;
}

.marquee-group + .marquee-group::before {
  content: "•";
  display: inline-flex;
  align-items: center;
  margin-left: 28px;
  color: var(--accent-3);
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  color: #28415c;
  font-weight: 700;
}

.marquee-group span + span::before {
  content: "•";
  margin-right: 28px;
  color: var(--accent-3);
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 2.65vw, 2.86rem);
  line-height: 1.03;
}

.compact {
  max-width: 940px;
}

.product-grid,
.feature-grid,
.pricing-layout,
.explorer-layout,
.contact-links {
  margin-top: 26px;
}

.product-grid,
.feature-grid,
.contact-links {
  flex-wrap: wrap;
}

.product-card,
.feature-card,
.pricing-card,
.contact-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.product-card,
.feature-card {
  flex: 1 1 280px;
  min-height: 220px;
  padding: 24px;
}

.card-index {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  color: #132033;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), #72e7ff);
}

.product-card h3,
.feature-card h3 {
  margin-top: 22px;
  font-size: 1.45rem;
}

.product-card p,
.feature-card p,
.pricing-copy p,
.pricing-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.dark-card {
  color: #f3f7ff;
  background: linear-gradient(180deg, #15253c, #0e1827);
}

.dark-card p {
  color: rgba(243, 247, 255, 0.75);
}

.light-card {
  background: linear-gradient(180deg, #e5f3ff, #b8dbff);
}

.warm-card {
  background: linear-gradient(180deg, #fff0e1, #ffc590);
}

.feature-card {
  background: rgba(255, 255, 255, 0.76);
}

.explorer-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  align-items: start;
}

.explorer-nav {
  display: grid;
  gap: 12px;
  align-self: start;
}

.explorer-trigger {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  width: 100%;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.04), rgba(123, 104, 255, 0.04));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.explorer-trigger::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -24%;
  z-index: 0;
  width: 38%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-18deg) translateX(-135%);
  transition: transform 560ms ease, opacity 220ms ease;
  pointer-events: none;
}

.explorer-trigger::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0;
  transform: rotate(-45deg) translate(-4px, 4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.explorer-trigger > * {
  position: relative;
  z-index: 1;
}

.explorer-trigger:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(21, 141, 255, 0.18);
  box-shadow:
    0 26px 46px rgba(15, 23, 42, 0.11),
    0 0 0 1px rgba(112, 232, 255, 0.1) inset;
}

.explorer-trigger:hover::before,
.explorer-trigger.active::before {
  opacity: 1;
  transform: skewX(-18deg) translateX(340%);
}

.explorer-trigger:hover::after,
.explorer-trigger.active::after {
  opacity: 0.72;
  transform: rotate(-45deg) translate(0, 0);
}

.explorer-trigger.active {
  border-color: rgba(21, 141, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(202, 255, 100, 0.18), rgba(112, 232, 255, 0.18));
  box-shadow:
    0 28px 54px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(202, 255, 100, 0.16) inset,
    0 0 34px rgba(112, 232, 255, 0.12);
}

.explorer-trigger-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #102033;
  font-size: 0.84rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(202, 255, 100, 0.92), rgba(112, 232, 255, 0.92));
  box-shadow: 0 14px 26px rgba(112, 232, 255, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.explorer-trigger-copy {
  display: grid;
  align-content: center;
  gap: 6px;
  transition: transform 220ms ease;
}

.explorer-trigger:hover .explorer-trigger-copy,
.explorer-trigger.active .explorer-trigger-copy {
  transform: translateX(4px);
}

.explorer-trigger:hover .explorer-trigger-index {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 16px 30px rgba(112, 232, 255, 0.22);
}

.explorer-trigger-copy strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.explorer-trigger-copy small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.explorer-details {
  position: relative;
  min-height: 0;
  align-self: start;
}

.explorer-panel {
  display: none;
  height: auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(202, 255, 100, 0.12), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(21, 141, 255, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.74));
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.1);
}

.explorer-panel.active {
  display: grid;
  gap: 18px;
  align-content: start;
  animation: explorerFade 220ms ease;
}

.explorer-panel-head {
  display: grid;
  gap: 10px;
}

.explorer-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #4e8717;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(74, 138, 36, 0.12);
}

.explorer-panel h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.02;
}

.explorer-description {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.explorer-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.explorer-points li {
  position: relative;
  min-height: 96px;
  padding: 18px 18px 18px 42px;
  border: 1px solid rgba(22, 34, 54, 0.08);
  border-radius: 20px;
  color: #24364d;
  line-height: 1.55;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 255, 0.86));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.explorer-points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #caff64, #70e8ff);
  box-shadow: 0 0 0 7px rgba(112, 232, 255, 0.08);
}

.explorer-note {
  padding: 16px 18px;
  border: 1px solid rgba(21, 141, 255, 0.1);
  border-radius: 20px;
  color: #2f4966;
  font-weight: 700;
  line-height: 1.55;
  background:
    linear-gradient(135deg, rgba(202, 255, 100, 0.14), rgba(112, 232, 255, 0.12)),
    rgba(255, 255, 255, 0.82);
}

@keyframes explorerFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactPanelReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes explorerBadgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 26px rgba(112, 232, 255, 0.16);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 18px 34px rgba(112, 232, 255, 0.26),
      0 0 18px rgba(202, 255, 100, 0.22);
    filter: saturate(1.08);
  }
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 0;
}

.pricing-copy {
  display: grid;
  align-content: start;
  align-self: start;
  justify-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

.pricing-copy .eyebrow {
  margin-bottom: 0;
  align-self: start;
  justify-self: start;
}

.pricing-copy > h2,
.pricing-copy > p {
  margin-top: 0;
  justify-self: center;
  text-align: center;
}

.pricing-copy > h2 {
  max-width: 28ch; /* Le damos mucho más espacio horizontal para que no se rompa tanto */
  font-size: clamp(2.2rem, 3.5vw, 3.2rem); /* Suavizamos un poco el tamaño máximo para que no grite */
  line-height: 1.05; /* Un poco más de aire entre las líneas */
  text-wrap: balance; /* Truco de diseño moderno: el navegador equilibra automáticamente las líneas para que queden simétricas */
}

.pricing-copy > p {
  max-width: 62ch;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 380px));
  grid-auto-rows: 1fr;
  justify-content: center;
  gap: 22px;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  min-height: 0;
  width: 100%;
  padding: 24px 22px 22px;
  color: #06101d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    linear-gradient(145deg, #eaffc9, #8edfff);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.featured-plan {
  background:
    radial-gradient(circle at 78% 8%, rgba(198, 255, 104, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(233, 247, 253, 0.98), rgba(198, 231, 243, 0.96));
  color: #102033;
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.12),
    0 10px 28px rgba(112, 232, 255, 0.1);
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.pricing-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(6, 16, 29, 0.08);
  text-align: center;
}

.featured-plan .pricing-tag {
  color: #102033;
  background: linear-gradient(135deg, var(--accent-2), #70e8ff);
}

.pricing-card h3 {
  margin-top: 18px;
  min-height: 0;
  font-size: 1.45rem;
  line-height: 1.18;
  display: flex;
  align-items: flex-start;
}

.discount-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  min-height: 0;
  color: rgba(6, 16, 29, 0.82);
  font-weight: 900;
}

.featured-plan .discount-line {
  color: rgba(16, 32, 51, 0.88);
}

.discount-line s {
  white-space: nowrap;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(6, 16, 29, 0.82);
}

.featured-plan .discount-line s {
  text-decoration-color: rgba(16, 32, 51, 0.62);
}

.discount-line b {
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  color: #06101d;
  font-size: 0.82rem;
  background: var(--accent-2);
}

.plan-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 0;
  margin-top: 18px;
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.plan-price-amount {
  white-space: nowrap;
  flex: 0 1 auto;
}

.plan-price-side {
  display: grid;
  gap: 5px;
  justify-items: start;
  align-self: center;
  padding-bottom: 0;
  min-width: 68px;
}

.plan-price-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #10233a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(202, 255, 100, 0.92), rgba(112, 232, 255, 0.92));
  box-shadow: 0 10px 24px rgba(112, 232, 255, 0.18);
}

.plan-price small {
  display: block;
  flex: 0 0 auto;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.clp-price {
  min-height: 0;
  margin-top: 10px;
  color: rgba(6, 16, 29, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
}

body[data-currency="clp"] .plan-price {
  font-size: clamp(2.02rem, 3.08vw, 2.74rem);
  letter-spacing: -0.045em;
}

body[data-currency="clp"] .plan-price-side {
  min-width: 82px;
  gap: 8px;
  padding-bottom: 0;
}

body[data-currency="clp"] .plan-price-code {
  min-width: 68px;
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.featured-plan .plan-price-code {
  color: #10233a;
}

.pricing-card p,
.annual-price small {
  color: rgba(6, 16, 29, 0.76);
}

.featured-plan p,
.featured-plan .annual-price small {
  color: rgba(16, 32, 51, 0.72);
}

.annual-price {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 0;
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
}

.featured-plan .annual-price {
  background: rgba(255, 255, 255, 0.72);
}

.annual-price span {
  color: #4a8a24;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-plan .annual-price span {
  color: #4a8a24;
}

.annual-price b {
  font-size: 1.05rem;
}

.pricing-card ul {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  line-height: 1.32;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 8px;
  height: 8px;
  border: 1.5px solid rgba(21, 141, 255, 0.72);
  border-radius: 999px;
  transform: translateY(-50%);
}

.pricing-card > .solid-button {
  width: 100%;
  margin-top: auto;
}


.footer-contact-band {
  padding: 8px 0 4px;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.contact-quick-actions {
  margin-top: 14px;
  justify-content: flex-start;
}

.contact-quick-actions .footer-contact-pill {
  flex: 1 1 260px;
}

.footer-contact-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 68px;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  background: var(--surface-strong);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.footer-contact-pill strong {
  position: relative;
  z-index: 1;
  font-size: 1.03rem;
  line-height: 1.2;
}

.footer-contact-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  flex-shrink: 0;
  border-radius: 999px;
  color: currentColor;
  line-height: 1;
}

.footer-contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
}

.social-channel-mark svg,
.social-channel-mark img {
  display: block;
  width: 20px;
  height: 20px;
}

.footer-contact-pill-email {
  border-color: rgba(21, 141, 255, 0.12);
  background:
    radial-gradient(circle at 12% 50%, rgba(21, 141, 255, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.86)),
    var(--surface-strong);
}

.footer-contact-pill-email .footer-contact-icon {
  background: transparent;
  box-shadow: none;
}

.footer-contact-pill-whatsapp {
  border-color: rgba(37, 211, 102, 0.32);
  color: #25c55d;
  background:
    radial-gradient(circle at 12% 50%, rgba(37, 211, 102, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.88)),
    var(--surface-strong);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.12);
}

.footer-contact-pill-whatsapp .footer-contact-icon {
  background: transparent;
  box-shadow: none;
}

.preference-panel {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  justify-items: stretch;
  padding: 18px 24px;
  overflow: visible;
}

.preference-panel.has-open-select {
  z-index: 90;
}

.preference-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.preference-copy .eyebrow {
  flex: 0 0 auto;
  margin: 0;
  color: #7fb9e8;
  font-size: 0.72rem;
}

.preference-panel h2 {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-links a,
.contact-info-card {
  flex: 1 1 220px;
  padding: 20px;
  background: var(--surface-strong);
}

.contact-info-card {
  border: 1px solid var(--line);
  text-align: left;
}

.contact-info-action {
  position: relative;
  overflow: hidden;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-info-action::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -24%;
  width: 34%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg) translateX(-140%);
  transition: transform 520ms ease, opacity 220ms ease;
  pointer-events: none;
}

.contact-info-action:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 141, 255, 0.18);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
}

.contact-info-action:hover::before {
  opacity: 1;
  transform: skewX(-18deg) translateX(360%);
}

.contact-info-action.is-copied {
  border-color: rgba(112, 232, 255, 0.22);
  box-shadow:
    0 22px 42px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(112, 232, 255, 0.12) inset,
    0 0 26px rgba(112, 232, 255, 0.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-copy .section-head {
  max-width: none;
}

.contact-copy .section-head h2 {
  max-width: 14ch;
}

.contact-intro {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.contact-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-promises span {
  position: relative;
  padding: 10px 14px 10px 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #27405b;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54), 0 10px 24px rgba(15, 23, 42, 0.05);
}

.contact-promises span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #caff64, #70e8ff);
  transform: translateY(-50%);
}

.contact-links-compact {
  margin-top: 4px;
}

.contact-links-compact a,
.contact-links-compact .contact-info-card {
  min-height: 102px;
  padding: 18px;
  border-radius: 22px;
}

.contact-stage {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-self: stretch;
  padding-top: 20px;
}

.contact-chooser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-choice {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px 46px 18px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.04), rgba(123, 104, 255, 0.04));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.contact-choice::before {
  content: "";
  position: absolute;
  inset: -38% auto -38% -24%;
  width: 34%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-18deg) translateX(-140%);
  transition: transform 520ms ease, opacity 220ms ease;
  pointer-events: none;
}

.contact-choice::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.contact-choice:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 141, 255, 0.18);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.contact-choice:hover::before,
.contact-choice.active::before {
  opacity: 1;
  transform: skewX(-18deg) translateX(360%);
}

.contact-choice.active {
  border-color: rgba(21, 141, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(202, 255, 100, 0.16), rgba(112, 232, 255, 0.18));
  box-shadow:
    0 24px 46px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(112, 232, 255, 0.08) inset;
}

.contact-choice.active::after {
  opacity: 0.92;
  transform: rotate(45deg) translate(0, 0);
}

.contact-choice strong {
  font-size: 1rem;
  line-height: 1.24;
}

.contact-choice small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-display {
  position: relative;
  margin-top: 20px;
}

.contact-panel {
  display: none;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 14%, rgba(202, 255, 100, 0.12), transparent 24%),
    radial-gradient(circle at 12% 20%, rgba(21, 141, 255, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.74));
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.1);
}

.contact-panel.active {
  display: grid !important;
  animation: contactPanelReveal 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #4e8717;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(74, 138, 36, 0.12);
}

.contact-panel h3 {
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  line-height: 1.04;
}

.contact-panel-text {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-panel-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-panel-points li {
  position: relative;
  padding: 14px 16px 14px 38px;
  border: 1px solid rgba(22, 34, 54, 0.08);
  border-radius: 18px;
  color: #24364d;
  line-height: 1.55;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.88));
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.contact-panel-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #caff64, #70e8ff);
  box-shadow: 0 0 0 6px rgba(112, 232, 255, 0.08);
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(21, 141, 255, 0.1);
  border-radius: 999px;
  color: #35506c;
  font-size: 0.84rem;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(202, 255, 100, 0.1), rgba(112, 232, 255, 0.08)),
    rgba(255, 255, 255, 0.7);
}

.contact-links span,
.contact-links strong {
  display: block;
}

.contact-links span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-links strong {
  margin-top: 8px;
  font-size: 1rem;
}

body[data-theme="dark"] .hero-stage {
  background:
    radial-gradient(circle at 24% 12%, rgba(21, 141, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(16, 29, 48, 0.9), rgba(9, 18, 32, 0.82));
}

body[data-theme="dark"] .hero-copy {
  background:
    radial-gradient(circle at 0% 0%, rgba(112, 232, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(13, 25, 42, 0.96), rgba(10, 19, 33, 0.94));
}

body[data-theme="dark"] .hero-copy::before {
  background: radial-gradient(circle, rgba(202, 255, 100, 0.08), transparent 70%);
}

body[data-theme="dark"] .hero-copy::after {
  background: linear-gradient(90deg, transparent, rgba(112, 232, 255, 0.18), transparent);
  opacity: 0.58;
}

body[data-theme="dark"] .hero-tags span,
body[data-theme="dark"] .feature-card,
body[data-theme="dark"] .pricing-note,
body[data-theme="dark"] .contact-links a,
body[data-theme="dark"] .contact-info-card {
  color: var(--ink);
  background: rgba(18, 32, 52, 0.86);
}

body[data-theme="dark"] .contact-info-action:hover {
  border-color: rgba(112, 232, 255, 0.18);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

body[data-theme="dark"] .contact-info-action::before {
  background: linear-gradient(90deg, transparent, rgba(112, 232, 255, 0.18), transparent);
}

body[data-theme="dark"] .contact-choice {
  background:
    linear-gradient(180deg, rgba(17, 31, 52, 0.88), rgba(14, 26, 43, 0.8)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.05), rgba(123, 104, 255, 0.05));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"] .contact-choice::before {
  background: linear-gradient(90deg, transparent, rgba(112, 232, 255, 0.18), transparent);
}

body[data-theme="dark"] .contact-choice.active {
  border-color: rgba(112, 232, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(18, 35, 58, 0.96), rgba(12, 24, 40, 0.92)),
    linear-gradient(135deg, rgba(202, 255, 100, 0.08), rgba(112, 232, 255, 0.1));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(112, 232, 255, 0.08) inset;
}

body[data-theme="dark"] .contact-panel {
  background:
    radial-gradient(circle at 88% 14%, rgba(202, 255, 100, 0.1), transparent 24%),
    radial-gradient(circle at 12% 20%, rgba(21, 141, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 27, 45, 0.96), rgba(10, 20, 34, 0.92));
}

body[data-theme="dark"] .contact-kicker {
  color: #b4f45d;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(202, 255, 100, 0.12);
}

body[data-theme="dark"] .contact-panel-points li {
  color: #d3ddee;
  background:
    linear-gradient(180deg, rgba(18, 32, 52, 0.92), rgba(15, 27, 45, 0.84));
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .contact-spotlight,
body[data-theme="dark"] .contact-social-card,
body[data-theme="dark"] .contact-flow-card {
  background:
    radial-gradient(circle at 88% 14%, rgba(202, 255, 100, 0.08), transparent 24%),
    radial-gradient(circle at 12% 20%, rgba(21, 141, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(16, 29, 48, 0.96), rgba(10, 19, 33, 0.92));
}

body[data-theme="dark"] .social-channel {
  background:
    linear-gradient(180deg, rgba(17, 31, 52, 0.9), rgba(13, 24, 40, 0.84)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.05), rgba(123, 104, 255, 0.05));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .social-channel-copy small {
  color: #a9b7ca;
}

body[data-theme="dark"] .social-channel-cta {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .contact-promises span,
body[data-theme="dark"] .contact-meta span {
  color: #dce7f8;
  background:
    linear-gradient(135deg, rgba(202, 255, 100, 0.1), rgba(112, 232, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(112, 232, 255, 0.12);
}

body[data-theme="dark"] .light-card,
body[data-theme="dark"] .warm-card {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(18, 32, 52, 0.92), rgba(11, 22, 38, 0.92));
}

body[data-theme="dark"] .stage-frame {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 10%, rgba(126, 255, 139, 0.12), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(112, 232, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #101d31 0%, #081320 100%);
}

body[data-theme="dark"] .scene-card,
body[data-theme="dark"] .app-window {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(13, 25, 42, 0.92);
}

body[data-theme="dark"] .scene-top h2,
body[data-theme="dark"] .mock-panel h3,
body[data-theme="dark"] .order-board strong,
body[data-theme="dark"] .mock-strip span,
body[data-theme="dark"] .stock-row strong,
body[data-theme="dark"] .portal-card strong,
body[data-theme="dark"] .route-card {
  color: var(--ink);
}

body[data-theme="dark"] .mock-panel,
body[data-theme="dark"] .stock-table,
body[data-theme="dark"] .portal-card,
body[data-theme="dark"] .route-card,
body[data-theme="dark"] .mock-strip,
body[data-theme="dark"] .order-board {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(18, 32, 52, 0.9);
}

body[data-theme="dark"] .mock-panel p,
body[data-theme="dark"] .portal-card p,
body[data-theme="dark"] .stock-row,
body[data-theme="dark"] .visit-checklist li,
body[data-theme="dark"] .visit-line,
body[data-theme="dark"] .mock-strip b {
  color: var(--muted);
}

body[data-theme="dark"] .ticket-meta span,
body[data-theme="dark"] .workflow-steps span {
  color: #c8d6ea;
  background: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .workflow-steps .done,
body[data-theme="dark"] .stock-row em,
body[data-theme="dark"] .route-card small {
  color: #102033;
  background: #caff64;
}

body[data-theme="dark"] .order-board div,
body[data-theme="dark"] .mock-strip span,
body[data-theme="dark"] .stock-head {
  background: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .pricing-card:not(.featured-plan) {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(18, 32, 52, 0.92), rgba(13, 25, 42, 0.92)),
    linear-gradient(145deg, rgba(202, 255, 100, 0.12), rgba(112, 232, 255, 0.12));
}

body[data-theme="dark"] .featured-plan {
  background:
    radial-gradient(circle at 78% 8%, rgba(198, 255, 104, 0.24), transparent 32%),
    linear-gradient(145deg, #19304d, #0d1d31);
  color: #f7fbff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

body[data-theme="dark"] .pricing-card:not(.featured-plan) p,
body[data-theme="dark"] .pricing-card:not(.featured-plan) .annual-price small {
  color: var(--muted);
}

body[data-theme="dark"] .featured-plan p,
body[data-theme="dark"] .featured-plan .annual-price small {
  color: rgba(247, 251, 255, 0.72);
}

body[data-theme="dark"] .pricing-note strong,
body[data-theme="dark"] .preference-panel h2,
body[data-theme="dark"] .contact-links strong {
  color: var(--ink);
}

body[data-theme="dark"] .featured-plan .discount-line {
  color: rgba(247, 251, 255, 0.9);
}

body[data-theme="dark"] .featured-plan .discount-line s {
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

body[data-theme="dark"] .featured-plan .annual-price {
  background: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .featured-plan .annual-price span {
  color: #bfff73;
}

body[data-theme="dark"] .hero-copy,
body[data-theme="dark"] .marquee,
body[data-theme="dark"] .product,
body[data-theme="dark"] .scenes-section,
body[data-theme="dark"] .pricing,
body[data-theme="dark"] .contact,
body[data-theme="dark"] .preference-panel {
  background:
    linear-gradient(180deg, rgba(16, 29, 48, 0.9), rgba(8, 18, 32, 0.88)),
    var(--surface);
}

body[data-theme="dark"] .site-header {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(15, 35, 58, 0.78), rgba(8, 17, 31, 0.68)),
    rgba(8, 17, 31, 0.72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

body[data-theme="dark"] .site-header.is-scrolled {
  border-color: rgba(124, 184, 232, 0.22);
  background:
    linear-gradient(135deg, rgba(16, 42, 70, 0.88), rgba(8, 17, 31, 0.82)),
    rgba(8, 17, 31, 0.86);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.34);
}

body[data-theme="dark"] .preference-panel h2 {
  color: var(--muted);
}

body[data-theme="dark"] .brand,
body[data-theme="dark"] .ghost-button,
body[data-theme="dark"] .site-controls {
  background: rgba(13, 25, 42, 0.88);
}

body[data-theme="dark"] .site-nav a,
body[data-theme="dark"] .hero-text,
body[data-theme="dark"] .product-card p,
body[data-theme="dark"] .feature-card p,
body[data-theme="dark"] .pricing-copy p,
body[data-theme="dark"] .pricing-note span,
body[data-theme="dark"] .contact-links span {
  color: var(--muted);
}

body[data-theme="dark"] .eyebrow,
body[data-theme="dark"] .scene-top p,
body[data-theme="dark"] .annual-price span,
body[data-theme="dark"] .featured-plan .annual-price span,
body[data-theme="dark"] .pricing-card:not(.featured-plan) .annual-price span {
  color: #7fb9e8;
}

body[data-theme="dark"] .eyebrow {
  color: #9fd3ff;
  border-color: rgba(127, 185, 232, 0.22);
  background:
    linear-gradient(135deg, rgba(18, 38, 61, 0.96), rgba(10, 23, 39, 0.92)),
    rgba(10, 23, 39, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"] .eyebrow::before {
  background: linear-gradient(135deg, #caff64, #70e8ff);
  box-shadow: 0 0 0 6px rgba(112, 232, 255, 0.12);
}

body[data-theme="dark"] .hero-tags span {
  color: #d9e6f7;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 22px rgba(0, 0, 0, 0.12);
}

body[data-theme="dark"] .hero-tags span:hover {
  border-color: rgba(112, 232, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 30px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"] .scene-top {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .marquee-track span {
  color: #d7e5f7;
}

body[data-theme="dark"] .app-window,
body[data-theme="dark"] .mock-panel,
body[data-theme="dark"] .stock-table,
body[data-theme="dark"] .portal-card,
body[data-theme="dark"] .route-card,
body[data-theme="dark"] .order-board,
body[data-theme="dark"] .mock-strip {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"] .real-screen {
  background:
    linear-gradient(180deg, rgba(14, 29, 49, 0.96), rgba(8, 18, 32, 0.92)),
    #081320;
  background-color: #081320;
  background-size: calc(100% - 12px) auto;
  background-position: center 24px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 14px 28px rgba(255, 255, 255, 0.04),
    0 22px 58px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"] .real-screen::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(6, 14, 26, 0.2)),
    radial-gradient(circle at 24% 0%, rgba(112, 232, 255, 0.16), transparent 34%);
}

body[data-theme="dark"] .real-screen .mock-toolbar,
body[data-theme="dark"] .real-screen .mock-panel {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.055));
}

body[data-theme="dark"] .real-screen .mock-toolbar strong,
body[data-theme="dark"] .real-screen .mock-panel h3,
body[data-theme="dark"] .real-screen .order-board strong,
body[data-theme="dark"] .real-screen .stock-row strong,
body[data-theme="dark"] .real-screen .portal-card strong,
body[data-theme="dark"] .real-screen .mock-strip span {
  color: #f4f8ff;
}

body[data-theme="dark"] .real-screen .mock-toolbar em,
body[data-theme="dark"] .real-screen .mock-panel p,
body[data-theme="dark"] .real-screen .portal-card p {
  color: #a9b7ca;
}

body[data-theme="dark"] .real-screen .ticket-meta span,
body[data-theme="dark"] .real-screen .workflow-steps span {
  color: #d9e6f7;
  background: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .real-screen .workflow-steps .done {
  color: #081320;
  background: linear-gradient(135deg, #caff64, #70e8ff);
}

.real-screen {
  display: block;
  min-height: 500px;
  padding: 14px;
  isolation: isolate;
  background-color: #f7fbff;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-clip: content-box;
  background-size: calc(100% - 8px) auto;
  background-position: center 18px;
  border-radius: 26px;
  border: 1px solid rgba(17, 31, 52, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    inset 0 18px 34px rgba(255, 255, 255, 0.34),
    0 20px 44px rgba(15, 23, 42, 0.1);
}

.real-screen > * {
  display: none !important;
}

.real-screen::after {
  inset: 0;
  height: auto;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 24% 0%, rgba(112, 232, 255, 0.08), transparent 34%);
  filter: none;
  z-index: 1;
}

.order-screen {
  background-image: url("assets/screenshots/ficha-orden-light.webp");
  background-repeat: no-repeat;
  background-position: 50% 56%;
  background-size: calc(100% + 44px) auto;
}

.visit-screen {
  background-image: url("assets/screenshots/agenda-light.webp");
  background-repeat: no-repeat;
  background-position: 50% 56%;
  background-size: calc(100% + 44px) auto;
}

.portal-screen {
  background-image: url("assets/screenshots/portal-cliente-light.webp");
  background-position: center 16px;
  background-size: calc(100% - 10px) auto;
}

.chat-screen {
  background-image: url("assets/screenshots/team-chat-light.webp");
}

.rates-screen {
  background-image: url("assets/screenshots/currency-rates-light.webp");
}

.finance-screen {
  background-image: url("assets/screenshots/finance-report-light.webp");
}

body[data-theme="dark"] .order-screen {
  background-image: url("assets/screenshots/ficha-orden-dark.webp");
  background-repeat: no-repeat;
  background-position: 50% 56%;
  background-size: calc(100% + 44px) auto;
}

body[data-theme="dark"] .visit-screen {
  background-image: url("assets/screenshots/agenda-dark.webp");
  background-repeat: no-repeat;
  background-size: calc(100% + 44px) auto;
  background-position: 50% 56%;
}

body[data-theme="dark"] .portal-screen {
  background-image: url("assets/screenshots/portal-cliente-dark.webp");
  background-position: center 18px;
  background-size: calc(100% - 12px) auto;
}

body[data-theme="dark"] .chat-screen {
  background-image: url("assets/screenshots/team-chat-dark.webp");
  background-position: center 20px;
  background-size: calc(100% - 10px) auto;
}

body[data-theme="dark"] .rates-screen {
  background-image: url("assets/screenshots/currency-rates-dark.webp");
  background-position: center 20px;
}

body[data-theme="dark"] .finance-screen {
  background-image: url("assets/screenshots/finance-report-dark.webp");
  background-position: center 20px;
}

body[data-theme="dark"] .order-board,
body[data-theme="dark"] .mock-strip,
body[data-theme="dark"] .stock-table {
  background: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .ticket-meta span {
  color: #d9e6f7;
}

body[data-theme="dark"] .mock-label,
body[data-theme="dark"] .stock-head,
body[data-theme="dark"] .preview-label {
  color: #8fb8d8;
}

body[data-theme="dark"] .pricing-card:not(.featured-plan) .pricing-tag,
body[data-theme="dark"] .pricing-card:not(.featured-plan) .annual-price {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .pricing-card:not(.featured-plan) .discount-line {
  color: var(--ink);
}

body[data-theme="dark"] .pricing-card:not(.featured-plan) .discount-line s {
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

body[data-theme="dark"] .pricing-card:not(.featured-plan) .annual-price span {
  color: #bfff73;
}

body[data-theme="dark"] .discount-line b,
body[data-theme="dark"] .pricing-tag,
body[data-theme="dark"] .card-index,
body[data-theme="dark"] .portal-card b,
body[data-theme="dark"] .scene-top strong {
  color: #081320;
}

body[data-theme="dark"] .control-button,
body[data-theme="dark"] .custom-select-trigger {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .custom-options {
  border-color: rgba(255, 255, 255, 0.12);
  background: #111d31;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

body[data-theme="dark"] .custom-options button {
  color: #f4f8ff;
}

body[data-theme="dark"] .custom-options button:hover,
body[data-theme="dark"] .custom-options button[aria-selected="true"] {
  color: #081320;
  background: linear-gradient(135deg, #caff64, #70e8ff);
}

body[data-theme="dark"] .site-controls select {
  color-scheme: dark;
  background-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .site-controls select option {
  color: #f4f8ff;
  background: #111d31;
}

body[data-theme="dark"] .site-controls select option:checked {
  color: #081320;
  background: linear-gradient(135deg, #caff64, #70e8ff);
}

body[data-theme="dark"] .site-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .footer-contact-pill {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(16, 29, 48, 0.94), rgba(10, 19, 33, 0.92)),
    rgba(18, 32, 52, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"] .footer-contact-pill-email {
  color: #f4f8ff;
}

body[data-theme="dark"] .footer-contact-pill-whatsapp {
  border-color: rgba(37, 211, 102, 0.28);
  color: #47dd7e;
  background:
    radial-gradient(circle at 12% 50%, rgba(37, 211, 102, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(16, 29, 48, 0.94), rgba(10, 19, 33, 0.92)),
    rgba(18, 32, 52, 0.9);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
}

body[data-theme="dark"] .footer-contact-pill-whatsapp .footer-contact-icon {
  color: #47dd7e;
  background: transparent;
  box-shadow: none;
}

.site-footer {
  display: block;
  padding: 18px 0 32px;
  border-top: 1px solid rgba(17, 31, 52, 0.08);
  color: #55647a;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.site-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.site-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  color: #5a6980;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-meta a {
  display: inline-flex;
  align-items: center;
  color: #5a6980;
  opacity: 1;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-footer-meta a:hover {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}

/* Facebook remains a secondary brand link in the footer, not a support channel. */
.site-footer-meta .footer-facebook-link {
  width: 24px;
  height: 24px;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(83, 111, 144, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.site-footer-meta .footer-facebook-link img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  transform: scale(1.9);
}

.site-footer-meta .footer-facebook-link:hover {
  border-color: rgba(24, 119, 242, 0.55);
  background: rgba(24, 119, 242, 0.1);
}

.site-footer p {
  margin: 0;
  color: #5c6a80;
  font-weight: 600;
  opacity: 1;
}

body[data-theme="dark"] .site-footer {
  color: rgba(244, 248, 255, 0.68);
}

body[data-theme="dark"] .site-footer-meta {
  color: rgba(244, 248, 255, 0.76);
}

body[data-theme="dark"] .site-footer-meta .footer-facebook-link {
  border-color: rgba(163, 184, 215, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .site-footer p {
  color: rgba(244, 248, 255, 0.66);
}

.legal-main {
  margin-top: 22px;
}

.legal-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-page .section-head {
  max-width: 900px;
}

.legal-page .section-head h1 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.legal-lead {
  max-width: 74ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  margin-top: 28px;
  align-items: start;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.04), rgba(123, 104, 255, 0.04));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

body[data-theme="dark"] .legal-card {
  background:
    linear-gradient(180deg, rgba(18, 32, 52, 0.94), rgba(14, 26, 43, 0.88)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.05), rgba(123, 104, 255, 0.05));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-list {
  padding-left: 18px;
  margin: 0;
}

.legal-list li + li {
  margin-top: 10px;
}

.legal-note {
  padding: 16px 18px;
  border: 1px solid rgba(21, 141, 255, 0.1);
  border-radius: 20px;
  color: #2f4966;
  font-weight: 700;
  line-height: 1.55;
  background:
    linear-gradient(135deg, rgba(202, 255, 100, 0.14), rgba(112, 232, 255, 0.12)),
    rgba(255, 255, 255, 0.82);
}

body[data-theme="dark"] .legal-note {
  color: #dce7f8;
  background:
    linear-gradient(135deg, rgba(202, 255, 100, 0.1), rgba(112, 232, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(112, 232, 255, 0.12);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  margin-top: 34px;
  align-items: start;
}

.contact-page-primary,
.contact-page-side {
  display: grid;
  gap: 20px;
}

.contact-spotlight {
  padding: 30px;
  background:
    radial-gradient(circle at 88% 14%, rgba(202, 255, 100, 0.1), transparent 26%),
    radial-gradient(circle at 12% 18%, rgba(21, 141, 255, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76));
}

.contact-page-head {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-page-head.compact {
  gap: 10px;
  margin-bottom: 14px;
}

.contact-page-head h2,
.contact-page-head h3 {
  margin: 0;
}

.contact-spotlight h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 0.98;
}

.contact-page-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
  gap: 16px;
  margin-top: 20px;
}

.contact-page-actions .footer-contact-pill {
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
}

.support-ticket-card {
  position: relative;
  overflow: hidden;
  padding: 28px 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(112, 232, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(21, 141, 255, 0.08), rgba(202, 255, 100, 0.09)),
    rgba(255, 255, 255, 0.82);
}

.support-ticket-card::after {
  position: absolute;
  inset: auto -28px -50px auto;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(21, 141, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.support-ticket-card > * {
  position: relative;
  z-index: 1;
}

.support-ticket-button,
.support-ticket-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(21, 141, 255, 0.42);
  border-radius: 999px;
  color: #075db8;
  font-weight: 850;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(21, 141, 255, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.support-ticket-button {
  margin-top: 20px;
  color: #062b52;
  background: linear-gradient(100deg, #b9ff63, #70e8ff);
  border-color: transparent;
}

.support-ticket-button:hover,
.support-ticket-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(21, 141, 255, 0.18);
}

.support-ticket-note {
  margin: 14px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-quick-actions + .support-ticket-link {
  margin-top: 14px;
}

body[data-theme="dark"] .support-ticket-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(112, 232, 255, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(21, 141, 255, 0.12), rgba(202, 255, 100, 0.08)),
    rgba(11, 28, 49, 0.9);
}

body[data-theme="dark"] .support-ticket-link {
  color: #89d4ff;
  border-color: rgba(112, 232, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

body[data-theme="dark"] .support-ticket-note {
  color: rgba(232, 240, 252, 0.7);
}

.contact-social-card {
  padding: 28px;
}

.contact-social-text {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.social-channel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 114px;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--ink);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(21, 141, 255, 0.04), rgba(123, 104, 255, 0.04));
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.social-channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.social-facebook:hover {
  border-color: rgba(24, 119, 242, 0.24);
  box-shadow:
    0 24px 46px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(24, 119, 242, 0.08) inset;
}

.social-discord:hover {
  border-color: rgba(88, 101, 242, 0.24);
  box-shadow:
    0 24px 46px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(88, 101, 242, 0.08) inset;
}

.social-channel-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  overflow: hidden;
  border-radius: 12px;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
}

.social-facebook .social-channel-mark {
  background: transparent;
  box-shadow: none;
}

.social-discord .social-channel-mark {
  background: transparent;
  box-shadow: none;
}

.social-channel-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.social-facebook .social-channel-mark img,
.social-discord .social-channel-mark img {
  transform: scale(2.05);
  transform-origin: center;
}

.social-channel-copy {
  display: grid;
  gap: 6px;
  align-content: center;
}

.social-channel-copy strong {
  font-size: 1.08rem;
  line-height: 1.18;
}

.social-channel-copy small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.social-channel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 78px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(6, 16, 29, 0.08);
}

.social-facebook .social-channel-cta {
  color: #0d4fa8;
  background: rgba(24, 119, 242, 0.12);
}

.social-discord .social-channel-cta {
  color: #454fd1;
  background: rgba(88, 101, 242, 0.12);
}

.contact-flow-card {
  padding: 28px;
}

.contact-flow-points {
  margin-top: 18px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes cta-breathe {
  0%,
  100% {
    box-shadow: 0 18px 34px rgba(202, 255, 100, 0.18);
  }
  50% {
    box-shadow: 0 22px 48px rgba(111, 233, 255, 0.34);
  }
}

/* ==========================================================================
   MEDIA QUERIES & DISEÑO RESPONSIVO (UNIFICADO Y LIMPIO)
   ========================================================================== */

/* Ocultar elementos móviles en escritorio por defecto */
.mobile-menu-toggle { display: none; }
.btn-icon { display: none; }
/* ==========================================================================
   ESTRUCTURA DE TARJETAS DE PRECIO (ALTA CONVERSIÓN TIPO SURFSHARK)
   ========================================================================== */

/* 1. Flexbox para controlar el orden y centrado vertical */
.pricing-card {
  display: flex !important;
  flex-direction: column;
  align-items: center; 
  padding: 42px 24px 28px !important; 
  margin-top: 20px; 
}

/* 2. Etiqueta flotante en el borde superior */
.pricing-tag {
  position: absolute !important;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
}

.pricing-card h3 {
  margin-top: 0 !important;
  text-align: center;
}

/* 3. Precio y descuento 100% centrados debajo del título */
.plan-price, 
.discount-line {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.plan-price {
  margin-top: 12px !important;
}

.discount-line {
  margin-top: 8px !important;
}

/* 4. El botón sube al centro y ocupa todo el ancho */
.pricing-card > .solid-button,
.pricing-card > .ghost-button {
  width: 100%;
  margin: 22px 0 10px 0 !important;
}

/* 5. Letra chica más limpia, sin la caja gris de fondo */
.annual-price {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
  text-align: center;
  min-height: auto !important;
}

/* 6. Línea divisoria y subtítulo "Para técnicos / talleres..." alineado a la izquierda */
.features-label {
  align-self: flex-start;
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 800;
  padding-top: 22px;
  margin: 24px 0 18px 0 !important; /* Añadimos 24px de margen superior aquí */
  border-top: 1px solid var(--line);
}

body[data-theme="dark"] .features-label {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: #f4f8ff;
}

/* 7. Lista tradicional en F, pegada a la izquierda */
.pricing-card ul {
  align-self: flex-start;
  margin: 0 !important;
  width: 100%;
}
/* ==========================================================================
   IDENTIDAD DE COLORES POR PLAN (ESTRATEGIA CRO TRICOLOR)
   ========================================================================== */

/* --- PLAN INICIAL (Tema Azul/Cian) --- */
.plan-starter .pricing-tag {
  color: #0d4fa8;
  background: rgba(21, 141, 255, 0.1);
  border: 1px solid rgba(21, 141, 255, 0.25);
}
.plan-starter .ghost-button {
  color: #0d4fa8;
  border-color: rgba(21, 141, 255, 0.4);
}
.plan-starter .ghost-button:hover {
  border-color: rgba(21, 141, 255, 0.8);
  background: rgba(21, 141, 255, 0.08);
  box-shadow: 0 16px 32px rgba(21, 141, 255, 0.15);
}
.plan-starter .discount-line b {
  background: #70e8ff;
  color: #06101d;
}
.plan-starter li::before {
  border-color: rgba(21, 141, 255, 0.72);
}

/* --- PLAN PROFESIONAL (Tema Morado Premium) --- */
.plan-pro .pricing-tag {
  color: #454fd1;
  background: rgba(123, 104, 255, 0.1);
  border: 1px solid rgba(123, 104, 255, 0.25);
}
.plan-pro .ghost-button {
  color: #454fd1;
  border-color: rgba(123, 104, 255, 0.4);
}
.plan-pro .ghost-button:hover {
  border-color: rgba(123, 104, 255, 0.8);
  background: rgba(123, 104, 255, 0.08);
  box-shadow: 0 16px 32px rgba(123, 104, 255, 0.15);
}
.plan-pro .discount-line b {
  background: #d0bfff;
  color: #06101d;
}
.plan-pro li::before {
  border-color: rgba(123, 104, 255, 0.72);
}

/* --- PLAN ESENCIAL (Refuerzo de viñetas Lima/Verde) --- */
.featured-plan li::before {
  border-color: rgba(202, 255, 100, 0.9);
}

/* --- AJUSTES DE BRILLO EXCLUSIVOS PARA MODO OSCURO --- */
body[data-theme="dark"] .pricing-card.plan-starter .pricing-tag {
  color: #70e8ff;
  background: rgba(21, 141, 255, 0.15);
}
body[data-theme="dark"] .pricing-card.plan-starter .ghost-button {
  color: #70e8ff;
}
body[data-theme="dark"] .pricing-card.plan-pro .pricing-tag {
  color: #d0bfff;
  background: rgba(123, 104, 255, 0.15);
}
body[data-theme="dark"] .pricing-card.plan-pro .ghost-button {
  color: #d0bfff;
}

/* Centrado absoluto del menú en ordenadores */
@media (min-width: 901px) {
  .site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  /* Reparación de la etiqueta superior (Eyebrow) en Tablets */
  .eyebrow {
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    padding: 10px 18px;
    line-height: 1.4;
    text-align: left;
    box-sizing: border-box;
    white-space: normal;
  }
  
  .eyebrow::before {
    flex: 0 0 auto;
    min-width: 8px;
    min-height: 8px;
    margin-right: 8px;
  }
  
  .hero-copy > .eyebrow {
    transform: none;
    margin-bottom: 20px;
  }

  /* Rejillas generales a 1 columna para evitar compresión */
  .hero,
  .pricing-layout,
  .explorer-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .pricing-copy {
    justify-items: center;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .pricing-copy .eyebrow {
    align-self: center;
  }
  .pricing-copy > h2 {
    max-width: 18ch;
  }
  .pricing-copy > p {
    max-width: 60ch;
  }
  .pricing-note {
    width: min(100%, 760px);
    margin: 2px auto 0;
  }
  .contact-stage {
    align-self: start;
    padding-top: 0;
  }
  .site-header {
    align-items: flex-start;
  }
  .header-actions {
    align-items: flex-end;
  }
  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 360px));
    justify-content: center;
  }
}

@media (max-width: 900px) {
  /* --- CABECERA Y NAVEGACIÓN MÓVIL --- */
  .site-header {
    position: sticky;
    top: 10px;
    z-index: 100;
    flex-direction: row;
    flex-wrap: wrap !important; /* 1. DEBE SER WRAP para que el menú desplegable pueda caer abajo al abrirse */
    align-items: center;
    align-content: flex-start;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 28px;
  }
  
  .brand { 
    order: 1; 
    width: auto !important; 
    flex: 1 1 auto !important; /* 2. Permite que el logo ceda espacio para que los botones entren en la fila */
    margin-right: auto; 
    padding: 6px 12px 6px 6px; 
    min-width: 0 !important; /* 3. Vital para que el texto se pueda cortar y no empuje nada */
  }
  
  .brand-copy {
    min-width: 0 !important; /* Protege el contenedor del texto */
  }
  
  .brand-copy strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  
  .brand-copy small { 
    display: none; 
  }

  /* ... a partir de aquí sigue igual tu .header-actions ... */
  
  .header-actions { 
    order: 2; 
    width: auto; 
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    height: 44px; 
    display: flex;
    align-items: center;
  }
  
  /* Apagamos selectores de idioma/moneda en móvil para evitar saltos fantasma */
  .header-actions .site-controls {
    display: none;
  }
  
  .quick-actions { 
    display: flex;
    align-items: center;
    width: auto;
    height: 44px;
    margin: 0;
    gap: 8px; 
  }

  .mobile-menu-toggle { 
    order: 3; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    color: var(--ink);
    flex: 0 0 auto;
    margin: 0;
  }

  .icon-btn-mobile {
    min-width: 44px;
    width: 44px;
    min-height: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; 
    margin: 0;
  }
  
  .icon-btn-mobile .btn-text { display: none; }
  .icon-btn-mobile .btn-icon {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
  }
  /* --- CORRECCIÓN ANIMACIÓN BOTONES MÓVILES --- */
  /* 1. Anula el "hover pegajoso" que deja el botón movido y feo */
  .icon-btn-mobile:hover,
  .mobile-menu-toggle:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  /* 2. Añade un efecto nativo de toque (se hunde un poquito solo mientras presionas) */
  .icon-btn-mobile:active,
  .mobile-menu-toggle:active {
    transform: scale(0.95) !important;
  }
  
  .site-nav {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0 8px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    text-align: center;
  }
  
  .site-header.menu-open .site-nav {
    display: flex;
  }

  /* --- RESTO DEL DISEÑO A 900px --- */
  .hero-actions,
  .pricing-layout {
    flex-direction: column;
  }
  .site-controls {
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }
  .hero-copy,
  .hero-stage,
  .product,
  .interactive-explorer,
  .scenes-section,
  .pricing,
  .contact,
  .preference-panel,
  .legal-page {
    padding: 26px;
  }
  .preference-panel {
    padding: 16px;
    grid-template-columns: 1fr;
  }
  .stage-frame {
    min-height: 600px;
  }
  .mock-grid,
  .visit-layout,
  .pricing-cards,
  .contact-chooser,
  .contact-page-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .featured-plan {
    transform: none;
  }
  .footer-contact-actions,
  .site-footer-main {
    justify-content: center;
  }
  .preference-copy {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .page-controls {
    justify-self: stretch;
  }
  .site-footer-main {
    flex-direction: column;
    text-align: center;
  }
  .site-footer-meta {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 24px;
  }
  .contact-quick-actions {
    margin-top: 10px;
    gap: 8px;
  }
  .contact-quick-actions .footer-contact-pill {
    min-height: 46px;
    padding: 0 14px;
  }
  .contact-stage {
    padding-top: 0;
    gap: 10px;
  }
  .contact-chooser {
    gap: 8px;
  }
  .contact-choice {
    min-height: auto;
    padding: 12px 14px;
    border-radius: 16px;
  }
  .contact-choice strong {
    font-size: 0.92rem;
  }
  .contact-choice small {
    font-size: 0.8rem;
  }
  .contact-display {
    margin-top: 10px;
  }
  .contact-panel {
    padding: 16px;
    border-radius: 20px;
  }
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 18px), var(--content));
  }
  main {
    margin-top: 10px;
  }
  .large {
    min-height: 44px;
    padding: 0 14px;
  }
  .hero-copy h1 {
    gap: 0;
    font-size: clamp(1.8rem, 9.5vw, 2.4rem);
    line-height: 1.05;
  }
  .hero-copy {
    justify-content: flex-start;
  }
  .pricing-copy > h2 {
    max-width: 11ch;
  }
  .pricing-note {
    padding: 14px 15px;
  }
  .plan-price {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .plan-price-side {
    justify-items: start;
    min-width: 0;
  }
  body[data-currency="clp"] .plan-price-side {
    min-width: 0;
    gap: 6px;
  }
  .footer-contact-pill {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
  }
  .footer-contact-pill strong {
    font-size: 0.9rem;
  }
  .footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .footer-contact-icon img {
    max-width: 22px;
    max-height: 22px;
  }
  .hero-copy::after {
    display: none;
  }
  .hero-line-brand,
  .hero-line-accent,
  .hero-line-tail {
    text-wrap: balance;
  }
  .hero-text {
    font-size: 0.9rem;
    line-height: 1.56;
  }
  .hero-tags {
    max-width: none;
    gap: 8px;
  }
  .hero-tags span {
    padding: 9px 12px 9px 28px;
    font-size: 0.84rem;
  }
  .contact-copy .section-head h2 {
    max-width: none;
  }
  .contact-spotlight,
  .contact-social-card,
  .contact-flow-card {
    padding: 22px;
  }
  .contact-page-actions {
    margin-top: 16px;
    grid-template-columns: 1fr;
  }
  .contact-social-grid {
    grid-template-columns: 1fr;
  }
  .contact-intro {
    font-size: 0.92rem;
    line-height: 1.62;
  }
  .contact-promises span {
    font-size: 0.82rem;
  }
  .contact-panel h3 {
    font-size: clamp(1.18rem, 6vw, 1.56rem);
  }
  .contact-panel-points li {
    padding: 13px 14px 13px 36px;
    font-size: 0.92rem;
  }
  .contact-meta span {
    font-size: 0.78rem;
  }
  .explorer-trigger {
    padding: 15px;
    border-radius: 20px;
  }
  .explorer-trigger-copy strong {
    font-size: 0.95rem;
  }
  .explorer-trigger-copy small {
    font-size: 0.84rem;
  }
  .explorer-panel {
    padding: 20px;
    border-radius: 24px;
  }
  .explorer-panel h3 {
    font-size: clamp(1.28rem, 5.4vw, 1.72rem);
  }
  .explorer-points {
    grid-template-columns: 1fr;
  }
  .scene-card {
    padding: 14px;
    min-height: auto;
    gap: 10px;
  }
  .scene-top {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
  }
  .scene-top h2 {
    max-width: none;
    font-size: clamp(1.04rem, 5.8vw, 1.36rem);
    line-height: 1.02;
  }
  .scene-top strong {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .stage-frame {
    min-height: 380px;
    padding: 12px;
  }
  .scene-track {
    min-height: 300px;
  }
  .app-window {
    padding: 6px;
    border-radius: 20px;
  }
  .real-screen {
    min-height: 220px;
    padding: 10px;
  }
  .order-screen,
  .visit-screen,
  .portal-screen,
  .chat-screen,
  .rates-screen,
  .finance-screen,
  body[data-theme="dark"] .order-screen,
  body[data-theme="dark"] .visit-screen,
  body[data-theme="dark"] .portal-screen,
  body[data-theme="dark"] .chat-screen,
  body[data-theme="dark"] .rates-screen,
  body[data-theme="dark"] .finance-screen {
    background-position: left top;
    background-size: cover;
  }
  .mock-toolbar {
    grid-template-columns: auto 1fr;
  }
  .mock-toolbar em {
    display: none;
  }
  .mock-strip,
  .order-board,
  .stock-head,
  .stock-row,
  .portal-card,
  .route-card {
    grid-template-columns: 1fr;
  }
  .stock-head {
    display: none;
  }
  .stock-row {
    gap: 6px;
  }
  .stock-row em {
    justify-self: start;
  }
  .route-card i {
    width: 100%;
  }
  .back-to-top {
    right: 14px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 12px;
    padding: 10px;
  }
  .hero-copy,
  .hero-stage,
  .product,
  .interactive-explorer,
  .scenes-section,
  .pricing,
  .contact,
  .preference-panel,
  .legal-page {
    padding: 22px;
  }
  .hero-copy h1 {
    font-size: clamp(1.88rem, 11vw, 2.72rem);
  }
  .pricing-card {
    padding: 22px 18px 18px;
  }
  .pricing-card h3 {
    font-size: 1.32rem;
  }
  .pricing-card ul {
    gap: 10px;
    margin: 16px 0 18px;
  }
  .plan-price {
    font-size: clamp(2.02rem, 12vw, 2.58rem);
  }
  .contact-links-compact a,
  .contact-links-compact .contact-info-card {
    min-height: 90px;
    padding: 16px;
  }
  .social-channel {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 16px;
  }
  .social-channel-cta {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 60px;
  }
  .site-footer-meta {
    gap: 10px 14px;
    font-size: 0.68rem;
  }
  .contact-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .stage-frame {
    min-height: 340px;
  }
  .scene-track {
    min-height: 280px;
  }
  .real-screen {
    min-height: 200px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .brand-copy strong {
    font-size: 0.96rem;
  }
  .brand-copy small {
    font-size: 0.72rem;
  }
}
/* --- AJUSTE EXTREMO PARA PANTALLAS ULTRA PEQUEÑAS (iPhone 4 / 320px) --- */
@media (max-width: 360px) {
  .site-header {
    padding: 6px 8px;
    gap: 4px;
  }

  .brand {
    padding: 4px 8px 4px 4px;
    gap: 8px;
  }

  .brand-mark {
    width: 34px !important;
    height: 34px !important;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .header-actions {
    gap: 4px;
  }

  .quick-actions {
    gap: 4px;
  }

  /* Reducimos ligeramente los botones cuadrados para ganar espacio crítico */
  .icon-btn-mobile,
  .mobile-menu-toggle {
    min-width: 36px !important;
    width: 36px !important;
    min-height: 36px !important;
    height: 36px !important;
    border-radius: 12px;
  }

  .icon-btn-mobile .btn-icon {
    width: 18px !important;
    height: 18px !important;
  }
}
/* ==========================================================================
   TOOLTIPS DE INFORMACIÓN (GLOBOS DE AYUDA EN LISTAS)
   ========================================================================== */

/* Convertimos la fila en Flexbox para separar texto a la izq. e ícono a la der. */
.pricing-card li {
  display: flex !important;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

/* El texto empuja al ícono hacia el extremo derecho */
.feature-text {
  flex: 1;
}

/* Contenedor del ícono ? */
.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: help;
  flex: 0 0 auto;
  margin-top: 2px; /* Alineación óptica con el texto de la izquierda */
  outline: none;
}

.tooltip-wrapper svg {
  opacity: 0.5;
  transition: opacity 0.2s ease, color 0.2s ease;
}

/* Se ilumina al pasar el ratón */
.tooltip-wrapper:hover svg,
.tooltip-wrapper:focus svg {
  opacity: 1;
  color: var(--ink); 
}

/* El globo de texto flotante */
.tooltip-box {
  position: absolute;
  bottom: calc(100% + 10px);
  right: -8px; /* Anclado hacia la derecha para que no se salga de la tarjeta */
  width: max-content;
  max-width: 220px;
  padding: 10px 14px;
  background: var(--ink); /* Inteligente: Oscuro en tema claro, Claro en tema oscuro */
  color: var(--bg); /* Texto invertido al fondo */
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  
  /* Estado inicial invisible y ligeramente achicado */
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67), visibility 0.2s;
  z-index: 30;
  pointer-events: none;
}

/* La flechita pequeña que apunta hacia el ícono ? */
.tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: var(--ink) transparent transparent transparent;
}

/* Animación de aparición al hacer Hover (PC) o Tocar (Móvil) */
.tooltip-wrapper:hover .tooltip-box,
.tooltip-wrapper:focus .tooltip-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ========================================================================== 
   PLANES: COMPARADOR ESCALABLE
   Las tarjetas admiten nuevos planes sin cambiar la grilla: duplica un article.
   ========================================================================== */
.pricing {
  overflow: hidden;
  color: #f6f8ff;
  background:
    radial-gradient(circle at 82% -5%, rgba(116, 79, 255, 0.18), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(46, 208, 255, 0.12), transparent 34%),
    #080a10;
  border-color: rgba(154, 165, 190, 0.18);
}

.pricing::before {
  opacity: 0.3;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 2.35fr);
  grid-template-areas:
    "copy billing"
    "copy cards";
  gap: 28px 40px;
  align-items: start;
}

.pricing-copy {
  grid-area: copy;
  gap: 16px;
  text-align: left;
}

.pricing-copy .eyebrow,
.pricing-copy > h2,
.pricing-copy > p {
  justify-self: start;
  text-align: left;
}

.pricing-copy .eyebrow {
  color: #a9b6cc;
  border-color: rgba(184, 198, 220, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-copy > h2 {
  max-width: 12ch;
  color: #f7f8ff;
  font-size: clamp(1.9rem, 2.65vw, 2.86rem);
  line-height: 1.03;
}

.pricing-copy > p {
  max-width: 35ch;
  color: #aeb8ca;
  font-size: 1rem;
  line-height: 1.7;
}

.billing-toggle {
  grid-area: billing;
  justify-self: center;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.billing-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  color: #aeb8ca;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.billing-option small {
  padding: 3px 7px;
  border-radius: 999px;
  color: #b9a7ff;
  font-size: 0.68rem;
  line-height: 1;
  background: rgba(122, 87, 255, 0.18);
}

.billing-option:hover { transform: translateY(-1px); color: #fff; }
.billing-option.active {
  position: relative;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 7px 16px rgba(6, 17, 34, 0.2), inset 0 1px rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.billing-option.active::before {
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #09243b;
  font-size: 0.62rem;
  font-weight: 950;
  content: "✓";
  background: rgba(255, 255, 255, 0.9);
}

.billing-option.active[data-billing="monthly"] {
  background: linear-gradient(135deg, #177fd4, #35b8df);
}

.billing-option.active[data-billing="annual"] {
  background: linear-gradient(135deg, #299d82, #43cfd2);
}

.billing-option.active small {
  color: #062b38;
  background: rgba(255, 255, 255, 0.8);
}

.billing-option:focus-visible {
  outline: 3px solid rgba(112, 232, 255, 0.68);
  outline-offset: 2px;
}

.pricing-cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  width: 100%;
}

.pricing-card,
.pricing-card.plan-starter,
.pricing-card.plan-pro,
.featured-plan {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: 590px;
  padding: 28px 24px 24px;
  color: #f7f8ff;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #101117;
  box-shadow: none;
}

.pricing-card::after { display: none; }

.pricing-card.featured-plan {
  z-index: 1;
  border: 2px solid #7653ff;
  background: linear-gradient(150deg, #14101f 0%, #0e0d15 70%);
  box-shadow: 0 0 0 1px rgba(133, 94, 255, 0.15), 0 18px 35px rgba(87, 54, 255, 0.2);
}

.pricing-tag,
.plan-starter .pricing-tag,
.plan-pro .pricing-tag,
.featured-plan .pricing-tag {
  position: static !important;
  align-self: flex-start;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: #a8b5ca;
  border: 0;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: transparent;
  transform: none !important;
}

.featured-plan .pricing-tag {
  position: absolute !important;
  top: -13px;
  left: 50%;
  min-height: 24px;
  padding: 5px 13px;
  transform: translateX(-50%) !important;
  color: #fff;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
  background: #7653ff;
  box-shadow: 0 5px 15px rgba(103, 66, 255, 0.46);
}

.pricing-card h3 {
  margin: 20px 0 0 !important;
  color: #fff;
  font-size: clamp(1.3rem, 1.7vw, 1.62rem);
  line-height: 1.15;
  text-align: left;
}

/* La etiqueta del plan destacado flota fuera de la tarjeta: devolvemos ese
   espacio para que títulos, precios y acciones coincidan con los demás. */
.pricing-card.featured-plan h3 {
  margin-top: 38px !important;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(2.35rem, 3.2vw, 3.05rem);
  letter-spacing: -0.06em;
}

.plan-price-side {
  display: block;
  min-width: 0;
}

.plan-price-code { display: none; }
.plan-price small { color: #b4bfd2; font-size: 0.9rem; font-weight: 700; letter-spacing: 0; }

.discount-line {
  order: 4;
  margin-top: 12px;
  color: #9faac0;
  font-size: 0.86rem;
}

.discount-line b {
  padding: 5px 9px;
  color: #d9ccff;
  background: rgba(118, 83, 255, 0.17);
  font-size: 0.7rem;
}

.discount-line strong {
  color: inherit;
  font-size: 0.78rem;
}

.regular-price-note {
  order: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 8px;
  margin: 13px 0 0 !important;
  padding: 12px 0 0;
  color: #aeb8ca;
  font-size: 0.78rem;
  line-height: 1.35;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regular-price-note span {
  flex-basis: 100%;
}

.regular-price-note strong {
  color: #f7f8ff;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.regular-price-note small {
  color: #aeb8ca;
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-card > .solid-button,
.pricing-card > .ghost-button {
  order: 6;
  width: 100%;
  min-height: 42px;
  margin: 23px 0 0 !important;
  border-color: rgba(255, 255, 255, 0.1);
  color: #f8f9ff;
  font-size: 0.9rem;
  background: transparent;
}

.featured-plan > .solid-button {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #6949ff, #815eff);
  box-shadow: 0 10px 24px rgba(99, 65, 255, 0.3);
}

.annual-price {
  order: 6;
  margin: 19px 0 0 !important;
  padding: 17px 0 0 !important;
  min-height: 0 !important;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent !important;
}

.annual-price small,
.pricing-card p,
.featured-plan p { color: #aeb8ca; }

.pricing-card.featured-plan .annual-price small {
  color: #aeb8ca;
}

.features-label {
  order: 7;
  margin: 18px 0 0 !important;
  color: #dbe3f2 !important;
  font-size: 0.88rem;
  font-weight: 800;
}

.pricing-card ul {
  order: 8;
  gap: 11px;
  margin: 16px 0 0 !important;
  color: #c0c9d8;
}

.pricing-card li { padding-left: 22px; font-size: 0.9rem; line-height: 1.34; }
.pricing-card li::before { width: 7px; height: 7px; border-color: #8b70ff; }
.pricing-card .tooltip-wrapper { color: #a89aff; }

body[data-theme="dark"] .pricing-card,
body[data-theme="dark"] .pricing-card.plan-starter,
body[data-theme="dark"] .pricing-card.plan-pro { background: #101117; }
body[data-theme="dark"] .pricing-card.featured-plan { background: linear-gradient(150deg, #14101f 0%, #0e0d15 70%); }
body[data-theme="dark"] .pricing-card p,
body[data-theme="dark"] .annual-price small,
body[data-theme="dark"] .pricing-card:not(.featured-plan) p { color: #aeb8ca; }

@media (max-width: 1080px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "billing" "cards";
    gap: 22px;
  }
  .pricing-copy { justify-items: center; text-align: center; }
  .pricing-copy .eyebrow,
  .pricing-copy > h2,
  .pricing-copy > p { justify-self: center; text-align: center; }
  .pricing-copy > h2 { max-width: 20ch; }
  .pricing-copy > p { max-width: 60ch; }
  .billing-toggle { justify-self: center; }
}

@media (max-width: 640px) {
  .pricing-layout { gap: 18px; }
  .pricing-cards { grid-template-columns: 1fr; gap: 18px; }
  .pricing-card,
  .pricing-card.plan-starter,
  .pricing-card.plan-pro,
  .featured-plan { min-height: 0; padding: 26px 20px 22px; }
  .billing-option { min-height: 38px; padding: 0 12px; font-size: 0.82rem; }
  .billing-option small { display: none; }
}

/* ========================================================================== 
   PLANES: PALETAS POR TEMA
   El comparador mantiene la misma estructura, pero se integra realmente con
   el tema claro y el oscuro en vez de imponer una sola superficie negra.
   ========================================================================== */
body[data-theme="light"] .pricing {
  color: #10233a;
  background:
    radial-gradient(circle at 86% 2%, rgba(90, 225, 220, 0.22), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(177, 244, 138, 0.19), transparent 35%),
    linear-gradient(145deg, #f9fcff 0%, #eef9f7 100%);
  border-color: #d9e7ef;
}

body[data-theme="light"] .pricing-copy > h2 { color: #11243d; }
body[data-theme="light"] .pricing-copy > p { color: #62748b; }
body[data-theme="light"] .pricing-copy .eyebrow {
  color: #2378a8;
  border-color: #cfe4f0;
  background: rgba(255, 255, 255, 0.78);
}

body[data-theme="light"] .billing-toggle {
  border-color: #d6e4ed;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(40, 84, 115, 0.08);
}
body[data-theme="light"] .billing-option { color: #61748b; }
body[data-theme="light"] .billing-option.active { color: #fff; }
body[data-theme="light"] .billing-option small { color: #186e7e; background: #c8f4eb; }
body[data-theme="light"] .billing-option.active small { color: #062b38; background: rgba(255, 255, 255, 0.82); }

body[data-theme="light"] .pricing-card,
body[data-theme="light"] .pricing-card.plan-starter,
body[data-theme="light"] .pricing-card.plan-pro {
  color: #10233a;
  border-color: #d4e1ea;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(28, 78, 104, 0.1);
}

body[data-theme="light"] .pricing-card.featured-plan {
  border-color: #20a9cc;
  background: linear-gradient(155deg, #effcff 0%, #e5f8f3 100%);
  box-shadow: 0 18px 36px rgba(28, 136, 171, 0.16);
}

body[data-theme="light"] .pricing-tag,
body[data-theme="light"] .plan-starter .pricing-tag,
body[data-theme="light"] .plan-pro .pricing-tag { color: #33799a; }
body[data-theme="light"] .plan-pro .pricing-tag { color: #7863ab; }
body[data-theme="light"] .featured-plan .pricing-tag {
  color: #fff;
  background: linear-gradient(135deg, #179ac7, #4acfd2);
  box-shadow: 0 6px 16px rgba(27, 151, 191, 0.28);
}

body[data-theme="light"] .pricing-card h3,
body[data-theme="light"] .plan-price { color: #10233a; }
body[data-theme="light"] .plan-price small,
body[data-theme="light"] .annual-price small,
body[data-theme="light"] .pricing-card p,
body[data-theme="light"] .featured-plan p { color: #60728a; }
body[data-theme="light"] .pricing-card.featured-plan .annual-price small { color: #60728a; }
body[data-theme="light"] .discount-line { color: #4d617a; }
body[data-theme="light"] .discount-line s { text-decoration-color: #72879d; }
body[data-theme="light"] .discount-line b { color: #0f586b; background: #c9f4e9; }
body[data-theme="light"] .regular-price-note {
  color: #60728a;
  border-top-color: #dbe7ef;
}
body[data-theme="light"] .regular-price-note strong { color: #173451; }
body[data-theme="light"] .regular-price-note small { color: #60728a; }
body[data-theme="light"] .pricing-card > .ghost-button {
  color: #16799f;
  border-color: #bcdce9;
  background: #f7fcff;
}
body[data-theme="light"] .featured-plan > .solid-button {
  color: #fff;
  background: linear-gradient(135deg, #169ecb, #43cfd3);
  box-shadow: 0 10px 22px rgba(31, 164, 193, 0.24);
}
body[data-theme="light"] .annual-price { border-top-color: #dde8ef; }
body[data-theme="light"] .features-label { color: #253c55 !important; }
body[data-theme="light"] .pricing-card ul { color: #53677d; }
body[data-theme="light"] .pricing-card li::before { border-color: #1f9dc1; }

body[data-theme="dark"] .pricing {
  color: #eef7ff;
  background:
    radial-gradient(circle at 84% 2%, rgba(88, 220, 196, 0.16), transparent 27%),
    radial-gradient(circle at 8% 100%, rgba(31, 140, 224, 0.17), transparent 36%),
    linear-gradient(145deg, #0b1c31 0%, #10263b 100%);
  border-color: rgba(126, 178, 210, 0.24);
}

body[data-theme="dark"] .pricing-card,
body[data-theme="dark"] .pricing-card.plan-starter,
body[data-theme="dark"] .pricing-card.plan-pro {
  color: #eef7ff;
  border-color: rgba(141, 190, 219, 0.2);
  background: linear-gradient(155deg, rgba(16, 38, 60, 0.98), rgba(11, 28, 47, 0.98));
}

body[data-theme="dark"] .pricing-card.featured-plan {
  border-color: #36c9d4;
  background: linear-gradient(155deg, rgba(19, 50, 73, 0.98), rgba(12, 31, 52, 0.98));
  box-shadow: 0 0 0 1px rgba(71, 213, 214, 0.12), 0 18px 35px rgba(18, 129, 152, 0.18);
}

body[data-theme="dark"] .featured-plan .pricing-tag {
  color: #082333;
  background: linear-gradient(135deg, #69e0b6, #4ed4da);
  box-shadow: 0 6px 16px rgba(55, 204, 192, 0.24);
}

body[data-theme="dark"] .discount-line,
body[data-theme="dark"] .pricing-card.featured-plan .discount-line { color: #c2d2e2; }
body[data-theme="dark"] .discount-line s,
body[data-theme="dark"] .pricing-card.featured-plan .discount-line s { text-decoration-color: #88a1b8; }
body[data-theme="dark"] .discount-line b,
body[data-theme="dark"] .pricing-card.featured-plan .discount-line b {
  color: #062739;
  background: #86ebdc;
}
body[data-theme="dark"] .regular-price-note {
  color: #aeb8ca;
  border-top-color: rgba(255, 255, 255, 0.1);
}
body[data-theme="dark"] .regular-price-note strong { color: #f7f8ff; }
body[data-theme="dark"] .regular-price-note small { color: #aeb8ca; }
body[data-theme="dark"] .featured-plan > .solid-button {
  color: #062434;
  background: linear-gradient(135deg, #75eab3, #4fd4db);
  box-shadow: 0 10px 24px rgba(58, 210, 195, 0.2);
}
body[data-theme="dark"] .pricing-card > .ghost-button {
  color: #8cdced;
  border-color: rgba(107, 205, 229, 0.26);
  background: rgba(7, 28, 47, 0.5);
}
body[data-theme="dark"] .pricing-card p,
body[data-theme="dark"] .annual-price small,
body[data-theme="dark"] .pricing-card:not(.featured-plan) p,
body[data-theme="dark"] .pricing-card.featured-plan .annual-price small { color: #aebfd1; }
body[data-theme="dark"] .features-label { color: #e3eff8 !important; }
body[data-theme="dark"] .pricing-card ul { color: #c1d0dc; }
body[data-theme="dark"] .pricing-card li::before { border-color: #62ded1; }

/* ========================================================================== 
   ORIGEN: HISTORIA REAL DEL PRODUCTO
   ========================================================================== */
.origin-story {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 95% 2%, rgba(112, 232, 255, 0.22), transparent 35%),
    radial-gradient(circle at 4% 100%, rgba(198, 255, 104, 0.18), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow);
}

.origin-story-copy {
  position: relative;
  z-index: 1;
}

.origin-story-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.65vw, 2.86rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.origin-story-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.origin-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.origin-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 10px 18px rgba(32, 63, 93, 0.07);
}

.origin-highlights span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 4px rgba(112, 232, 255, 0.12);
}

.origin-visual {
  position: relative;
  min-height: 420px;
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(95, 169, 201, 0.3);
  border-radius: 32px;
  color: #eff8ff;
  background:
    linear-gradient(rgba(142, 204, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 204, 241, 0.06) 1px, transparent 1px),
    linear-gradient(145deg, #122b46, #081827 72%);
  background-size: 26px 26px, 26px 26px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 50px rgba(7, 27, 44, 0.22);
}

.origin-visual::before,
.origin-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  filter: blur(3px);
}

.origin-visual::before {
  top: -90px;
  right: -45px;
  width: 220px;
  height: 220px;
  background: rgba(112, 232, 255, 0.14);
  animation: origin-orbit 8s ease-in-out infinite;
}

.origin-visual::after {
  bottom: -110px;
  left: -65px;
  width: 250px;
  height: 250px;
  background: rgba(198, 255, 104, 0.12);
  animation: origin-orbit 10s ease-in-out -3s infinite reverse;
}

.origin-visual-top,
.origin-flow,
.origin-visual-note {
  position: relative;
  z-index: 1;
}

.origin-visual-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  color: #a9c4dc;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.origin-visual-top strong {
  margin-left: auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: #092333;
  letter-spacing: 0;
  text-transform: none;
  background: linear-gradient(135deg, var(--accent-2), #70e8ff);
}

.origin-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #baff72;
  box-shadow: 0 0 0 7px rgba(186, 255, 114, 0.12);
  animation: origin-pulse 2.1s ease-in-out infinite;
}

.origin-flow {
  display: grid;
  gap: 14px;
  margin: 34px 0 24px;
}

.origin-flow-line {
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 23px;
  width: 2px;
  background: linear-gradient(var(--accent-2), var(--accent), transparent);
  opacity: 0.75;
}

.origin-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(156, 204, 235, 0.2);
  border-radius: 20px;
  background: rgba(8, 25, 42, 0.64);
  box-shadow: 0 12px 22px rgba(2, 15, 28, 0.15);
  animation: origin-step 650ms both;
}

.origin-flow-step:nth-of-type(3) { animation-delay: 130ms; }
.origin-flow-step:nth-of-type(4) { animation-delay: 260ms; }

.origin-flow-step > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #0a2435;
  font-size: 0.82rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-2), #70e8ff);
  box-shadow: 0 8px 18px rgba(111, 233, 255, 0.2);
}

.origin-flow-step strong,
.origin-flow-step small {
  display: block;
}

.origin-flow-step strong {
  color: #f2f8ff;
  font-size: 1rem;
}

.origin-flow-step small {
  margin-top: 3px;
  color: #a9c4dc;
  line-height: 1.4;
}

.origin-visual-note {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(135, 236, 205, 0.26);
  border-radius: 17px;
  background: rgba(102, 224, 180, 0.1);
}

.origin-visual-note span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: #0a2533;
  font-weight: 900;
  background: #baff72;
}

.origin-visual-note p {
  margin: 0;
  color: #e0f2f2;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

@keyframes origin-pulse {
  50% { box-shadow: 0 0 0 11px rgba(186, 255, 114, 0.04); }
}

@keyframes origin-orbit {
  50% { transform: translate(-18px, 22px) scale(1.12); opacity: 0.65; }
}

@keyframes origin-step {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (hover: hover) and (pointer: fine) {
  .product-card,
  .feature-card,
  .explorer-trigger,
  .contact-choice,
  .origin-highlights span {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .product-card:hover,
  .feature-card:hover,
  .explorer-trigger:hover,
  .contact-choice:hover {
    transform: translateY(-6px);
    border-color: rgba(94, 210, 223, 0.58);
    box-shadow: 0 20px 34px rgba(26, 105, 134, 0.16);
  }

  .origin-highlights span:hover {
    transform: translateY(-3px) scale(1.025);
    border-color: rgba(80, 203, 184, 0.52);
  }
}

body[data-theme="light"] .origin-story {
  background:
    radial-gradient(circle at 95% 2%, rgba(112, 232, 255, 0.22), transparent 35%),
    radial-gradient(circle at 4% 100%, rgba(198, 255, 104, 0.18), transparent 38%),
    linear-gradient(145deg, #fbfdff, #eef8f4);
}

body[data-theme="dark"] .origin-story {
  background:
    radial-gradient(circle at 95% 2%, rgba(54, 201, 210, 0.15), transparent 35%),
    radial-gradient(circle at 4% 100%, rgba(146, 231, 103, 0.13), transparent 38%),
    linear-gradient(145deg, #0c1d31, #10243a);
}

body[data-theme="dark"] .origin-story-copy h2,
body[data-theme="dark"] .origin-highlights span { color: #f0f7ff; }
body[data-theme="dark"] .origin-story-copy > p:not(.eyebrow) { color: #acc0d3; }
body[data-theme="dark"] .origin-highlights span {
  border-color: rgba(129, 190, 219, 0.22);
  background: rgba(8, 28, 47, 0.5);
}

@media (max-width: 860px) {
  .origin-story { grid-template-columns: 1fr; }
  .origin-visual { min-height: auto; }
}

@media (max-width: 520px) {
  .origin-story { padding: 24px 18px; border-radius: 28px; }
  .origin-story-copy h2 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .origin-story-copy > p:not(.eyebrow) { font-size: 0.94rem; }
  .origin-visual { padding: 18px; border-radius: 24px; }
  .origin-visual-top { font-size: 0.66rem; }
  .origin-visual-top strong { padding: 7px 9px; font-size: 0.7rem; }
  .origin-flow { margin-top: 24px; }
  .origin-flow-step { grid-template-columns: 42px 1fr; gap: 11px; padding: 12px; }
  .origin-flow-step > span { width: 42px; height: 42px; border-radius: 14px; }
  .origin-flow-line { left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .origin-visual::before,
  .origin-visual::after,
  .origin-live-dot,
  .origin-flow-step { animation: none; }
}

/* Pricing conversion refinements */
.pricing-copy .eyebrow {
  color: #4a8a24;
  border-color: rgba(74, 138, 36, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.pricing-card > .solid-button,
.pricing-card > .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin: 25px 0 27px !important;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pricing-card > .solid-button::after,
.pricing-card > .ghost-button::after {
  content: "\2192";
  font-size: 1.18em;
  line-height: 1;
  transition: transform 180ms ease;
}

.pricing-card > a:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.pricing-card > a:hover::after { transform: translateX(4px); }
.pricing-card > a:active { transform: translateY(0); }
.pricing-card .features-label { margin-top: 0 !important; }

body[data-theme="light"] .pricing-copy .eyebrow {
  color: #4a8a24;
  border-color: rgba(74, 138, 36, 0.2);
  background: rgba(255, 255, 255, 0.82);
}

body[data-theme="light"] .plan-starter > .ghost-button {
  color: #ffffff;
  background: linear-gradient(135deg, #1687bb, #31bdd5);
  box-shadow: 0 12px 24px rgba(22, 135, 187, 0.24);
}

body[data-theme="light"] .featured-plan > .solid-button {
  color: #052a38;
  background: linear-gradient(135deg, #87e0ad, #47d1d5);
  box-shadow: 0 14px 26px rgba(45, 190, 191, 0.27);
}

body[data-theme="light"] .plan-pro > .ghost-button {
  color: #ffffff;
  background: linear-gradient(135deg, #315fbd, #567dde);
  box-shadow: 0 12px 24px rgba(58, 99, 193, 0.24);
}

body[data-theme="dark"] .pricing-copy .eyebrow {
  color: #aaf07e;
  border-color: rgba(150, 232, 112, 0.28);
  background: rgba(10, 35, 52, 0.68);
}

body[data-theme="dark"] .plan-starter > .ghost-button {
  color: #dff8ff;
  background: linear-gradient(135deg, #105f8c, #188aa6);
  border-color: rgba(92, 211, 227, 0.34);
  box-shadow: 0 12px 25px rgba(16, 129, 165, 0.22);
}

body[data-theme="dark"] .featured-plan > .solid-button {
  color: #062634;
  background: linear-gradient(135deg, #8ceaad, #50d8d8);
  box-shadow: 0 14px 28px rgba(63, 210, 196, 0.26);
}

body[data-theme="dark"] .plan-pro > .ghost-button {
  color: #e7edff;
  background: linear-gradient(135deg, #3b579c, #566cb9);
  border-color: rgba(140, 163, 246, 0.34);
  box-shadow: 0 12px 25px rgba(76, 104, 192, 0.23);
}

@media (max-width: 640px) {
  .pricing-card > .solid-button,
  .pricing-card > .ghost-button {
    min-height: 50px;
    margin: 21px 0 23px !important;
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card > .solid-button,
  .pricing-card > .ghost-button,
  .pricing-card > .solid-button::after,
  .pricing-card > .ghost-button::after { transition: none; }
}

/* Plan comparison: a single visual rhythm for every current and future plan. */
.pricing-cards {
  align-items: stretch;
  gap: 26px;
}

.pricing-card,
.pricing-card.plan-starter,
.pricing-card.plan-pro,
.pricing-card.featured-plan {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  min-height: 610px;
  padding: 44px 30px 30px !important;
  overflow: visible;
  border-radius: 20px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.pricing-card:hover {
  transform: translateY(-7px);
}

.pricing-card .pricing-tag,
.pricing-card.plan-starter .pricing-tag,
.pricing-card.plan-pro .pricing-tag,
.pricing-card.featured-plan .pricing-tag {
  position: absolute !important;
  top: -15px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 6px 15px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%) !important;
}

.pricing-card h3,
.pricing-card.featured-plan h3 {
  display: flex;
  width: 100%;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  color: inherit;
  font-size: clamp(1.72rem, 2vw, 2.08rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-align: center;
}

.pricing-card h3::after {
  width: 44px;
  height: 3px;
  margin-top: 11px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0.34;
}

.plan-starter h3 { color: #168db8 !important; }
.featured-plan h3 { color: #078f98 !important; }
.plan-pro h3 { color: #516dce !important; }

body[data-theme="dark"] .plan-starter h3 { color: #67d8ff !important; }
body[data-theme="dark"] .featured-plan h3 { color: #83f0cf !important; }
body[data-theme="dark"] .plan-pro h3 { color: #b4bfff !important; }

.pricing-card .plan-price {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin: 18px 0 0 !important;
  font-size: clamp(2.42rem, 2.72vw, 2.95rem);
  line-height: 1;
  text-align: center;
}

body[data-currency="clp"] .pricing-card .plan-price {
  font-size: clamp(2.34rem, 2.6vw, 2.82rem);
}

.pricing-card .plan-price-amount {
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
}

.pricing-card .plan-price small {
  color: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0;
  opacity: 0.7;
}

.pricing-card .discount-line {
  order: 3;
  display: flex !important;
  width: 100%;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 15px 0 0 !important;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.pricing-card .discount-line b {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
}

.pricing-card .discount-line strong {
  font-size: inherit;
  font-weight: 800;
}

.pricing-card .regular-price-note {
  order: 4;
  display: flex;
  width: 100%;
  min-height: 64px;
  align-content: center;
  align-items: baseline;
  justify-content: center;
  gap: 4px 7px;
  margin: 14px 0 0 !important;
  padding: 10px 12px;
  border: 1px solid rgba(94, 122, 151, 0.14);
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fbfd, #f3f7fa);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #65778d;
  font-size: 0.78rem;
  line-height: 1.2;
  text-align: center;
}

.pricing-card .regular-price-note span {
  flex-basis: 100%;
}

.pricing-card .regular-price-note strong {
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pricing-card .regular-price-note small {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

body[data-theme="dark"] .pricing-card .regular-price-note {
  border-color: rgba(159, 189, 219, 0.16);
  background: linear-gradient(135deg, rgba(25, 47, 70, 0.92), rgba(17, 35, 55, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #acc0d4;
}

body[data-theme="dark"] .pricing-card .regular-price-note strong,
body[data-theme="dark"] .pricing-card .regular-price-note small {
  color: inherit;
}

.pricing-card .features-label {
  display: none;
}

.pricing-card ul {
  order: 6;
  display: grid;
  gap: 0;
  margin: 44px 0 24px !important;
  padding: 0;
}

.pricing-card li {
  min-height: 37px;
  padding: 9px 0 9px 32px;
  border-bottom: 1px solid rgba(118, 145, 170, 0.16);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.pricing-card li:last-child {
  border-bottom: 0;
}

.pricing-card li::before {
  top: 50%;
  width: 19px;
  height: 19px;
  border: 0;
  border-radius: 5px;
  background: currentColor;
  opacity: 0.9;
  transform: translateY(-50%);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v16H4zM7 8h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.plan-starter li::before,
.featured-plan li::before { background: #069b8e; }

.plan-pro li::before { background: #5e70d1; }

.pricing-card li:nth-child(2)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.pricing-card li:nth-child(3)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9 16.17-4.17-4.16-1.41 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.pricing-card li:nth-child(4)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h18v14H3zm2 2v10h14V7zm2 2h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E");
}

.pricing-card li:nth-child(5)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M2 5h20v14H2zm2 2v1l6 4 6-4V7l-6 4z'/%3E%3C/svg%3E");
}

.pricing-card > .solid-button,
.pricing-card > .ghost-button {
  order: 7;
  width: 100%;
  min-height: 52px;
  margin: auto 0 0 !important;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 24px rgba(19, 146, 156, 0.22);
}

.pricing-card > .solid-button::after,
.pricing-card > .ghost-button::after {
  content: "\2192";
  margin-left: 9px;
  font-size: 1.08em;
}

.plan-starter > .ghost-button,
.featured-plan > .solid-button {
  background: linear-gradient(135deg, #64d1c3, #2ea99f);
}

.plan-pro > .ghost-button {
  background: linear-gradient(135deg, #a0a8dc, #7485d3);
  box-shadow: 0 12px 24px rgba(85, 103, 194, 0.2);
}

@keyframes pricing-card-arrival {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .pricing.is-visible .pricing-card {
    animation: pricing-card-arrival 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .pricing.is-visible .pricing-card:nth-child(2) { animation-delay: 120ms; }
  .pricing.is-visible .pricing-card:nth-child(3) { animation-delay: 240ms; }
}

@media (max-width: 640px) {
  .pricing-card,
  .pricing-card.plan-starter,
  .pricing-card.plan-pro,
  .pricing-card.featured-plan {
    min-height: 0;
    padding: 42px 22px 24px !important;
  }

  .pricing-card ul { margin-top: 38px !important; }
}

/* Keep the pricing label on the same visual scale as every section label. */
.pricing-copy .eyebrow {
  margin: 0 0 14px;
  padding: 8px 13px;
  color: #4e8717;
  border-color: rgba(74, 138, 36, 0.14);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: normal;
}

body[data-theme="light"] .pricing-copy .eyebrow {
  color: #4e8717;
  border-color: rgba(74, 138, 36, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

body[data-theme="dark"] .pricing-copy .eyebrow {
  color: #9fd3ff;
  border-color: rgba(127, 185, 232, 0.22);
  background:
    linear-gradient(135deg, rgba(18, 38, 61, 0.96), rgba(10, 23, 39, 0.92)),
    rgba(10, 23, 39, 0.92);
}

@media (max-width: 1100px) {
  .pricing-copy .eyebrow {
    padding: 10px 18px;
    line-height: 1.4;
  }
}

/*
 * Touch scroll stability
 *
 * Mobile browsers can stutter or show compositing artifacts when a sticky
 * header, fixed blurred layers, and animated decorations are painted together.
 * Keep the visual hierarchy, but use stable layers while the page is touched.
 */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }

  body.is-booting {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.is-booting .bg-orb,
  body.is-booting .bg-grid,
  body.is-booting .site-header,
  body.is-booting main,
  body.is-booting .site-footer,
  body.is-booting .back-to-top {
    opacity: 1;
  }

  .bg-orb {
    display: none;
  }

  .bg-grid {
    opacity: 0.1;
  }

  .site-header,
  .site-header.is-scrolled,
  .brand {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header,
  .site-header.is-scrolled {
    background: color-mix(in srgb, var(--surface-strong) 98%, var(--bg));
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    transition: border-color 160ms ease, box-shadow 160ms ease;
  }

  .brand {
    background: color-mix(in srgb, var(--surface-strong) 94%, var(--bg));
  }

  .marquee-track {
    animation-play-state: paused;
  }

  .origin-visual::before,
  .origin-visual::after,
  .origin-live-dot,
  .origin-flow-step,
  .pricing.is-visible .pricing-card {
    animation: none;
  }
}
