/* Swagg Brown — Promotional site
   Brand: black, charcoal, metallic gold, bronze, cream
   ADMIN: Update pricing placeholders before launch.
*/

:root {
  --bg: #050505;
  --bg-elevated: #0e0e0e;
  --panel: #141414;
  --panel-2: #1a1a1a;
  --border: rgba(201, 162, 39, 0.22);
  --border-strong: rgba(212, 175, 55, 0.45);
  --gold: #d4af37;
  --gold-bright: #f0d060;
  --gold-deep: #a67c1a;
  --bronze: #8c6239;
  --brown: #5c3d24;
  --cream: #f3ead7;
  --text: #f5f0e6;
  --text-muted: rgba(243, 234, 215, 0.68);
  --glow: rgba(212, 175, 55, 0.28);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --header-h: 161px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(140, 98, 57, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(180deg, #070707 0%, var(--bg) 40%, #080808 100%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.ambient__glow--1 {
  width: 420px;
  height: 420px;
  top: 12%;
  right: -80px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient__glow--2 {
  width: 520px;
  height: 520px;
  bottom: 10%;
  left: -120px;
  background: radial-gradient(circle, rgba(92, 61, 36, 0.5), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(40px, -30px); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex-shrink: 0;
}

.brand__logo {
  height: 142px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--cream);
  background: rgba(212, 175, 55, 0.08);
}

.nav__cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.82rem;
}

.btn--gold,
.nav a.btn--gold {
  color: #0c0a05;
  background: linear-gradient(180deg, #f3d56a 0%, #e4bc3c 48%, #d4af37 100%);
  box-shadow: 0 0 0 1px rgba(255, 220, 120, 0.35), 0 10px 30px rgba(212, 175, 55, 0.22);
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}

.btn--gold:hover,
.nav a.btn--gold:hover,
.nav a.btn--gold:focus-visible {
  color: #0c0a05;
  background: linear-gradient(180deg, #f7df7e 0%, #ebc64a 48%, #dbb63f 100%);
  box-shadow: 0 0 0 1px rgba(255, 220, 120, 0.5), 0 14px 36px rgba(212, 175, 55, 0.35);
}

.btn--outline {
  color: var(--cream);
  background: transparent;
  border-color: var(--border-strong);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.btn--block {
  width: 100%;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section__header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 55%, var(--gold-bright) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 640px;
}

.section__header .section__lead {
  margin-inline: auto;
}

/* Hero */
.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.waveform {
  position: absolute;
  left: 4%;
  bottom: 8%;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
  opacity: 0.35;
}

.waveform span {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--bronze));
  animation: wave 1.4s ease-in-out infinite;
}

.waveform span:nth-child(odd) { height: 35%; animation-delay: 0.1s; }
.waveform span:nth-child(even) { height: 70%; animation-delay: 0.25s; }
.waveform span:nth-child(3n) { height: 50%; animation-delay: 0.4s; }
.waveform span:nth-child(4n) { height: 90%; animation-delay: 0.15s; }
.waveform span:nth-child(5n) { height: 40%; animation-delay: 0.55s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.55); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.streak {
  position: absolute;
  height: 1px;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(240, 208, 96, 0.55), transparent);
  filter: blur(0.5px);
  animation: streak 7s linear infinite;
}

.streak--1 { top: 22%; right: -10%; }
.streak--2 { top: 68%; left: -15%; animation-delay: -3s; opacity: 0.6; }

@keyframes streak {
  from { transform: translateX(-20%); opacity: 0; }
  20% { opacity: 0.7; }
  80% { opacity: 0.7; }
  to { transform: translateX(40%); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 1;
  animation: rise 0.9s var(--ease) both;
}

.hero__brand {
  width: min(640px, 96%);
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.4));
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  margin-bottom: 18px;
  color: var(--cream);
}

.hero__lead {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 34rem;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.platform-pills .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--glow);
  vertical-align: middle;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  animation: rise 1.1s var(--ease) 0.12s both;
}

