/* Sheetplug static - minimal design system */
:root {
  --bg: #f8fafc;
  --bg-dark: #0f172a;
  --surface: #ffffff;
  --surface-dark: rgba(15, 23, 42, 0.96);
  --border: rgba(148, 163, 184, 0.22);
  --text: #0f172a;
  --muted: #475569;
  --brand: #2563eb;
  --brand2: #22c55e;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.menu-open {
  overflow: hidden;
}

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

.site-light {
  background: var(--bg);
  color: var(--text);
}

.asaas-theme {
  --brand: #16a34a;
  --brand2: #22c55e;
}

.hotmart-theme {
  --brand: #f97316;
  --brand2: #fb923c;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.lux-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(226, 232, 240, 1);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.lux-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}

.lux-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.lux-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.lux-brand-icon svg {
  width: 18px;
  height: 18px;
}

.lux-brand-icon.small {
  width: 28px;
  height: 28px;
}

.lux-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
}

.lux-nav a:hover,
.lux-link:hover,
.lux-footer-links a:hover {
  color: var(--brand);
  text-decoration: none;
}

.lux-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lux-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.82rem 1.35rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--brand);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.btn.secondary {
  background: #ffffff;
  color: var(--text);
  border-color: rgba(203, 213, 225, 1);
  box-shadow: none;
}

.btn.secondary:hover {
  background: #f8fafc;
}

.mobile-only {
  display: none;
}

.mobile-menu-button {
  border: 1px solid rgba(203, 213, 225, 1);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #334155;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.mobile-menu-button .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.mobile-menu-button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mobile-menu-button .icon-close {
  display: none;
}

.mobile-menu-button.is-open .icon-open {
  display: none;
}

.mobile-menu-button.is-open .icon-close {
  display: inline;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 18px;
  left: auto;
  width: min(360px, calc(100vw - 36px));
  z-index: 70;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.22);
}

.mobile-menu[hidden],
.mobile-menu-backdrop[hidden] {
  display: none !important;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.mobile-menu-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.mobile-menu-inner a:not(.btn) {
  color: #334155;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 14px;
}

.mobile-menu-inner a:not(.btn):hover {
  background: #f8fafc;
  text-decoration: none;
}

.mobile-menu-inner .btn {
  margin-top: 6px;
}

.lux-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 6rem 0 7rem;
}

.lux-hero-blur {
  position: absolute;
  inset: 0;
  top: -12rem;
  z-index: 0;
  filter: blur(60px);
  pointer-events: none;
}

.lux-hero-blur::before {
  content: "";
  position: absolute;
  left: 50%;
  width: min(72rem, 92vw);
  aspect-ratio: 1155 / 678;
  transform: translateX(-50%) rotate(24deg);
  /* Google Sheets vibe: green + a touch of blue (no purple) */
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.34),
    rgba(59, 130, 246, 0.20),
    rgba(16, 185, 129, 0.26)
  );
}

.lux-hero-blur::after {
  content: "";
  position: absolute;
  inset: -140px -80px;
  /* Subtle "sheet grid" / matrix feel */
  background:
    linear-gradient(to right, rgba(34, 197, 94, 0.10) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(to bottom, rgba(34, 197, 94, 0.08) 1px, transparent 1px) 0 0 / 44px 44px,
    radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.18), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.12), transparent 44%);
  opacity: 0.7;
  transform: translate3d(0, 0, 0);
  animation: heroGridDrift 16s linear infinite;
}

@keyframes heroGridDrift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 88px 44px, 44px 88px, 0 0, 0 0; }
}

.lux-hero {
  /* Keep the hero feeling clean and "Sheets", not neon */
  background: #ffffff;
}

.lux-hero .container {
  position: relative;
  z-index: 1;
}

.lux-hero-content {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.lux-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.lux-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

.lux-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(2.7rem, 7vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.lux-hero h1 span {
  color: var(--brand);
}

.lux-hero p {
  margin: 0 auto 22px;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.lux-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.lux-hero-actions.centered {
  margin-top: 18px;
}

.lux-hero-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: #64748b;
}

.product-hero {
  padding-top: 5.5rem;
}

.product-hero-blur::before {
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.34),
    rgba(34, 197, 94, 0.22),
    rgba(20, 184, 166, 0.18)
  );
}

.hotmart-hero-blur::before {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.34),
    rgba(251, 146, 60, 0.24),
    rgba(245, 158, 11, 0.18)
  );
}

