:root {
  --bg: #0b1116;
  --bg-soft: #111a21;
  --surface: rgba(13, 22, 29, 0.82);
  --surface-strong: #101b23;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.04);
  --text: #edf2f4;
  --muted: #9ab0bc;
  --accent: #5fd3a4;
  --accent-strong: #1cb88b;
  --accent-warm: #f4b66a;
  --danger: #ff7676;
  --pending: #f2c66d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(95, 211, 164, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(244, 182, 106, 0.18), transparent 28%),
    linear-gradient(180deg, #081017 0%, #0a1118 100%);
  color: var(--text);
}

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

code {
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-warm);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #052116;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
  border-color: transparent;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.button-danger {
  background: rgba(255, 118, 118, 0.08);
  border-color: rgba(255, 118, 118, 0.32);
  color: #ffd8d8;
}

.button-disabled {
  opacity: 0.65;
  cursor: default;
}

.button-mini {
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem;
}

.button-full {
  width: 100%;
}

.hero,
.section,
.metrics-strip,
.login-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 4rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1,
.login-card h1,
.admin-topbar h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.hero-text {
  max-width: 56ch;
  margin: 1.25rem 0 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-poster {
  padding-top: 3.4rem;
}

.hero-poster .hero-grid {
  min-height: calc(100svh - 8rem);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(244, 182, 106, 0.96), rgba(95, 211, 164, 0.96));
  color: #04160e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.brand-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  color: var(--text);
  line-height: 1.65;
}

.hero-points li::before {
  content: '';
  width: 10px;
  height: 10px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
  box-shadow: 0 0 0 6px rgba(95, 211, 164, 0.08);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.proof-row-wide {
  margin-top: 1.8rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 1.4rem;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(244, 182, 106, 0.2), transparent 28%),
    radial-gradient(circle at left center, rgba(95, 211, 164, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 29, 37, 0.95), rgba(8, 14, 19, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: posterFloat 9s ease-in-out infinite;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 1.2rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.visual-ribbon,
.sheet-preview,
.visual-footer {
  position: relative;
  z-index: 1;
}

.visual-ribbon {
  display: inline-grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 16, 0.56);
  backdrop-filter: blur(10px);
}

.visual-ribbon span,
.visual-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-ribbon strong,
.visual-footer strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.sheet-preview {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 16, 0.72);
  backdrop-filter: blur(12px);
}

.sheet-head,
.sheet-row {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr 1fr 0.9fr 0.55fr;
  gap: 0.75rem;
  align-items: center;
}

.sheet-head {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sheet-row {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.sheet-row:last-child {
  border-bottom: 0;
}

.visual-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.visual-footer div {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel,
.surface,
.panel-box,
.login-card,
.stat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(19, 29, 37, 0.82), rgba(9, 17, 23, 0.9));
  box-shadow: var(--shadow);
}

.hero-panel::before,
.surface::before,
.panel-box::before,
.login-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(95, 211, 164, 0.12), transparent 42%, rgba(244, 182, 106, 0.1));
  pointer-events: none;
}

.hero-panel {
  min-height: 420px;
  padding: 1.5rem;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.hero-stack {
  display: grid;
  gap: 1rem;
}

.hero-stack div,
.split-list div {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.hero-stack strong,
.split-list strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.hero-stack span,
.split-list span {
  color: var(--muted);
  line-height: 1.7;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--line);
}

.metrics-strip article {
  padding: 1.4rem;
  background: rgba(7, 14, 19, 0.88);
}

.metrics-strip strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.metrics-strip span {
  color: var(--muted);
}

.section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.surface,
.split-section,
.final-cta {
  border-radius: 28px;
  padding: 2rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
}

.split-copy h2,
.section-head h2,
.final-cta h2,
.panel-box h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.split-copy p,
.final-cta p {
  color: var(--muted);
  line-height: 1.8;
}

.steps-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.steps-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
}

.steps-list article span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
}

.steps-list h3 {
  margin: 0;
  font-size: 1.1rem;
}

