:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #6c7770;
  --line: #dce4df;
  --paper: #f4f8f5;
  --panel: #ffffff;
  --brand: #0c6f55;
  --brand-strong: #084a3a;
  --brand-glow: #18b98a;
  --accent: #f27a1a;
  --accent-soft: #ffd27d;
  --gold: #d99b19;
  --danger: #ba2636;
  --good: #0a8a5f;
  --blue: #285b8f;
  --shadow: 0 14px 38px rgba(20, 31, 27, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(242, 122, 26, 0.18), transparent 260px),
    radial-gradient(circle at 92% 0%, rgba(24, 185, 138, 0.22), transparent 290px),
    linear-gradient(180deg, rgba(12, 111, 85, 0.13), rgba(247, 250, 248, 0) 260px),
    var(--paper);
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(100%, 860px);
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: calc(14px + env(safe-area-inset-top)) 16px 12px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 42, 37, 0.98), rgba(12, 111, 85, 0.94) 58%, rgba(242, 122, 26, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 38px);
  backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 36px rgba(8, 36, 31, 0.22);
  max-width: 100%;
  overflow: hidden;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 0;
}

.access-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.access-chip.locked {
  color: #ffd27d;
  background: rgba(255, 210, 125, 0.12);
  border-color: rgba(255, 210, 125, 0.28);
}

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

.brand-lockup > div:last-child {
  min-width: 0;
}

.brandmark {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(23, 33, 29, 0.9) 47%, rgba(23, 33, 29, 0.9) 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(23, 33, 29, 0.9) 47%, rgba(23, 33, 29, 0.9) 53%, transparent 54%),
    var(--accent);
  box-shadow:
    0 8px 18px rgba(242, 122, 26, 0.34),
    0 0 0 4px rgba(255, 255, 255, 0.12);
}

.brandmark::before,
.brandmark::after,
.brandmark span {
  position: absolute;
  content: "";
  border: 2px solid rgba(23, 33, 29, 0.9);
  border-radius: 50%;
}

.brandmark::before {
  inset: -8px 26px -8px -20px;
}

.brandmark::after {
  inset: -8px -20px -8px 26px;
}

.brandmark span {
  inset: 8px;
  border-left: 0;
  border-right: 0;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 1.03rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar h1 {
  color: #ffffff;
}

.topbar .eyebrow {
  color: #ffd27d;
}

.topbar .install-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.topbar .install-button:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.18);
}

h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.2;
}

h4 {
  margin-bottom: 10px;
  font-size: 0.93rem;
}

.content {
  padding: 14px 14px 0;
}

.view {
  display: none;
  animation: viewEnter 0.34s ease both;
}

.view.active {
  display: block;
}

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

.stack {
  display: grid;
  gap: 12px;
}

.hero-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  margin-bottom: 14px;
  padding: 18px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(8, 74, 58, 0.97), rgba(12, 111, 85, 0.88), rgba(242, 122, 26, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 62px);
  box-shadow: var(--shadow);
}

.sales-hero {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 540px;
  margin-bottom: 14px;
  padding: 22px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(9, 42, 37, 0.96), rgba(12, 111, 85, 0.9) 44%, rgba(242, 122, 26, 0.86)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 54px);
  box-shadow: var(--shadow);
  max-width: 100%;
}

.sales-hero::before {
  position: absolute;
  right: -88px;
  top: -54px;
  width: 260px;
  height: 260px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.sales-hero::after {
  position: absolute;
  left: 24px;
  bottom: 20px;
  width: calc(100% - 48px);
  height: 96px;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.sales-hero-copy,
.sales-card {
  position: relative;
  z-index: 1;
}

.sales-hero-copy {
  align-self: end;
  max-width: 650px;
}

.sales-hero .eyebrow,
.conversion-panel .eyebrow {
  color: #ffd27d;
}

.sales-hero h2 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 7vw, 4rem);
  line-height: 0.98;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.sales-hero p {
  max-width: 580px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.55;
}

.sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sales-actions .secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.sales-card {
  align-self: start;
  justify-self: start;
  display: grid;
  gap: 8px;
  width: min(100%, 360px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  animation: floatCard 4.8s ease-in-out infinite;
}

.sales-card::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  content: "✓";
  color: #0b3d34;
  border-radius: 50%;
  background: #ffffff;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.sales-card strong {
  font-size: 1.7rem;
}

.sales-card span {
  color: rgba(255, 255, 255, 0.82);
}

.card-kicker {
  color: #ffd27d !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.mini-price-grid div {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
}

.mini-price-grid strong {
  font-size: 1rem;
}

.sales-methods {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.sales-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.sales-band article,
.feature-grid article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(20, 31, 27, 0.05);
  position: relative;
  overflow: hidden;
}

.sales-band article::before,
.feature-grid article::before {
  width: 38px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.sales-band strong,
.feature-grid strong {
  font-size: 0.98rem;
}

.sales-band span,
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.sales-section {
  background:
    linear-gradient(180deg, rgba(12, 111, 85, 0.04), rgba(255, 255, 255, 0)),
    #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.feature-grid article span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(12, 111, 85, 0.18);
}

.conversion-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 18px;
  color: #ffffff;
  border-radius: 8px;
  background: linear-gradient(120deg, #10241f, #0c6f55);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.conversion-panel::after {
  position: absolute;
  right: -42px;
  top: -72px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.conversion-panel h3 {
  margin-bottom: 6px;
  font-size: 1.22rem;
}

.conversion-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-strip::before {
  position: absolute;
  right: 12px;
  bottom: -46px;
  width: 172px;
  height: 172px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.hero-strip > * {
  position: relative;
}

.hero-strip .eyebrow {
  color: #f8c064;
}

.score-badge {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 66px;
  height: 66px;
  padding: 0 8px;
  color: var(--ink);
  border-radius: 50%;
  background: #ffffff;
  font-weight: 900;
  box-shadow: inset 0 0 0 3px rgba(242, 122, 26, 0.28);
}

body:not(.admin-page) .score-badge {
  color: #061510;
  background: linear-gradient(135deg, #b9ff4f, #ffffff);
}

.score-badge.small {
  min-width: 56px;
  height: 56px;
  font-size: 0.95rem;
}

.panel {
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(20, 31, 27, 0.06);
  max-width: 100%;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.panel:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 111, 85, 0.2);
  box-shadow: 0 16px 34px rgba(20, 31, 27, 0.09);
}

.panel-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

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

.fine-print {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 11px;
  color: var(--ink);
  border: 1px solid #cad6d0;
  border-radius: 7px;
  background: #ffffff;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12, 111, 85, 0.14);
}

.input-error {
  border-color: var(--danger) !important;
  animation: shake 0.28s ease both;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.score-table {
  display: grid;
  gap: 8px;
}

.score-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  align-items: end;
}

.score-row .row-label {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.score-row input {
  text-align: center;
  font-weight: 800;
}

.score-table.compact .score-row {
  grid-template-columns: 58px minmax(0, 1fr) minmax(0, 1fr);
}

.recent-grid {
  display: grid;
  gap: 16px;
}

.action-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.action-row button {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

button.primary,
button.secondary,
button.danger,
.install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 850;
}

button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #12916d);
  box-shadow: 0 10px 22px rgba(12, 111, 85, 0.22);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

button.primary:hover {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(12, 111, 85, 0.28);
}

button.secondary,
.install-button {
  color: var(--ink);
  border-color: #cdd9d3;
  background: #ffffff;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

button.secondary:hover,
.install-button:hover {
  border-color: var(--brand);
  background: rgba(12, 111, 85, 0.06);
  transform: translateY(-1px);
}

button.danger {
  color: #ffffff;
  background: var(--danger);
}

button.full {
  width: 100%;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none !important;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #edf3ef;
}

.segmented button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
}

.segmented button.active {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(20, 31, 27, 0.08);
}

.result-panel {
  min-height: 180px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 140px;
  gap: 7px;
  text-align: center;
  color: var(--muted);
}

.empty-state strong {
  color: var(--ink);
}

.result-grid {
  display: grid;
  gap: 10px;
}

.status-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.status-card strong {
  font-size: 1.1rem;
}

.status-card header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.auto-reading-card {
  border-color: rgba(12, 111, 85, 0.2);
  background:
    linear-gradient(180deg, rgba(12, 111, 85, 0.06), rgba(255, 255, 255, 0)),
    #ffffff;
}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.reading-grid div {
  display: grid;
  gap: 3px;
  min-height: 68px;
  padding: 9px;
  border: 1px solid #e8efeb;
  border-radius: 8px;
  background: #fbfdfc;
}

.reading-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.reading-grid strong {
  font-size: 0.92rem;
  text-transform: capitalize;
  overflow-wrap: anywhere;
}

.auto-reading-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.status-high {
  border-color: rgba(10, 138, 95, 0.36);
  background: rgba(10, 138, 95, 0.08);
}

.status-mid {
  border-color: rgba(217, 155, 25, 0.42);
  background: rgba(217, 155, 25, 0.09);
}

.status-low {
  border-color: rgba(186, 38, 54, 0.34);
  background: rgba(186, 38, 54, 0.08);
}

.check-list {
  display: grid;
  gap: 8px;
}

.check-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid #eef2ef;
}

.check-item:last-child {
  border-bottom: 0;
}

.check-dot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--danger);
  font-size: 0.78rem;
  font-weight: 900;
}

.check-dot.pass {
  background: var(--good);
}

.check-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.38;
}

.ticket-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(12, 111, 85, 0.98), rgba(15, 64, 88, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 38px);
  box-shadow: var(--shadow);
}