.hotmart-hero-blur::after {
  background:
    linear-gradient(to right, rgba(249, 115, 22, 0.10) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(to bottom, rgba(251, 146, 60, 0.08) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 28% 22%, rgba(249, 115, 22, 0.2), transparent 38%),
    radial-gradient(circle at 74% 62%, rgba(245, 158, 11, 0.14), transparent 42%);
}

.product-hero-blur::after {
  background:
    linear-gradient(to right, rgba(22, 163, 74, 0.10) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(to bottom, rgba(34, 197, 94, 0.08) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 28% 22%, rgba(34, 197, 94, 0.2), transparent 38%),
    radial-gradient(circle at 74% 62%, rgba(20, 184, 166, 0.14), transparent 42%);
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.product-hero-copy h1,
.product-hero-copy p {
  max-width: 100%;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.product-hero-copy .lux-badge {
  margin-bottom: 8px;
}

.product-actions {
  justify-content: flex-start;
}

.product-badge {
  background: #ecfdf5;
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.16);
}

.hotmart-badge {
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.16);
}

.product-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
}

.product-bullets li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 800;
  margin-right: 8px;
}

.hotmart-bullets li::before {
  color: #ea580c;
}

.product-preview-card {
  border: 1px solid rgba(187, 247, 208, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(22, 163, 74, 0.10);
  padding: 20px;
}

.hotmart-preview-card {
  border-color: rgba(254, 215, 170, 0.95);
  box-shadow: 0 24px 60px rgba(249, 115, 22, 0.10);
}

.product-preview-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #166534;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hotmart-preview-head {
  color: #9a3412;
}

.product-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.10);
}

.hotmart-dot {
  background: #f97316;
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.12);
}

.product-sheet-window {
  border: 1px solid rgba(220, 252, 231, 1);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.hotmart-sheet-window {
  border-color: rgba(255, 237, 213, 1);
}

.product-sheet-toolbar {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(240, 253, 244, 1);
  background: #f0fdf4;
}

.hotmart-sheet-toolbar {
  border-bottom-color: rgba(255, 237, 213, 1);
  background: #fff7ed;
}

.product-sheet-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.22);
}

.hotmart-sheet-toolbar span {
  background: rgba(249, 115, 22, 0.22);
}

.product-sheet-table {
  display: flex;
  flex-direction: column;
}

.sheet-row {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid rgba(240, 253, 244, 1);
  font-size: 0.88rem;
  color: #334155;
}

.sheet-row.header {
  background: #f8fafc;
  color: #166534;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.74rem;
}

.hotmart-sheet-header {
  color: #9a3412;
}

.sheet-row .ok {
  color: #15803d;
  font-weight: 700;
}

.sheet-row .warn {
  color: #ca8a04;
  font-weight: 700;
}

.hotmart-ok {
  color: #ea580c;
}

.hotmart-warn {
  color: #b45309;
}

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

.metric-card {
  padding: 14px;
  border-radius: 18px;
  background: #f0fdf4;
  border: 1px solid rgba(187, 247, 208, 0.9);
}

.hotmart-metric {
  background: #fff7ed;
  border-color: rgba(254, 215, 170, 0.95);
}

.metric-card strong {
  display: block;
  color: #166534;
  font-size: 0.9rem;
}

.hotmart-metric strong {
  color: #9a3412;
}

.metric-card span {
  display: block;
  margin-top: 6px;
  color: #475569;
  font-size: 0.8rem;
  line-height: 1.45;
}

.asaas-card {
  border-color: rgba(220, 252, 231, 1);
}

.hotmart-card {
  border-color: rgba(255, 237, 213, 1);
}

.asaas-dark {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.10), transparent 22%),
    #052e16;
}

.hotmart-dark {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 22%),
    #431407;
}

.asaas-step strong {
  background: #dcfce7;
  color: #166534;
}

.hotmart-step strong {
  background: #ffedd5;
  color: #c2410c;
}

.hotmart-benefit-icon {
  color: #fdba74;
}

.hotmart-status {
  color: #ea580c;
  border-color: rgba(249, 115, 22, 0.28);
  background: #fff7ed;
}

