@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #050a08;
  --bg-2: #09140f;
  --panel: #0d1b15;
  --panel-2: #11231b;
  --text: #ecf7f1;
  --muted: #95ab9f;
  --accent: #44d78a;
  --accent-2: #1bbf76;
  --line: rgba(120, 180, 145, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #10231a 0%, var(--bg) 40%);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 24 24' fill='none' stroke='%2344d78a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 2 4 4'/%3E%3Cpath d='m17 7 3-3'/%3E%3Cpath d='M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.4 0-3.4L15 5'/%3E%3Cpath d='m9 11 4 4'/%3E%3Cpath d='m5 19-3 3'/%3E%3Cpath d='m14 4 6 6'/%3E%3C/svg%3E") 9 34, auto;
}

a, button, input, select, .btn, .nav-bubble, .tab-btn {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 2 4 4'/%3E%3Cpath d='m17 7 3-3'/%3E%3Cpath d='M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.4 0-3.4L15 5'/%3E%3Cpath d='m9 11 4 4'/%3E%3Cpath d='m5 19-3 3'/%3E%3Cpath d='m14 4 6 6'/%3E%3C/svg%3E") 9 34, pointer !important;
}

.grid-overlay {
  position: fixed;
  inset: -150px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  z-index: -4;
  transform-origin: var(--mx, 50%) var(--my, 50%);
  transform: perspective(400px) rotateX(calc(var(--gy, 0) * -0.6deg)) rotateY(calc(var(--gx, 0) * 0.6deg));
  transition: transform 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.6s ease;
  animation: gridFloat 15s linear infinite;
  mask-image: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,1) 50%);
  -webkit-mask-image: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,1) 50%);
}

