/* Onno's PG3D Modding — configurator
   A modern, self-contained product/checkout site. Dark, glassy, one accent
   (blurple). No Discord-embed mimicry, no green, no channel references.
*/
:root {
  --bg:            #0C0D11;
  --bg-2:          #111318;

  /* Glass surfaces */
  --glass:         rgba(255, 255, 255, 0.045);
  --glass-2:       rgba(255, 255, 255, 0.06);
  --glass-hover:   rgba(255, 255, 255, 0.08);
  --glass-inset:   rgba(0, 0, 0, 0.28);

  --hairline:      rgba(255, 255, 255, 0.08);
  --hairline-2:    rgba(255, 255, 255, 0.12);
  --hairline-str:  rgba(255, 255, 255, 0.18);

  --text:          #ECEEF3;
  --text-strong:   #FFFFFF;
  --muted:         #A2A8B4;
  --muted-2:       #767C8A;

  --accent:        #6D78F5;
  --accent-2:      #9AA2FF;
  --accent-deep:   #4A54D6;
  --accent-glow:   rgba(109, 120, 245, 0.40);
  --accent-tint:   rgba(109, 120, 245, 0.12);
  --on-accent:     #FFFFFF;

  --warn:          #F0B232;

  --tap:           44px;
  --radius:        16px;
  --radius-sm:     10px;

  font-synthesis: none;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  min-height: 100dvh;
  color: var(--text);
  font: 400 15px/1.55 Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(1100px 620px at 82% -12%, rgba(109, 120, 245, 0.22), transparent 62%),
    radial-gradient(900px 620px at -8% 8%, rgba(154, 162, 255, 0.10), transparent 58%),
    radial-gradient(820px 560px at 50% 116%, rgba(109, 120, 245, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
}

/* -------- top bar -------- */
.topbar {
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(12, 13, 17, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand .icon { width: 22px; height: 22px; }
.brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--text-strong);
}
.progress {
  margin-top: 12px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  box-shadow: 0 0 14px var(--accent-glow);
  transition: width 260ms cubic-bezier(.2,.7,.2,1);
}

/* -------- main wrap -------- */
.wrap {
  flex: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 18px 64px;
}
.step { display: block; animation: fadeUp 280ms cubic-bezier(.2,.7,.2,1); }
.step[hidden] { display: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------- section header -------- */
.section-h { margin: 0 0 8px; }
.section-h .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-h .eyebrow .icon { width: 16px; height: 16px; }
.section-h h1 {
  margin: 0;
  font: 600 26px/1.2 Inter, sans-serif;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.section-h .subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.section-body { margin-top: 24px; }

/* -------- glass panel -------- */
.panel {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  box-shadow:
    inset 0 1px 0 var(--hairline-2),
    0 24px 48px -28px rgba(0, 0, 0, 0.6);
  padding: 22px;
}

/* -------- selectable cards -------- */
.grid { display: grid; gap: 14px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 640px) { .grid.bundles { grid-template-columns: 1fr 1fr; } }

.card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  box-shadow:
    inset 0 1px 0 var(--hairline-2),
    0 16px 34px -24px rgba(0, 0, 0, 0.6);
  padding: 20px;
  cursor: pointer;
  display: flex;
  min-height: var(--tap);
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 220ms ease;
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 44%);
  pointer-events: none; z-index: 0;
}
.card > .card-body { position: relative; z-index: 1; width: 100%; }
.card:hover {
  background: var(--glass-hover);
  border-color: var(--hairline-str);
  transform: translateY(-2px);
}
.card:has(input:checked) {
  border-color: rgba(154, 162, 255, 0.7);
  background: var(--accent-tint);
  box-shadow:
    inset 0 1px 0 var(--hairline-2),
    0 0 0 1px rgba(154, 162, 255, 0.35),
    0 28px 64px -26px var(--accent-glow);
}
.card input { position: absolute; opacity: 0; pointer-events: none; }
.card-body { display: flex; flex-direction: column; }
.card-head {
  display: flex; align-items: center; gap: 10px;
  padding-right: 96px; /* room for the corner tag */
  min-height: 26px;
}
.card-head .icon { width: 24px; height: 24px; }
.card-title {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.card-sub { color: var(--muted); font-size: 13px; margin-top: 4px; }
.card-price {
  margin-top: 10px;
  color: var(--text-strong);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.card-price .per { font-size: 13px; font-weight: 500; color: var(--muted-2); margin-left: 4px; }

/* corner tag */
.tag {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--muted);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.tag.popular {
  background: linear-gradient(180deg, var(--accent-2), var(--accent-deep));
  color: var(--on-accent);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 6px 18px -6px var(--accent-glow);
}
.tag.safest {
  background: var(--accent-tint);
  color: var(--accent-2);
  border-color: rgba(154, 162, 255, 0.30);
}

/* -------- clean feature list (checkmarks, no green, no mono) -------- */
.features { list-style: none; margin: 16px 0 0; padding: 0; }
.features li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.features li::before {
  content: '';
  position: absolute; left: 0; top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background:
    var(--accent-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239AA2FF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px 11px no-repeat;
  border: 1px solid rgba(154, 162, 255, 0.30);
}

/* -------- form fields -------- */
.field { display: block; margin: 18px 0; }
.field:first-child { margin-top: 0; }
.field .label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  min-height: var(--tap);
  background: var(--glass-inset);
  color: var(--text);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  transition: border-color 130ms ease, box-shadow 130ms ease, background 130ms ease;
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:hover, select:hover, textarea:hover { border-color: var(--hairline-str); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea { min-height: 112px; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A2A8B4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
input[type="range"] {
  width: 100%; accent-color: var(--accent);
  background: transparent; padding: 10px 0; border: 0; min-height: unset;
}
.level-out {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-strong);
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--accent-tint);
  border: 1px solid rgba(154, 162, 255, 0.30);
}

.checks { display: flex; flex-direction: column; gap: 10px; }
.check {
  display: flex; align-items: center; gap: 12px;
  background: var(--glass-inset);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  min-height: var(--tap);
  cursor: pointer;
  transition: background 130ms ease, border-color 130ms ease;
}
.check:hover { background: rgba(0,0,0,0.4); border-color: var(--hairline-str); }
.check:has(input:checked) { border-color: rgba(154, 162, 255, 0.55); background: var(--accent-tint); }
.check input { width: 18px; height: 18px; accent-color: var(--accent); }
.check .icon { width: 18px; height: 18px; }
.check .lbl { flex: 1; }

.divider { height: 1px; background: var(--hairline); margin: 18px 0; border: 0; }

/* -------- actions -------- */
.actions { display: flex; gap: 12px; margin-top: 28px; }
.btn {
  min-height: var(--tap);
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  font: 600 15px/1 Inter, sans-serif;
  cursor: pointer;
  flex: 1;
  color: var(--text);
  background: var(--glass-2);
  backdrop-filter: blur(16px);
  transition: background 130ms ease, transform 120ms ease, box-shadow 220ms ease, border-color 130ms ease;
}
.btn:hover { background: var(--glass-hover); border-color: var(--hairline-str); }
.btn:active { transform: translateY(1px); }
.btn.ghost { flex: 0 0 auto; min-width: 110px; background: transparent; color: var(--muted); font-weight: 500; }
.btn.ghost:hover { color: var(--text); }
.btn.primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: var(--on-accent);
  border-color: rgba(255,255,255,0.16);
  box-shadow:
    0 12px 32px -10px var(--accent-glow),
    inset 0 1px 0 rgba(255,255,255,0.24);
}
.btn.primary:hover {
  background: linear-gradient(180deg, #ABB2FF, var(--accent));
  box-shadow:
    0 16px 40px -10px var(--accent-glow),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn.primary:disabled { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
button:focus-visible, .card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* -------- order summary (review) -------- */
.summary { padding: 6px 2px; }
.summary .sum-total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 4px 0 18px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 8px;
}
.summary .sum-total .plan { color: var(--text-strong); font-weight: 600; font-size: 18px; }
.summary .sum-total .amount { color: var(--text-strong); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; }
.sum-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.sum-row:last-child { border-bottom: 0; }
.sum-row .k { flex: 0 0 38%; color: var(--muted); font-size: 14px; }
.sum-row .v { flex: 1; color: var(--text); font-size: 14px; word-break: break-word; }
.sum-row .v b { color: var(--text-strong); font-weight: 600; }
.sum-row .edit {
  flex: 0 0 auto;
  color: var(--accent-2);
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  padding: 2px 4px;
}
.sum-row .edit:hover { text-decoration: underline; }

.reassure {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--glass-inset);
  border: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
}
.reassure .icon { width: 18px; height: 18px; flex: 0 0 18px; }

/* -------- misc -------- */
.muted { color: var(--muted); }
.small { font-size: 13px; }
.warn  { color: var(--warn); font-size: 14px; margin: 12px 0 0; }
.center { text-align: center; }

.foot {
  border-top: 1px solid var(--hairline);
  padding: 16px 18px;
  text-align: center;
  color: var(--muted-2);
  font-size: 12px;
  background: rgba(12, 13, 17, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
}

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* success page */
.success-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 40px 18px;
}
.success-card { max-width: 460px; text-align: center; }
.success-card .big-icon { width: 64px; height: 64px; margin: 0 auto 20px; }
.success-card h1 { font: 600 26px/1.2 Inter, sans-serif; letter-spacing: -0.02em; color: var(--text-strong); margin: 0 0 12px; }
.success-card p { color: var(--muted); margin: 0 0 10px; }
.success-card .ref {
  display: inline-block; margin: 10px 0 20px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 15px; color: var(--text-strong);
  padding: 6px 14px; border-radius: 8px;
  background: var(--accent-tint); border: 1px solid rgba(154,162,255,0.3);
}
.success-card a.btn { display: inline-block; flex: 0 0 auto; text-decoration: none; }

/* Fallback: no backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .topbar, .foot { background: rgba(12, 13, 17, 0.94); }
  .panel, .card, .btn { background: rgba(28, 30, 38, 0.96); }
  input, select, textarea, .check, .reassure { background: rgba(0, 0, 0, 0.5); }
}
@media (prefers-reduced-motion: reduce) {
  .step { animation: none; }
  .card, .btn, input, select, textarea, .progress-bar { transition: none; }
}

/* =====================================================================
   Landing page
   ===================================================================== */
#landing { display: block; }
#landing[hidden] { display: none; }

.lp-nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--hairline);
  background: rgba(12, 13, 17, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.lp-nav .brand { display: flex; align-items: center; gap: 10px; }
.lp-nav .brand .icon { width: 24px; height: 24px; }
.lp-nav .brand-name { font-weight: 600; font-size: 16px; color: var(--text-strong); letter-spacing: 0.01em; }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; }

.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 44px; padding: 11px 20px;
  border-radius: 12px; border: 1px solid var(--hairline);
  font: 600 15px/1 Inter, sans-serif; cursor: pointer;
  color: var(--text); background: var(--glass-2);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transition: background 130ms ease, transform 120ms ease, box-shadow 220ms ease, border-color 130ms ease;
}
.lp-btn:hover { background: var(--glass-hover); border-color: var(--hairline-str); transform: translateY(-1px); }
.lp-btn:active { transform: translateY(0); }
.lp-btn .icon { width: 18px; height: 18px; }
.lp-btn.primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: var(--on-accent); border-color: rgba(255,255,255,0.16);
  box-shadow: 0 12px 30px -12px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.24);
}
.lp-btn.primary:hover { background: linear-gradient(180deg, #ABB2FF, var(--accent)); box-shadow: 0 16px 40px -12px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.lp-btn.discord { background: #5865F2; color: #fff; border-color: rgba(255,255,255,0.14); }
.lp-btn.discord:hover { background: #4c58da; }
.lp-btn.lg { min-height: 52px; padding: 15px 26px; font-size: 16px; border-radius: 13px; }

.lp-wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }

.lp-hero {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
}
@media (min-width: 900px) { .lp-hero { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-2); font-weight: 600; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px;
}
.lp-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.lp-hero h1 {
  margin: 0 0 18px;
  font-weight: 700; letter-spacing: -0.025em; color: var(--text-strong);
  font-size: clamp(34px, 5.4vw, 56px); line-height: 1.04;
}
.lp-hero h1 .accent { color: var(--accent-2); }
.lp-hero p.lead { margin: 0 0 26px; color: var(--muted); font-size: clamp(16px, 2.2vw, 18px); line-height: 1.6; max-width: 46ch; }
.lp-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.lp-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.lp-trust span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted-2); font-size: 13.5px; }
.lp-trust .icon { width: 16px; height: 16px; }

.lp-hero-media { position: relative; }
.lp-hero-media .frame {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--hairline-str);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,0,0,0.4);
}
.lp-hero-media .frame > img { display: block; width: 100%; height: auto; }
.lp-hero-media::after {
  content: ""; position: absolute; inset: -40px -20px auto auto;
  width: 60%; height: 60%; z-index: -1;
  background: radial-gradient(closest-side, var(--accent-glow), transparent);
  filter: blur(20px);
}
.lp-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(12,13,17,0.72); backdrop-filter: blur(12px);
  border: 1px solid var(--hairline-2); color: var(--text-strong);
  font-size: 13px; font-weight: 600;
}
.lp-badge .icon { width: 16px; height: 16px; }

