:root {
  --bg: radial-gradient(120% 120% at 50% -10%, #1a3a7a 0%, #0e2252 35%, #09163b 100%);
  --card: #0d1328cc;
  --ink: #fff;
  --muted: #cfe6ffcc;
  --accent: #68a2ff;
  --accent-2: #7ed1ff;
  --ok: #00d37f;
  --warn: #ffd166;
  --border: #25407a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --error: #ff8585;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell;
  background: var(--bg);
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

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

img {
  filter: invert(1);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  animation: fadeIn 1.2s ease;
}

.hero h2 {
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  margin-top: 12px;
  opacity: 0.95;
  animation: fadeIn 1.6s ease;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

.start-button {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  padding: 14px 26px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 198, 255, 0.35);
}

.start-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 198, 255, 0.55);
}

.secondary-button {
  background: linear-gradient(90deg, #ff8c00, #ff5e00);
}

.stress-button {
  background: linear-gradient(90deg, #7ed1ff, #35b4ff);
  box-shadow: 0 10px 28px rgba(53, 180, 255, 0.45);
}

.stress-button:hover {
  box-shadow: 0 14px 36px rgba(53, 180, 255, 0.6);
}

.hero .note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.trust {
  margin-top: 10px;
  color: #cfe6ffcc;
  font-size: 0.95rem;
}

.trust-section .content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.trust-counter h2 {
  color: #fff;
  margin-bottom: 10px;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ed0ff;
  font-weight: 700;
  font-size: 0.85rem;
}

.muted {
  color: var(--muted);
  font-size: 0.98rem;
}

.gradient-number {
  background: linear-gradient(90deg, #7ed1ff, #68ffcf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  background: rgba(13, 19, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.mini-card strong {
  display: block;
  font-size: 1.2rem;
  color: #7ed1ff;
}

.mini-card span {
  display: block;
  color: #eaf4ff;
  margin-top: 4px;
  font-size: 0.98rem;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.feedback-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.feedback-card .quote {
  font-style: italic;
  color: #fff;
  line-height: 1.5;
}

.feedback-card .author {
  margin-top: 10px;
  font-weight: 700;
  color: #9ed0ff;
}

.feedback-card .tag {
  color: var(--muted);
  font-size: 0.95rem;
}

.profile-switch {
  display: flex;
  gap: 8px;
  margin: 16px 0 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  background: #0f214b;
  border: 1px solid #25407a;
  color: #aad4ff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.pill.active {
  background: linear-gradient(90deg, #00c6ff, #0094cc);
  color: #fff;
  border-color: transparent;
}

.profile-panels .panel {
  max-width: 900px;
  margin: 0 auto;
}

.pitch {
  max-width: 760px;
  margin: 10px auto 0;
  color: #eaf4ff;
}

#networkCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 38px 18px;
}

.content {
  margin: 0 auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  text-align: center;
  animation: slideUp 1s ease;
}

.section h2 {
  color: #00c6ff;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: clamp(18px, 2.6vw, 24px);
}

.content p {
  line-height: 1.6;
  font-size: 1.1rem;
  color: #eaf4ff;
  margin: 0 auto 12px;
  max-width: 900px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #1e3468;
  border-radius: 14px;
  padding: 16px;
}

.step h3 {
  color: #7ed1ff;
  margin-bottom: 6px;
  font-size: 18px;
}

.step p {
  font-size: 15px;
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #1e3468;
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 1rem;
  font-weight: 700;
  color: #7ed1ff;
}

.demo-chat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #1e3468;
  border-radius: 12px;
  padding: 14px;
  text-align: left;
}

.demo-chat .msg {
  padding: 10px 12px;
  border-radius: 10px;
  margin: 8px 0;
}

.demo-chat .msg.bot {
  background: #0e1e43;
}

.demo-chat .msg.user {
  background: #102654;
}

.hint {
  font-size: 12px;
  color: var(--muted);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border-color: #2b4f99;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #102654;
  color: #aad4ff;
  border: 1px solid #25407a;
}

.plan-title {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 10px 0 6px;
  color: #7ed1ff;
}

.desc {
  color: var(--muted);
  margin: 0 0 10px;
}

.price {
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 800;
  margin: 6px 0 14px;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255, 223, 0, 0.35);
}

.price small {
  font-size: 0.6em;
  color: var(--muted);
  -webkit-text-fill-color: initial;
}

ul.features {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  gap: 10px;
  text-align: left;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  justify-content: center;
}

.page-shell .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #00c6ff, #0094cc);
  color: #fff;
}

.page-shell .btn.secondary {
  background: #0f214b;
  border-color: #25407a;
}

.highlight {
  position: relative;
  border: 1.5px solid rgba(255, 223, 0, 0.7);
}

.highlight::after {
  content: "Recomendado";
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  color: #1a2142;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(255, 140, 0, 0.35);
}

.table-wrap {
  margin-top: 22px;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #1e3468;
}

.table th,
.table td {
  padding: 14px 12px;
  text-align: left;
  font-size: 15px;
}

.table thead th {
  background: #0f214b;
  color: #cfe6ff;
}

.table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}