.lead-form {
  margin-top: 26px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.field span {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(203, 213, 225, 1);
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus {
  border-color: rgba(34, 197, 94, 0.8);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

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

.lux-logos {
  border-top: 1px solid rgba(226, 232, 240, 1);
  border-bottom: 1px solid rgba(226, 232, 240, 1);
  background: #fff;
  padding: 40px 0;
}

.lux-logos h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
}

.lux-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.lux-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.72;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lux-logo-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lux-logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.lux-logo-circle.hotmart { background: #f97316; }
.lux-logo-circle.asaas { background: #22c55e; }
.lux-logo-circle.nubank { background: #7c3aed; }
.lux-logo-circle.sheets { background: #16a34a; }

.lux-section {
  padding: 96px 0;
}

.lux-section-head {
  max-width: 48rem;
  margin: 0 auto 48px;
  text-align: center;
}

.lux-section-head > p:first-child {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
}

.lux-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.lux-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.lux-feature-card.active {
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.08);
}

.lux-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.lux-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.25rem;
}

.lux-icon.hotmart { background: #fff7ed; color: #f97316; }
.lux-icon.asaas { background: #ecfdf5; color: #16a34a; }
.lux-icon.nubank { background: #f3e8ff; color: #7c3aed; }

.lux-feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.lux-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.lux-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
}

.lux-inline-link::after {
  content: "→";
}

.lux-dark-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 96px 0;
}

.lux-section-head.dark > p:first-child {
  color: #60a5fa;
}

.lux-section-head.dark h2 {
  color: #fff;
}

.lux-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.lux-benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lux-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  color: #60a5fa;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.lux-benefit h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.lux-benefit p {
  margin: 0;
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.75;
}

.lux-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lux-step {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 1);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.lux-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--brand);
  margin-bottom: 18px;
}

.lux-step h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.lux-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.lux-faq-section {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 22%),
    #ffffff;
}

.lux-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lux-faq-item {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 1);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.lux-faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.45;
}

.lux-faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.lux-cta {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 96px 0;
}

.lux-cta-card {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  padding: 36px 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 1);
}

.lux-cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lux-cta-card p {
  max-width: 44rem;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lux-checks {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.lux-checks li::before {
  content: "✓";
  color: var(--brand2);
  font-weight: 800;
  margin-right: 6px;
}

.lux-footer {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 24%),
    #0f172a;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.lux-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.lux-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 800;
}

.lux-footer p {
  margin: 4px 0 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.78rem;
}

.lux-footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.92rem;
}

.lux-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.lux-social {
  text-align: right;
}

.lux-social-title {
  display: block;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lux-social-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lux-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.lux-social-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.lux-social-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.9rem;
}

.lux-social-icon.wa {
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
}

.lux-social-icon.wa svg {
  width: 16px;
  height: 16px;
  display: block;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
}

.hero {
  padding: 44px 0 10px;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.15;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(9, 15, 29, 0.95);
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section-title {
  margin: 26px 0 10px;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 18px 0 26px;
  color: rgba(226, 232, 240, 0.7);
  font-size: 13px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(226, 232, 240, 0.75);
  font-size: 13px;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status.testing { color: #fde68a; border-color: rgba(245, 158, 11, 0.3); }
.status.dev { color: #c7d2fe; border-color: rgba(99, 102, 241, 0.28); }
.status.active { color: #16a34a; border-color: rgba(34, 197, 94, 0.28); background: #f0fdf4; }

@media (max-width: 1120px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .lux-header {
    position: sticky;
  }
}

@media (max-width: 960px) {

  .lux-hero {
    padding: 4rem 0 5rem;
  }

  .product-hero-grid,
  .product-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .lux-feature-grid,
  .lux-benefits-grid,
  .lux-steps,
  .lux-faq-grid,
  .grid,
  .hero-card {
    grid-template-columns: 1fr;
  }

  .lux-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lux-footer-right {
    align-items: flex-start;
    width: 100%;
  }

  .lux-social {
    text-align: left;
  }

  .lux-social-link {
    justify-content: flex-start;
  }

  .mobile-menu {
    right: 14px;
    width: min(340px, calc(100vw - 28px));
  }
}

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

  .lux-hero-actions,
  .lux-checks {
    justify-content: stretch;
  }

  .lux-hero-actions .btn,
  .mobile-menu-inner .btn {
    width: 100%;
  }

  .lux-logo-item {
    font-size: 1rem;
  }

  .product-hero-copy h1,
  .product-hero-copy p {
    text-align: left;
  }

  .product-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .sheet-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mobile-menu-button {
    padding: 8px;
  }

  .mobile-menu {
    top: calc(100% + 8px);
    right: 12px;
    width: min(320px, calc(100vw - 24px));
  }

  .lux-footer-inner {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}
