/* Direction: "Midnight drop" — deep near-black canvas, Pabbly-orange energy, gold foil accents, crisp edges */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Color */
  --color-bg: #0a0a0f;
  --color-bg-deep: #06060a;
  --color-surface: #13131a;
  --color-surface-2: #1b1b24;
  --color-surface-3: #23232e;
  --color-border: #2a2a36;
  --color-border-strong: #3b3b4a;

  --color-text: #f7f7fa;
  --color-text-secondary: #b9b9c7;
  --color-text-muted: #8b8b9c;

  --color-primary: #ff6b2c;
  --color-primary-strong: #ff8a4d;
  --color-primary-deep: #d94a10;
  --color-primary-soft: rgba(255, 107, 44, 0.14);
  --color-accent: #ffc94a;
  --color-accent-soft: rgba(255, 201, 74, 0.14);
  --color-success: #35d07f;
  --color-warning: #ffb020;
  --color-danger: #ff6a6a;

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;
  --text-6xl: 4.75rem;

  /* Space (8px scale) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 72px;
  --space-10: 96px;
  --space-11: 120px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* One shadow style: soft, dark, layered */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px -12px rgba(0, 0, 0, 0.75);
  --shadow-lg: 0 30px 70px -20px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 0 0 1px rgba(255, 107, 44, 0.35), 0 22px 60px -18px rgba(255, 107, 44, 0.45);

  --transition: 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

@theme {
  --color-brand: var(--color-primary);
  --color-brand-strong: var(--color-primary-strong);
  --color-ink: var(--color-bg);
  --color-panel: var(--color-surface);
  --color-panel-2: var(--color-surface-2);
  --color-line: var(--color-border);
  --color-body: var(--color-text-secondary);
  --color-head: var(--color-text);
  --color-muted: var(--color-text-muted);
  --color-gold: var(--color-accent);
  --color-ok: var(--color-success);
  --color-bad: var(--color-danger);
  --font-display: var(--font-display);
  --font-body: var(--font-body);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
}
h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
}
h4 {
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

a {
  color: var(--color-primary-strong);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-accent);
}

img,
svg {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 88px) clamp(56px, 8vw, 96px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

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

.stack-6 > * + * {
  margin-top: 6px;
}
.stack-8 > * + * {
  margin-top: 8px;
}
.stack-12 > * + * {
  margin-top: 12px;
}
.stack-16 > * + * {
  margin-top: 16px;
}
.stack-20 > * + * {
  margin-top: 20px;
}
.stack-24 > * + * {
  margin-top: 24px;
}
.stack-32 > * + * {
  margin-top: 32px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

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

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: var(--text-base);
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--color-text-secondary);
}

.check-list li > span {
  flex: 1 1 auto;
  min-width: 0;
}

.check-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--color-success);
}

.media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ---------- Offer card ---------- */

.offer-card {
  position: relative;
  z-index: 1;
  padding: 28px 26px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 107, 44, 0.4);
  background: linear-gradient(170deg, rgba(35, 22, 16, 0.95), rgba(13, 13, 19, 0.98) 55%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 107, 44, 0.12);
}

.offer-ribbon {
  position: absolute;
  top: -14px;
  left: 26px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: #1a0a02;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -10px rgba(255, 201, 74, 0.9);
}

.offer-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.offer-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.offer-list li:last-child {
  border-bottom: none;
}

.offer-list svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--color-primary-strong);
}

.offer-list .qty {
  margin-left: auto;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-success);
  white-space: nowrap;
}

.divider {
  height: 1px;
  background: var(--color-border);
  margin-block: 20px;
}

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.guarantee svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
  color: var(--color-accent);
}

.secure-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.secure-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.secure-row svg {
  width: 14px;
  height: 14px;
  color: var(--color-success);
}

.seat-meter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seat-meter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.seat-meter-head strong {
  color: var(--color-accent);
  font-family: var(--font-display);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 107, 44, 0.35);
  background: radial-gradient(120% 140% at 50% 0%, rgba(255, 107, 44, 0.2), rgba(13, 13, 19, 0.96) 62%);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

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

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding: 6px 0;
}

.summary-line.total {
  border-top: 1px solid var(--color-border-strong);
  margin-top: 10px;
  padding-top: 14px;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  align-items: baseline;
}

.summary-line .strike {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.summary-line.total .strike {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: clamp(56px, 9vw, 104px);
  position: relative;
}

.section-tight {
  padding-block: clamp(40px, 6vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary-strong);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 62ch;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}

.section-head p {
  max-width: 68ch;
}

/* ---------- Surfaces ---------- */

.card {
  background: linear-gradient(180deg, var(--color-surface) 0%, rgba(19, 19, 26, 0.55) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 10%, transparent 75%);
  opacity: 0.5;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition),
    border-color var(--transition), color var(--transition);
  will-change: transform;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-strong), var(--color-primary) 55%, var(--color-primary-deep));
  color: #1a0a02;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  color: #1a0a02;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 138, 77, 0.6), 0 26px 60px -16px rgba(255, 107, 44, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border-strong);
  color: var(--color-text);
}

.btn-ghost:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 60px;
  padding: 0 34px;
  font-size: var(--text-lg);
}

.btn-block {
  width: 100%;
}

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

/* ---------- Badges / chips ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.03);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.pill-bf {
  border-color: rgba(255, 107, 44, 0.5);
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.22), rgba(255, 201, 74, 0.1));
  color: #ffd9c4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(53, 208, 127, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* ---------- Countdown ---------- */

.countdown {
  display: flex;
  gap: 10px;
}

.cd-cell {
  min-width: 76px;
  padding: 12px 10px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(8px);
  text-align: center;
}

.cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  display: block;
  margin-top: 6px;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.countdown-mini .cd-cell {
  min-width: 46px;
  padding: 5px 6px 4px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.12);
}
.countdown-mini .cd-num {
  font-size: 0.875rem;
}
.countdown-mini .cd-label {
  display: none;
}

/* ---------- Price block ---------- */

.price-now {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-now .amount {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 5.4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--color-text);
  text-shadow: 0 8px 40px rgba(255, 107, 44, 0.35);
}

.price-was {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--color-danger);
  text-decoration-thickness: 3px;
}

.save-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(53, 208, 127, 0.14);
  border: 1px solid rgba(53, 208, 127, 0.4);
  color: #7ff0b4;
  font-size: var(--text-sm);
  font-weight: 700;
}

/* ---------- Product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.product {
  position: relative;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-lg);
}

.product:hover::after {
  transform: scaleX(1);
}

.product-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-icon {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 107, 44, 0.35);
  background: linear-gradient(140deg, rgba(255, 107, 44, 0.22), rgba(255, 201, 74, 0.06));
  color: var(--color-primary-strong);
}

.product-icon svg {
  width: 24px;
  height: 24px;
}

.product-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.product-tag {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.product-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: var(--text-sm);
}

.product-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--color-text-secondary);
}

.product-list svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--color-success);
}

.product-value {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: var(--text-sm);
}

.product-value strong {
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: var(--text-lg);
}

.included-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-success);
}

/* ---------- Value breakdown table ---------- */

.value-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.value-table th,
.value-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--color-border);
}

.value-table thead th {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  font-weight: 700;
  padding-bottom: 12px;
}

.value-table tbody tr:last-child td {
  border-bottom: none;
}

.value-table .num {
  text-align: right;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.value-table .name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-weight: 500;
}

.value-table tfoot td {
  padding-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-text);
  border-top: 2px solid var(--color-border-strong);
}

.value-table tfoot .num {
  color: var(--color-primary-strong);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-sm);
}

.bar-track {
  flex: 1;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-3);
  overflow: hidden;
  min-width: 90px;
}

.bar-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-primary-deep), var(--color-primary));
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 24px;
}

.step-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary-soft);
  border: 1px solid rgba(255, 107, 44, 0.45);
  color: var(--color-primary-strong);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 8px;
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  background: var(--color-surface);
  padding: 26px 20px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ---------- Testimonials ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.quote {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.65;
}

.quote blockquote {
  margin: 0;
  padding: 0;
}

.quote-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #1a0a02;
  background: linear-gradient(140deg, var(--color-accent), var(--color-primary));
}

.quote-by strong {
  display: block;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
}

.quote-by span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ---------- Forms ---------- */

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.field input,
.field select {
  min-height: 52px;
  width: 100%;
  padding: 0 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  background: rgba(6, 6, 10, 0.7);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.field input::placeholder {
  color: #6c6c7d;
}

.field input:hover,
.field select:hover {
  border-color: #4a4a5c;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
  background: rgba(6, 6, 10, 0.95);
}

.field .error {
  font-size: var(--text-sm);
  color: var(--color-danger);
  display: none;
  align-items: center;
  gap: 6px;
}

.field.invalid input {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(255, 106, 106, 0.14);
}

.field.invalid .error {
  display: flex;
}

.field.valid input {
  border-color: rgba(53, 208, 127, 0.7);
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.form-note svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 4px;
  color: var(--color-success);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 36px 24px;
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(53, 208, 127, 0.14);
  border: 1px solid rgba(53, 208, 127, 0.45);
  color: var(--color-success);
}

/* ---------- FAQ ---------- */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color var(--transition), background-color var(--transition);
}

.faq-item.open {
  border-color: rgba(255, 107, 44, 0.45);
  background: var(--color-surface-2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.faq-q:hover {
  color: var(--color-primary-strong);
}

.faq-q svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--color-primary-strong);
  transition: transform var(--transition);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-a-inner {
  padding: 0 22px 22px;
  color: var(--color-text-secondary);
  font-size: var(--text-base);
}

.faq-a-inner ul {
  margin: 10px 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---------- Guarantee / trust ---------- */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-success);
  flex: none;
}

/* ---------- Scarcity meter ---------- */

.meter {
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-3);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background-color var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(8, 8, 12, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-text);
  letter-spacing: -0.03em;
}

.brand:hover {
  color: var(--color-text);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--color-primary-strong), var(--color-primary-deep));
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(255, 107, 44, 0.8);
  flex: none;
}

.brand-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-primary-strong);
  text-transform: uppercase;
  border: 1px solid rgba(255, 107, 44, 0.45);
  border-radius: var(--radius-pill);
  padding: 3px 8px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

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

.nav-cta {
  min-height: 44px;
  padding: 0 20px;
  font-size: var(--text-sm);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  cursor: pointer;
  place-items: center;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 14px 0 22px;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  display: block;
  padding: 13px 4px;
  color: var(--color-text);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .nav-actions .btn-primary {
    display: none;
  }
}

/* ---------- Announce bar ---------- */

.announce {
  background: linear-gradient(90deg, var(--color-primary-deep), var(--color-primary) 50%, var(--color-accent));
  color: #1a0a02;
  font-size: var(--text-sm);
  font-weight: 600;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding-block: 8px;
  flex-wrap: wrap;
  text-align: center;
}

.announce a {
  color: #1a0a02;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.announce a:hover {
  color: #000;
}

.announce .countdown-mini {
  gap: 5px;
}

.announce .cd-cell {
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.16);
}

.announce .cd-num {
  color: #1a0a02;
  font-size: 0.8125rem;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1), transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dot {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-deep);
  padding-block: clamp(40px, 6vw, 64px) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}

.footer-grid h4 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.footer-grid a:hover {
  color: var(--color-primary-strong);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

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