.steps-list p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.feature-card,
.faq-item {
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.feature-card strong,
.faq-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.04rem;
}

.feature-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 1rem;
}

.offer-price strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.05em;
}

.offer-price small,
.mini-note {
  color: var(--muted);
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
}

.admin-link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(130deg, rgba(95, 211, 164, 0.12), rgba(9, 17, 23, 0.94) 45%, rgba(244, 182, 106, 0.08));
}

.final-cta-clean .hero-actions {
  justify-content: flex-end;
}

.offer-section .split-list,
.data-preview-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.offer-section .split-list div,
.data-preview-col {
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.data-preview-col strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.install-actions {
  margin-top: 1.8rem;
}

.login-body {
  display: grid;
  min-height: 100vh;
}

.login-wrap {
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.login-card {
  width: min(560px, 100%);
  padding: 2rem;
  border-radius: 28px;
}

.login-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  outline: none;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(95, 211, 164, 0.72);
  box-shadow: 0 0 0 4px rgba(95, 211, 164, 0.08);
}

textarea {
  resize: vertical;
}

.login-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1.4rem;
  color: var(--muted);
}

.flash {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.flash-success {
  background: rgba(95, 211, 164, 0.1);
  border-color: rgba(95, 211, 164, 0.32);
}

.flash-error {
  background: rgba(255, 118, 118, 0.1);
  border-color: rgba(255, 118, 118, 0.32);
}

.access-card {
  width: min(820px, 100%);
}

.status-panel {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.status-panel strong {
  font-size: 1.02rem;
}

.status-panel span {
  color: var(--muted);
  line-height: 1.7;
}

.access-detail-list {
  margin-top: 1.2rem;
}

.license-code-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(95, 211, 164, 0.28);
  background: rgba(95, 211, 164, 0.08);
}

.license-code-box span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
}

.license-code-box strong {
  display: block;
  margin-top: 0.55rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: 0.08em;
}

.access-surface {
  margin-top: 1.4rem;
}

.compact-steps {
  margin-top: 1rem;
}