.ticket-card.stop {
  color: var(--ink);
  border: 1px solid rgba(186, 38, 54, 0.22);
  background: rgba(186, 38, 54, 0.08);
  box-shadow: none;
}

.ticket-card header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.ticket-card header span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
}

.ticket-card.stop header span {
  color: #8c1d29;
}

.ticket-copy {
  min-height: 32px;
  padding: 6px 10px;
  color: #075f43;
  border: 0;
  border-radius: 7px;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.ticket-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.ticket-card.stop p {
  color: #8c1d29;
}

.primary-pick {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.primary-pick > span {
  display: grid;
  place-items: center;
  min-height: 46px;
  color: var(--brand-strong);
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 950;
}

.primary-pick > div {
  display: grid;
  gap: 5px;
}

.decision-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 4px 0 2px;
}

.decision-details div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.decision-details span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-details strong {
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.25;
}

.primary-pick small,
.backup-pick {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.38;
}

.backup-pick {
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.ticket-picks {
  display: grid;
  gap: 8px;
}

.ticket-pick {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.ticket-pick > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--brand-strong);
  border-radius: 50%;
  background: #ffffff;
  font-weight: 900;
}

.ticket-pick div {
  display: grid;
  gap: 4px;
}

.ticket-pick small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.empty-state.compact {
  min-height: 96px;
}

.bankroll-history {
  display: grid;
  gap: 8px;
}

.history-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.history-row > div {
  display: grid;
  gap: 3px;
}

.history-row > div:last-child {
  text-align: right;
}

.history-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.history-row.win {
  border-color: rgba(10, 138, 95, 0.24);
  background: rgba(10, 138, 95, 0.07);
}

.history-row.loss {
  border-color: rgba(186, 38, 54, 0.22);
  background: rgba(186, 38, 54, 0.06);
}

.recommendation-list {
  display: grid;
  gap: 8px;
}

.recommendation {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfdfc);
}

.recommendation::before {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  content: "↕";
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-weight: 900;
}

.recommendation strong {
  overflow-wrap: anywhere;
}

.pill-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf3ef;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.pill.plus {
  background: rgba(10, 138, 95, 0.12);
  color: #075f43;
}

.pill.minus {
  background: rgba(186, 38, 54, 0.1);
  color: #8c1d29;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf3ef;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.pending {
  background: rgba(217, 155, 25, 0.16);
  color: #6c4a08;
}

.status-pill.used,
.status-pill.approved {
  background: rgba(10, 138, 95, 0.12);
  color: #075f43;
}

.status-pill.replaced,
.status-pill.cancelled {
  background: rgba(186, 38, 54, 0.1);
  color: #8c1d29;
}

.bankroll-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.coupon-guide {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.coupon-guide-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(40, 91, 143, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(40, 91, 143, 0.08), rgba(255, 255, 255, 0));
}

.coupon-guide-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.coupon-guide-card strong {
  font-size: 1.02rem;
}

.ticket-order {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ticket-order div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(12, 111, 85, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(20, 31, 27, 0.04);
}

.ticket-order span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-order strong {
  color: var(--brand-strong);
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}

.ticket-order small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.coupon-steps {
  display: grid;
  gap: 8px;
}

.coupon-step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.coupon-step span:first-child {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.coupon-step span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.summary-chip {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.summary-chip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.summary-chip strong {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #ffffff;
}

.data-table th,
.data-table td {
  padding: 10px;
  border-bottom: 1px solid #eef2ef;
  text-align: left;
  font-size: 0.84rem;
}

.data-table th {
  color: var(--muted);
  background: #f0f5f2;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.data-table tr.current-level {
  background: rgba(12, 111, 85, 0.1);
}

.prediction-list,
.training-list,
.affiliate-ledger {
  display: grid;
  gap: 10px;
}

.prediction-card,
.training-card,
.ledger-row,
.device-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.prediction-card header,
.ledger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ledger-row > div {
  min-width: 0;
}

.ledger-row > strong:last-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.prediction-card strong,
.training-card strong {
  overflow-wrap: anywhere;
}

.mini-form {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) 82px auto;
  gap: 8px;
  margin-top: 12px;
}

.video-thumb {
  position: relative;
  width: 100%;
  min-height: 114px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.7) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.45) 50%, transparent 51%),
    #145b46;
  overflow: hidden;
}

.video-thumb::before {
  position: absolute;
  inset: 20px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}

.video-thumb::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  content: "";
  transform: translate(-40%, -50%);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #ffffff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.24));
}

.video-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(12, 111, 85, 0.14);
  border-radius: 8px;
  background: #10241f;
  aspect-ratio: 16 / 9;
}

.video-player.compact {
  min-height: 130px;
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.training-private-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 6px 9px;
  color: #075f43;
  border: 1px solid rgba(10, 138, 95, 0.18);
  border-radius: 999px;
  background: rgba(10, 138, 95, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
}

.video-link-preview {
  display: grid;
  place-content: center;
  gap: 6px;
  min-height: 132px;
  padding: 14px;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 74, 58, 0.96), rgba(15, 64, 88, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 34px);
  text-align: center;
  text-decoration: none;
}

.video-link-preview span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-link-preview strong {
  color: #ffffff;
  font-size: 1rem;
}

.video-link-preview small {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.35;
}

.copy-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.copy-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.copy-actions .secondary {
  display: grid;
  min-height: 44px;
  place-items: center;
  text-align: center;
  text-decoration: none;
}

.affiliate-whatsapp-share {
  color: #061510;
  border-color: rgba(7, 95, 67, 0.34);
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
}

.affiliate-whatsapp-share.disabled {
  pointer-events: none;
  opacity: 0.55;
}

.code-status {
  margin-top: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.code-status.valid {
  color: #075f43;
  border: 1px solid rgba(10, 138, 95, 0.24);
  background: rgba(10, 138, 95, 0.08);
}

.code-status.invalid {
  color: #8c1d29;
  border: 1px solid rgba(186, 38, 54, 0.22);
  background: rgba(186, 38, 54, 0.08);
}

.metric-grid,
.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.affiliate-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.75fr));
  gap: 10px;
  margin-bottom: 12px;
}

.affiliate-main-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 74, 58, 0.98), rgba(12, 111, 85, 0.9), rgba(242, 122, 26, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 42px);
  box-shadow: var(--shadow);
}

.affiliate-main-card::after {
  position: absolute;
  right: -34px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.affiliate-main-card strong {
  font-size: 1.8rem;
}

.affiliate-main-card span {
  position: relative;
  z-index: 1;
}

.affiliate-progress {
  position: relative;
  z-index: 1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.affiliate-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  transition: width 0.45s ease;
}

.metric-card {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(20, 31, 27, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 31, 27, 0.08);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-card strong {
  font-size: 1.2rem;
}

.affiliate-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.affiliate-actions.single {
  grid-template-columns: 1fr;
  margin-top: 10px;
}

.affiliate-cycle-note {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  padding: 11px;
  border: 1px solid rgba(12, 111, 85, 0.16);
  border-radius: 8px;
  background: rgba(12, 111, 85, 0.07);
}

.affiliate-cycle-note strong {
  color: var(--brand-strong);
}

.affiliate-cycle-note span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.affiliate-payout-panel {
  position: relative;
  overflow: hidden;
}

.affiliate-payout-panel::after {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(12, 111, 85, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.payout-row strong:last-child {
  color: var(--good);
}

.payout-total {
  border-color: rgba(10, 138, 95, 0.28);
  background: rgba(10, 138, 95, 0.08);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.method-button {
  min-height: 48px;
  border: 1px solid #cdd9d3;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 850;
}

.method-button.active {
  border-color: var(--brand);
  background: rgba(12, 111, 85, 0.1);
}

.whatsapp-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  color: #075f43;
  border: 1px solid rgba(10, 138, 95, 0.26);
  border-radius: 7px;
  background: rgba(10, 138, 95, 0.1);
  font-weight: 900;
  text-decoration: none;
}

.manual-primary-pay {
  width: 100%;
  min-height: 52px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, #0a8a5f, #13b77d);
  box-shadow: 0 16px 34px rgba(10, 138, 95, 0.26);
}

.landing-page {
  width: min(100%, 460px);
  margin: 0 auto;
  color: #111111;
  background: #f7faf8;
}

.landing-page p {
  margin: 0;
  color: #252525;
  font-size: 0.98rem;
  line-height: 1.62;
}

.landing-hero,
.landing-section,
.landing-footer {
  display: grid;
  gap: 16px;
  padding: 18px 14px;
  background: #ffffff;
}

.landing-hero {
  overflow: hidden;
  padding: 18px 14px 20px;
  color: #ffffff;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(145deg, rgba(8, 74, 58, 0.98), rgba(12, 111, 85, 0.95) 52%, rgba(242, 122, 26, 0.9)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 44px);
}

.landing-hero-copy {
  display: grid;
  gap: 12px;
  text-align: center;
}

.landing-kicker {
  display: inline-flex;
  justify-self: center;
  width: fit-content;
  padding: 6px 10px;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem !important;
  font-weight: 950;
  text-transform: uppercase;
}

.landing-hero h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 12vw, 3.15rem);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0;
}

.landing-hero p:not(.landing-kicker) {
  color: rgba(255, 255, 255, 0.88);
}

.landing-visual {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 210, 125, 0.28), transparent 120px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 18px 45px rgba(0, 0, 0, 0.18);
}

.landing-phone {
  position: absolute;
  left: 50%;
  top: 28px;
  display: grid;
  gap: 10px;
  width: min(68%, 250px);
  min-height: 220px;
  transform: translateX(-50%) rotate(-3deg);
  padding: 24px 18px;
  border: 8px solid #10241f;
  border-radius: 28px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.28);
}

