:root {
  --bg: #030403;
  --panel: #090a09;
  --panel-2: #0d0e0c;
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.075);
  --line-strong: rgba(211, 151, 55, 0.46);
  --gold: #d8a64d;
  --gold-2: #f0c874;
  --text: #f5f0e8;
  --muted: #a7a19a;
  --dim: #706d68;
  --green: #39d27d;
  --red: #ff474c;
  --card-radius: 8px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --panel-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(135deg, rgba(216, 166, 77, 0.045), transparent 22rem),
    linear-gradient(315deg, rgba(216, 166, 77, 0.032), transparent 24rem),
    #030403;
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.08;
}

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

button {
  border: 0;
  font: inherit;
}

.site-shell {
  width: min(100%, 1520px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 76px;
  padding: 18px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(180deg, rgba(3, 4, 3, 0.98), rgba(3, 4, 3, 0.78));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: url("./assets/spade-mark.webp") center / 124% auto no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 1;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
  animation: markPulse 5.8s ease-in-out infinite;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(240, 200, 116, 0.18), transparent 64%);
}

.brand-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a,
.site-footer nav a,
.site-footer nav button {
  opacity: 0.86;
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--gold-2);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.ghost-link {
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  transition: color 180ms ease;
}

.outline-button,
.dark-button,
.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 3px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.outline-button {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--gold-2);
}

.outline-button.small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 11px;
}

.gold-button {
  border: 1px solid rgba(255, 220, 139, 0.5);
  background: linear-gradient(180deg, #f5c977, #c9933c);
  color: #1b1205;
  box-shadow: 0 10px 28px rgba(204, 145, 54, 0.18);
}

.gold-button:hover {
  border-color: rgba(255, 226, 157, 0.72);
  background: linear-gradient(180deg, #ffd98a, #d7a247);
  box-shadow: 0 14px 34px rgba(204, 145, 54, 0.26);
  transform: translateY(-1px);
}

.dark-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.dark-button:hover,
.outline-button:hover {
  border-color: rgba(240, 200, 116, 0.5);
  background: rgba(216, 166, 77, 0.055);
  transform: translateY(-1px);
}

.ghost-link:hover {
  color: var(--gold-2);
}

.wide {
  width: 100%;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 90px);
  padding: 64px 60px;
  border-bottom: 1px solid var(--line);
}

.hero {
  grid-template-columns: minmax(440px, 0.83fr) minmax(560px, 1.17fr);
  min-height: auto;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 58px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::after,
.rule::after {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 620px;
  font-size: clamp(50px, 4.1vw, 66px);
  line-height: 1.03;
}

h2 {
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.02;
}

h3,
p {
  margin: 0;
}

.hero-lede,
.section-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-lede {
  margin-top: 34px;
  max-width: 450px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 58px;
  color: #dacaa9;
  font-size: 12px;
  font-weight: 700;
}

.mini-features span::before {
  content: "\2660";
  margin-right: 8px;
  color: var(--gold);
}

.edge-copy {
  margin-top: 34px;
  color: var(--muted);
  font-size: 16px;
}

.hero-visual {
  min-width: 0;
}

.product-frame,
.workflow-board,
.ai-panel,
.price-card,
.final-cta {
  border: 1px solid var(--line-soft);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.035), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.006)),
    rgba(8, 9, 8, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--panel-shadow);
}

.product-frame {
  position: relative;
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  min-height: 580px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 88% 8%, rgba(216, 166, 77, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008)),
    rgba(8, 9, 8, 0.92);
}

.product-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.055) 50%, transparent 58% 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-42%);
  animation: panelSweep 8s ease-in-out 1.4s infinite;
}

.product-frame > * {
  position: relative;
  z-index: 2;
}

.mock-sidebar {
  border-right: 1px solid var(--line);
  padding: 30px 18px;
  color: var(--muted);
}

.tiny-spade {
  display: block;
  color: var(--gold);
  margin-bottom: 28px;
}

.mock-sidebar nav {
  display: grid;
  gap: 18px;
  font-size: 12px;
}