.admin-body {
  min-height: 100vh;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  background: rgba(7, 13, 18, 0.94);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-mark {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(95, 211, 164, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
}

.brand-mark strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
}

.brand-kicker,
.brand-mark small {
  color: var(--muted);
}

.admin-nav {
  display: grid;
  gap: 0.25rem;
}

.admin-nav a {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 700;
}

.admin-nav a:hover,
.admin-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-card {
  margin-top: auto;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.admin-main {
  padding: 1.6rem;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.admin-topbar h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.admin-user {
  display: grid;
  gap: 0.2rem;
  text-align: right;
  color: var(--muted);
}

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

.stat-card {
  border-radius: 24px;
  padding: 1.4rem;
}

.stat-card span,
.stat-card small {
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin: 0.5rem 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.compact-stats {
  margin-top: 1rem;
}

.stat-card-compact strong {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.admin-section,
.panel-box {
  margin-top: 1.4rem;
}

.panel-box,
.admin-section {
  border-radius: 26px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 25, 33, 0.9), rgba(10, 18, 24, 0.92));
}

.admin-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.section-title-row h2 {
  margin: 0;
  font-size: 1.55rem;
  font-family: 'Space Grotesk', sans-serif;
}

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

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(10, 18, 24, 0.97);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.table-subline {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.empty-row {
  color: var(--muted);
  text-align: center;
}

.status-pill {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 211, 164, 0.3);
  background: rgba(95, 211, 164, 0.08);
  color: #c7f8e5;
  font-size: 0.8rem;
  font-weight: 800;
}

.status-active {
  border-color: rgba(95, 211, 164, 0.3);
  background: rgba(95, 211, 164, 0.08);
  color: #c7f8e5;
}

.status-pending {
  border-color: rgba(242, 198, 109, 0.3);
  background: rgba(242, 198, 109, 0.08);
  color: #ffe7b5;
}

.status-revoked {
  border-color: rgba(255, 118, 118, 0.3);
  background: rgba(255, 118, 118, 0.08);
  color: #ffd7d7;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0;
}

.detail-list div {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-soft);
}

.detail-list dt {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 800;
}

.detail-list dd {
  margin: 0.45rem 0 0;
}

.audit-details {
  width: min(340px, 100%);
}

.audit-details summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
}

.audit-details pre {
  margin: 0.8rem 0 0;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: pre-wrap;
  word-break: break-word;
  font: 0.8rem/1.6 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-section,
  .feature-grid,
  .faq-grid,
  .admin-grid,
  .detail-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-poster .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .metrics-strip,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .form-grid-two,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .section-title-row,
  .login-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-user {
    text-align: left;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .brand-lockup {
    align-items: flex-start;
  }

  .hero-actions,
  .cta-actions,
  .install-actions {
    width: 100%;
  }

  .hero-actions .button,
  .cta-actions .button,
  .install-actions .button {
    width: 100%;
  }

  .offer-section .split-list,
  .data-preview-board,
  .visual-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 1rem;
  }

  .sheet-head {
    display: none;
  }

  .sheet-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .sheet-row span::before {
    content: '';
  }
}

/* ===== 2026 refresh: landing + admin inspired by sales-layout ===== */

:root {
  --bg: #08111c;
  --bg-soft: #101b29;
  --surface: rgba(18, 28, 39, 0.88);
  --surface-strong: #162231;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --text: #f8fbff;
  --muted: #98aac2;
  --accent: #10b981;
  --accent-strong: #047857;
  --accent-warm: #ffd46b;
  --danger: #ff6b6b;
  --pending: #f2c66d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

body,
input,
button,
textarea,
select {
  font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
.brand-title,
.admin-topbar h1,
.section-heading h2,
.landing-v2-copy h1,
.pricing-head h2 {
  font-family: 'Poppins', sans-serif;
}

.button {
  min-height: 46px;
}

.glow-button {
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.35);
}

.glow-button:hover {
  box-shadow: 0 0 36px rgba(16, 185, 129, 0.5);
}

.top-alert-bar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-alert-content {
  width: min(1240px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: #fff;
  text-align: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 800;
}

#hero-countdown {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  color: #b91c1c;
  font-size: 1.02rem;
}

.top-alert-note {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.landing-v2-body {
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 24%),
    linear-gradient(180deg, #07101a 0%, #0a1320 100%);
}

.landing-v2-hero,
.landing-v2-section {
  position: relative;
}

.landing-v2-shell,
.landing-v2-container {
  width: min(1240px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.landing-v2-hero {
  padding: 4.6rem 0 2.8rem;
  overflow: hidden;
}

.landing-v2-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 2.4rem;
  align-items: center;
}

.landing-v2-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.28;
}

.orb-primary {
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.95);
  top: 5%;
  left: 10%;
}

.orb-secondary {
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.7);
  top: 14%;
  right: 10%;
}

.landing-kicker {
  margin: 0 0 1rem;
  color: #7cf2c3;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
}

.landing-v2-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 13ch;
}

.landing-v2-copy h1 span {
  background: linear-gradient(90deg, #10b981, #9df6bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-lead {
  max-width: 56ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.landing-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.landing-proof-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.landing-v2-showcase {
  display: grid;
  gap: 1rem;
}

.vsl-card,
.mini-sheet-card,
.pain-card,
.testimonial-card,
.pricing-card,
.feature-preview-window,
.panel-box,
.stat-card,
.empty-preview-card {
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(22, 34, 49, 0.94), rgba(10, 18, 30, 0.98));
  box-shadow: var(--shadow);
}

.vsl-card {
  padding: 1.3rem;
}

.vsl-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vsl-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #9ff2d0;
  font-size: 0.8rem;
  font-weight: 800;
}

.video-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #02060c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-placeholder {
  min-height: 320px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2rem;
  color: var(--muted);
}

.video-placeholder i {
  font-size: 4rem;
  color: #10b981;
}

.vsl-caption {
  margin: 0.95rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.mini-sheet-card {
  padding: 1.2rem;
}

.mini-sheet-head,
.mini-sheet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, auto) minmax(96px, auto);
  gap: 0.75rem;
  align-items: center;
}