.landing-phone span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.landing-phone strong {
  font-size: 1.65rem;
  line-height: 1;
}

.landing-phone-lines {
  display: grid;
  gap: 8px;
  margin: 8px 0;
}

.landing-phone-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(12, 111, 85, 0.22), rgba(242, 122, 26, 0.16));
}

.landing-phone-lines i:nth-child(2) {
  width: 78%;
}

.landing-phone-lines i:nth-child(3) {
  width: 58%;
}

.landing-phone small {
  color: var(--muted);
  font-weight: 850;
}

.landing-ball {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, #7c3516 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, #7c3516 48% 52%, transparent 53%),
    #f27a1a;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.landing-court-line {
  position: absolute;
  left: -34px;
  bottom: -38px;
  width: 170px;
  height: 170px;
  border: 4px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.landing-section-title {
  padding: 10px 12px;
  color: #ffffff;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  font-size: clamp(1.15rem, 7vw, 1.85rem);
  font-weight: 1000;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.14);
}

.landing-list {
  display: grid;
  gap: 10px;
}

.landing-bullet {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid #e5ebdf;
  border-radius: 8px;
  background: #ffffff;
}

.landing-bullet span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 1000;
}

.landing-bullet.cross span {
  color: #ffffff;
  background: #e01926;
}

.landing-bullet.cross span::before {
  content: "×";
}

.landing-bullet.check span {
  color: #ffffff;
  background: #07a857;
}

.landing-bullet.check span::before {
  content: "✓";
}

.landing-bullet p {
  font-weight: 760;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 13px 14px;
  color: #ffffff;
  border: 2px solid rgba(242, 122, 26, 0.75);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  box-shadow: 0 16px 34px rgba(12, 111, 85, 0.28);
  font-size: 0.94rem;
  font-weight: 1000;
  line-height: 1.16;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.landing-cta:focus-visible {
  outline: 4px solid rgba(184, 255, 22, 0.75);
  outline-offset: 3px;
}

.landing-offer-section {
  gap: 12px;
}

.landing-offer-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  color: #111111;
  border: 1px solid rgba(12, 111, 85, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fffb);
  box-shadow: 0 18px 42px rgba(20, 31, 27, 0.11);
}

.landing-offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.landing-offer-head span,
.landing-launch {
  color: var(--brand-strong) !important;
  font-weight: 1000;
  text-transform: uppercase;
}

.landing-offer-head strong {
  padding: 7px 9px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--accent);
  font-size: 0.86rem;
}

.landing-offer-card h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
  text-align: center;
}

.landing-prices {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
}

.landing-prices del {
  color: #7c7c7c;
  font-size: 1.1rem;
  font-weight: 900;
}

.landing-prices strong {
  color: var(--brand-strong);
  font-size: clamp(2rem, 12vw, 3rem);
  line-height: 1;
}

.responsible-notice {
  padding: 11px;
  color: #5a1b22;
  border: 1px solid rgba(224, 25, 38, 0.25);
  border-left: 5px solid #e01926;
  border-radius: 8px;
  background: rgba(224, 25, 38, 0.07);
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.45;
}

.landing-footer {
  padding-bottom: 28px;
  border-top: 1px solid #e5ebdf;
}

.landing-footer > div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.landing-footer a {
  color: #0c6f55;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.public-locked .app-shell {
  width: 100%;
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
}

.public-locked .content {
  padding: 0;
}

.public-locked .topbar {
  position: relative;
  padding-right: 14px;
  padding-left: 14px;
  background: #071914;
  box-shadow: none;
}

.public-locked .topbar-actions {
  display: none;
}

.public-locked .brand-lockup {
  width: 100%;
}

.public-locked .brand-lockup h1 {
  max-width: 100%;
}

.simple-sales-home {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: calc(100svh - 161px);
  padding: 24px 14px 26px;
  background:
    radial-gradient(circle at 50% 12%, rgba(201, 255, 79, 0.2), transparent 150px),
    linear-gradient(180deg, #071914, #0b211c 52%, #10241f);
  overflow: hidden;
}

.simple-offer {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 390px;
  min-width: 0;
  padding: 26px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-align: center;
  overflow: hidden;
}

.simple-kicker {
  margin: 0;
  color: #ffd27d !important;
  font-size: 0.78rem !important;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-offer h2 {
  margin: 0;
  color: #ffffff;
  max-width: 100%;
  font-size: clamp(2rem, 10vw, 3.25rem);
  font-weight: 1000;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: normal;
}

.simple-price {
  margin: 0;
  color: #c9ff4f !important;
  max-width: 100%;
  font-size: clamp(2rem, 10vw, 3.05rem) !important;
  font-weight: 1000;
  line-height: 1;
  overflow-wrap: anywhere;
}

.simple-offer .premium-cta {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px 10px;
  white-space: nowrap;
}

.simple-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.simple-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.86rem !important;
  font-weight: 750;
  line-height: 1.45;
}

.premium-landing {
  overflow: hidden;
  background:
    linear-gradient(180deg, #071914 0, #0b211c 110px, #f5f8f4 360px),
    #f5f8f4;
}

.premium-landing svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.premium-hero {
  position: relative;
  gap: 18px;
  padding: 16px 14px 24px;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(150deg, rgba(7, 25, 20, 0.98), rgba(11, 50, 39, 0.96) 58%, rgba(197, 86, 24, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px);
  box-shadow: 0 26px 56px rgba(5, 23, 17, 0.2);
}

.landing-hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.landing-brand-pill,
.landing-live-pill,
.landing-badges span,
.landing-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 34px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-live-pill {
  color: #101510;
  border-color: rgba(197, 255, 80, 0.66);
  background: #c9ff4f;
}

.premium-hero .landing-hero-copy {
  position: relative;
  z-index: 2;
  gap: 14px;
  text-align: left;
}

.premium-hero .landing-hero-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.32rem, 12.5vw, 4rem);
  line-height: 0.92;
  text-wrap: balance;
}

.premium-hero .landing-hero-copy p {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.landing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-badges span {
  min-height: 32px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.premium-visual {
  min-height: 315px;
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 72% 28%, rgba(255, 190, 93, 0.25), transparent 118px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.landing-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: orbitFloat 8s ease-in-out infinite;
}

.landing-orbit.one {
  right: 16px;
  top: 18px;
  width: 130px;
  height: 130px;
}

.landing-orbit.two {
  left: 18px;
  bottom: 12px;
  width: 165px;
  height: 165px;
  animation-delay: -3s;
}

.premium-visual .landing-phone {
  top: 26px;
  width: min(72%, 255px);
  min-height: 250px;
  padding: 10px;
  border: 0;
  border-radius: 34px;
  background: #091611;
  transform: translateX(-50%) rotate(-2deg);
  animation: phoneFloat 5.8s ease-in-out infinite;
}

.landing-phone-bar {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 3px 0 8px;
}

.landing-phone-bar span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.landing-phone-screen {
  display: grid;
  gap: 12px;
  min-height: 218px;
  padding: 18px;
  border-radius: 25px;
  background:
    linear-gradient(180deg, #ffffff, #f5fff8),
    #ffffff;
}

.landing-phone-screen small {
  color: #0c6f55;
  font-weight: 1000;
  text-transform: uppercase;
}

.landing-phone-screen strong {
  color: #101510;
  font-size: 1.72rem;
  line-height: 0.95;
}

.landing-score-card {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(12, 111, 85, 0.13);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 111, 85, 0.08), rgba(242, 122, 26, 0.09));
}

.landing-score-card span {
  color: #5e6d66;
  font-size: 0.76rem;
  font-weight: 900;
}

.landing-score-card b {
  color: #0c6f55;
  font-size: 1.25rem;
}

.premium-visual .landing-phone-lines i {
  height: 9px;
  background: linear-gradient(90deg, rgba(12, 111, 85, 0.2), rgba(242, 122, 26, 0.17));
}

.premium-visual .landing-ball {
  right: 18px;
  bottom: 16px;
  width: 82px;
  height: 82px;
  animation: ballPulse 4.8s ease-in-out infinite;
}

.landing-ticket {
  position: absolute;
  left: 18px;
  top: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #101510;
  border-radius: 16px;
  background: #c9ff4f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  transform: rotate(-5deg);
  animation: ticketFloat 5.4s ease-in-out infinite;
}

.premium-landing .landing-section {
  margin: 12px 10px;
  padding: 18px 14px;
  border: 1px solid rgba(12, 111, 85, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(18, 31, 25, 0.08);
}

.premium-title {
  padding: 0;
  color: #101510;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.55rem, 8vw, 2.45rem);
  text-align: left;
  text-wrap: balance;
}

.landing-lead {
  color: #43504a !important;
  font-weight: 700;
}

.premium-bullet {
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 12px;
  border-color: rgba(12, 111, 85, 0.1);
  border-radius: 16px;
  background: #f8fbf7;
}

.premium-bullet span {
  color: #0d7e5f;
  background: rgba(13, 126, 95, 0.11);
}

.premium-bullet p {
  color: #17221d;
  font-weight: 850;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.landing-feature-card {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(12, 111, 85, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbf6);
}

.landing-feature-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, #0c6f55, #16b77e);
  box-shadow: 0 12px 24px rgba(12, 111, 85, 0.2);
}

.landing-feature-card h3,
.landing-step-card h3,
.landing-final-section h3 {
  margin: 0;
  color: #101510;
  font-size: 1rem;
  line-height: 1.1;
}

.landing-feature-card p,
.landing-step-card p {
  color: #54645d;
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.45;
}

.premium-offer-card {
  overflow: hidden;
  position: relative;
  padding: 18px;
  color: #ffffff;
  border: 0;
  border-radius: 26px;
  background:
    linear-gradient(155deg, #071914, #0b3227 58%, #c55618),
    #0b3227;
  box-shadow: 0 24px 48px rgba(7, 25, 20, 0.22);
}

.premium-offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px);
  pointer-events: none;
}

.premium-offer-card > * {
  position: relative;
}

.premium-offer-card h3 {
  color: #ffffff;
  font-size: clamp(2rem, 10vw, 3.1rem);
  text-align: left;
  text-transform: uppercase;
}

.premium-offer-card .landing-offer-head strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #101510;
  background: #c9ff4f;
}

.premium-offer-card .landing-offer-head span,
.premium-offer-card .landing-launch {
  color: #c9ff4f !important;
}

.premium-offer-card .landing-prices {
  align-items: start;
  justify-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.premium-offer-card .landing-prices span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-offer-card .landing-prices strong {
  color: #ffffff;
  font-size: clamp(2.5rem, 12vw, 3.45rem);
}

.landing-offer-includes {
  display: grid;
  gap: 8px;
}

.landing-offer-includes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.premium-cta {
  gap: 10px;
  min-height: 62px;
  color: #101510;
  border: 2px solid #e01926;
  border-radius: 18px;
  background: linear-gradient(135deg, #c9ff4f, #59e87c);
  box-shadow: 0 16px 32px rgba(89, 232, 124, 0.24), inset 0 -4px 0 rgba(0, 0, 0, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-cta span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  border-radius: 50%;
  background: #0c6f55;
}

.premium-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(89, 232, 124, 0.3), inset 0 -4px 0 rgba(0, 0, 0, 0.09);
}

.landing-step-grid {
  display: grid;
  gap: 10px;
}

.landing-step-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(12, 111, 85, 0.1);
  border-radius: 18px;
  background: #f8fbf7;
}

.landing-step-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #0c6f55;
  border-radius: 15px;
  background: rgba(12, 111, 85, 0.1);
}

.landing-proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.landing-proof-strip span {
  justify-content: center;
  color: #17221d;
  border-color: rgba(12, 111, 85, 0.1);
  background: #f8fbf7;
}

.landing-final-section {
  color: #ffffff;
  background:
    linear-gradient(145deg, #071914, #0b3227),
    #071914 !important;
}

.landing-final-section h3,
.landing-final-section p {
  color: #ffffff !important;
}

.premium-landing .landing-footer {
  margin: 12px 10px 0;
  border-radius: 22px 22px 0 0;
  background: #ffffff;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateX(-50%) rotate(-2deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-1deg) translateY(-8px);
  }
}

@keyframes ballPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.04);
  }
}

