/* ===================================
   Faby.lol Commission Site — Styles
   =================================== */

/* ---- Variables ---- */
:root {
  --bg:            #07070f;
  --bg2:           #0d0d1a;
  --bg3:           #111122;
  --purple:        #9b4dff;
  --purple-dim:    rgba(155, 77, 255, 0.15);
  --purple-border: rgba(155, 77, 255, 0.28);
  --magenta:       #ff2d9b;
  --cyan:          #00d4ff;
  --white:         #f0f0ff;
  --white-dim:     rgba(240, 240, 255, 0.55);
  --white-faint:   rgba(240, 240, 255, 0.08);
  --card-bg:       rgba(255, 255, 255, 0.04);
  --card-border:   rgba(155, 77, 255, 0.22);
  --nav-h:         72px;
  --container:     1200px;
  --radius:        14px;
  --radius-sm:     8px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
img, canvas { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ---- Custom Cursor ---- */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  box-shadow: 0 0 10px var(--purple), 0 0 20px rgba(155,77,255,.4);
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(155,77,255,.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s, background .25s;
  will-change: transform;
}
.cursor-dot.hover  { width: 12px; height: 12px; background: var(--magenta); }
.cursor-ring.hover {
  width: 52px; height: 52px;
  border-color: rgba(255,45,155,.5);
  background: rgba(155,77,255,.06);
}

/* ---- Container ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.8rem;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: .92rem;
  border-radius: 50px; border: none; cursor: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(155,77,255,.35);
  letter-spacing: .01em;
}
.btn-primary:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(155,77,255,.5); }

.btn-discord {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .78rem 1.8rem;
  background: rgba(255,255,255,.07); color: var(--white);
  font-weight: 600; font-size: .92rem;
  border-radius: 50px; border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px); cursor: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn-discord:hover { background: rgba(88,101,242,.2); border-color: rgba(88,101,242,.5); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .72rem 1.6rem;
  background: transparent; color: var(--purple);
  font-weight: 600; font-size: .9rem;
  border-radius: 50px; border: 1.5px solid var(--purple); cursor: none;
  transition: background .2s, color .2s, transform .2s;
}
.btn-outline:hover { background: var(--purple-dim); transform: translateY(-2px); }

.btn-commission {
  display: inline-flex; align-items: center;
  padding: .55rem 1.35rem;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #fff; font-weight: 600; font-size: .88rem;
  border-radius: 50px; border: none; cursor: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 2px 16px rgba(155,77,255,.3); white-space: nowrap;
}
.btn-commission:hover { opacity: .88; transform: translateY(-1px); }

/* ---- Navigation ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  transition: background .3s, backdrop-filter .3s, border-bottom .3s;
}
#navbar.scrolled {
  background: rgba(7,7,15,.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155,77,255,.12);
}
.nav-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 2rem; height: 100%;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .45rem;
  font-family: 'Syne', sans-serif; font-weight: 900;
  font-size: 1.25rem; letter-spacing: .04em;
  color: var(--white); margin-right: auto;
}
.logo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: inline-block; box-shadow: 0 0 10px var(--purple); flex-shrink: 0;
}
.logo-accent { color: var(--purple); }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .4rem .9rem; font-size: .9rem; font-weight: 500;
  color: var(--white-dim); border-radius: 50px;
  transition: color .2s, background .2s; cursor: none;
}
.nav-links a:hover { color: var(--white); background: var(--white-faint); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,7,15,.97); backdrop-filter: blur(20px);
  z-index: 999; padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid var(--card-border);
  display: none; transform: translateY(-8px); opacity: 0;
  transition: transform .25s, opacity .25s;
}
.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu ul li a {
  display: block; padding: .7rem 1rem; font-size: 1.05rem;
  font-weight: 500; color: var(--white-dim); border-radius: var(--radius-sm);
  cursor: none; transition: color .2s, background .2s;
}
.mobile-menu ul li a:hover { color: var(--white); background: var(--white-faint); }

/* ---- Section Common ---- */
.section { position: relative; padding: 120px 0; overflow: hidden; }
.section-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: 'Syne', sans-serif; font-weight: 900;
  font-size: clamp(80px, 16vw, 220px);
  color: rgba(255,255,255,.028); white-space: nowrap;
  pointer-events: none; user-select: none;
  letter-spacing: -.02em; line-height: 1;
}
.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  color: var(--purple); text-transform: uppercase; margin-bottom: .8rem;
}
.section-header { margin-bottom: 3rem; }
.section-header .section-title { margin-bottom: 0; }
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1;
  letter-spacing: -.02em; color: var(--white); margin-bottom: 1.2rem;
}
.section-desc {
  color: var(--white-dim); font-size: 1.05rem; line-height: 1.75;
  max-width: 500px; margin-bottom: 2rem;
}
.badge {
  display: inline-block; padding: .22rem .75rem;
  background: rgba(155,77,255,.12); border: 1px solid var(--purple-border);
  color: var(--badge-color, var(--purple));
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  border-radius: 50px; margin-bottom: 1rem; text-transform: uppercase;
}
.reveal { opacity: 0; transform: translateY(35px); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}