.mock-sidebar b,
.mock-sidebar span {
  display: block;
  padding-left: 18px;
  position: relative;
}

.mock-sidebar b {
  color: var(--gold-2);
}

.mock-sidebar b::before,
.mock-sidebar span::before {
  content: "\2667";
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.75;
}

.mock-main {
  padding: 34px 28px 30px;
  min-width: 0;
}

.mock-header,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
}

.mock-header {
  margin-bottom: 24px;
  font-size: 14px;
}

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

.metric-card,
.mini-metric {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #090a09;
  padding: 16px;
  min-width: 0;
}

.metric-card span,
.mini-metric span,
.metric-card em,
.mini-metric em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.metric-card strong,
.mini-metric strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1;
}

.positive strong,
.positive em,
.green {
  color: var(--green) !important;
}

.negative strong,
.negative em,
.red {
  color: var(--red) !important;
}

.position-card,
.leak-card,
.trend-panel {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 7px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 166, 77, 0.035), transparent 14rem),
    #090a09;
  padding: 16px;
}

.position-card h3,
.leak-card h3,
.trend-panel h3 {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
}

.matrix {
  display: grid;
  grid-template-columns: 1.2fr repeat(6, 1fr);
  gap: 3px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.matrix span,
.matrix b {
  padding: 8px 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
}

.matrix b {
  color: #d9d4ce;
}

.matrix .green {
  background: rgba(39, 176, 93, 0.52);
  color: white !important;
}

.matrix .red {
  background: rgba(215, 49, 51, 0.58);
  color: white !important;
}

.compact-matrix {
  grid-template-columns: 1.2fr repeat(6, 1fr);
  font-size: 10px;
}

.leak-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.leak-row strong {
  color: var(--red);
}

.leak-row em {
  color: var(--dim);
  font-style: normal;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 58px 60px;
  border-bottom: 1px solid var(--line);
}

.feature-row article {
  position: relative;
  min-height: 272px;
  padding: 32px 30px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--card-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.004)),
    rgba(7, 8, 7, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.feature-row article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(216, 166, 77, 0.08), transparent 10rem);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.feature-row article:hover::before {
  opacity: 1;
}

.feature-row article,
.ai-panel,
.price-card,
.workflow-board {
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.feature-row article:hover,
.ai-panel:hover,
.price-card:hover,
.workflow-board:hover {
  border-color: rgba(216, 166, 77, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 72px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.feature-row article:last-child {
  border-right: 1px solid var(--line-soft);
}

.line-icon {
  color: var(--gold);
  font-size: 28px;
}

.feature-row h2 {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.feature-row p,
.proof-list p,
.price-card li,
.coach-answer,
.analysis-box p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-row p {
  margin-top: 18px;
  font-size: 15px;
}

.tracking-card,
.radar,
.question-card,
.hand-chip {
  margin-top: 24px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(8, 9, 8, 0.72);
}

.tracking-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 15px 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(57, 210, 125, 0.12), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent),
    rgba(8, 9, 8, 0.76);
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.track-row strong {
  color: var(--green);
  font-size: 18px;
}

.track-row em {
  color: var(--gold-2);
  font-style: normal;
  font-weight: 700;
}

.track-line {
  position: relative;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.track-line::after {
  content: "";
  position: absolute;
  inset: 0 22% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold-2));
  animation: trackPulse 4.8s ease-in-out infinite;
}

.question-card,
.hand-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  min-height: 92px;
  padding: 18px;
  color: #d8d0c2;
}

.hand-chip {
  justify-content: flex-start;
  gap: 10px;
}

.hand-chip b,
.board-row b {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 34px;
  border-radius: 4px;
  background: #f3f0e8;
  color: #10100f;
}

.radar {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, transparent 0 20%, rgba(216, 166, 77, 0.14) 21% 22%, transparent 23% 42%, rgba(216, 166, 77, 0.14) 43% 44%, transparent 45%),
    conic-gradient(from 0deg, rgba(216, 166, 77, 0.12), transparent, rgba(216, 166, 77, 0.16), transparent);
}

.radar::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-2), transparent 68%);
}

