@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Share+Tech+Mono&family=Press+Start+2P&display=swap');

:root {
  --bg:      #040208;
  --bg2:     #08050f;
  --card:    #0c0914;
  --card2:   #100d18;
  --border:  #1a1228;
  --br:      #380808;
  --gold:    #c8960c;
  --gold-l:  #f0c040;
  --gold-p:  #fde68a;
  --red:     #8b1a1a;
  --red-b:   #c42020;
  --red-l:   #e03030;
  --red-dim: #2a0505;
  --text:    #e8d5c0;
  --dim:     #8a7060;
  --muted:   #4a3830;
  --serif:   'Cinzel', serif;
  --mono:    'Share Tech Mono', monospace;
  --pixel:   'Press Start 2P', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 100% 50% at 50% -8%, rgba(139,26,26,.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 95%, rgba(200,150,12,.06) 0%, transparent 55%),
    radial-gradient(ellipse 45% 30% at 8% 75%, rgba(100,10,10,.1) 0%, transparent 50%);
}

.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section    { padding: 88px 0; }

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

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }

/* ── Nav ───────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(4,2,8,.92); backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.nav-brand { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--gold-l); text-decoration: none; letter-spacing: .06em; }
.nav-brand span { color: var(--muted); font-size: 9px; display: block; font-family: var(--mono); letter-spacing: .14em; margin-top: 2px; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  font-family: var(--pixel); font-size: 7px; letter-spacing: .08em;
  color: var(--muted); text-decoration: none; padding: 9px 14px;
  border: 1px solid transparent; border-radius: 2px; transition: all .15s;
}
.nav-link:hover { color: var(--gold); border-color: rgba(200,150,12,.2); background: rgba(200,150,12,.04); }
.nav-link.active { color: var(--gold-p); border-color: rgba(200,150,12,.35); background: rgba(200,150,12,.06); }
.nav-link.red-nav { color: #aa4444; border-color: rgba(196,32,32,.2); }
.nav-link.red-nav:hover { color: #ff8888; border-color: rgba(196,32,32,.5); background: rgba(139,26,26,.08); }
.nav-link.portfolio-nav {
  color: var(--gold-l);
  border-color: rgba(200,150,12,.55);
  background: rgba(200,150,12,.05);
}
.nav-link.portfolio-nav:hover {
  color: var(--gold-p);
  border-color: var(--gold);
  background: rgba(200,150,12,.12);
  box-shadow: 0 0 0 1px rgba(200,150,12,.15) inset, 0 0 12px rgba(200,150,12,.15);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero { padding: 96px 0 80px; text-align: center; position: relative; z-index: 1; }
.hero-line {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,26,26,.5), var(--gold), rgba(139,26,26,.5), transparent);
}
.eyebrow {
  font-family: var(--pixel); font-size: 6px; letter-spacing: .22em; color: rgba(196,32,32,.8);
  margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.eyebrow::before, .eyebrow::after { content: ''; flex: 1; max-width: 50px; height: 1px; background: var(--br); }
.hero-title {
  font-family: var(--serif); font-size: clamp(40px, 7.5vw, 78px); font-weight: 900; line-height: 1.06;
  color: var(--gold-l);
  text-shadow: 0 0 100px rgba(200,150,12,.2), 0 2px 0 rgba(20,8,0,.8);
  margin-bottom: 22px; letter-spacing: .02em;
}
.hero-title em { color: var(--red-l); font-style: normal; }
.hero-sub { color: var(--dim); font-size: 14px; max-width: 480px; margin: 0 auto 36px; line-height: 1.85; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--pixel); font-size: 9px; letter-spacing: .1em;
  padding: 14px 26px; text-decoration: none; cursor: pointer; border: 1px solid;
  transition: all .2s cubic-bezier(.16,1,.3,1); text-align: center; background: none;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.04), transparent);
  opacity: 0; transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  border-color: rgba(200,150,12,.6); color: var(--gold-l);
  background: linear-gradient(135deg, rgba(42,26,0,.7), rgba(20,12,0,.9));
  box-shadow: 0 0 0 0 rgba(200,150,12,0), inset 0 1px 0 rgba(200,150,12,.15);
}
.btn-gold:hover { border-color: var(--gold); box-shadow: 0 0 24px rgba(200,150,12,.2), inset 0 1px 0 rgba(200,150,12,.2); color: #fff; }
.btn-red {
  border-color: rgba(196,32,32,.5); color: #ff9999;
  background: linear-gradient(135deg, rgba(50,5,5,.8), rgba(25,0,0,.9));
  box-shadow: inset 0 1px 0 rgba(255,100,100,.08);
}
.btn-red:hover { border-color: var(--red-b); box-shadow: 0 0 24px rgba(196,32,32,.2); color: #fff; }
.btn-ghost { border-color: var(--border); color: var(--dim); }
.btn-ghost:hover { border-color: rgba(255,255,255,.15); color: var(--text); }
.btn-full  { display: flex; width: 100%; }
.btn-lg    { padding: 15px 32px; font-size: 7.5px; }
.btn:disabled { opacity: .35; cursor: not-allowed; pointer-events: none; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  padding: 28px; transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.025) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover { border-color: rgba(200,150,12,.2); box-shadow: 0 12px 48px rgba(0,0,0,.5); }
.card-red { border-color: var(--br); background: linear-gradient(135deg, rgba(40,4,4,.4), var(--card)); }
.card-red:hover { border-color: rgba(196,32,32,.35); }
.card-gold { border-color: rgba(200,150,12,.4); box-shadow: 0 0 40px rgba(200,150,12,.07); }
.card-gold:hover { border-color: rgba(200,150,12,.7); box-shadow: 0 0 60px rgba(200,150,12,.14); }

/* ── Service grid ──────────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.service-label { font-family: var(--pixel); font-size: 6.5px; letter-spacing: .14em; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.service-title { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--gold-l); margin-bottom: 6px; }
.service-price { font-family: var(--pixel); font-size: 11px; color: var(--gold); margin-bottom: 18px; }
.service-price small { font-size: 8px; color: var(--dim); display: block; margin-top: 6px; letter-spacing: .06em; font-family: var(--mono); }
.feature-list { list-style: none; margin-bottom: 24px; }
.feature-list li { font-size: 13px; color: var(--dim); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.03); display: flex; align-items: center; gap: 10px; }
.feature-list li::before { content: ''; width: 4px; height: 4px; background: var(--gold); flex-shrink: 0; }

/* ── Upgrade cards ─────────────────────────────────────────── */
.upgrade-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 8px; }
.upgrade-card {
  background: var(--card2); border: 1px solid var(--border);
  padding: 14px 16px; cursor: pointer; user-select: none; position: relative;
  transition: border-color .18s, background .18s, transform .18s;
}
.upgrade-card:hover { border-color: rgba(200,150,12,.3); background: rgba(200,150,12,.03); transform: translateY(-1px); }
.upgrade-card.selected { border-color: rgba(200,150,12,.7); background: rgba(200,150,12,.08); }
.upgrade-card.selected::after { content: '✓'; position: absolute; top: 10px; right: 12px; color: var(--gold); font-weight: 900; font-size: 12px; }
.upgrade-card.warn-card { border-color: var(--br); }
.upgrade-card.warn-card:hover { border-color: rgba(196,32,32,.5); background: rgba(139,26,26,.06); }
.upgrade-card.warn-card.selected { border-color: rgba(196,32,32,.7); background: rgba(139,26,26,.12); }
.upgrade-card.warn-card.selected::after { color: var(--red-l); }
.upgrade-name  { font-family: var(--pixel); font-size: 5.5px; color: var(--text); letter-spacing: .08em; margin-bottom: 5px; line-height: 1.6; }
.upgrade-price { font-size: 14px; color: var(--gold); margin-bottom: 4px; font-family: var(--serif); font-weight: 700; }
.upgrade-price.red { color: #ff8888; }
.upgrade-desc  { color: var(--muted); font-size: 10px; line-height: 1.55; }
.upgrade-warn  { color: #ff7777; font-size: 9px; margin-top: 5px; font-weight: bold; }

/* ── Upgrade section label ─────────────────────────────────── */
.upgrade-section-title {
  font-family: var(--pixel); font-size: 5.5px; letter-spacing: .14em; color: rgba(196,32,32,.7);
  margin: 18px 0 10px; display: flex; align-items: center; gap: 8px;
}
.upgrade-section-title::after { content: ''; flex: 1; height: 1px; background: var(--br); }

/* ── Step indicator ────────────────────────────────────────── */
.step-num {
  font-family: var(--pixel); font-size: 5.5px; color: rgba(200,150,12,.8); letter-spacing: .12em;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.step-num::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(200,150,12,.2), transparent); }

/* ── Site type tiles ───────────────────────────────────────── */
#site-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 8px; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--pixel); font-size: 5.5px; letter-spacing: .1em; color: rgba(200,150,12,.8); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(4,2,8,.8); border: 1px solid var(--border); color: var(--text);
  padding: 11px 14px; font-family: var(--mono); font-size: 13px; outline: none;
  transition: border-color .15s, box-shadow .15s; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(200,150,12,.5); box-shadow: 0 0 0 3px rgba(200,150,12,.06);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-select option { background: #08050f; }
.form-hint  { font-size: 10px; color: var(--muted); margin-top: 5px; line-height: 1.5; }
.form-error { font-size: 10px; color: #ff6666; margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.discord-row { display: flex; gap: 12px; align-items: flex-start; }
.discord-avatar {
  width: 52px; height: 52px; border: 1px solid var(--border); flex-shrink: 0;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--dim); transition: border-color .2s;
}
.discord-avatar.valid { border-color: rgba(200,150,12,.5); }
.discord-avatar.invalid { border-color: rgba(196,32,32,.5); }

/* ── Order summary ─────────────────────────────────────────── */
.summary-line { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.03); }
.summary-line:last-child { border-bottom: none; }
.summary-line .label { color: var(--dim); }
.summary-line .val   { color: var(--text); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0 0; border-top: 1px solid var(--border); margin-top: 6px; }
.summary-total .label { color: var(--text); font-family: var(--pixel); font-size: 6px; letter-spacing: .1em; }
.summary-total .val   { color: var(--gold-l); font-family: var(--serif); font-size: 22px; font-weight: 700; }

/* ── Badges ────────────────────────────────────────────────── */
.badge { display: inline-block; font-family: var(--pixel); font-size: 5px; padding: 4px 9px; letter-spacing: .08em; }
.badge-pending     { border: 1px solid #664400; color: #ddaa44; background: rgba(80,50,0,.2); }
.badge-in-progress { border: 1px solid #1a6633; color: #44cc88; background: rgba(0,70,30,.2); }
.badge-completed   { border: 1px solid var(--gold); color: var(--gold-l); background: rgba(200,150,12,.1); }
.badge-cancelled   { border: 1px solid #663333; color: #ee5555; background: rgba(80,0,0,.2); }
.badge-on-hold     { border: 1px solid #553366; color: #aa66cc; background: rgba(50,0,70,.2); }

/* ── Success ───────────────────────────────────────────────── */
.success-box {
  text-align: center; padding: 56px 40px;
  border: 1px solid rgba(200,150,12,.4);
  background: linear-gradient(135deg, rgba(30,20,0,.5), var(--card));
  box-shadow: 0 0 80px rgba(200,150,12,.07);
}
.order-code { font-family: var(--pixel); font-size: 20px; color: var(--gold-l); letter-spacing: .25em; margin: 20px 0; text-shadow: 0 0 30px rgba(200,150,12,.5); }

/* ── Stats strip ───────────────────────────────────────────── */
.stats-strip {
  border-top: 1px solid rgba(196,32,32,.25); border-bottom: 1px solid rgba(196,32,32,.25);
  background: linear-gradient(90deg, rgba(30,3,3,.5), rgba(12,0,0,.6), rgba(30,3,3,.5)); padding: 22px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 8px; border-right: 1px solid rgba(196,32,32,.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 32px; font-weight: 900; color: var(--red-l); line-height: 1; }
.stat-label { font-family: var(--pixel); font-size: 5px; color: var(--muted); letter-spacing: .1em; margin-top: 6px; }

/* ── Section header ────────────────────────────────────────── */
.sh { margin-bottom: 40px; }
.sh-eye { font-family: var(--pixel); font-size: 5.5px; color: rgba(196,32,32,.7); letter-spacing: .2em; margin-bottom: 10px; }
.sh-title { font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: var(--gold-l); margin-bottom: 8px; }
.sh-sub { color: var(--dim); font-size: 13px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-size: 13px; color: var(--text); transition: color .15s; }
.faq-q:hover { color: var(--gold-p); }
.faq-icon { color: var(--red-b); font-size: 18px; transition: transform .25s cubic-bezier(.16,1,.3,1), color .15s; flex-shrink: 0; margin-left: 12px; font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-a { color: var(--dim); font-size: 12px; line-height: 1.85; padding-bottom: 18px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── Admin table ───────────────────────────────────────────── */
.order-row { display: grid; grid-template-columns: 100px 1fr 130px 80px 110px 70px; gap: 12px; align-items: center; padding: 13px 20px; border-bottom: 1px solid var(--border); font-size: 12px; transition: background .1s; }
.order-row:hover { background: rgba(255,255,255,.015); }
.order-head { font-family: var(--pixel); font-size: 5px; color: var(--muted); letter-spacing: .1em; background: var(--bg2); }
.code-cell { font-family: var(--pixel); font-size: 7px; color: var(--gold); }

/* ── Gold rule ─────────────────────────────────────────────── */
.gold-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--br), var(--gold), var(--br), transparent); max-width: 400px; margin: 0 auto; }

footer {
  border-top: 1px solid var(--border); padding: 32px 28px; text-align: center;
  color: var(--muted); font-size: 12px; background: var(--bg2); position: relative; z-index: 1;
}
footer a { color: var(--dim); text-decoration: none; transition: color .15s; }
footer a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links .nav-link:not(.active):not(.red-nav):not(.discord-nav):not(.portfolio-nav) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .order-row { grid-template-columns: 90px 1fr 90px; }
  .order-row > *:nth-child(n+4) { display: none; }
}

/* === v3 additions === */

@media (max-width: 880px) {
  .game-dev-grid { grid-template-columns: 1fr !important; }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2.6fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding: 40px 0 30px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-l);
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.footer-tag { color: var(--dim); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: flex-start; }
.footer-links a { font-size: 13px; color: var(--dim); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--gold-l); }
.footer-meta {
  font-family: var(--pixel);
  font-size: 5px;
  color: var(--muted);
  text-align: right;
  letter-spacing: .12em;
  line-height: 2.2;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-meta { text-align: left; }
}

/* prevent text overflow in narrow containers */
.field-textarea, .field-input, td, .val-sm, .pf-desc, .faq-a {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* portfolio page */
.portfolio-shell { max-width: 980px; margin: 0 auto; padding: 50px 28px 80px; position: relative; z-index: 1; }
.pf-list { display: grid; gap: 22px; }
.pf-item { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: all .25s; }
.pf-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.pf-img-wrap { aspect-ratio: 16 / 7; background: var(--bg); overflow: hidden; }
.pf-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-body { padding: 20px 24px; }
.pf-meta { display: flex; gap: 12px; font-family: var(--pixel); font-size: 5px; color: var(--muted); letter-spacing: .12em; margin-bottom: 10px; align-items: center; }
.pf-meta .pf-tag { background: rgba(200,150,12,.12); color: var(--gold); padding: 4px 8px; }
.pf-name { font-family: var(--serif); font-size: 22px; color: var(--text); font-weight: 700; margin-bottom: 6px; }
.pf-desc { color: var(--dim); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.pf-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-l); font-family: var(--mono); font-size: 13px; border-bottom: 1px solid transparent; transition: border .15s; }
.pf-link:hover { border-bottom-color: var(--gold-l); }

/* === other development grid === */
.other-dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.other-card {
  display: flex;
  flex-direction: column;
}
.other-warn {
  font-family: var(--pixel);
  font-size: 6.5px;
  color: rgba(255, 110, 110, .9);
  letter-spacing: .08em;
  line-height: 2;
  padding: 11px 14px;
  background: rgba(196,32,32,.05);
  border-left: 2px solid rgba(196,32,32,.4);
  margin: 0 0 18px;
}

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

/* normalize service-title and service-price heights so cards line up */
.service-title { min-height: 30px; }
.service-price { min-height: 38px; }

/* === track page === */
.tracking-shell {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 0;
}
.tracking-shell .field { margin-bottom: 16px; }
.tracking-shell .field-label {
  display: block;
  font-family: var(--pixel);
  font-size: 5px;
  color: var(--muted);
  letter-spacing: .14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.tracking-shell .input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.tracking-shell .input:focus { border-color: var(--gold); }

.status-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.status-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 8px 0;
  position: relative;
}
.status-step::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 28px;
  bottom: -8px;
  width: 1px;
  background: var(--border);
}
.status-step:last-child::before { display: none; }
.status-step .dot {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 2px;
}
.status-step.done .dot { background: var(--gold); border-color: var(--gold); }
.status-step.current .dot { background: var(--red-b); border-color: var(--red-l); animation: pulse 2s infinite; }
.status-step .step-info { flex: 1; padding-bottom: 6px; }
.status-step .step-name { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.status-step.done .step-name { color: var(--gold-l); }
.status-step.current .step-name { color: var(--red-l); }
.status-step .step-desc { font-size: 12px; color: var(--dim); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,32,32,.4); }
  50% { box-shadow: 0 0 0 6px rgba(196,32,32,0); }
}

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--pixel);
  font-size: 6px;
  letter-spacing: .14em;
  border: 1px solid;
}
.status-badge.pending     { color: #c0a040; border-color: #c0a040; }
.status-badge.in-progress { color: var(--red-l); border-color: var(--red-l); }
.status-badge.completed   { color: #6ee686; border-color: #6ee686; }
.status-badge.cancelled   { color: #999; border-color: #444; }
.status-badge.on-hold     { color: #888; border-color: #444; }

.comment-card {
  background: var(--bg);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
}
.comment-card .meta {
  font-family: var(--pixel);
  font-size: 4px;
  color: var(--muted);
  letter-spacing: .12em;
  margin-bottom: 6px;
}

/* === discord button === */
.nav-link.discord-nav {
  color: #b3b8ff;
  border-color: rgba(88,101,242,.45);
  background: rgba(88,101,242,.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link.discord-nav svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.nav-link.discord-nav:hover {
  color: #fff;
  border-color: rgba(88,101,242,.85);
  background: rgba(88,101,242,.18);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5865F2;
  color: #fff;
  padding: 10px 16px;
  font-family: var(--pixel);
  font-size: 7px;
  letter-spacing: .12em;
  border: 1px solid #5865F2;
  text-decoration: none;
  cursor: pointer;
  transition: all .15s;
}
.btn-discord:hover { background: #4752c4; border-color: #4752c4; color: #fff; }
.btn-discord svg { width: 14px; height: 14px; fill: currentColor; }
.btn-discord.btn-lg { padding: 14px 22px; font-size: 9px; letter-spacing: .14em; }
.btn-discord.btn-lg svg { width: 18px; height: 18px; }

/* === sales counter pill under hero === */
.sales-counter {
  display: flex;
  justify-content: center;
  padding: 0 28px 24px;
}
.sales-counter .container {
  display: flex;
  justify-content: center;
}
.sales-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(200,150,12,.06);
  border: 1px solid rgba(200,150,12,.25);
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text);
}
.sales-pill .sales-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee686;
  box-shadow: 0 0 8px rgba(110, 230, 134, 0.6);
  flex-shrink: 0;
  animation: sales-pulse 2s ease-in-out infinite;
}
.sales-pill .sales-text strong {
  color: var(--gold-l);
  font-weight: 600;
  font-family: var(--serif);
  font-size: 17px;
  margin: 0 2px;
}
.sales-pill.first-order {
  background: rgba(196,32,32,.06);
  border-color: rgba(196,32,32,.3);
}
.sales-pill.first-order .sales-dot {
  background: var(--red-l);
  box-shadow: 0 0 8px rgba(224, 48, 48, 0.6);
}

@keyframes sales-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

/* === custom cursor ring === */
@media (hover: hover) and (pointer: fine) {
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(200, 150, 12, .5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
    mix-blend-mode: difference;
    will-change: transform;
  }
  .cursor-ring.hovering {
    width: 48px;
    height: 48px;
    border-color: rgba(240, 192, 64, .85);
    background: rgba(240, 192, 64, .04);
  }
  .cursor-ring.clicking {
    width: 22px;
    height: 22px;
    border-color: var(--gold-l);
    background: rgba(240, 192, 64, .12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-ring { display: none !important; }
}

/* === trustpilot cta on track page === */
.tp-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(0, 182, 122, .06);
  border: 1px solid rgba(0, 182, 122, .35);
  text-decoration: none;
  margin-bottom: 22px;
  transition: all .15s;
}
.tp-cta:hover {
  background: rgba(0, 182, 122, .12);
  border-color: rgba(0, 182, 122, .7);
}
.tp-cta svg { width: 28px; height: 28px; flex-shrink: 0; }
.tp-cta-text { flex: 1; min-width: 0; }
.tp-cta-line1 { font-family: var(--mono); font-size: 14px; color: #c8efd9; font-weight: 600; }
.tp-cta-line2 { font-family: var(--mono); font-size: 11px; color: var(--dim); margin-top: 2px; }
.tp-cta-arrow { color: #6ee0aa; font-size: 18px; flex-shrink: 0; transition: transform .15s; }
.tp-cta:hover .tp-cta-arrow { transform: translateX(3px); }

.tp-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 22px;
  font-family: var(--pixel); font-size: 5px; color: var(--muted); letter-spacing: .2em;
}
.tp-divider::before, .tp-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* === trustpilot summary widget on homepage === */
.tp-hero-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(0, 182, 122, .04);
  border: 1px solid rgba(0, 182, 122, .25);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  margin-top: 24px;
  transition: all .15s;
}
.tp-hero-widget:hover { background: rgba(0, 182, 122, .1); border-color: rgba(0, 182, 122, .55); }
.tp-hero-widget .tp-star { color: #00b67a; font-size: 16px; }
.tp-hero-widget .tp-stars { color: #00b67a; letter-spacing: 1px; }
.tp-hero-widget .tp-rating { color: #6ee0aa; font-weight: 600; }
.tp-hero-widget .tp-divide { color: var(--muted); }
.tp-hero-widget .tp-label { color: var(--dim); font-size: 12px; }