body.mouse-idle .grid-overlay {
  transform: perspective(400px) rotateX(calc(var(--gy, 0) * -0.6deg)) rotateY(calc(var(--gx, 0) * 0.6deg)) translateZ(-800px) scale(0.01);
  opacity: 0;
  transition: transform 6s cubic-bezier(0.5, 0, 0.1, 1), opacity 5s ease 1s;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(150px circle at var(--mx, 50%) var(--my, 40%), rgba(68, 215, 138, 0.5) 0%, transparent 80%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -5;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

body.mouse-idle::before {
  transform: scale(0.01);
  opacity: 0;
  transition: transform 4s cubic-bezier(0.5, 0, 0.1, 1), opacity 3s ease 1s;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(70px circle at var(--mx, 50%) var(--my, 40%), rgba(255, 255, 255, 0.3) 0%, transparent 80%);
  filter: blur(6px);
  pointer-events: none;
  z-index: -5;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

body.mouse-idle::after {
  transform: scale(0.01);
  opacity: 0;
  transition: transform 4s cubic-bezier(0.5, 0, 0.1, 1), opacity 3s ease 1s;
}

.particle-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(153, 255, 204, 0.55);
  box-shadow: 0 0 10px rgba(70, 235, 155, 0.45);
  animation-name: particleFloat;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.click-pulse {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(123, 241, 182, 0.75);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: clickPulse 0.6s ease-out forwards;
  z-index: -2;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  margin-top: 10px;
  padding: 10px 16px;
  border: 1px solid #2f5947;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg, rgba(10, 36, 24, 0.95), rgba(7, 28, 18, 0.94));
  backdrop-filter: blur(7px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-topbar {
  border-radius: 999px;
  padding: 10px 14px;
}

.topbar:hover {
  border-color: #4ea77a;
  box-shadow: 0 14px 30px rgba(19, 93, 60, 0.42);
  transform: translateY(-1px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.logo {
  width: 34px;
  height: 34px;
  border: 1px solid #2d493c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: inset 0 0 18px rgba(70, 235, 155, 0.15);
}

.top-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.top-search-wrap {
  min-width: 240px;
}

.top-search {
  width: 100%;
  border: 1px solid #345d4a;
  border-radius: 999px;
  background: rgba(8, 24, 16, 0.9);
  color: #e9fff3;
  padding: 10px 14px;
}

.top-links a {
  color: #e9fff3;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nav-bubble {
  border: 1px solid #3b6a55;
  border-radius: 20px;
  padding: 9px 16px;
  background: linear-gradient(180deg, rgba(16, 41, 29, 0.95), rgba(10, 30, 22, 0.95));
  box-shadow: inset 0 1px 0 rgba(135, 222, 172, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-bubble:hover {
  border-color: #62e9a2;
  background: linear-gradient(180deg, rgba(19, 56, 38, 0.95), rgba(12, 38, 28, 0.95));
  color: #ffffff;
}

.nav-bubble:focus,
.nav-bubble.active {
  border-color: #62e9a2;
  background: linear-gradient(180deg, rgba(19, 56, 38, 0.95), rgba(12, 38, 28, 0.95));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(135, 222, 172, 0.08), 0 0 0 2px var(--bg), 0 0 0 3px var(--accent);
  outline: none;
}

.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.logo .lucide {
  width: 22px;
  height: 22px;
}

.top-auth {
  display: flex;
  gap: 10px;
}

.top-auth-btn {
  text-decoration: none;
  border: 1px solid #3f6d58;
  border-radius: 999px;
  padding: 10px 16px;
  color: #e7fff2;
  background: #0b1f16;
  font-weight: 700;
  font-size: 0.95rem;
}

.top-auth-signup {
  background: linear-gradient(90deg, #56e798, #2fbe73);
  color: #062012;
  border-color: #56e798;
}

.discord-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 6px;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 127.14 96.36'%3E%3Cpath fill='black' d='M107.7 8.07A105.15 105.15 0 0081.47 0a72.06 72.06 0 00-3.36 6.83 97.68 97.68 0 00-29.09 0A72.37 72.37 0 0045.64 0a105.89 105.89 0 00-26.24 8.08C2.79 33.03-1.71 57.31.54 81.25A105.73 105.73 0 0032.71 96.36a77.7 77.7 0 006.94-11.31 68.42 68.42 0 01-10.92-5.21c.92-.69 1.82-1.42 2.7-2.18a75.55 75.55 0 0063.73 0c.88.76 1.78 1.49 2.7 2.18a68.68 68.68 0 01-10.93 5.22 77 77 0 006.94 11.3A105.25 105.25 0 00126.6 81.25c2.64-27.77-4.5-51.82-18.9-73.18zM42.45 65.69c-6.18 0-11.24-5.66-11.24-12.62 0-6.95 4.96-12.61 11.24-12.61 6.33 0 11.28 5.71 11.24 12.61 0 6.96-4.96 12.62-11.24 12.62zm42.24 0c-6.18 0-11.24-5.66-11.24-12.62 0-6.95 4.96-12.61 11.24-12.61 6.33 0 11.28 5.71 11.24 12.61 0 6.96-4.91 12.62-11.24 12.62z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 127.14 96.36'%3E%3Cpath fill='black' d='M107.7 8.07A105.15 105.15 0 0081.47 0a72.06 72.06 0 00-3.36 6.83 97.68 97.68 0 00-29.09 0A72.37 72.37 0 0045.64 0a105.89 105.89 0 00-26.24 8.08C2.79 33.03-1.71 57.31.54 81.25A105.73 105.73 0 0032.71 96.36a77.7 77.7 0 006.94-11.31 68.42 68.42 0 01-10.92-5.21c.92-.69 1.82-1.42 2.7-2.18a75.55 75.55 0 0063.73 0c.88.76 1.78 1.49 2.7 2.18a68.68 68.68 0 01-10.93 5.22 77 77 0 006.94 11.3A105.25 105.25 0 00126.6 81.25c2.64-27.77-4.5-51.82-18.9-73.18zM42.45 65.69c-6.18 0-11.24-5.66-11.24-12.62 0-6.95 4.96-12.61 11.24-12.61 6.33 0 11.28 5.71 11.24 12.61 0 6.96-4.96 12.62-11.24 12.62zm42.24 0c-6.18 0-11.24-5.66-11.24-12.62 0-6.95 4.96-12.61 11.24-12.61 6.33 0 11.28 5.71 11.24 12.61 0 6.96-4.91 12.62-11.24 12.62z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero {
  padding: 68px 0 36px;
}

.home-main {
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.typing-caret {
  animation: blinkCaret 1s steps(1, end) infinite;
}

.trust-line {
  margin-top: 18px;
  color: #d8ece0;
  font-weight: 700;
  text-align: center;
}

.pill {
  display: inline-block;
  border: 1px solid #2b4d3f;
  border-radius: 999px;
  padding: 10px 18px;
  margin: 0 0 18px;
  color: #d8f8e7;
  box-shadow: 0 0 0 0 rgba(68, 215, 138, 0.35);
  animation: pulseGlow 2.6s ease-in-out infinite;
}

h1 {
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  line-height: 1.02;
  margin: 0 auto;
  max-width: 760px;
}

.subtitle {
  color: var(--muted);
  margin: 18px auto 0;
  font-size: 1.15rem;
}

.hero-image {
  width: min(560px, 100%);
  margin-top: 20px;
  border-radius: 14px;
  border: 1px solid #274535;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #dff4e8);
  color: #0c1c15;
  box-shadow: 0 8px 24px rgba(172, 255, 214, 0.2), inset 0 -2px 5px rgba(0,0,0,0.1);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid #2a4438;
}

.btn:hover {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(172, 255, 214, 0.35);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 12px rgba(172, 255, 214, 0.2);
}

.hero-stats {
  margin-top: 28px;
  display: inline-flex;
  border: 1px solid #223b30;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(8, 24, 17, 0.78);
}

.hero-stats div {
  padding: 14px 22px;
  display: grid;
  gap: 4px;
}

.hero-stats div + div {
  border-left: 1px solid #223b30;
}

.hero-stats strong {
  font-size: 2rem;
}

.hero-stats span {
  color: var(--muted);
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .category-grid { grid-template-columns: 1fr; }
}

.category-folder {
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(11, 16, 24, 0.6);
}

.category-folder:hover {
  transform: translateY(-6px);
  background: rgba(16, 35, 26, 0.8);
  border-color: rgba(68, 215, 138, 0.4);
  box-shadow: 0 10px 30px rgba(68, 215, 138, 0.1);
}

.category-folder i {
  color: var(--accent);
  width: 42px;
  height: 42px;
}

.category-folder h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.category-folder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.category-header-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
}

.category-header-flex .category-title {
  margin: 0 !important;
  width: auto;
}

.category-block {
  margin-bottom: 24px;
}

.category-title {
  color: var(--text);
  font-size: 1.6rem;
  margin-block: 0 16px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(68, 215, 138, 0.3);
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.pricing {
  margin: -10px auto 38px;
  display: flex;
  justify-content: flex-start;
  width: min(720px, 100%);
  padding-left: 3%;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 22px;
}

.product-card {
  width: 100%;
  max-width: 320px;
  flex: 1 1 290px;
}

.store-card {
  overflow: hidden;
  padding: 0;
  background: #0b1018;
  border-color: #253140;
}

.store-card-image {
  width: 100%;
  display: block;
  border-bottom: 1px solid #293647;
}

.store-card-body {
  padding: 18px 18px 8px;
}

.store-divider {
  border: 0;
  border-top: 1px solid #2b394b;
  margin: 16px 0;
}

.store-starting {
  color: #8f9fb2;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0;
}

.store-price {
  margin: 8px 0 0;
  font-size: 2rem;
  font-weight: 800;
}

.store-card h2,
.store-card .term,
.store-card .subtitle,
.store-card .btn {
  margin-left: 18px;
  margin-right: 18px;
}

.store-card .btn {
  display: inline-block;
  margin-bottom: 18px;
}

.product-tabs {
  margin-top: 14px;
}

.tab-buttons {
  display: flex;
  gap: 8px;
}

.tab-btn {
  background: #101b15;
  border: 1px solid #2f4b3d;
  color: var(--text);
}

.tab-btn.active {
  background: #1c2a23;
  border-color: #7aa58f;
}

.tab-panel {
  display: none;
  margin-top: 10px;
  border: 1px solid #2a4639;
  border-radius: 10px;
  padding: 10px;
  color: #d3e7dc;
  background: #0a1410;
}

.tab-panel.active {
  display: block;
}

.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid #20382d;
  border-radius: 16px;
  padding: 22px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: #3f7b5e;
  box-shadow: 0 20px 45px rgba(9, 34, 23, 0.8), 0 0 20px rgba(68, 215, 138, 0.08);
}

.card h2 {
  margin: 0;
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  background: var(--accent);
  color: #052d1a;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.price {
  margin: 12px 0 8px;
  font-size: 2rem;
  font-weight: 800;
}

.term {
  color: var(--muted);
  margin: 0 0 16px;
}

button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #022b17;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 167, 104, 0.2);
  position: relative;
  overflow: hidden;
}

button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

button:hover::after {
  transform: rotate(45deg) translateX(100%);
}

button:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 10px 24px rgba(37, 167, 104, 0.45);
}

button:active {
  transform: translateY(1px) scale(0.98);
}

.featured {
  border-color: #37cf87;
  box-shadow: 0 10px 30px rgba(65, 201, 130, 0.15);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.panel {
  background: linear-gradient(180deg, #0e1f18, #0a1511);
  border: 1px solid #20392e;
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.panel:hover {
  border-color: #34684f;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.panel h3 {
  margin-top: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #2a4639;
  background: #07100d;
  color: var(--text);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-form {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 120px;
  gap: 8px;
}

.status {
  min-height: 20px;
  color: #b8f3d3;
  font-weight: 600;
}

.status-panel {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.status-line-simple {
  border: 1px solid #2f3e4b;
  border-radius: 12px;
  padding: 16px 20px;
  background: linear-gradient(90deg, #171f2b, #141c26);
  font-weight: 700;
  color: #edf2fb;
  display: grid;
  grid-template-columns: 1.5fr 1fr auto auto;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .status-line-simple {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #39ea82;
  box-shadow: 0 0 0 0 rgba(57, 234, 130, 0.7), 0 0 14px rgba(57, 234, 130, 0.95);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.status-inline-badge {
  border: 1px solid #2f8156;
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: 700;
  color: #5ef19d;
  background: rgba(10, 41, 26, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-buy {
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 16px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, #a23ff2, #d03fdb);
}

.features-detail h4 {
  color: var(--accent);
  font-size: 1.15rem;
  margin: 20px 0 8px;
  border-bottom: 1px solid rgba(68, 215, 138, 0.15);
  padding-bottom: 6px;
}

.features-detail h4:first-child {
  margin-top: 0;
}

.features-detail p {
  color: var(--muted);
  margin: 12px 0 4px;
  font-weight: 600;
  font-size: 0.92rem;
}

.features-detail ul {
  margin: 4px 0 8px;
  padding-left: 20px;
  list-style: none;
}

.features-detail ul li {
  position: relative;
  padding: 3px 0 3px 14px;
  color: #c8e6d8;
  font-size: 0.9rem;
}

.features-detail ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.floating-discord {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(37, 54, 184, 0.45);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-discord:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 36px rgba(37, 54, 184, 0.6);
}

.floating-discord:active {
  transform: translateY(1px) scale(0.98);
}

.floating-discord .discord-icon {
  background: #ffffff;
  margin-right: 0;
}

.support-footer-banner {
  position: fixed;
  left: 14px;
  bottom: 16px;
  z-index: 45;
  margin: 0;
  color: #d5ebdd;
  background: rgba(7, 20, 14, 0.88);
  border: 1px solid #2f5845;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
}

.reactive-surface {
  transition: transform 0.2s ease, filter 0.2s ease;
  transform-style: preserve-3d;
}

.is-reactive {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.dashboard button {
  margin-bottom: 10px;
}

.ticket-item {
  border: 1px solid #2a4639;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  background: #09130f;
}

.ticket-item p {
  margin: 6px 0;
}

.ticket-item textarea {
  min-height: 70px;
}

.ticket-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hidden {
  display: none;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 4px 0 26px;
}

.product-shot {
  width: min(360px, 100%);
  border-radius: 14px;
  border: 1px solid #294537;
  margin-bottom: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 16px;
  margin: 8px 0 40px;
}

.detail-main {
  padding: 22px;
}

.detail-main .detail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.mini-pill {
  margin: 0;
  padding: 5px 10px;
  font-size: 0.78rem;
}

.detail-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #274535;
  margin-top: 10px;
  background: #07120d;
}

.detail-side h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.plan-list {
  display: grid;
  gap: 10px;
}

.plan-btn {
  width: 100%;
  border: 1px solid #2f4b3d;
  border-radius: 12px;
  background: #0f1b15;
  color: var(--text);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-btn span {
  color: var(--muted);
}

.plan-btn.active {
  border-color: #b9d4c7;
  box-shadow: 0 0 0 1px #c8dfd2 inset;
  background: #1b2822;
}

.purchase-btn {
  margin-top: 14px;
  background: #eef7f2;
  color: #0b1d14;
  font-size: 1rem;
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #c9ddcf;
  display: grid;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(68, 215, 138, 0.15);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(68, 215, 138, 0);
  }
}

@keyframes gridFloat {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 108px 108px;
  }
}

@keyframes caveInPulse {
  0% { transform: perspective(400px) rotateX(calc(var(--gy, 0) * -0.6deg)) rotateY(calc(var(--gx, 0) * 0.6deg)) translateZ(0px); opacity: 1; }
  100% { transform: perspective(400px) rotateX(calc(var(--gy, 0) * -0.6deg)) rotateY(calc(var(--gx, 0) * 0.6deg)) translateZ(-60px) scale(0.95); opacity: 0.6; }
}

.fn-banner {
  filter: hue-rotate(-140deg) saturate(1.2);
}

@keyframes particleFloat {
  0% {
    transform: translateY(0vh) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(110vh) translateX(30px);
    opacity: 0;
  }
}

@keyframes clickPulse {
  0% {
    opacity: 0.9;
    width: 14px;
    height: 14px;
  }
  100% {
    opacity: 0;
    width: 120px;
    height: 120px;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(57, 234, 130, 0.7), 0 0 14px rgba(57, 234, 130, 0.95);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(57, 234, 130, 0), 0 0 18px rgba(57, 234, 130, 0.95);
  }
}

@keyframes blinkCaret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }

  .status-line-simple {
    font-size: 0.92rem;
  }

  .support-footer-banner {
    left: 10px;
    right: 10px;
    bottom: 72px;
    border-radius: 12px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .top-search-wrap {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    border-radius: 14px;
  }

  .hero-stats div + div {
    border-left: 0;
    border-top: 1px solid #223b30;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }
}

/* Inactive Status Modifier */
.status-inline-badge.inactive { background: rgba(255, 170, 0, 0.1); color: #ffaa00; border-color: rgba(255,170,0,0.3); }
.status-dot.inactive { background: #ffaa00; box-shadow: 0 0 8px rgba(255, 170, 0, 0.4); }
a.status-buy.disabled { background: rgba(255, 255, 255, 0.05); color: #888; pointer-events: none; border: 1px solid rgba(255,255,255,0.1); }