/* Floating lines container fills the hero */
#floating-lines-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  mix-blend-mode: screen;
}
#floating-lines-bg canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Ambient glow underneath */
.hero::before {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at 30% 40%, rgba(155,77,255,.1) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; right: -5%;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse at 70% 70%, rgba(255,45,155,.07) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  padding-left: calc((100vw - var(--container)) / 2 + 2rem);
  padding-right: 2rem;
  max-width: calc(var(--container) / 2 + (100vw - var(--container)) / 2 + 100px);
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .1em;
  color: var(--purple); text-transform: uppercase; margin-bottom: 1.4rem;
}
.tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple); box-shadow: 0 0 8px var(--purple);
  animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--purple); }
  50% { opacity: .5; box-shadow: 0 0 16px var(--purple); }
}

/* Hero title — gradient text; extra padding prevents right/bottom clipping */
.hero-title {
  font-family: 'Syne', sans-serif; font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(135deg, #c084fc 0%, var(--purple) 30%, var(--magenta) 70%, #ff8c42 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  /* Padding gives the background-clip area room so the last letters aren't cut off */
  padding-right: .12em;
  padding-bottom: .08em;
  /* display:inline-block forces the element to shrink-wrap the text,
     preventing overflow from hiding the painted gradient */
  display: inline-block;
}

.hero-desc {
  color: rgba(240, 240, 255, 0.88); font-size: 1.05rem; line-height: 1.75;
  margin-bottom: 2.4rem; max-width: 460px;
  text-shadow: 0 1px 8px rgba(7, 7, 15, 0.9);
}
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: .85rem; }

/* Social Rail */
.social-rail {
  position: absolute; left: 2rem; bottom: 3rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .8rem; z-index: 3;
}
.social-icon { color: var(--white-dim); transition: color .2s, transform .2s; cursor: none; }
.social-icon:hover { color: var(--purple); transform: translateY(-2px); }
.social-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(240,240,255,.25), transparent);
}

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 2.5rem; right: 3rem; z-index: 3; }
.scroll-circle {
  position: relative; width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center; cursor: none;
}
.scroll-text-svg { position: absolute; inset: 0; transform-origin: center center; }
.scroll-arrow-inner {
  color: rgba(240,240,255,.6); z-index: 1;
  animation: arrowBounce 1.6s ease-in-out infinite;
}
@keyframes arrowBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ===================================
   SKILLS SECTION
   =================================== */
.skills-section { background: var(--bg2); }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.skills-cards { display: flex; flex-direction: column; gap: 1.1rem; }
.skill-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  display: flex; align-items: flex-start; gap: 1.1rem;
  transition: border-color .25s, transform .25s, box-shadow .25s; cursor: none;
}
.skill-card:hover { border-color: rgba(155,77,255,.6); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(155,77,255,.12); }
.skill-card-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.skill-card h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: .3rem; color: var(--white); }
.skill-card p { font-size: .88rem; color: var(--white-dim); line-height: 1.55; }

/* ===================================
   COMMISSIONS / TABS
   =================================== */
.commissions-section { background: var(--bg); }