@keyframes ticketFloat {
  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(7px);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.74;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .premium-landing {
    width: min(100%, 720px);
  }

  .premium-hero {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.8fr);
    align-items: center;
    padding: 24px;
  }

  .landing-hero-top {
    grid-column: 1 / -1;
  }

  .premium-visual {
    min-height: 360px;
  }

  .premium-landing .landing-section,
  .premium-landing .landing-footer {
    margin-right: 14px;
    margin-left: 14px;
    padding: 22px;
  }

  .landing-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .landing-proof-strip,
  .landing-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.manual-home-status {
  border-color: rgba(10, 138, 95, 0.28);
  background: linear-gradient(135deg, rgba(10, 138, 95, 0.08), rgba(255, 255, 255, 0.96));
}

.checkout-flow-steps,
.manual-progress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.checkout-flow-steps div,
.manual-progress-grid span {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(12, 111, 85, 0.14);
  border-radius: 8px;
  background: rgba(12, 111, 85, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.28;
}

.checkout-flow-steps strong {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-bottom: 6px;
  color: #ffffff;
  border-radius: 50%;
  background: var(--brand);
}

.manual-status-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(217, 155, 25, 0.34);
  border-radius: 8px;
  background: rgba(255, 247, 229, 0.72);
}

.manual-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.manual-status-head span,
.manual-status-lines span {
  color: var(--muted);
  font-size: 0.82rem;
}

.manual-status-head strong {
  color: #6c4a08;
  font-size: 1.05rem;
}

.manual-status-lines {
  display: grid;
  gap: 5px;
}

.manual-progress-grid span.done {
  color: #075f43;
  background: rgba(10, 138, 95, 0.12);
}

.manual-progress-grid span.active {
  color: #6c4a08;
  background: rgba(217, 155, 25, 0.16);
}

#modalPayButton {
  display: none;
}

.whatsapp-pay.disabled {
  pointer-events: none;
  opacity: 0.58;
}