.mini-sheet-head {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-soft);
}

.mini-sheet-row {
  padding: 0.92rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.mini-sheet-row:last-child {
  border-bottom: 0;
}

.tag-warn,
.tag-ok {
  display: inline-flex;
  justify-content: center;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-warn {
  color: #ffd4d4;
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.32);
}

.tag-ok {
  color: #d7ffe9;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.landing-v2-section {
  padding: 5rem 0;
}

.landing-v2-section-muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p:last-child {
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.pain-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pain-card,
.testimonial-card {
  padding: 1.5rem;
}

.pain-card i {
  font-size: 2rem;
  color: #ff6b6b;
}

.pain-card strong,
.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.08rem;
}

.pain-card p,
.testimonial-card p,
.testimonial-card span {
  color: var(--muted);
  line-height: 1.8;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.feature-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.feature-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feature-checks {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.feature-checks li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
}

.feature-checks i {
  margin-top: 0.15rem;
  color: #10b981;
}

.feature-checks strong {
  display: block;
}

.feature-checks span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.7;
}

.feature-preview-card {
  position: relative;
}

.feature-preview-window {
  padding: 1.3rem;
}

.window-topbar {
  display: flex;
  gap: 0.45rem;
  padding-bottom: 1rem;
}

.window-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.window-topbar span:nth-child(1) {
  background: #ef4444;
}

.window-topbar span:nth-child(2) {
  background: #f59e0b;
}

.window-topbar span:nth-child(3) {
  background: #22c55e;
}

.window-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.window-metrics article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.window-metrics strong {
  display: block;
  font-size: 1.9rem;
}

.window-metrics span,
.window-list span {
  color: var(--muted);
}

.window-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.window-list div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.window-list strong {
  display: block;
  margin-bottom: 0.28rem;
}

.stacked-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stacked-feature-list article {
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.stacked-feature-list strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.stacked-feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.stars {
  color: #fbbf24;
  letter-spacing: 0.25em;
}

.pricing-section {
  padding-top: 3rem;
}

.pricing-card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.34);
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(18, 28, 39, 0.98), rgba(8, 14, 22, 1));
}

.pricing-ribbon {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.26);
  color: #ffb4b4;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.pricing-head h2 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.08;
}

.pricing-head p {
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.85;
}

.pricing-value {
  display: grid;
  gap: 0.15rem;
  margin-top: 1.8rem;
}

.old-price {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-size: 1.4rem;
  font-weight: 700;
}

.pricing-value strong {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.1rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

.pricing-benefits {
  display: grid;
  gap: 0.9rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e7f8f0;
  font-weight: 600;
}

.pricing-benefits i {
  color: #10b981;
}

.pricing-actions {
  margin-top: 2rem;
}

.guarantee-section {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
}

.guarantee-badge {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #8cf0c4;
  font-size: 2.4rem;
}

.guarantee-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.guarantee-section p:last-child {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.landing-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.26);
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.landing-footer-grid strong {
  display: block;
  margin-bottom: 0.6rem;
}

.landing-footer-grid p,
.landing-footer-grid span,
.landing-footer-grid a {
  display: block;
  color: var(--muted);
  line-height: 1.8;
}

.sales-popup {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(340px, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(17, 27, 40, 0.97);
  box-shadow: var(--shadow);
  transform: translateX(-120%);
  transition: transform 300ms ease;
}

.sales-popup.show {
  transform: translateX(0);
}

.sales-popup-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(16, 185, 129, 0.16);
  color: #9df2cb;
}

.sales-popup strong {
  display: block;
}

.sales-popup span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-body {
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.1), transparent 22%),
    linear-gradient(180deg, #07111a 0%, #0b1521 100%);
}

.admin-shell {
  grid-template-columns: 270px minmax(0, 1fr);
}

.admin-sidebar {
  background: rgba(14, 24, 35, 0.96);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  color: var(--muted);
}