.section-copy {
  align-self: center;
  max-width: 340px;
}

.rule {
  display: flex;
  margin-bottom: 36px;
}

.section-copy p:not(.rule) {
  margin-top: 32px;
  font-size: 17px;
}

.section-copy a {
  display: inline-block;
  margin-top: 34px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.workflow-board {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.12);
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.tabs span {
  padding: 9px 13px;
  border-radius: 7px;
}

.tabs .active {
  background: rgba(216, 166, 77, 0.14);
  color: var(--gold-2);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 20px;
}

svg {
  width: 100%;
  height: auto;
}

.grid-line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.green-line,
.red-line,
.white-line {
  fill: none;
  stroke-width: 4;
}

.green-line { stroke: var(--green); }
.red-line { stroke: var(--red); }
.white-line { stroke: rgba(245, 240, 232, 0.72); }

.metric-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini-metric strong {
  font-size: 24px;
}

.coach-section {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.65fr);
  align-items: center;
}

.coach-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.ai-panel {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.12);
}

.coach-panel {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.04), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.006)),
    rgba(8, 9, 8, 0.88);
}

.hand-review {
  background:
    radial-gradient(circle at 90% 6%, rgba(216, 166, 77, 0.085), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.006)),
    rgba(8, 9, 8, 0.88);
}

.panel-title {
  gap: 10px;
  margin-bottom: 18px;
}

.panel-title span {
  font-size: 22px;
  font-weight: 800;
}

.panel-title em,
.popular {
  border-radius: 3px;
  background: var(--gold-2);
  color: #1a1004;
  padding: 5px 10px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-title button,
.ask-box button {
  color: var(--muted);
  background: transparent;
}

.prompt-pill {
  margin: 12px 0 18px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
  color: var(--text);
}

.coach-answer {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent),
    #080908;
  padding: 20px;
  font-size: 14px;
}

.coach-answer ul {
  margin: 8px 0 18px;
  padding-left: 18px;
}

.ask-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 14px 16px;
  color: var(--dim);
}

.hand-count {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.action-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.action-line span,
.action-line b {
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  padding: 14px 8px;
}

.action-line b {
  color: var(--gold-2);
}

.board-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.board-row em {
  margin-left: auto;
  color: var(--text);
  font-style: normal;
}

.streets {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.streets strong {
  color: var(--gold-2);
}

.analysis-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 18px;
}

.analysis-box span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.confidence {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 8px solid var(--gold);
  text-align: center;
}

.confidence strong {
  font-size: 22px;
}

.confidence span {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.proof-list {
  display: grid;
  gap: 34px;
}

.proof-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.proof-list article:last-child {
  border-bottom: 0;
}

.proof-list span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 34px;
}

.proof-list h3 {
  font-size: 20px;
}

.proof-list p {
  margin-top: 10px;
  font-size: 15px;
}

.pricing-section {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 42px;
  min-height: 540px;
}

.price-card.featured {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 166, 77, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.006)),
    rgba(8, 9, 8, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 0 0 1px rgba(216, 166, 77, 0.12),
    0 32px 90px rgba(0, 0, 0, 0.34);
}

.popular {
  position: absolute;
  right: 22px;
  top: 22px;
}

.price-card p {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 22px 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
}

.price-card h3 span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
}

.price-card em {
  color: var(--gold);
  font-style: normal;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 36px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card .wide {
  margin-top: auto;
}

.price-card li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--gold-2);
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
  margin: 42px 60px 0;
  padding: clamp(54px, 6vw, 84px) clamp(42px, 7vw, 86px);
  min-height: clamp(420px, 35vw, 560px);
  overflow: clip;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(circle at 73% 50%, rgba(216, 166, 77, 0.13), transparent 22rem),
    radial-gradient(circle at 27% 46%, rgba(255, 255, 255, 0.045), transparent 18rem),
    linear-gradient(90deg, rgba(3, 4, 3, 0.99) 0%, rgba(5, 6, 5, 0.9) 46%, rgba(4, 4, 3, 0.98) 100%),
    #030403;
  box-shadow: none;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 4, 3, 0.5), transparent 48%, rgba(3, 4, 3, 0.16));
  background-size: 72px 72px, 72px 72px, auto;
  opacity: 0.88;
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 17%;
  right: 0;
  bottom: 13%;
  width: 67%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(216, 166, 77, 0.1) 42%, transparent 100%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 26%, #000 74%, transparent);
  pointer-events: none;
}

