:root {
  --bg: #ebc2c2;
  --card: rgba(235, 194, 194, 0.85);
  --ink: #2f2a32;
  --ink-strong: #1e1a22;
  --muted: rgba(47, 42, 50, 0.72);
  --accent: #ebc2c2;
  --accent-2: #9fcbb7;
  --ok: #9fcbb7;
  --warn: #ebc2c2;
  --border: #9fcbb7;
  --shadow: 0 10px 30px rgba(159, 203, 183, 0.28);
  --error: #ebc2c2;
}

* {
  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: var(--ink);
  text-align: center;
  overflow-x: hidden;
}

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

img {
  filter: none;
}

.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;
  color: var(--ink-strong);
  text-shadow: 0 0 15px rgba(239, 235, 253, 0.6);
  animation: fadeIn 1.2s ease;
}

.hero h2 {
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  margin-top: 12px;
  color: var(--ink-strong);
  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: var(--accent-2);
  padding: 14px 26px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-strong);
  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(159, 203, 183, 0.35);
}

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

.secondary-button {
  background: #fff7f3;
}

.stress-button {
  background: #9fcbb7;
  box-shadow: 0 10px 28px rgba(159, 203, 183, 0.45);
}

.stress-button:hover {
  box-shadow: 0 14px 36px rgba(159, 203, 183, 0.6);
}

.hero .note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(15, 32, 35, 0.75);
}

.trust {
  margin-top: 10px;
  color: rgba(15, 32, 35, 0.8);
  font-size: 0.95rem;
}

.trust-section .content {
  background: rgba(239, 235, 253, 0.08);
  border: 1px solid rgba(239, 235, 253, 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: #9fcbb7;
  font-weight: 700;
  font-size: 0.85rem;
}

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

.gradient-number {
  color: var(--accent-2);
  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(239, 235, 253, 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: #9fcbb7;
}

.mini-card span {
  display: block;
  color: #efeafd;
  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(239, 235, 253, 0.06);
  border: 1px solid rgba(239, 235, 253, 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: #9fcbb7;
}

.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: #2f474d;
  border: 1px solid #9fcbb7;
  color: #d0f0e4;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.pill.active {
  background: #ebc2c2;
  color: #fff;
  border-color: transparent;
}

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

.pitch {
  max-width: 760px;
  margin: 10px auto 0;
  color: rgba(15, 32, 35, 0.88);
}

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

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

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

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

.welcome-video .content {
  text-align: center;
}

.welcome-video-frame {
  position: relative;
  margin: 16px auto 0;
  max-width: 960px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  background: #0f1125;
}

.welcome-video-player {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

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

.step {
  background: rgba(239, 235, 253, 0.08);
  border: 1px solid #4f7672;
  border-radius: 14px;
  padding: 16px;
}

.step h3 {
  color: #9fcbb7;
  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(239, 235, 253, 0.08);
  border: 1px solid #4f7672;
  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: #9fcbb7;
}

.demo-chat {
  background: rgba(239, 235, 253, 0.06);
  border: 1px solid #4f7672;
  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: #263f44;
}

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

.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(239, 235, 253, 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: #9fcbb7;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #2f474d;
  color: #d0f0e4;
  border: 1px solid #9fcbb7;
}

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

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

.price {
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 800;
  margin: 6px 0 14px;
  background: #fffcf9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(221, 250, 181, 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: #ebc2c2;
  color: var(--ink-strong);
}

.page-shell .btn.secondary {
  background: #9fcbb7;
  border-color: #9fcbb7;
  color: #1e2e32;
}

.highlight {
  position: relative;
  border: 1.5px solid rgba(159, 203, 183, 0.5);
}

.highlight::after {
  content: "Recomendado";
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fffcf9;
  color: #1e2e32;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(235, 194, 194, 0.35);
}

.table-wrap {
  margin-top: 22px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 252, 249, 0.08);
  border: 1px solid #9fcbb7;
  table-layout: fixed;
}

.table th,
.table td {
  padding: 14px 12px;
  text-align: left;
  font-size: 15px;
  color: var(--ink);
  word-break: break-word;
}

.table thead th {
  background: #9fcbb7;
  color: #1e2e32;
}

.table tbody tr:nth-child(odd) {
  background: rgba(235, 194, 194, 0.08);
}

.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 #4f7672;
  background: #263f44;
  color: #d0f0e4;
}

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

.lock {
  opacity: 0.85;
}

details {
  background: rgba(239, 235, 253, 0.05);
  border: 1px solid #4f7672;
  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: #ebc2c2;
}

.install-pill {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #2f474d;
  border: 1px solid #9fcbb7;
  color: #d0f0e4;
  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: #ebc2c2;
  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(239, 235, 253, 0.06);
  border: 1px solid #4f7672;
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-card h3 {
  color: #9fcbb7;
  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: #2f474d;
  border: 1px solid #9fcbb7;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 22px;
  color: #efeafd;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.modal h3 {
  margin: 0 0 10px;
  color: #9fcbb7;
}

.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;
}

body.no-scroll {
  overflow: hidden;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.8);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 12000;
}

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

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 12010;
}