/* Tab navigation */
.tabs-nav {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(155,77,255,.15);
  padding-bottom: 0;
}
.tab-btn {
  padding: .65rem 1.35rem;
  background: transparent; border: none;
  color: var(--white-dim); font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: .88rem; cursor: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active {
  color: var(--purple);
  border-bottom-color: var(--purple);
  background: rgba(155,77,255,.06);
}

/* Tab panels */
.tab-panel { display: none; animation: tabIn .3s ease; }
.tab-panel.active { display: block; }
@keyframes tabIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---- Base price card (inside tab) ---- */
.base-price-card {
  position: relative;
  display: grid; grid-template-columns: 260px 1fr; gap: 3rem;
  background: linear-gradient(135deg, rgba(155,77,255,.1) 0%, rgba(255,45,155,.06) 100%);
  border: 1px solid rgba(155,77,255,.35); border-radius: 20px;
  padding: 2.8rem 3rem; margin-bottom: 3.5rem; overflow: hidden;
}
.base-price-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, transparent 30%, rgba(155,77,255,.05));
  pointer-events: none;
}
.base-price-badge {
  position: absolute; top: 1.5rem; right: 1.8rem;
  padding: .22rem .85rem;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; border-radius: 50px; text-transform: uppercase;
}
.base-price-left { display: flex; flex-direction: column; align-items: flex-start; }
.base-price-label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: .4rem; }
.base-price-amount {
  font-family: 'Syne', sans-serif; font-weight: 900; font-size: 4.5rem; line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .8rem;
}
.base-price-left p { font-size: .9rem; color: var(--white-dim); line-height: 1.6; margin-bottom: 1.8rem; flex: 1; }
.base-price-features { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 2rem; align-content: start; }
.feature-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--white-dim); line-height: 1.4; }
.check { color: var(--purple); font-weight: 700; flex-shrink: 0; line-height: 1.4; }

/* Addons */
.addons-header { margin-bottom: 1.8rem; }
.addons-header h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.6rem; margin-bottom: .3rem; }
.addons-header p { color: var(--white-dim); font-size: .95rem; }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 3.5rem; }
.addon-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.6rem;
  display: flex; flex-direction: column; gap: .4rem;
  transition: border-color .25s, transform .25s, box-shadow .25s; cursor: none;
}
.addon-card:hover { border-color: rgba(155,77,255,.55); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(155,77,255,.12); }
.addon-icon { font-size: 1.5rem; margin-bottom: .3rem; color: var(--purple); }
.addon-card h4 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--white); }
.addon-card > p { font-size: .84rem; color: var(--white-dim); line-height: 1.5; flex: 1; }
.addon-price { font-family: 'Syne', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--purple); margin-top: .6rem; }
.addon-price .each { font-size: .85rem; font-weight: 500; color: var(--white-dim); font-family: 'Space Grotesk', sans-serif; }
.addon-price-tiers { margin-top: .6rem; display: flex; flex-direction: column; gap: .3rem; }
.tier-row { display: flex; justify-content: space-between; align-items: center; font-size: .84rem; color: var(--white-dim); padding: .2rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.tier-row:last-child { border-bottom: none; }
.tier-price { font-weight: 600; color: var(--purple); }

/* Calculator */
.calculator { background: rgba(13,13,26,.9); border: 1px solid var(--card-border); border-radius: 20px; overflow: hidden; }
.calc-header { padding: 1.8rem 2.2rem; border-bottom: 1px solid rgba(155,77,255,.15); background: linear-gradient(to right, rgba(155,77,255,.06), transparent); }
.calc-header h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; margin-bottom: .2rem; }
.calc-header p { font-size: .9rem; color: var(--white-dim); }
.calc-body { display: grid; grid-template-columns: 1fr 300px; }
.calc-options { padding: 1.8rem 2.2rem; display: flex; flex-direction: column; gap: 1.8rem; border-right: 1px solid rgba(155,77,255,.12); }
.calc-group-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: .7rem; }
.calc-check { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: var(--white-dim); cursor: none; padding: .3rem 0; transition: color .2s; }
.calc-check:hover { color: var(--white); }
.calc-check input { display: none; }
.checkmark { width: 17px; height: 17px; border: 1.5px solid rgba(155,77,255,.4); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.calc-check input[type="radio"] ~ .checkmark { border-radius: 50%; }
.calc-check input:checked ~ .checkmark { background: var(--purple); border-color: var(--purple); }
.calc-check input:checked ~ .checkmark::after { content: ''; display: block; width: 5px; height: 5px; border-radius: 1px; background: white; }
.calc-check input[type="radio"]:checked ~ .checkmark::after { border-radius: 50%; }
.calc-check em { margin-left: auto; font-style: normal; font-weight: 600; color: var(--purple); font-size: .82rem; }
.calc-check input:checked ~ em { color: var(--white); }
.calc-total-panel { padding: 1.8rem; display: flex; align-items: flex-start; }
.calc-total-inner { width: 100%; display: flex; flex-direction: column; }
.calc-breakdown { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; min-height: 60px; }
.breakdown-item { display: flex; justify-content: space-between; font-size: .85rem; color: var(--white-dim); }
.breakdown-item span { color: var(--white); font-weight: 600; }
.calc-divider { height: 1px; background: rgba(155,77,255,.2); margin-bottom: 1rem; }
.calc-total-line { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.4rem; font-weight: 600; font-size: .95rem; color: var(--white-dim); }
.calc-amount { font-family: 'Syne', sans-serif; font-weight: 900; font-size: 2.4rem; background: linear-gradient(135deg, var(--purple), var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; transition: all .2s; }
.calc-cta { width: 100%; justify-content: center; }
.calc-note { margin-top: .8rem; font-size: .75rem; color: rgba(240,240,255,.3); line-height: 1.5; }

/* ---- Coming Soon Panels (Protection, Animator, Scripts, Blender tabs) ---- */
.coming-soon-panel {
  position: relative;
  max-width: 680px; margin: 0 auto;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 24px; padding: 3.5rem 3rem;
  text-align: center; overflow: hidden;
}
.csoon-glow {
  position: absolute; bottom: -40%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, var(--g, var(--purple)) 0%, transparent 70%);
  opacity: .07; pointer-events: none;
  transition: opacity .3s;
}
.coming-soon-panel:hover .csoon-glow { opacity: .13; }
.advanced-badge { /* reuse from earlier */ }
.csoon-icon { font-size: 3rem; margin: 1rem 0 1.2rem; line-height: 1; }
.coming-soon-panel h3 { font-family: 'Syne', sans-serif; font-weight: 900; font-size: 2rem; margin-bottom: 1rem; }
.coming-soon-panel > p { font-size: .97rem; color: var(--white-dim); line-height: 1.75; max-width: 500px; margin: 0 auto 1.8rem; }
.csoon-features {
  display: flex; flex-direction: column; gap: .6rem;
  text-align: left; max-width: 400px; margin: 0 auto;
}
.csoon-feature { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--white-dim); }
.csoon-pricing-note {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2rem; padding: 1rem 1.4rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); max-width: 400px; margin-left: auto; margin-right: auto;
  font-size: .88rem; color: var(--white-dim);
}
.cprice { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--purple); }