.mini-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 6px 9px;
  color: #075f43;
  border: 1px solid rgba(10, 138, 95, 0.22);
  border-radius: 7px;
  background: rgba(10, 138, 95, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.floating-support-link {
  position: fixed !important;
  right: 18px;
  bottom: calc(112px + env(safe-area-inset-bottom));
  z-index: 80;
  display: none;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  border: 2px solid #b9ff4f;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.28), transparent 18px),
    linear-gradient(135deg, #075e54, #11b56f);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(185, 255, 79, 0.13);
  opacity: 1;
  text-decoration: none;
}

body:not(.admin-page).support-floating-visible .floating-support-link {
  display: grid !important;
}

.floating-support-link .whatsapp-cta-icon,
.floating-support-link .whatsapp-cta-icon svg {
  width: 28px;
  height: 28px;
}

.floating-support-link strong {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: max-content;
  max-width: 180px;
  padding: 7px 10px;
  color: #061510;
  border-radius: 999px;
  background: #b9ff4f;
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.device-card {
  grid-template-columns: minmax(0, 1fr);
}

.device-card strong {
  color: var(--brand-strong);
  font-size: 1rem;
}

.device-card small {
  color: var(--muted);
  line-height: 1.45;
}

code {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--brand-strong);
  font-size: 0.82rem;
}

.notice {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 12px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(217, 155, 25, 0.12);
}

.notice span {
  color: #5f4a1a;
  font-size: 0.86rem;
  line-height: 1.45;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(100%, 860px);
  transform: translateX(-50%);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.bottom-nav button {
  min-width: 0;
  min-height: 50px;
  padding: 6px 4px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  position: relative;
  display: grid;
  place-items: center;
  gap: 2px;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-align: center;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.bottom-nav button.active {
  color: var(--brand-strong);
  background: linear-gradient(180deg, rgba(12, 111, 85, 0.14), rgba(242, 122, 26, 0.08));
  transform: translateY(-2px);
}

.bottom-nav button::before {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(12, 111, 85, 0.08);
  color: currentColor;
  font-size: 0.78rem;
}

.bottom-nav button:nth-child(1)::before {
  content: "⌂";
}

.bottom-nav button:nth-child(2)::before {
  content: "∑";
}

.bottom-nav button:nth-child(3)::before {
  content: "₣";
}

.bottom-nav button:nth-child(4)::before {
  content: "▶";
}

.bottom-nav button:nth-child(5)::before {
  content: "↗";
}

.bottom-nav button:nth-child(6)::before {
  content: "◉";
}

.bottom-nav button.locked::after {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--danger);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: end center;
  padding: 16px;
  background: rgba(16, 36, 31, 0.58);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.22s ease both;
}

.checkout-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(100%, 560px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  animation: sheetUp 0.24s ease both;
}

.checkout-card h2 {
  margin-bottom: 0;
}

.checkout-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.promo-notice {
  display: grid;
  gap: 5px;
  padding: 11px;
  border: 1px solid rgba(10, 138, 95, 0.28);
  border-radius: 8px;
  background: rgba(10, 138, 95, 0.08);
}

.promo-notice strong {
  color: #075f43;
  font-size: 0.9rem;
}

.promo-notice span {
  color: #245d4a;
  font-size: 0.86rem;
  line-height: 1.42;
}

.checkout-message {
  display: grid;
  gap: 5px;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.86rem;
  line-height: 1.4;
  border: 1px solid rgba(40, 91, 143, 0.22);
  background: rgba(40, 91, 143, 0.08);
  color: #23486f;
}

.checkout-message.error {
  border-color: rgba(186, 38, 54, 0.24);
  background: rgba(186, 38, 54, 0.08);
  color: #8c1d29;
}

.checkout-message.success {
  border-color: rgba(10, 138, 95, 0.24);
  background: rgba(10, 138, 95, 0.08);
  color: #075f43;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}

.modal-methods {
  margin: 0;
}

.privacy-shield {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: #ffffff;
  background: #10241f;
}

.privacy-shield strong {
  font-size: 1.35rem;
}

.privacy-shield span {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.desktop-blocker {
  display: none;
}

.admin-shell {
  padding-bottom: 32px;
}

.admin-hero {
  min-height: 420px;
}

.admin-hero.is-authenticated {
  grid-template-columns: 1fr;
  min-height: 150px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.admin-hero.is-authenticated .sales-hero-copy {
  max-width: 760px;
}

.admin-login {
  color: #ffffff;
}

.admin-login label {
  color: rgba(255, 255, 255, 0.84);
}

.admin-area {
  display: grid;
  gap: 12px;
}

.admin-guide-panel {
  position: relative;
  border-color: rgba(210, 157, 70, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 250, 239, 0.96), rgba(247, 255, 251, 0.98) 54%, rgba(246, 250, 255, 0.96)),
    #ffffff;
}

.admin-guide-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #d29d46, #0c6f55, #263d8f);
}

.admin-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.admin-action-card {
  position: relative;
  min-width: 0;
  min-height: 122px;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  border: 1px solid rgba(16, 36, 31, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(18, 31, 27, 0.08);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.admin-action-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d29d46, #0c6f55);
}

.admin-action-card:hover,
.admin-action-card.is-open {
  transform: translateY(-3px);
  border-color: rgba(12, 111, 85, 0.34);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(18, 31, 27, 0.13);
}

.admin-action-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.95rem;
  line-height: 1.22;
}

.admin-action-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.admin-section-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #10241f;
}

.admin-main-panel {
  border-color: rgba(12, 111, 85, 0.22);
  background: linear-gradient(180deg, #ffffff, #fbfffd);
}

.admin-content-panel {
  border-color: rgba(38, 61, 143, 0.13);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.admin-secondary-panel {
  background: #ffffff;
}

.admin-technical-panel {
  border-style: dashed;
  background: #f8fbfa;
}

.admin-shell .panel {
  animation: adminPanelIn 0.34s ease both;
}

.admin-metrics {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.admin-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 110px 140px auto;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-access-form {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) auto;
}

.admin-settings-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.admin-settings-form textarea {
  width: 100%;
  min-height: 92px;
  padding: 10px 11px;
  border: 1px solid #cad6d0;
  border-radius: 7px;
  resize: vertical;
  font: inherit;
}

.wide-field {
  grid-column: span 3;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-list {
  margin-top: 10px;
}

.admin-payment-flow {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(12, 111, 85, 0.18);
  border-radius: 8px;
  background: rgba(12, 111, 85, 0.07);
}

.admin-payment-flow strong {
  color: var(--brand-strong);
}

.admin-payment-flow span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.admin-access-result {
  display: grid;
  gap: 12px;
  margin: 0 0 12px;
  padding: 14px;
  color: #ffffff;
  border: 1px solid rgba(185, 255, 79, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(6, 21, 16, 0.96), rgba(12, 111, 85, 0.9)),
    #061510;
  box-shadow: 0 18px 34px rgba(6, 21, 16, 0.16);
}

.admin-access-result.hidden {
  display: none;
}

.admin-access-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-access-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-access-result-head strong {
  display: block;
  margin-top: 3px;
  font-size: 1.08rem;
}

.admin-access-credentials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-access-credentials span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-access-credentials strong {
  color: var(--brand-strong);
  overflow-wrap: anywhere;
}

.admin-access-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-whatsapp-send {
  text-decoration: none;
}

.admin-whatsapp-send.disabled {
  pointer-events: none;
  opacity: 0.62;
}

.admin-manual-queue {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.admin-manual-card {
  display: grid;
  gap: 11px;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(217, 155, 25, 0.32);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0, #ffffff);
  box-shadow: 0 16px 30px rgba(60, 41, 6, 0.08);
}

.admin-manual-card-head,
.admin-manual-money,
.admin-manual-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-manual-card h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.admin-manual-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-manual-money {
  padding: 10px;
  border-radius: 8px;
  background: rgba(10, 138, 95, 0.08);
}

.admin-manual-money span,
.admin-manual-details span {
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-manual-money strong {
  color: #075f43;
}

.admin-manual-details {
  align-items: flex-start;
  flex-direction: column;
}

.admin-manual-empty {
  grid-column: 1 / -1;
}

.admin-list-toolbar,
.admin-collapsible-body {
  margin-top: 10px;
}

.admin-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(12, 111, 85, 0.12);
  border-radius: 8px;
  background: rgba(12, 111, 85, 0.06);
}

.admin-list-toolbar input {
  min-width: 220px;
  flex: 1;
}

.admin-launch-panel {
  border-color: rgba(12, 111, 85, 0.2);
  background: linear-gradient(180deg, #ffffff, #f7fffb);
}

.admin-launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-launch-item {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(16, 36, 31, 0.12);
  border-radius: 10px;
  background: #ffffff;
}

.admin-launch-item span {
  width: fit-content;
  padding: 4px 7px;
  color: #075f43;
  border-radius: 999px;
  background: #e6f8ef;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-launch-item.warning span {
  color: #8c1d29;
  background: #ffedef;
}

.admin-launch-item strong {
  color: #10241f;
}

.admin-launch-item small {
  color: #5c6c64;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.admin-activity-panel {
  border-color: rgba(185, 255, 79, 0.28);
  background:
    linear-gradient(145deg, rgba(6, 21, 16, 0.96), rgba(12, 111, 85, 0.9)),
    #061510;
  color: #ffffff;
}

.admin-activity-panel .admin-section-label {
  color: #061510;
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
}

.admin-activity-panel h3,
.admin-activity-panel .muted {
  color: #ffffff;
}

.admin-activity-list {
  display: grid;
  gap: 9px;
  outline: none;
}

.admin-activity-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-activity-item.success {
  border-color: rgba(96, 241, 155, 0.34);
}

.admin-activity-item.warning {
  border-color: rgba(255, 215, 125, 0.38);
}

.admin-activity-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #061510;
  border-radius: 50%;
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
  font-size: 0.7rem;
  font-weight: 950;
}

.admin-activity-item strong,
.admin-activity-item span,
.admin-activity-item small {
  display: block;
  min-width: 0;
}

.admin-activity-item strong {
  color: #ffffff;
  font-size: 0.93rem;
}

.admin-activity-item span {
  color: rgba(246, 255, 249, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.admin-activity-item small {
  margin-top: 3px;
  color: #ffd77d;
  font-size: 0.74rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.admin-activity-list .empty-state {
  color: rgba(246, 255, 249, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.admin-toggle {
  min-width: 92px;
}

.admin-payout-wrap {
  margin-top: 10px;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.table-action {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.78rem;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sheetUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hidden {
  display: none !important;
}

@media (min-width: 720px) {
  .content {
    padding: 22px 22px 0;
  }

  .recent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .ticket-card,
  .recommendation-list {
    grid-column: 1 / -1;
  }

  .training-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sales-hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: center;
  }

  .checkout-card {
    place-self: center;
  }

  .admin-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
  }
}

@media (max-width: 540px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .brand-lockup {
    width: 100%;
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    flex: none;
  }

  .topbar-actions > * {
    width: 100%;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    white-space: normal;
  }

  .topbar-actions .admin-link {
    display: none;
  }

  .field-grid.two,
  .bankroll-summary,
  .reading-grid,
  .decision-details,
  .ticket-order,
  .checkout-flow-steps,
  .manual-progress-grid,
  .mini-form {
    grid-template-columns: 1fr;
  }

  .sales-hero {
    min-height: 580px;
  }

  .sales-band,
  .feature-grid,
  .affiliate-dashboard,
  .account-grid,
  .affiliate-actions,
  .admin-action-grid,
  .admin-form,
  .admin-launch-grid,
  .admin-settings-form,
  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .admin-action-card {
    min-height: auto;
  }

  .admin-list-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-list-toolbar input {
    min-width: 0;
  }

  .wide-field {
    grid-column: auto;
  }

  .conversion-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-strip {
    min-height: 104px;
    padding: 15px;
  }

  .score-row {
    grid-template-columns: 58px minmax(0, 1fr) minmax(0, 1fr);
  }

  .action-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .action-row button {
    padding-left: 8px;
    padding-right: 8px;
  }

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

  .pill-stack {
    justify-content: flex-start;
  }

  .admin-shell {
    width: 100%;
  }

  .admin-shell .content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .admin-shell .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .admin-shell h1 {
    white-space: normal;
  }

  .admin-shell .topbar > a.install-button {
    width: 100%;
    min-height: 38px;
  }

  .admin-hero {
    min-height: 0;
    padding: 16px;
  }

  .admin-hero .sales-hero-copy h2 {
    font-size: 2rem;
  }

  .admin-login {
    width: 100%;
  }

  .admin-shell .panel-title {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-shell .panel-actions {
    justify-content: stretch;
  }

  .admin-shell .panel-actions > * {
    width: 100%;
  }

  .admin-shell .table-wrap {
    border: 0;
    overflow-x: visible;
  }

  .admin-shell .data-table {
    min-width: 0;
    width: 100%;
    display: block;
  }

  .admin-shell .data-table thead {
    display: none;
  }

  .admin-shell .data-table tbody,
  .admin-shell .data-table tr,
  .admin-shell .data-table td {
    display: block;
    width: 100%;
  }

  .admin-shell .data-table tr {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }

  .admin-shell .data-table td {
    padding: 7px 0;
    border-bottom: 1px solid #eef2ef;
    overflow-wrap: anywhere;
  }

  .admin-shell .data-table td:last-child {
    border-bottom: 0;
  }

  .admin-shell .data-table td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  #adminUsers td:nth-child(1)::before {
    content: "Utilisateur";
  }

  #adminUsers td:nth-child(2)::before {
    content: "Identifiant";
  }

  #adminUsers td:nth-child(3)::before {
    content: "Telephone";
  }

  #adminUsers td:nth-child(4)::before {
    content: "Statut";
  }

  #adminUsers td:nth-child(5)::before {
    content: "Créé";
  }

  #adminUsers td:nth-child(6)::before {
    content: "Action";
  }

  #adminAccessGrants td:nth-child(1)::before {
    content: "Client";
  }

  #adminAccessGrants td:nth-child(2)::before {
    content: "Identifiant";
  }

  #adminAccessGrants td:nth-child(3)::before {
    content: "Telephone";
  }

  #adminAccessGrants td:nth-child(4)::before {
    content: "Etat";
  }

  #adminAccessGrants td:nth-child(5)::before {
    content: "Cree";
  }

  #adminAccessGrants td:nth-child(6)::before {
    content: "Utilise";
  }

  #adminAccessGrants td:nth-child(7)::before {
    content: "Action";
  }

  #adminManualRequests td:nth-child(1)::before {
    content: "Ref";
  }

  #adminManualRequests td:nth-child(2)::before {
    content: "Client";
  }

  #adminManualRequests td:nth-child(3)::before {
    content: "Telephone";
  }

  #adminManualRequests td:nth-child(4)::before {
    content: "Pays";
  }

  #adminManualRequests td:nth-child(5)::before {
    content: "Montant";
  }

  #adminManualRequests td:nth-child(6)::before {
    content: "Code";
  }

  #adminManualRequests td:nth-child(7)::before {
    content: "Etat";
  }

  #adminManualRequests td:nth-child(8)::before {
    content: "Date";
  }

  #adminManualRequests td:nth-child(9)::before {
    content: "Action";
  }

  #adminAffiliate td:nth-child(1)::before {
    content: "Code";
  }

  #adminAffiliate td:nth-child(2)::before {
    content: "Partenaire";
  }

  #adminAffiliate td:nth-child(3)::before {
    content: "Paiement";
  }

  #adminAffiliate td:nth-child(4)::before {
    content: "Accès dus";
  }

  #adminAffiliate td:nth-child(5)::before {
    content: "Commission due";
  }

  #adminAffiliate td:nth-child(6)::before {
    content: "Créé";
  }

  #adminPurchases td:nth-child(1)::before {
    content: "Utilisateur";
  }

  #adminPurchases td:nth-child(2)::before {
    content: "Identifiant";
  }

  #adminPurchases td:nth-child(3)::before {
    content: "Montant";
  }

  #adminPurchases td:nth-child(4)::before {
    content: "Moyen";
  }

  #adminPurchases td:nth-child(5)::before {
    content: "Code";
  }

  #adminPurchases td:nth-child(6)::before {
    content: "Date";
  }

  #adminPayouts td:nth-child(1)::before {
    content: "Paiement";
  }

  #adminPayouts td:nth-child(2)::before {
    content: "Code";
  }

  #adminPayouts td:nth-child(3)::before {
    content: "Acces payes";
  }

  #adminPayouts td:nth-child(4)::before {
    content: "Montant paye";
  }

  #adminPayouts td:nth-child(5)::before {
    content: "Date";
  }

  #adminPayouts td:nth-child(6)::before {
    content: "Date";
  }

  .admin-shell .table-action {
    width: 100%;
  }

  .admin-access-result-head,
  .admin-access-result-actions,
  .admin-access-credentials {
    grid-template-columns: 1fr;
  }

  .admin-access-result-head,
  .admin-access-result-actions {
    display: grid;
  }
}