.lp-section { padding: clamp(40px, 6vw, 72px) 0; }
.lp-section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(28px, 4vw, 44px); }
.lp-section-head .kicker { color: var(--accent-2); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.lp-section-head h2 { margin: 10px 0 0; font-weight: 700; letter-spacing: -0.02em; color: var(--text-strong); font-size: clamp(26px, 3.6vw, 36px); }
.lp-section-head p { margin: 12px 0 0; color: var(--muted); font-size: 16px; }

.lp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 760px) { .lp-stats { grid-template-columns: repeat(4, 1fr); } }
.lp-stat {
  padding: 22px; border-radius: 14px; text-align: center;
  background: var(--glass); border: 1px solid var(--hairline);
  box-shadow: inset 0 1px 0 var(--hairline-2);
  backdrop-filter: blur(18px);
}
.lp-stat .num { font-weight: 700; font-size: clamp(24px, 3.4vw, 32px); color: var(--text-strong); letter-spacing: -0.02em; }
.lp-stat .lbl { margin-top: 6px; color: var(--muted); font-size: 13.5px; }

.lp-gallery { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 760px) { .lp-gallery { grid-template-columns: repeat(3, 1fr); } }
.lp-shot {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--glass);
  box-shadow: 0 24px 50px -30px rgba(0,0,0,0.7);
}
.lp-shot img { display: block; width: 100%; height: 210px; object-fit: cover; object-position: center; }
.lp-shot .cap { padding: 13px 15px; color: var(--muted); font-size: 13.5px; }
.lp-shot .cap b { color: var(--text-strong); font-weight: 600; display: block; margin-bottom: 2px; font-size: 14px; }