/* Advanced status */
.advanced-status { display: flex; align-items: center; gap: .55rem; font-size: .82rem; color: rgba(240,240,255,.4); font-weight: 500; justify-content: center; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 8px var(--purple); flex-shrink: 0; }
.status-dot.pulse { animation: statusPulse 2.2s ease-in-out infinite; }
@keyframes statusPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }

/* ===================================
   PROCESS SECTION — two-track layout
   =================================== */
.process-section { background: var(--bg2); }

.process-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.process-track {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem 2rem 2.5rem;
  position: relative; overflow: hidden;
  transition: border-color .25s;
}
.process-track:hover { border-color: rgba(155,77,255,.45); }

.track-label {
  display: flex; align-items: center; gap: .55rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white-dim);
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.track-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  animation: statusPulse 2.5s ease-in-out infinite;
}
.track-dot.purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.track-dot.cyan   { background: var(--cyan);   box-shadow: 0 0 8px var(--cyan); }

.track-steps { display: flex; flex-direction: column; gap: 1.4rem; }
.track-step { display: flex; gap: 1rem; align-items: flex-start; }

.tstep-num {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--purple-border); background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 900; font-size: .75rem; color: var(--purple);
  transition: border-color .2s, box-shadow .2s;
}
.track-step:hover .tstep-num { border-color: var(--purple); box-shadow: 0 0 14px rgba(155,77,255,.3); }
.track-step.highlight .tstep-num {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  border-color: transparent; color: #fff;
  box-shadow: 0 0 20px rgba(155,77,255,.4);
}
.process-track.cyan-track .track-step.highlight .tstep-num {
  background: linear-gradient(135deg, var(--cyan), #00a8d0);
  box-shadow: 0 0 20px rgba(0,212,255,.35);
}

.track-step-content h4 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: .95rem; margin-bottom: .3rem; color: var(--white);
}
.track-step.highlight .track-step-content h4 { color: var(--purple); }
.process-track.cyan-track .track-step.highlight .track-step-content h4 { color: var(--cyan); }
.track-step-content p { font-size: .845rem; color: var(--white-dim); line-height: 1.6; }

.step-badge {
  display: inline-block; margin-top: .6rem;
  padding: .18rem .65rem;
  background: linear-gradient(135deg, rgba(155,77,255,.2), rgba(255,45,155,.15));
  border: 1px solid rgba(155,77,255,.4); color: var(--purple);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  border-radius: 50px; text-transform: uppercase;
}
.step-badge.cyan-badge {
  background: linear-gradient(135deg, rgba(0,212,255,.15), rgba(0,212,255,.06));
  border-color: rgba(0,212,255,.4); color: var(--cyan);
}