.hero__ring {
  position: absolute;
  width: min(92%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    0 0 60px rgba(212, 175, 55, 0.12),
    inset 0 0 60px rgba(212, 175, 55, 0.05);
  animation: pulse-ring 5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero__product {
  width: min(100%, 560px);
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.65));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Intro feature tiles */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-tile {
  padding: 28px 22px;
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.08), transparent 40%),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.feature-tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.feature-tile__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 18px;
}

.feature-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--cream);
}

.feature-tile p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Online */
.online {
  background:
    linear-gradient(180deg, transparent, rgba(20, 20, 20, 0.85), transparent);
}

.online__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: center;
}

.online__copy .section__lead {
  margin-bottom: 22px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.08);
}

.checklist {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.checklist em {
  color: var(--gold);
  font-style: normal;
  font-size: 0.9em;
}

.note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(243, 234, 215, 0.55);
  max-width: 36rem;
}

.online__panel {
  width: 100%;
  min-width: 0;
  display: flex;
}

.online__panel-frame {
  position: relative;
  margin: 0;
  padding: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 768;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(212, 175, 55, 0.1);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.online__panel-frame:hover {
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(212, 175, 55, 0.18);
}

.online__screenshot {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.online__zoom-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #120e05;
  background: linear-gradient(180deg, #f3d56a, #d4af37);
  padding: 7px 12px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.online__panel-frame:hover .online__zoom-hint,
.online__panel-frame:focus-visible .online__zoom-hint {
  opacity: 1;
}

/* Lightbox */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.85);
  color: var(--cream);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1280px);
  max-height: 90vh;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  background: #0a0a0a;
  animation: lightbox-in 0.28s var(--ease);
}

.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Desktop compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.compare-card {
  padding: 32px 28px;
  background:
    linear-gradient(165deg, rgba(212, 175, 55, 0.1), transparent 35%),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.compare-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.compare-card__os {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.compare-card h3 {
  font-size: 1.6rem;
  color: var(--cream);
}

.compare-card ul {
  display: grid;
  gap: 10px;
  flex: 1;
}

.compare-card li {
  padding-left: 18px;
  position: relative;
  color: var(--text-muted);
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.compare-card .btn {
  align-self: flex-start;
}

/* Four deck */
.fourdeck__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 28px;
}

.capability-list li {
  padding: 12px 14px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.deck-orbit {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  display: grid;
  place-items: center;
}

.deck-core {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #120e05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}


.deck-chip--0 { --i: 0; }
.deck-chip--1 { --i: 1; }
.deck-chip--2 { --i: 2; }
.deck-chip--3 { --i: 3; }
.stem-layer--0 { --i: 0; }
.stem-layer--1 { --i: 1; }
.stem-layer--2 { --i: 2; }
.stem-layer--3 { --i: 3; }
.stem-layer--4 { --i: 4; }
.stem-layer--5 { --i: 5; }

.deck-chip {
  --angle: calc(var(--i) * 90deg);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  background: var(--panel-2);
  border: 1px solid var(--border-strong);
  transform: rotate(var(--angle)) translate(140px) rotate(calc(-1 * var(--angle)));
  animation: orbit-pulse 3.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

@keyframes orbit-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 22px rgba(212, 175, 55, 0.45); }
}

/* Effects browser */
.fx-browser {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.fx-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0c0c0c;
  overflow-x: auto;
}

.fx-tab {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.fx-tab:hover {
  color: var(--cream);
}

.fx-tab.is-active {
  color: #120e05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: transparent;
}

.fx-panels {
  padding: 28px;
}

.fx-panel[hidden] {
  display: none;
}

.fx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fx-grid li {
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.1), transparent 50%),
    var(--panel-2);
  color: var(--cream);
  font-weight: 500;
  transition: border-color 0.25s, transform 0.25s;
}

.fx-grid li:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

/* Stems */
.stems__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.stem-stack {
  position: relative;
  height: 360px;
  perspective: 900px;
}

.stem-layer {
  --offset: calc(var(--i) * 42px);
  position: absolute;
  left: 8%;
  right: 8%;
  top: calc(28px + var(--offset));
  height: 64px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.18), rgba(92, 61, 36, 0.35) 40%, rgba(20, 20, 20, 0.9)),
    var(--panel);
  display: flex;
  align-items: center;
  padding: 0 22px;
  transform: translateX(calc(var(--i) * 10px)) rotateX(8deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: separate 4.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.12s);
}