.admin-nav a.is-active,
.admin-nav a:hover {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: #eefaf4;
}

.panel-box,
.stat-card {
  background:
    linear-gradient(180deg, rgba(21, 31, 45, 0.96), rgba(9, 16, 25, 0.98));
}

.stat-card {
  min-height: 150px;
}

.stat-card strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.admin-grid-highlight {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.panel-box-featured,
.panel-box-side {
  min-height: 100%;
}

.upload-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.upload-panel input[type="file"] {
  flex: 1 1 240px;
}

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

.video-frame-admin {
  margin-bottom: 1rem;
}

.empty-preview-card {
  min-height: 280px;
  padding: 2rem;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.8rem;
}

.empty-preview-card i {
  font-size: 3rem;
  color: var(--accent);
}

.landing-meta-list,
.landing-sync-grid {
  display: grid;
  gap: 0.9rem;
}

.landing-meta-list div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.landing-meta-list span,
.landing-sync-grid span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-sync-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.custom-scrollbar::-webkit-scrollbar,
.table-wrap::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track,
.table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

.custom-scrollbar::-webkit-scrollbar-thumb,
.table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

@media (max-width: 1080px) {
  .landing-v2-shell,
  .feature-layout,
  .pain-grid,
  .testimonial-grid,
  .stacked-feature-list,
  .landing-footer-grid,
  .landing-sync-grid,
  .admin-grid-highlight {
    grid-template-columns: 1fr;
  }

  .landing-v2-copy h1,
  .pricing-head h2,
  .section-heading h2 {
    max-width: 100%;
  }

  .window-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-v2-hero {
    padding-top: 2rem;
  }

  .top-alert-content {
    font-size: 0.85rem;
  }

  .landing-hero-actions .button {
    width: 100%;
  }

  .landing-proof-list {
    gap: 0.6rem;
  }

  .landing-proof-list span {
    width: 100%;
    justify-content: center;
  }

  .mini-sheet-head {
    display: none;
  }

  .mini-sheet-row {
    grid-template-columns: 1fr;
    padding: 0.95rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-top: 0.75rem;
  }

  .guarantee-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-badge {
    margin-inline: auto;
  }

  .sales-popup {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}

/* 2026.04.13 - sales page refresh closer to provided model */
body.promo-page {
  background:
    radial-gradient(circle at 15% 10%, rgba(16, 185, 129, 0.16), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(37, 99, 235, 0.14), transparent 22%),
    #0f172a;
  color: #e5e7eb;
  font-family: 'Inter', sans-serif;
}

.promo-page .site-shell,
.promo-page .landing-shell {
  max-width: none;
}

.promo-top-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #dc2626;
  box-shadow: 0 12px 32px rgba(127, 29, 29, 0.35);
}

.promo-top-banner__inner {
  width: min(1240px, calc(100% - 1.5rem));
  margin: 0 auto;
  min-height: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: center;
}

.promo-top-banner__inner strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 0.45rem 0.8rem;
  border-radius: 12px;
  background: #fff;
  color: #dc2626;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.promo-top-banner__stock {
  color: rgba(255, 255, 255, 0.88);
}

.promo-main {
  overflow-x: hidden;
}

.promo-container,
.promo-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.promo-hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

.promo-hero__fx {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.38;
  pointer-events: none;
}

.promo-hero__fx--left {
  top: 6rem;
  left: -4rem;
  background: rgba(16, 185, 129, 0.55);
}

.promo-hero__fx--right {
  top: 4rem;
  right: -5rem;
  background: rgba(59, 130, 246, 0.45);
}

.promo-shell {
  position: relative;
  z-index: 2;
}