/* ---- Calc number inputs ---- */
.calc-number-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: .65rem; padding: .3rem 0;
}
.calc-number-row label {
  display: flex; align-items: center; gap: .45rem;
  font-size: .88rem; color: var(--white-dim); flex: 1; cursor: default;
}
.calc-number-row em { font-style: normal; font-weight: 600; color: var(--purple); font-size: .82rem; }
.calc-num-input {
  width: 68px; padding: .35rem .5rem;
  background: rgba(155,77,255,.08);
  border: 1px solid rgba(155,77,255,.3);
  color: var(--white); font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 600; border-radius: var(--radius-sm);
  text-align: center; outline: none; cursor: text;
  -moz-appearance: textfield;
}
.calc-num-input::-webkit-inner-spin-button,
.calc-num-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.calc-num-input:focus { border-color: var(--purple); background: rgba(155,77,255,.14); }

/* ===================================
   FOOTER
   =================================== */
footer { position: relative; background: var(--bg); border-top: 1px solid rgba(155,77,255,.12); overflow: hidden; }
.footer-glow {
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 300px;
  background: radial-gradient(ellipse, rgba(155,77,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.footer-main {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 4rem;
  padding: 5rem 0 3.5rem; align-items: start;
}
.footer-left { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { font-size: 1.3rem; }
.footer-tagline { font-size: .88rem; color: var(--white-dim); line-height: 1.7; }
.footer-social { display: flex; gap: .6rem; }
.social-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem;
  background: var(--white-faint); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; font-size: .82rem; font-weight: 500; color: var(--white-dim);
  cursor: none; transition: background .2s, color .2s, border-color .2s;
}
.social-btn:hover { background: rgba(88,101,242,.15); color: var(--white); border-color: rgba(88,101,242,.4); }
.footer-discord-card {
  background: linear-gradient(135deg, rgba(155,77,255,.1), rgba(255,45,155,.06));
  border: 1px solid rgba(155,77,255,.28);
  border-radius: 20px; padding: 2.2rem 2rem; text-align: center; min-width: 260px;
}
.footer-card-sub { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); margin-bottom: .4rem; }
.footer-discord-card h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 1.2rem; color: var(--white); }
.discord-tag-row { display: flex; align-items: center; justify-content: center; gap: .6rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 50px; padding: .55rem 1rem; }
.discord-handle { font-weight: 600; font-size: .95rem; color: var(--white); flex: 1; text-align: left; }
.copy-btn {
  background: rgba(155,77,255,.18); border: 1px solid rgba(155,77,255,.35);
  color: var(--purple); font-size: .75rem; font-weight: 600;
  padding: .28rem .7rem; border-radius: 50px; cursor: none;
  transition: background .2s; font-family: 'Space Grotesk', sans-serif;
}
.copy-btn:hover { background: rgba(155,77,255,.3); }
.footer-nav h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 1.2rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav ul li a { font-size: .9rem; color: rgba(240,240,255,.45); cursor: none; transition: color .2s; }
.footer-nav ul li a:hover { color: var(--white); }
.footer-bottom { padding: 1.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .82rem; color: rgba(240,240,255,.28); }
.footer-note { color: rgba(155,77,255,.5) !important; font-weight: 500; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .process-tracks { gap: 1.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-left { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }

  .nav-links { display: none; }
  .btn-commission { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: var(--nav-h); min-height: 100svh; }
  .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; max-width: 100%; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero-desc br { display: none; }
  .social-rail { display: none; }
  .scroll-indicator { right: 1.2rem; bottom: 1.5rem; }

  .section { padding: 80px 0; }
  .section-bg-text { font-size: 22vw; }

  .skills-grid { grid-template-columns: 1fr; gap: 3rem; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .base-price-card { grid-template-columns: 1fr; gap: 1.8rem; padding: 2rem 1.5rem; }
  .base-price-features { grid-template-columns: 1fr; }
  .calc-body { grid-template-columns: 1fr; }
  .calc-options { border-right: none; border-bottom: 1px solid rgba(155,77,255,.12); }
  .process-tracks { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-left { grid-column: auto; }
  .footer-discord-card { min-width: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .coming-soon-panel { padding: 2.5rem 1.5rem; }
  .tabs-nav { gap: .3rem; }
  .tab-btn { padding: .55rem .9rem; font-size: .82rem; }
}

@media (max-width: 480px) {
  .addons-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.4rem, 16vw, 4rem); }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .base-price-amount { font-size: 3.5rem; }
}