.stem-layer span {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}

@keyframes separate {
  0%, 100% { transform: translateX(calc(var(--i) * 10px)) translateY(0) rotateX(8deg); }
  50% { transform: translateX(calc(var(--i) * 18px)) translateY(calc(var(--i) * -4px)) rotateX(8deg); }
}

.stem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}

.stem-pills span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-bright);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.06);
}

/* Workflow */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: none;
}

.step {
  padding: 32px 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  position: relative;
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  color: #120e05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--cream);
}

.step p {
  color: var(--text-muted);
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  padding: 32px 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.price-card--featured {
  border-color: var(--border-strong);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.14), transparent 40%),
    var(--panel);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
  transform: scale(1.03);
}

.price-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #120e05;
  background: var(--gold);
  padding: 5px 10px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.5rem;
  color: var(--cream);
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 10px;
  flex: 1;
  margin-bottom: 8px;
}

.price-card li {
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

.price-card .btn {
  align-self: stretch;
}

/* Preview */
.preview-stage {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 56px;
}

.preview-frame {
  margin: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.12), transparent 40%),
    #0c0c0c;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(212, 175, 55, 0.08);
}

.preview-frame__img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  border-radius: 10px;
}

.preview-label {
  position: absolute;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 2;
}

.preview-label--tl { top: 0; left: 0; }
.preview-label--tr { top: 0; right: 0; }
.preview-label--ml { top: 48%; left: 0; transform: translateY(-50%); }
.preview-label--mr { top: 48%; right: 0; transform: translateY(-50%); }
.preview-label--bl { bottom: 0; left: 0; }
.preview-label--br { bottom: 0; right: 0; }

/* FAQ */
.faq__inner {
  max-width: 800px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  padding: 0 22px;
}

.accordion__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion__item summary::-webkit-details-marker {
  display: none;
}

.accordion__item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
}

.accordion__item[open] summary::after {
  content: "–";
}

.accordion__item p {
  color: var(--text-muted);
  padding-bottom: 20px;
}

/* Final CTA */
.cta-final {
  padding-top: 40px;
}

.cta-final__inner {
  text-align: center;
  padding: 64px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(212, 175, 55, 0.18), transparent 60%),
    var(--panel);
}

.cta-final__logo {
  width: 280px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.cta-final h2 {
  margin-bottom: 14px;
}

.cta-final p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.cta-final .hero__actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 48px 0 32px;
  background: #050505;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 28px;
}

.footer__brand img {
  width: 150px;
  margin-bottom: 12px;
  object-fit: contain;
}

.footer__brand p {
  color: var(--text-muted);
  max-width: 360px;
  font-size: 0.95rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer__nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__copy {
  color: rgba(243, 234, 215, 0.4);
  font-size: 0.85rem;
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(100%, 420px);
  padding: 36px 28px 28px;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.1), transparent 30%),
    #121212;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.modal__panel h2 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.6rem;
}

.modal__lead,
.modal__note {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.modal__note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-form input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
}

.auth-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

body.modal-open {
  overflow: hidden;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 36px;
  }

  .hero__brand {
    margin-inline: auto;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .platform-pills {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__product {
    width: min(100%, 420px);
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .online__layout,
  .fourdeck__layout,
  .stems__layout {
    grid-template-columns: 1fr;
  }

  .online__layout {
    align-items: start;
  }

  .online__panel {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .online__panel-frame {
    min-height: 0;
    aspect-ratio: 1024 / 768;
  }

  .price-card--featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 12px;
    font-size: 1rem;
  }

  .nav__cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .compare,
  .steps,
  .price-grid,
  .fx-grid {
    grid-template-columns: 1fr;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .preview-stage {
    padding: 64px 12px 72px;
  }

  .preview-label {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  .preview-label--ml,
  .preview-label--mr {
    display: none;
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }
}


/* Brand logo responsive — keep logo dominant */
@media (max-width: 860px) {
  :root {
    --header-h: 115px;
  }

  .brand__logo {
    height: 96px;
    max-width: none;
  }

  .hero__brand {
    width: min(100%, 520px);
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 100px;
  }

  .brand__logo {
    height: 80px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