.promo-kicker {
  margin: 0 0 1rem;
  color: #34d399;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-title {
  max-width: 12ch;
  margin: 0 auto;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.promo-title span {
  background: linear-gradient(90deg, #10b981, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promo-subtitle {
  max-width: 780px;
  margin: 1.5rem auto 0;
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.promo-vsl {
  max-width: 920px;
  margin: 2.5rem auto 0;
  padding: 0.9rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.promo-vsl__frame {
  overflow: hidden;
  border-radius: 22px;
  background: #020617;
  aspect-ratio: 16 / 9;
}

.promo-vsl__frame iframe,
.promo-vsl__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.promo-vsl__placeholder {
  display: grid;
  place-items: center;
  gap: 0.85rem;
  min-height: 420px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.98));
  color: #cbd5e1;
}

.promo-vsl__placeholder i {
  font-size: 5rem;
  color: #10b981;
}

.promo-vsl__caption {
  display: block;
  margin-top: 0.9rem;
  color: #94a3b8;
  font-size: 0.92rem;
}

.promo-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  padding: 1.2rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981, #4ade80);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 0 26px rgba(16, 185, 129, 0.46);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.promo-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(16, 185, 129, 0.66);
}

.promo-hero-proof {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.promo-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.promo-problems,
.promo-solution,
.promo-testimonials,
.promo-pricing,
.promo-guarantee {
  position: relative;
  padding: 5.5rem 0;
}

.promo-problems,
.promo-testimonials {
  background: rgba(30, 41, 59, 0.55);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.promo-section-head {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.promo-section-head h2,
.promo-solution__copy h2,
.promo-center-title {
  margin: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.promo-section-head p,
.promo-solution__copy > p {
  margin: 1rem 0 0;
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.8;
}

.promo-section-head--center p {
  color: #f87171;
  font-weight: 800;
}

.promo-card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.promo-dark-card,
.promo-testimonial-card,
.promo-window,
.promo-price-card {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.promo-dark-card {
  padding: 2rem;
}

.promo-dark-card i {
  font-size: 2.35rem;
  color: #ef4444;
}

.promo-dark-card h3 {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 1.3rem;
}

.promo-dark-card p {
  margin: 0.9rem 0 0;
  color: #94a3b8;
  line-height: 1.8;
}

.promo-solution__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 2.5rem;
  align-items: center;
}

.promo-feature-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.2rem;
}

.promo-feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
}

.promo-feature-list li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.promo-feature-list strong {
  color: #fff;
  font-size: 1.08rem;
}

.promo-feature-list p {
  margin: 0.45rem 0 0;
  color: #94a3b8;
  line-height: 1.7;
}

.promo-window {
  padding: 1.25rem;
}

.promo-window__topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.promo-window__topbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}

.promo-window__topbar span:nth-child(1) {
  background: #ef4444;
}

.promo-window__topbar span:nth-child(2) {
  background: #f59e0b;
}

.promo-window__topbar span:nth-child(3) {
  background: #22c55e;
}

.promo-window__topbar em {
  margin-left: 0.6rem;
  color: #64748b;
  font-size: 0.82rem;
  font-style: normal;
}

.promo-window__rows {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.promo-window__rows article {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.promo-window__rows strong {
  display: block;
  color: #fff;
}

.promo-window__rows small {
  display: block;
  margin-top: 0.3rem;
  color: #94a3b8;
}

.promo-window__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  text-align: right;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.promo-badge--danger {
  background: rgba(127, 29, 29, 0.45);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.promo-badge--warning {
  background: rgba(120, 53, 15, 0.45);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.promo-window__export {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 56px;
  border-radius: 16px;
  background: #10b981;
  color: #fff;
  font-weight: 800;
}

.promo-center-title {
  text-align: center;
  margin-bottom: 2.2rem;
}

.promo-testimonial-card {
  padding: 1.8rem;
}

.promo-stars {
  color: #facc15;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.promo-testimonial-card p {
  margin: 1rem 0 0;
  color: #cbd5e1;
  line-height: 1.8;
}

.promo-testimonial-user {
  margin-top: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.promo-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.38);
  color: #fff;
  font-weight: 800;
}

.promo-testimonial-user strong {
  display: block;
  color: #fff;
}

.promo-testimonial-user span {
  display: block;
  margin-top: 0.2rem;
  color: #86efac;
  font-size: 0.88rem;
}

.promo-pricing__shell {
  max-width: 980px;
}

.promo-price-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.42);
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.22);
}

.promo-price-card__ribbon {
  position: absolute;
  top: 1.6rem;
  right: -3.8rem;
  width: 190px;
  transform: rotate(45deg);
  background: #dc2626;
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 0.45rem 0;
  letter-spacing: 0.08em;
}

.promo-price-card__top {
  padding: 2.6rem 2rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.promo-price-card__top h3 {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
}

.promo-price-card__top p {
  margin: 0.9rem auto 0;
  max-width: 54ch;
  color: #94a3b8;
  line-height: 1.8;
}

.promo-list-price {
  margin-top: 1.35rem;
  color: #64748b;
  font-size: 1.7rem;
  text-decoration: line-through;
}

.promo-main-price {
  margin-top: 0.9rem;
}

.promo-main-price span,
.promo-main-price small {
  display: block;
  color: #34d399;
  font-weight: 800;
}

.promo-main-price strong {
  display: block;
  margin-top: 0.15rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.2rem, 7vw, 5rem);
  line-height: 1;
}

.promo-main-price small {
  margin-top: 0.5rem;
  color: #94a3b8;
  font-weight: 600;
}

.promo-price-card__bottom {
  padding: 2rem;
}

.promo-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.promo-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
}

.promo-benefits i {
  color: #10b981;
}

.promo-buy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 72px;
  margin-top: 2rem;
  border-radius: 18px;
  background: #10b981;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.4);
}