@media (max-width: 380px) {
  .content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bottom-nav button {
    font-size: 0.6rem;
  }

  .topbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bottom-nav button {
    font-size: 0.6rem;
  }

  .topbar-actions {
    gap: 5px;
  }

  .access-chip {
    padding-left: 7px;
    padding-right: 7px;
  }
}

/* Premium application skin */
:root {
  --ink: #f6fff9;
  --muted: #9fb0a7;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #061510;
  --panel: rgba(255, 255, 255, 0.085);
  --brand: #6cf26f;
  --brand-strong: #b9ff4f;
  --brand-glow: #60f19b;
  --accent: #f28a2e;
  --accent-soft: #ffd77d;
  --gold: #ffd77d;
  --danger: #ff4d64;
  --good: #49e58d;
  --blue: #66b7ff;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 16% -10%, rgba(255, 215, 125, 0.2), transparent 290px),
    radial-gradient(circle at 88% 0%, rgba(108, 242, 111, 0.18), transparent 280px),
    linear-gradient(180deg, #061510 0, #09251d 42%, #061510 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 72%);
}

.app-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.topbar,
.public-locked .topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(3, 18, 13, 0.98), rgba(7, 36, 26, 0.96)),
    #061510;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.brandmark {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(90deg, transparent 46%, rgba(10, 26, 20, 0.92) 47%, rgba(10, 26, 20, 0.92) 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(10, 26, 20, 0.92) 47%, rgba(10, 26, 20, 0.92) 53%, transparent 54%),
    radial-gradient(circle at 30% 24%, #ffbd64, #f27a1a 70%);
  box-shadow:
    0 12px 26px rgba(242, 122, 26, 0.36),
    0 0 0 5px rgba(255, 255, 255, 0.08);
}

.brandmark::before,
.brandmark::after,
.brandmark span {
  border-color: rgba(10, 26, 20, 0.9);
}

.topbar .eyebrow,
.eyebrow {
  color: var(--gold);
}

.access-chip {
  color: #061510;
  border-color: rgba(185, 255, 79, 0.5);
  background: linear-gradient(135deg, rgba(185, 255, 79, 0.95), rgba(96, 241, 155, 0.92));
}

.access-chip.locked {
  color: #ffd77d;
  border-color: rgba(255, 215, 125, 0.24);
  background: rgba(255, 255, 255, 0.075);
}

.simple-sales-home {
  min-height: calc(100svh - 161px);
  background:
    radial-gradient(circle at 50% 7%, rgba(185, 255, 79, 0.27), transparent 158px),
    radial-gradient(circle at 18% 84%, rgba(242, 138, 46, 0.16), transparent 178px),
    linear-gradient(180deg, #061510 0, #09251d 48%, #061510 100%);
}

.simple-offer {
  position: relative;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.simple-offer::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  border-radius: 29px;
  background:
    linear-gradient(145deg, rgba(185, 255, 79, 0.14), transparent 44%),
    radial-gradient(circle at 12% 20%, rgba(255, 215, 125, 0.16), transparent 105px);
}

.simple-offer::after {
  position: absolute;
  right: -34px;
  top: -34px;
  width: 116px;
  height: 116px;
  content: "";
  border: 1px solid rgba(185, 255, 79, 0.18);
  border-radius: 50%;
}

.simple-kicker {
  color: var(--gold) !important;
}

.simple-offer h2 {
  text-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.simple-price {
  color: var(--brand-strong) !important;
  text-shadow: 0 12px 30px rgba(185, 255, 79, 0.18);
}

.premium-cta,
.manual-primary-pay,
.whatsapp-pay {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #061510;
  border: 2px solid #ff3148;
  border-radius: 20px;
  background: linear-gradient(135deg, #b9ff4f 0, #72f970 48%, #4de1a0 100%);
  box-shadow:
    0 18px 38px rgba(96, 241, 155, 0.24),
    inset 0 -5px 0 rgba(0, 0, 0, 0.12);
  min-height: 58px;
  max-width: 100%;
  padding: 12px 10px;
  text-decoration: none;
  white-space: nowrap;
}

.premium-cta::after,
.manual-primary-pay::after,
.whatsapp-pay::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  animation: premiumShine 4.4s ease-in-out infinite;
}

.premium-cta > *,
.manual-primary-pay > *,
.whatsapp-pay > * {
  position: relative;
  z-index: 1;
}

.premium-cta strong {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(0.98rem, 4.5vw, 1.12rem);
  line-height: 1;
}

.whatsapp-pay .whatsapp-cta-icon,
.premium-cta .whatsapp-cta-icon {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: #ffffff;
  border-radius: 50%;
  background: #075e54;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 8px 18px rgba(0, 0, 0, 0.22);
}

.whatsapp-pay strong {
  display: block;
  min-width: 0;
  flex: 0 1 auto;
  white-space: nowrap;
  font-size: clamp(0.72rem, 3.25vw, 1rem);
  line-height: 1;
  letter-spacing: 0;
}

.whatsapp-pay .whatsapp-cta-icon svg,
.premium-cta .whatsapp-cta-icon svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.whatsapp-pay.manual-primary-pay {
  box-sizing: border-box;
  gap: 7px;
  min-width: 0;
  padding-inline: 8px;
}

.whatsapp-pay.manual-primary-pay strong {
  font-size: clamp(0.68rem, 3.05vw, 0.96rem);
}

.simple-login,
button.secondary,
.install-button {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.simple-note {
  color: rgba(255, 255, 255, 0.72) !important;
}

.hero-strip,
.conversion-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(5, 26, 19, 0.96), rgba(10, 75, 53, 0.9) 64%, rgba(242, 138, 46, 0.78)),
    #082017;
  box-shadow: var(--shadow);
}

.panel,
.status-card,
.prediction-card,
.training-card,
.device-card,
.notice,
.affiliate-main-card,
.affiliate-cycle-note,
.admin-shell .panel {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.065)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.15);
}