.final-cta p {
  max-width: 340px;
  margin: 28px 0;
}

.final-cta small {
  display: block;
  margin-top: 14px;
  color: var(--dim);
}

.footer-art {
  position: relative;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: clamp(320px, 31vw, 500px);
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 166, 77, 0.24);
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  background:
    linear-gradient(90deg, rgba(240, 200, 116, 0.78), transparent 80px) top left / 120px 1px no-repeat,
    linear-gradient(180deg, rgba(240, 200, 116, 0.7), transparent 80px) top left / 1px 120px no-repeat,
    linear-gradient(270deg, rgba(240, 200, 116, 0.64), transparent 92px) bottom right / 142px 1px no-repeat,
    linear-gradient(0deg, rgba(240, 200, 116, 0.58), transparent 92px) bottom right / 1px 142px no-repeat,
    radial-gradient(circle at 55% 46%, rgba(240, 200, 116, 0.12), transparent 32%),
    radial-gradient(circle at 50% 56%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 38%),
    rgba(6, 7, 6, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 80px rgba(0, 0, 0, 0.48),
    0 28px 80px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.footer-art::before,
.footer-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-art::before {
  background:
    linear-gradient(90deg, transparent 7%, rgba(216, 166, 77, 0.24), transparent 93%) center / 100% 1px no-repeat,
    linear-gradient(180deg, transparent 4%, rgba(216, 166, 77, 0.14), transparent 96%) center / 1px 100% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 100% 1px, 1px 100%, 58px 58px, 58px 58px;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  opacity: 0.68;
}

.footer-art::after {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, 0.96) 0%, transparent 28%, transparent 72%, rgba(6, 7, 6, 0.86) 100%),
    linear-gradient(180deg, rgba(6, 7, 6, 0.78), transparent 28%, rgba(6, 7, 6, 0.9));
}

.footer-art img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(72%, 460px);
  max-height: calc(100% - 44px);
  object-fit: contain;
  opacity: 0.95;
  transform: translateY(-2px);
  filter:
    drop-shadow(0 30px 56px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 26px rgba(216, 166, 77, 0.08));
  animation: emblemFloat 8.5s ease-in-out infinite;
}

.spade-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(216, 166, 77, 0.22);
  border-radius: 50%;
  aspect-ratio: 1;
  pointer-events: none;
}

.ring-one {
  width: min(76%, 460px);
  transform: rotate(-12deg) scaleY(0.82);
  box-shadow: 0 0 42px rgba(216, 166, 77, 0.08);
  animation: ringDrift 14s linear infinite;
}

.ring-two {
  width: min(48%, 285px);
  transform: rotate(16deg) scaleY(0.82);
  border-color: rgba(255, 255, 255, 0.12);
  animation: ringDriftReverse 18s linear infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-row article.reveal.is-visible:hover,
.ai-panel.reveal.is-visible:hover,
.price-card.reveal.is-visible:hover,
.workflow-board.reveal.is-visible:hover {
  transform: translateY(-2px);
}

@keyframes markPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.16));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(240, 200, 116, 0.22));
    transform: translateY(-1px);
  }
}

@keyframes panelSweep {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translateX(-45%);
  }
  68% {
    opacity: 1;
  }
  84% {
    opacity: 0;
    transform: translateX(45%);
  }
}