.promo-secondary-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.promo-secondary-actions a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 700;
}

.promo-stock {
  margin-top: 1.8rem;
}

.promo-stock__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #cbd5e1;
  font-weight: 800;
  font-size: 0.95rem;
}

.promo-stock__meta strong {
  color: #f87171;
}

.promo-stock__bar {
  margin-top: 0.7rem;
  height: 12px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.32);
  overflow: hidden;
}

.promo-stock__fill {
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.promo-guarantee {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.promo-guarantee__inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.6rem;
  align-items: center;
}

.promo-guarantee__icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.16));
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #10b981;
  font-size: 3rem;
}

.promo-guarantee__inner h3 {
  margin: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.promo-guarantee__inner p {
  margin: 0.9rem 0 0;
  color: #94a3b8;
  line-height: 1.8;
}

.promo-guarantee__mini {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #cbd5e1;
}

.promo-guarantee__mini strong {
  color: #fff;
}

.promo-footer {
  background: #000;
  padding: 3rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.promo-footer__inner {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.promo-footer__inner p,
.promo-footer__brand span {
  color: #64748b;
  line-height: 1.7;
}

.promo-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.promo-footer__links a,
.promo-footer__brand strong {
  color: #e5e7eb;
  text-decoration: none;
}

.promo-footer__brand {
  display: grid;
  gap: 0.25rem;
}

.promo-sales-popup {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(340px, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(30, 41, 59, 0.96);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
  transform: translateX(calc(-100% - 1.5rem));
  transition: transform 0.35s ease;
}

.promo-sales-popup.show {
  transform: translateX(0);
}

.promo-sales-popup__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(16, 185, 129, 0.18);
  color: #86efac;
}

.promo-sales-popup strong {
  display: block;
  color: #fff;
}

.promo-sales-popup span {
  display: block;
  margin-top: 0.15rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .promo-card-grid--3,
  .promo-solution__grid,
  .promo-guarantee__inner {
    grid-template-columns: 1fr;
  }

  .promo-window__rows article {
    flex-direction: column;
  }

  .promo-window__meta {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .promo-top-banner__inner {
    font-size: 0.84rem;
  }

  .promo-title {
    max-width: 100%;
  }

  .promo-subtitle {
    font-size: 1rem;
  }

  .promo-vsl {
    padding: 0.7rem;
  }

  .promo-vsl__placeholder {
    min-height: 250px;
  }

  .promo-cta-primary {
    width: 100%;
    padding-inline: 1rem;
  }

  .promo-guarantee__icon {
    width: 96px;
    height: 96px;
  }

  .promo-sales-popup {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}