.lp-steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 760px) { .lp-steps { grid-template-columns: repeat(3, 1fr); } }
.lp-step {
  padding: 24px; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--hairline);
  box-shadow: inset 0 1px 0 var(--hairline-2); backdrop-filter: blur(18px);
}
.lp-step .n {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-tint); border: 1px solid rgba(154,162,255,0.3);
  color: var(--accent-2); font-weight: 700; margin-bottom: 14px;
}
.lp-step h3 { margin: 0 0 6px; color: var(--text-strong); font-size: 17px; font-weight: 600; }
.lp-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.lp-final {
  text-align: center; padding: clamp(44px, 6vw, 72px) clamp(20px,4vw,48px);
  border-radius: 20px; margin: clamp(24px,4vw,40px) 0;
  background:
    radial-gradient(700px 300px at 50% -20%, var(--accent-tint), transparent 70%),
    var(--glass);
  border: 1px solid var(--hairline);
  box-shadow: inset 0 1px 0 var(--hairline-2), 0 30px 60px -30px rgba(0,0,0,0.6);
  backdrop-filter: blur(18px);
}
.lp-final h2 { margin: 0 0 10px; font-weight: 700; letter-spacing: -0.02em; color: var(--text-strong); font-size: clamp(26px, 3.6vw, 38px); }
.lp-final p { margin: 0 auto 24px; color: var(--muted); font-size: 16px; max-width: 40ch; }
.lp-final .lp-cta { justify-content: center; }