@keyframes trackPulse {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes emblemFloat {
  0%,
  100% {
    transform: translateY(-2px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

@keyframes ringDrift {
  to {
    transform: rotate(348deg) scaleY(0.82);
  }
}

@keyframes ringDriftReverse {
  to {
    transform: rotate(-344deg) scaleY(0.82);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 60px 46px;
  color: var(--muted);
  font-size: 12px;
}

.small-brand .brand-mark {
  width: 30px;
  height: 30px;
  font-size: 28px;
}

.small-brand .brand-text {
  font-size: 10px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-footer nav button {
  padding: 0;
  color: inherit;
  background: transparent;
}

.preview-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  max-width: min(340px, calc(100vw - 44px));
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(7, 8, 7, 0.94);
  color: var(--text);
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.preview-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 20px 24px;
  }

  .desktop-nav {
    display: none;
  }

  .section-grid,
  .hero,
  .workflow,
  .coach-section,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 48px 24px;
  }

  .feature-row article:nth-child(2) {
    border-right: 1px solid var(--line-soft);
  }

  .workflow-grid,
  .coach-layout,
  .pricing-cards,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .final-cta {
    min-height: 680px;
    padding-bottom: 56px;
  }

  .footer-art {
    min-height: 330px;
  }

  .final-cta::before {
    background:
      linear-gradient(180deg, rgba(3, 4, 3, 0.98) 0%, rgba(3, 4, 3, 0.82) 42%, rgba(3, 4, 3, 0.1) 100%),
      linear-gradient(90deg, rgba(3, 4, 3, 0.9), transparent 55%, rgba(3, 4, 3, 0.25));
  }

  .section-copy {
    max-width: 720px;
  }

  .site-footer,
  .site-footer nav {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: 100%;
  }

  .site-header {
    min-height: 76px;
    padding: 16px clamp(16px, 5vw, 24px);
    gap: 12px;
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 34px;
  }

  .brand-text {
    max-width: 126px;
    white-space: normal;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.26em;
  }

  .header-actions .ghost-link {
    display: none;
  }

  .outline-button.small {
    width: 124px;
    min-height: 36px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .section-grid,
  .hero,
  .workflow,
  .coach-section,
  .pricing-section {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding: 52px clamp(18px, 5vw, 28px);
    overflow-x: clip;
  }

  .section-grid > *,
  .workflow-board,
  .product-frame,
  .coach-layout,
  .pricing-cards {
    min-width: 0;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.08;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .mini-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: none;
  }

  .gold-button,
  .dark-button,
  .outline-button {
    width: 100%;
  }

  .product-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-main {
    padding: 18px;
  }

  .kpi-grid,
  .metric-strip,
  .feature-row,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .feature-row article {
    min-height: auto;
    padding: 30px 22px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .workflow-board {
    padding: 16px;
  }

  .tabs {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .matrix,
  .compact-matrix {
    min-width: 520px;
    grid-template-columns: 1.35fr repeat(6, minmax(28px, 1fr));
    font-size: 10px;
  }

  .compact-matrix {
    min-width: 460px;
  }

  .matrix span,
  .matrix b {
    padding: 6px 3px;
  }

.position-card,
.workflow-grid > .matrix {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 166, 77, 0.46) rgba(255, 255, 255, 0.045);
}

.workflow-board {
  overflow: hidden;
}

.position-card::-webkit-scrollbar,
.workflow-grid > .matrix::-webkit-scrollbar,
.tabs::-webkit-scrollbar {
  height: 8px;
}

.position-card::-webkit-scrollbar-track,
.workflow-grid > .matrix::-webkit-scrollbar-track,
.tabs::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.position-card::-webkit-scrollbar-thumb,
.workflow-grid > .matrix::-webkit-scrollbar-thumb,
.tabs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(216, 166, 77, 0.46);
}

  .workflow-grid,
  .workflow-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .action-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .analysis-box {
    grid-template-columns: 1fr;
  }

  .proof-list article {
    grid-template-columns: 1fr;
  }

  .final-cta {
    margin-inline: clamp(18px, 5vw, 28px);
    padding: 48px clamp(24px, 6vw, 34px);
    min-height: auto;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .footer-art {
    justify-self: center;
    min-height: 230px;
    width: 100%;
  }

  .final-cta::before {
    background:
      linear-gradient(180deg, rgba(3, 4, 3, 0.98) 0%, rgba(3, 4, 3, 0.74) 42%, rgba(3, 4, 3, 0.24) 100%);
  }
}