.panel:hover {
  border-color: rgba(185, 255, 79, 0.25);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.panel h3,
.panel h4,
.empty-state strong,
.status-card strong,
.prediction-card strong,
.training-card strong,
.device-card strong,
.notice strong {
  color: #ffffff;
}

.muted,
.fine-print,
.status-card span,
.prediction-card span,
.training-card p,
.device-card small,
.notice span,
label {
  color: rgba(230, 244, 235, 0.68);
}

input,
select,
textarea {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(185, 255, 79, 0.55);
  box-shadow: 0 0 0 4px rgba(185, 255, 79, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: rgba(230, 244, 235, 0.42);
}

button.primary {
  color: #061510;
  border-radius: 18px;
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
  box-shadow: 0 15px 32px rgba(96, 241, 155, 0.22);
}

button.primary:hover {
  background: linear-gradient(135deg, #d7ff7d, #78f4aa);
}

button.danger {
  border-radius: 18px;
  background: linear-gradient(135deg, #ff4d64, #d9203b);
}

.segmented {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.2);
}

.segmented button {
  border-radius: 14px;
  color: rgba(230, 244, 235, 0.58);
}

.segmented button.active {
  color: #061510;
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
  box-shadow: 0 12px 26px rgba(96, 241, 155, 0.18);
}

.table-wrap,
.data-table {
  border-color: rgba(255, 255, 255, 0.1);
}

.data-table th {
  color: #ffd77d;
  background: rgba(255, 255, 255, 0.07);
}

.data-table td {
  color: rgba(246, 255, 249, 0.84);
  border-color: rgba(255, 255, 255, 0.08);
}

.data-table tr.current-level {
  background: rgba(185, 255, 79, 0.1);
}

.bottom-nav {
  width: min(calc(100% - 18px), 840px);
  bottom: 9px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(4, 17, 13, 0.9);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px) saturate(1.25);
}

.bottom-nav button {
  min-height: 54px;
  color: rgba(255, 255, 255, 0.64);
  border-radius: 18px;
}

.bottom-nav button.active {
  color: #061510;
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
  box-shadow: 0 12px 26px rgba(96, 241, 155, 0.2);
}

.bottom-nav button::before {
  background: rgba(255, 255, 255, 0.11);
}

.bottom-nav button.active::before {
  background: rgba(6, 21, 16, 0.12);
}

.modal-backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px);
}

.checkout-card {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px 26px 0 0;
  background:
    linear-gradient(180deg, rgba(12, 41, 31, 0.98), rgba(6, 21, 16, 0.98)),
    #061510;
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.46);
}

.modal-close {
  z-index: 3;
  color: #061510;
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #ffffff, #dfffe8);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  font-size: 1.45rem;
  font-weight: 1000;
}

.checkout-card h2,
.checkout-card label {
  color: #ffffff;
}

.checkout-copy {
  color: rgba(230, 244, 235, 0.68);
}

.promo-notice,
.checkout-message {
  border-radius: 16px;
  border-color: rgba(185, 255, 79, 0.18);
  background: rgba(185, 255, 79, 0.09);
}

@keyframes premiumShine {
  0%,
  58% {
    transform: translateX(-120%);
  }
  76%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 10px;
  }

  .simple-offer {
    max-width: 100%;
  }

  .bottom-nav {
    width: calc(100% - 12px);
    border-radius: 20px;
  }

  .bottom-nav button {
    min-height: 50px;
    padding-right: 2px;
    padding-left: 2px;
  }
}

@media (min-width: 900px) and (pointer: fine) {
  body:not(.admin-page) .app-shell {
    display: none;
  }

  body:not(.admin-page) .desktop-blocker {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #ffffff;
    background:
      radial-gradient(circle at 50% 18%, rgba(185, 255, 79, 0.18), transparent 240px),
      linear-gradient(180deg, #061510, #09251d);
    text-align: center;
  }

  body:not(.admin-page) .desktop-blocker > div {
    display: grid;
    gap: 10px;
    width: min(100%, 420px);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  body:not(.admin-page) .desktop-blocker strong {
    font-size: 1.5rem;
  }

  body:not(.admin-page) .desktop-blocker span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
  }
}

body.admin-page {
  --ink: #10241f;
  --muted: #5c6c64;
  --line: rgba(16, 36, 31, 0.14);
  --paper: #f4f7f4;
  --panel: #ffffff;
  --brand: #0c6f55;
  --brand-strong: #075f43;
  --accent: #d29d46;
  --danger: #e43d54;
  --good: #0a8a5f;
  color: #10241f;
  background: #f4f7f4;
}

.admin-page .app-shell,
.admin-page .content {
  color: #10241f;
}

.admin-page .panel,
.admin-page .metric-card,
.admin-page .admin-action-card,
.admin-page .admin-main-panel,
.admin-page .admin-content-panel,
.admin-page .admin-secondary-panel,
.admin-page .admin-technical-panel {
  color: #10241f;
}

.admin-page .muted,
.admin-page .admin-action-card span,
.admin-page .admin-payment-flow span,
.admin-page .panel-title span {
  color: #5c6c64;
}

.admin-page input,
.admin-page select,
.admin-page textarea {
  color: #10241f;
  border-color: rgba(16, 36, 31, 0.16);
  background: #ffffff;
}

.admin-page input::placeholder,
.admin-page textarea::placeholder {
  color: rgba(16, 36, 31, 0.46);
}

.admin-page button.primary {
  color: #061510;
  border: 1px solid rgba(185, 255, 79, 0.45);
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
  box-shadow: 0 15px 30px rgba(12, 111, 85, 0.18);
}

.admin-page button.secondary,
.admin-page a.secondary,
.admin-page .install-button,
.admin-page .table-action.secondary {
  color: #10241f;
  border-color: rgba(16, 36, 31, 0.18);
  background: #ffffff;
}

.admin-page button.secondary:hover,
.admin-page a.secondary:hover,
.admin-page .install-button:hover,
.admin-page .table-action.secondary:hover {
  color: #061510;
  border-color: rgba(12, 111, 85, 0.42);
  background: rgba(12, 111, 85, 0.08);
}

.admin-page .data-table th {
  color: #10241f;
  background: rgba(12, 111, 85, 0.08);
}

.admin-page .data-table td {
  color: #10241f;
}

/* Admin readability guard: keep the back-office on a clean light theme. */
body.admin-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(210, 157, 70, 0.15), transparent 260px),
    radial-gradient(circle at 92% 0%, rgba(12, 111, 85, 0.14), transparent 280px),
    #f4f7f4 !important;
}

.admin-page .app-shell,
.admin-page .content {
  color: #10241f !important;
  background: transparent !important;
}

.admin-page .panel,
.admin-page .metric-card,
.admin-page .admin-action-card,
.admin-page .admin-main-panel,
.admin-page .admin-content-panel,
.admin-page .admin-secondary-panel,
.admin-page .admin-technical-panel,
.admin-page .admin-guide-panel,
.admin-page .table-wrap,
.admin-page .data-table tr {
  color: #10241f !important;
  border-color: rgba(16, 36, 31, 0.14) !important;
  background: #ffffff !important;
  box-shadow: 0 14px 32px rgba(16, 36, 31, 0.08) !important;
  backdrop-filter: none !important;
}