.lp-foot {
  border-top: 1px solid var(--hairline);
  padding: 22px clamp(16px,4vw,40px);
  display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; justify-content: space-between;
  color: var(--muted-2); font-size: 13px;
}
.lp-foot a { color: var(--muted); text-decoration: none; }
.lp-foot a:hover { color: var(--text); }

@media (max-width: 480px) {
  .lp-nav { gap: 8px; }
  .lp-nav .brand-name { font-size: 14px; white-space: nowrap; }
  .lp-nav-actions { gap: 8px; }
  .lp-nav .lp-btn { padding: 10px 13px; }
  .lp-nav .lp-btn.discord { gap: 0; }
  .lp-nav .lp-btn.discord .dlabel { display: none; }
}

/* logo mark (replaces the hammer next to the brand name) */
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  object-fit: cover; display: block;
  border: 1px solid var(--hairline-2);
  background: var(--glass-inset);
}
.logo-mark.is-fallback { padding: 4px; object-fit: contain; }
.lp-nav .logo-mark { width: 30px; height: 30px; }

/* clickable brand in the configurator top bar (returns to landing) */
.brand-home {
  display: flex; align-items: center; gap: 10px;
  width: fit-content;
  background: none; border: 0; padding: 0; margin: 0;
  cursor: pointer; color: inherit; font: inherit;
  border-radius: 8px;
}
.brand-home .brand-name { transition: color 120ms ease; }
.brand-home:hover .brand-name { color: var(--text-strong); }

/* icon inside a why-us step badge */
.lp-step .n img.icon { width: 18px; height: 18px; }

/* scroll reveal — only armed when JS is present, so no-JS keeps content visible */
.js .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* gentle float on the hero screenshot */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.lp-hero-media .frame { animation: floaty 6.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .lp-hero-media .frame { animation: none; } }