.cookie-modal:not([hidden]) {
  display: flex;
}

.cookie-card {
  width: min(560px, 100%);
  background: #2f474d;
  border: 1px solid #9fcbb7;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  color: #efeafd;
}

.cookie-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #9fcbb7;
}

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

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cookie-actions .btn {
  flex: 1 1 180px;
  justify-content: center;
  padding: 12px 16px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid #ebc2c2;
  background: #fffcf9;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-actions .btn.btn-primary {
  background: #ebc2c2;
  border-color: transparent;
  color: #1e2e32;
  box-shadow: 0 14px 34px rgba(235, 194, 194, 0.45);
}

.cookie-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.cookie-links a {
  color: #9fcbb7;
  text-decoration: underline;
}

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

.modal .step {
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid #9fcbb7;
  border-radius: 10px;
  padding: 10px;
  color: var(--ink);
  font-size: 15px;
}

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

.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: #d0f0e4;
  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: #ebc2c2;
  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 #9fcbb7;
  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;
  }
}

@media (max-width: 640px) {
  .table th,
  .table td {
    font-size: 13px;
    padding: 10px 8px;
  }
}

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

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

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

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

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

.lead input,
.lead select,
.lead textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #9fcbb7;
  background: #2f474d;
  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: #ebc2c2;
}

.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;
  }
}

/* Pastel refresh to align with auth screens */
:root {
  --bg: #fffcf9;
  --card: #fffcf9;
  --ink: #2f2a32;
  --muted: #5f5a62;
  --accent: #ebc2c2;
  --accent-2: #9fcbb7;
  --ok: #9fcbb7;
  --warn: #ebc2c2;
  --border: #ebc2c2;
  --shadow: 0 10px 24px rgba(159, 203, 183, 0.2);
  --error: #d87a96;
}

body {
  font-family: 'Poppins', 'Arial', sans-serif;
  background: var(--bg);
  color: var(--ink);
  text-align: center;
}

.page-shell {
  background: transparent;
  color: var(--ink);
}

.hero {
  min-height: 80vh;
  color: var(--ink);
}

.hero h1 {
  color: var(--ink);
  text-shadow: none;
}

.hero h2 {
  color: #4f4a52;
  font-weight: 600;
}

.hero .note,
.trust {
  color: var(--muted);
}

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

.start-button {
  background: #e88fa8;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.start-button:hover {
  box-shadow: 0 12px 26px rgba(47, 42, 50, 0.16);
}

.secondary-button {
  background: #fff7f3;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stress-button {
  background: #9fcbb7;
}

.section {
  padding: 46px 18px;
}

.content {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--ink);
  backdrop-filter: none;
}

.section h2 {
  color: var(--ink);
  letter-spacing: 0;
}

.content p {
  color: var(--muted);
}

.trust-section .content {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--border);
}

.trust-counter h2 {
  color: var(--ink);
}

.mini-card,
.feedback-card,
.benefit-item,
.step,
.table,
.lead,
.lead input,
.lead textarea,
.lead select,
.cookie-card,
.modal,
.download-card,
.card,
.demo-chat .msg.bot,
.demo-chat .msg.user {
  background: #fffcf9;
  border-color: var(--border);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.mini-card strong,
.feedback-card .author,
.step h3,
.benefit-item p,
.plan-title,
.cookie-title {
  color: var(--ink);
}

.mini-card span {
  color: var(--muted);
}

.feedback-card .quote,
.feedback-card .tag,
.step p,
.desc,
.hint,
.lead label,
.lead small,
.cookie-text,
.cookie-links a {
  color: var(--muted);
}

.feedback-card .quote {
  color: var(--ink);
}

.pill {
  background: #fffcf9;
  border: 1px solid var(--border);
  color: var(--ink);
}

.pill.active {
  background: #ebc2c2;
  color: var(--ink);
}

.pitch {
  color: var(--muted);
}

.plans {
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--ink);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(47, 42, 50, 0.18);
  border-color: #d6e9df;
}

.badge {
  background: #fffcf9;
  border: 1px solid var(--border);
  color: var(--muted);
}

.price {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--ink);
  text-shadow: none;
}

.page-shell .btn {
  background: #ebc2c2;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.page-shell .btn.secondary {
  background: #fffcf9;
  color: var(--ink);
}

.highlight {
  border-color: #ebc2c2;
}

.highlight::after {
  background: #ebc2c2;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.table {
  border-color: var(--border);
}

.table thead th {
  background: #fffcf9;
  color: var(--ink);
}

.table tbody tr:nth-child(odd) {
  background: #fffcf9;
}

.download-section {
  background: transparent;
}

.download-card h3,
.modal h3 {
  color: var(--ink);
}

.install-pill,
.login-button,
.cookie-actions .btn {
  background: #fffcf9;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.login-button:hover,
.install-pill:hover,
.cookie-actions .btn:hover {

  background: #fffcf9;
  color: var(--ink);

}

.cookie-actions .btn.btn-primary {
  background: #ebc2c2;
  border-color: var(--border);
  color: var(--ink);
}

.cookie-overlay {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
}

.footer {
  color: var(--muted);
}

.footer a {
  color: var(--ink);
}