.admin-page .admin-main-panel {
  border-color: rgba(12, 111, 85, 0.2) !important;
  background: linear-gradient(180deg, #ffffff, #f7fffb) !important;
}

.admin-page .admin-content-panel {
  border-color: rgba(38, 91, 143, 0.16) !important;
  background: linear-gradient(180deg, #ffffff, #f8fbff) !important;
}

.admin-page .admin-technical-panel {
  border-style: dashed !important;
  background: #f8fbfa !important;
}

.admin-page .admin-guide-panel {
  background:
    linear-gradient(135deg, #fffaf0, #ffffff 48%, #f4fffa) !important;
}

.admin-page .panel h2,
.admin-page .panel h3,
.admin-page .panel h4,
.admin-page .panel p,
.admin-page .panel label,
.admin-page .metric-card strong,
.admin-page .admin-action-card strong,
.admin-page .empty-state strong,
.admin-page .data-table td,
.admin-page .data-table th {
  color: #10241f !important;
}

.admin-page .muted,
.admin-page .fine-print,
.admin-page .panel-title span,
.admin-page .metric-card span,
.admin-page .admin-action-card span,
.admin-page .admin-payment-flow span,
.admin-page .empty-state,
.admin-page .data-table td::before {
  color: #5c6c64 !important;
}

.admin-page .eyebrow,
.admin-page .card-kicker {
  color: #9c6b10 !important;
}

.admin-page .topbar,
.admin-page .admin-hero,
.admin-page .sales-hero {
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(6, 21, 16, 0.98), rgba(12, 111, 85, 0.94) 58%, rgba(242, 138, 46, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 42px) !important;
}

.admin-page .topbar h1,
.admin-page .topbar .eyebrow,
.admin-page .admin-hero h2,
.admin-page .admin-hero p,
.admin-page .admin-hero .eyebrow,
.admin-page .sales-hero h2,
.admin-page .sales-hero p,
.admin-page .sales-hero .eyebrow {
  color: #ffffff !important;
}

.admin-page .topbar .eyebrow,
.admin-page .admin-hero .eyebrow,
.admin-page .sales-hero .eyebrow {
  color: #ffd77d !important;
}

.admin-page .admin-login,
.admin-page .sales-card {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: rgba(255, 255, 255, 0.14) !important;
}

.admin-page .admin-login label,
.admin-page .sales-card label,
.admin-page .admin-login .card-kicker {
  color: #ffffff !important;
}

.admin-page .admin-payment-flow,
.admin-page .admin-list-toolbar {
  color: #10241f !important;
  border-color: rgba(12, 111, 85, 0.18) !important;
  background: rgba(12, 111, 85, 0.07) !important;
}

.admin-page .admin-section-label {
  color: #ffffff !important;
  background: #10241f !important;
}

.admin-page input,
.admin-page select,
.admin-page textarea {
  color: #10241f !important;
  border-color: rgba(16, 36, 31, 0.18) !important;
  background: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(16, 36, 31, 0.04) !important;
}

.admin-page input::placeholder,
.admin-page textarea::placeholder {
  color: rgba(16, 36, 31, 0.48) !important;
}

.admin-page button.primary {
  color: #061510 !important;
  border-color: #ff3148 !important;
  background: linear-gradient(135deg, #b9ff4f, #60f19b) !important;
}

.admin-page button.secondary,
.admin-page a.secondary,
.admin-page .install-button,
.admin-page .table-action.secondary {
  color: #10241f !important;
  border-color: rgba(16, 36, 31, 0.2) !important;
  background: #ffffff !important;
}

.admin-page .checkout-message {
  color: #23486f !important;
  border-color: rgba(40, 91, 143, 0.22) !important;
  background: #eef6ff !important;
}

.admin-page .checkout-message.success {
  color: #075f43 !important;
  border-color: rgba(10, 138, 95, 0.24) !important;
  background: #eafaf3 !important;
}

.admin-page .checkout-message.error {
  color: #8c1d29 !important;
  border-color: rgba(186, 38, 54, 0.24) !important;
  background: #fff0f2 !important;
}

.admin-page .status-pill {
  color: #10241f !important;
  background: #edf3ef !important;
}

.admin-page .status-pill.pending {
  color: #6c4a08 !important;
  background: #fff4d8 !important;
}

.admin-page .status-pill.used,
.admin-page .status-pill.approved {
  color: #075f43 !important;
  background: #e6f8ef !important;
}

.admin-page .status-pill.replaced,
.admin-page .status-pill.cancelled {
  color: #8c1d29 !important;
  background: #ffedef !important;
}

.admin-page .admin-access-result,
.admin-page .admin-access-result * {
  color: #ffffff !important;
}

.admin-page .admin-access-result {
  border-color: rgba(185, 255, 79, 0.32) !important;
  background:
    linear-gradient(135deg, rgba(6, 21, 16, 0.98), rgba(12, 111, 85, 0.92)) !important;
}

.admin-page .admin-access-credentials span {
  color: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.admin-page .admin-access-credentials strong {
  color: #b9ff4f !important;
}

.admin-page .admin-access-result button.secondary,
.admin-page .admin-access-result .table-action.secondary {
  color: #061510 !important;
  border-color: #b9ff4f !important;
  background: linear-gradient(135deg, #b9ff4f, #60f19b) !important;
}

body:not(.admin-page) .metric-card,
body:not(.admin-page) .ledger-row,
body:not(.admin-page) .device-card {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.065)),
    rgba(6, 21, 16, 0.86);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

body:not(.admin-page) .metric-card span,
body:not(.admin-page) .ledger-row span,
body:not(.admin-page) .device-card span,
body:not(.admin-page) .device-card small {
  color: rgba(230, 244, 235, 0.72);
}

body:not(.admin-page) .metric-card strong,
body:not(.admin-page) .ledger-row strong,
body:not(.admin-page) .device-card strong {
  color: #b9ff4f;
}

body:not(.admin-page) .empty-state {
  color: rgba(230, 244, 235, 0.72);
}

body:not(.admin-page) .mini-support-link {
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px 8px 9px;
  color: #061510;
  border: 1px solid #ff3148;
  border-radius: 999px;
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
  box-shadow: 0 14px 28px rgba(96, 241, 155, 0.18);
}

body:not(.admin-page) .mini-support-link .whatsapp-cta-icon {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  color: #ffffff;
  border-radius: 50%;
  background: #075e54;
}

body:not(.admin-page) .mini-support-link strong {
  color: #061510;
}

body:not(.admin-page) .mini-support-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

body:not(.admin-page).premium-unlocked .bottom-nav [data-target="home"] {
  display: none;
}

body:not(.admin-page).premium-unlocked .bottom-nav {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body:not(.admin-page) .status-card,
body:not(.admin-page) .auto-reading-card,
body:not(.admin-page) .recommendation,
body:not(.admin-page) .history-row,
body:not(.admin-page) .summary-chip,
body:not(.admin-page) .ticket-order div,
body:not(.admin-page) .coupon-guide-card,
body:not(.admin-page) .sales-band article,
body:not(.admin-page) .feature-grid article,
body:not(.admin-page) .sales-section,
body:not(.admin-page) .method-button {
  color: #f6fff9;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(6, 21, 16, 0.86);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

body:not(.admin-page) .status-high {
  border-color: rgba(96, 241, 155, 0.38);
  background:
    linear-gradient(145deg, rgba(96, 241, 155, 0.17), rgba(255, 255, 255, 0.06)),
    rgba(6, 21, 16, 0.9);
}

body:not(.admin-page) .status-mid {
  border-color: rgba(255, 215, 125, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 215, 125, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(6, 21, 16, 0.9);
}

body:not(.admin-page) .status-low {
  border-color: rgba(255, 95, 112, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 95, 112, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(6, 21, 16, 0.9);
}

body:not(.admin-page) .reading-grid div,
body:not(.admin-page) .decision-details div,
body:not(.admin-page) .backup-pick,
body:not(.admin-page) .ticket-pick,
body:not(.admin-page) .primary-pick,
body:not(.admin-page) .coupon-step,
body:not(.admin-page) .history-row.win,
body:not(.admin-page) .history-row.loss {
  color: #f6fff9;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(2, 16, 12, 0.32);
}

body:not(.admin-page) .reading-grid span,
body:not(.admin-page) .decision-details span,
body:not(.admin-page) .ticket-order span,
body:not(.admin-page) .summary-chip span,
body:not(.admin-page) .history-row span,
body:not(.admin-page) .primary-pick small,
body:not(.admin-page) .backup-pick,
body:not(.admin-page) .ticket-pick small,
body:not(.admin-page) .coupon-step span:last-child,
body:not(.admin-page) .auto-reading-card p,
body:not(.admin-page) .ticket-card p,
body:not(.admin-page) .check-item span,
body:not(.admin-page) .recommendation .muted {
  color: rgba(230, 244, 235, 0.82) !important;
}

body:not(.admin-page) .reading-grid strong,
body:not(.admin-page) .decision-details strong,
body:not(.admin-page) .ticket-order strong,
body:not(.admin-page) .summary-chip strong,
body:not(.admin-page) .history-row strong,
body:not(.admin-page) .recommendation strong,
body:not(.admin-page) .check-item strong {
  color: #ffffff !important;
}

body:not(.admin-page) .reading-grid span,
body:not(.admin-page) .decision-details span,
body:not(.admin-page) .ticket-order span {
  color: #ffd77d !important;
}

body:not(.admin-page) .check-item {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

body:not(.admin-page) .primary-pick > span,
body:not(.admin-page) .ticket-pick > span,
body:not(.admin-page) .coupon-step span:first-child {
  color: #061510;
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
  box-shadow: 0 10px 22px rgba(96, 241, 155, 0.2);
}

body:not(.admin-page) .pill.plus {
  color: #063e2e;
  background: #caffdc;
}

body:not(.admin-page) .pill.minus {
  color: #7d1624;
  background: #ffe1e6;
}

body:not(.admin-page) .data-table {
  color: #f6fff9;
  background: rgba(6, 21, 16, 0.9);
}

body:not(.admin-page) .data-table th {
  color: #ffd77d;
  background: rgba(255, 255, 255, 0.08);
}

body:not(.admin-page) .data-table td {
  color: rgba(246, 255, 249, 0.86);
  border-color: rgba(255, 255, 255, 0.08);
}

body:not(.admin-page) .data-table tr.current-level {
  background: rgba(185, 255, 79, 0.12);
}

body:not(.admin-page) .method-button.active {
  color: #061510;
  border-color: rgba(185, 255, 79, 0.7);
  background: linear-gradient(135deg, #b9ff4f, #60f19b);
}

body:not(.admin-page) .landing-phone,
body:not(.admin-page) .landing-phone strong {
  color: #10241f;
}

body:not(.admin-page) .landing-phone small {
  color: #5b6a61;
}

body:not(.admin-page) .landing-prices strong {
  color: #075f43;
}

#adminAffiliate td:nth-child(3)::before {
  content: "Acces";
}

#adminAffiliate td:nth-child(4)::before {
  content: "Commission";
}

#adminAffiliate td:nth-child(5)::before {
  content: "Etat";
}

#adminAffiliate td:nth-child(6)::before {
  content: "Action";
}

#adminPayouts td:nth-child(1)::before {
  content: "Paiement";
}

#adminPayouts td:nth-child(2)::before {
  content: "Code";
}

#adminPayouts td:nth-child(3)::before {
  content: "Acces payes";
}

#adminPayouts td:nth-child(4)::before {
  content: "Montant paye";
}

#adminPayouts td:nth-child(5)::before {
  content: "Date";
}

.affiliate-ready-row {
  outline: 2px solid rgba(185, 255, 79, 0.8);
  outline-offset: -2px;
}

@media (max-width: 380px) {
  .premium-cta strong {
    font-size: 0.92rem;
  }

  .simple-offer .premium-cta {
    gap: 7px;
    padding-inline: 8px;
  }
}

@media print {
  body > *:not(.privacy-shield) {
    display: none !important;
  }

  .privacy-shield {
    display: grid !important;
  }
}