.center {
  text-align: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #284c93;
  background: #0e1e43;
  color: #b8d6ff;
}

.ok {
  color: #00d37f;
  font-weight: 800;
}

.lock {
  opacity: 0.85;
}

details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #1e3468;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
}

details + details {
  margin-top: 10px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  transition: transform 0.2s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  color: var(--muted);
  margin: 8px 0 0;
}

.footer {
  margin-top: 60px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer a {
  color: #00c6ff;
}

.install-pill {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #0f214b;
  border: 1px solid #25407a;
  color: #aad4ff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: none;
}

.install-pill:hover {
  background: linear-gradient(90deg, #00c6ff, #0094cc);
  color: #fff;
  border-color: transparent;
}

.download-section {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 38px 18px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.download-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #1e3468;
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-card h3 {
  color: #7ed1ff;
  margin: 0;
  font-size: 20px;
}

.download-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.download-card .btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
}

.download-card .hint {
  margin-top: auto;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.75);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 18px;
}

.modal {
  background: #0f214b;
  border: 1px solid #25407a;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 22px;
  color: #eaf4ff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.modal h3 {
  margin: 0 0 10px;
  color: #7ed1ff;
}

.modal p {
  color: var(--muted);
  margin: 0 0 12px;
}

.modal .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 16px;
}

.modal .btn {
  min-width: 120px;
}

.modal .steps {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}

.modal .step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #1e3468;
  border-radius: 10px;
  padding: 10px;
  color: #eaf4ff;
  font-size: 15px;
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

body.no-scroll {
  overflow: hidden;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9000;
}

.cookie-overlay[aria-hidden="false"] {
  display: block;
  opacity: 1;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9500;
  pointer-events: none;
}

.cookie-card {
  pointer-events: auto;
  background: #0f214b;
  border: 1px solid #25407a;
  border-radius: 18px;
  max-width: 560px;
  width: 100%;
  padding: 22px;
  color: #eaf4ff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  text-align: left;
}

.cookie-title {
  margin: 0 0 10px;
  color: #7ed1ff;
}

.cookie-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid #25407a;
  background: #0b1a3a;
  color: #eaf4ff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cookie-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  background: #12285a;
}

.cookie-actions .btn:focus-visible {
  outline: 2px solid #00c6ff;
  outline-offset: 3px;
}

.cookie-actions .btn-primary {
  background: linear-gradient(90deg, #00c6ff, #0094cc);
  color: #fff;
  border-color: transparent;
}

.cookie-actions .btn-primary:hover {
  background: linear-gradient(90deg, #00d8ff, #00a6e6);
}

.cookie-links {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-links a {
  color: #a8d4ff;
  font-weight: 600;
}

.cookie-links a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-card {
    padding: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  padding: 18px;
  position: relative;
  z-index: 1000;
}

.login-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  background: rgba(15, 33, 75, 0.85);
  border: 1px solid rgba(104, 162, 255, 0.4);
  color: #aad4ff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.login-button:hover {
  background: linear-gradient(90deg, #00c6ff, #0094cc);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.login-button:focus-visible {
  outline: 2px solid #7ed1ff;
  outline-offset: 3px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .plans {
    grid-template-columns: 1fr;
  }

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

  .trust-section .content {
    text-align: center;
  }
}

.lead-wrap {
  margin-top: 16px;
  width: min(980px, 100%);
}

.lead {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #1e3468;
  border-radius: 14px;
  padding: 16px;
}

.lead h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #7ed1ff;
}

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

.lead label {
  font-size: 0.95rem;
  color: #cfe6ff;
}

.lead input,
.lead select,
.lead textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #25407a;
  background: #0f214b;
  color: #fff;
}

.lead textarea {
  min-height: 90px;
  resize: vertical;
}

.lead .actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.lead .actions .consent {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.lead .actions .consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  vertical-align: middle;
  accent-color: #00c6ff;
}

.lead .error {
  color: var(--error);
  font-size: 0.9rem;
}

.lead .success {
  color: var(--ok);
  font-weight: 700;
}

.lead small {
  color: var(--muted);
}

@media (max-width: 780px) {
  .lead {
    grid-template-columns: 1fr;
  }

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