.hero-pro-wordmark:hover .hpw-line:first-child {
  transform: translateX(-2px);
}
.hero-pro-wordmark:hover .hpw-line.hpw-accent {
  transform: translateX(2px);
}
.hpw-line.hpw-accent {
  /* The line handles the rise; the gradient text-fill must live on the inner
     .hpw-text where the glyphs actually render (background-clip:text does NOT
     reach a child span — otherwise the accent word renders fully transparent). */
  padding-bottom: 0.12em;
  opacity: 0;
  transform: translateY(18px);
  animation: hp-up 0.85s 0.42s var(--ease) forwards;
}
.hpw-line.hpw-accent .hpw-text {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-light) 45%, var(--accent) 100%);
  background-size: 240% 240%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hpw-shimmer 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hpw-line.hpw-accent { opacity: 1; transform: none; animation: none; }
  .hpw-line.hpw-accent .hpw-text { animation: none; }
}
@keyframes hpw-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hpw-char {
  display: inline-block;
  opacity: 0;
  transform-origin: 50% 100%;
  transform: translateY(60%) rotateX(-90deg);

  animation: hpw-char-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards,
             hpw-char-float 4.4s ease-in-out 1.4s infinite;
}
@keyframes hpw-char-in {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}
@keyframes hpw-char-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.hero-pro-tagline {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--fg-dim);
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: hp-up 0.8s 1.05s var(--ease) forwards;
}

.hero-pro-feats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 2px 0 4px;
  opacity: 0;
  transform: translateY(14px);
  animation: hp-up 0.8s 1.12s var(--ease) forwards;
}
.hpf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--fg-dim);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color var(--t-base) var(--ease), color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.hpf-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 10px var(--accent-glow);
  flex-shrink: 0;
}
.hpf-chip:hover {
  color: var(--fg);
  border-color: rgba(255, 60, 40, 0.3);
  background: rgba(255, 60, 40, 0.06);
}
.hero-pro-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  animation: hp-up 0.8s 1.2s var(--ease) forwards;
}
.hero-pro-magnetic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
  transition: box-shadow 0.25s var(--ease);
}
.hero-pro-magnetic::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.32) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.hero-pro-magnetic:hover::after { transform: translateX(110%); }
.hero-pro-magnetic:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 22px 44px -12px var(--accent-glow);
}
.hero-pro-magnetic > * { position: relative; z-index: 1; }

.hero-pro-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--fg-dim);
  text-decoration: none;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(14px);
  animation: hp-up 0.9s 1.35s var(--ease) forwards;
  transition: border-color .2s, color .2s, transform .2s;
}
.hero-pro-live:hover {
  border-color: rgba(255, 60, 40, 0.35);
  color: var(--fg);
}
.hero-pro-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-ring-pulse 2.2s ease-in-out infinite;
}
.hero-pro-live-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger="1"] { transition-delay: 0.08s; }
[data-reveal-stagger="2"] { transition-delay: 0.16s; }
[data-reveal-stagger="3"] { transition-delay: 0.24s; }
[data-reveal-stagger="4"] { transition-delay: 0.32s; }
[data-reveal-stagger="5"] { transition-delay: 0.40s; }

.plugin-card-link { perspective: 1100px; }
.plugin-card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.plugin-card-link:hover .plugin-card {
  box-shadow: 0 24px 64px -20px var(--accent-glow), 0 0 0 1px rgba(255, 60, 40, 0.2) inset;
}
.plugin-card h3 { position: relative; display: inline-flex; align-items: baseline; gap: 8px; }
.plugin-card h3::after {
  content: "v1.0.0";
  font-family: ui-monospace, "JetBrains Mono", "Fira Code", Menlo, monospace;
  font-size: 0.62em;
  font-weight: 500;
  color: var(--fg-mute);
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.plugin-card-link:hover .plugin-card h3::after {
  opacity: 1;
  transform: translateX(0);
}

[data-count] { font-variant-numeric: tabular-nums; }

@media (max-width: 720px) {
  .hero-pro { padding: 100px 16px 56px; }
  .hero-pro-wordmark { font-size: clamp(2.4rem, 12vw, 4.2rem); }
  .plugin-card-link:hover .plugin-card { transform: none; }
}

.page-screen {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  justify-content: center;
  padding: 110px 24px 56px;
  box-sizing: border-box;
}
.page-screen::before { content: ''; flex: 1 1 0; }
.page-screen::after  { content: ''; flex: 2 2 0; }

/* When a hero sits above the section (pt-tight), the content must flow
   directly under it instead of becoming a second full-viewport centred
   block — otherwise the centring spacers create a huge empty gap. */
.page-screen.pt-tight {
  min-height: 0;
  justify-content: flex-start;
}
.page-screen.pt-tight::before,
.page-screen.pt-tight::after { content: none; }
.page-screen .wrap { width: min(1180px, calc(100% - 0px)); }
.page-screen-head {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 720px;
}
.page-screen-head .eyebrow { display: inline-block; margin-bottom: 6px; }
.page-screen-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
  margin: 0 0 12px;
}
.page-screen-sub {
  color: var(--fg-dim);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 60ch;
  text-wrap: pretty;
}

.plugin-grid.plugin-grid-compact {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.plugin-grid-compact .plugin-card-media { aspect-ratio: 16 / 10; }
.plugin-grid-compact .plugin-card-image-placeholder .plugin-icon { width: 56px; height: 56px; }
.plugin-grid-compact .plugin-card-body { padding: 16px 16px 18px; gap: 8px; }
.plugin-grid-compact .plugin-card-body .eyebrow { font-size: 0.6rem; }
.plugin-grid-compact .plugin-card-body h3 { font-size: 1.02rem; }
.plugin-grid-compact .plugin-card-body p { font-size: 0.82rem; line-height: 1.45; }
.plugin-grid-compact .plugin-card-mini-pills { gap: 4px; margin: 4px 0 0; }
.plugin-grid-compact .pill { font-size: 0.6rem; padding: 2px 7px; }
.plugin-grid-compact .plugin-card-price { padding: 4px 10px; font-size: 0.72rem; top: 10px; right: 10px; }
.plugin-grid-compact .plugin-card-cta { font-size: 0.78rem; padding-top: 8px; gap: 4px; }
.plugin-grid-compact .plugin-card h3::after { display: none; }

@media (max-width: 1180px) {
  .plugin-grid.plugin-grid-compact { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .plugin-grid.plugin-grid-compact { grid-template-columns: repeat(2, 1fr); }
  .page-screen { padding-top: 96px; }
}
@media (max-width: 460px) {
  .plugin-grid.plugin-grid-compact { grid-template-columns: 1fr; }
}

.plugin-detail-screen { padding-top: 88px; padding-bottom: 32px; min-height: auto; }
.plugin-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.85fr);
  gap: 18px 28px;
  align-items: start;
}
.plugin-detail-head {
  grid-column: 1 / -1;
  max-width: 760px;
}
.plugin-detail-head .eyebrow { display: inline-block; margin-bottom: 6px; }
.plugin-detail-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 14px;
  text-wrap: balance;
}
.plugin-detail-sub {
  color: var(--fg-dim);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
  max-width: 64ch;
  text-wrap: pretty;
}
.plugin-detail-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 14px;
  font-weight: 600;
}
.plugin-detail-main-col {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 18px;

  padding: 26px 30px 28px;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.feature-list-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}
.feature-list-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--fg-dim);
  line-height: 1.45;

  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.feature-list-grid li:hover {
  border-color: rgba(255, 166, 0, 0.3);
  background: rgba(255, 60, 40, 0.04);
  transform: translateY(-1px);
}
.feature-list-grid li::before {
  content: "✓";
  color: var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.plugin-detail-side-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plugin-detail-cover-compact {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at center, rgba(255, 60, 40, 0.06), transparent 70%),
    linear-gradient(135deg, rgba(255, 60, 40, 0.10), rgba(255, 60, 40, 0.02));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);

  line-height: 0;
}
.plugin-detail-cover-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -25px rgba(255, 60, 40, 0.3);
}
.plugin-detail-cover-compact .plugin-hero-image {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 16px;
}
.plugin-detail-cover-compact .plugin-hero-image-placeholder {

  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plugin-detail-cover-compact .plugin-hero-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.plugin-detail-side-col .buy-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.5);
}
.plugin-detail-side-col .buy-block .buy-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.plugin-detail-downloads {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
}
.plugin-detail-downloads-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 4px;
  font-weight: 600;
}
.plugin-detail-downloads-sub {
  color: var(--fg-mute);
  font-size: 0.84rem;
  margin: 0 0 12px;
}
.plugin-detail-downloads .artifact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);

  flex-wrap: nowrap;
}
.plugin-detail-downloads .artifact > div:first-child {

  min-width: 0;
  flex: 1 1 auto;
}
.plugin-detail-downloads .artifact > div:last-child {
  flex: 0 0 auto;
}
.plugin-detail-downloads .artifact:first-of-type { border-top: 0; padding-top: 4px; }
.plugin-detail-downloads .artifact h3 {
  font-size: 0.94rem;
  margin: 0 0 2px;
  font-family: 'Space Grotesk', sans-serif;
}
.plugin-detail-downloads .artifact-note,
.plugin-detail-downloads .artifact .status {
  font-size: 0.78rem;
  color: var(--fg-mute);
  margin: 0;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 880px) {
  .plugin-detail-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .plugin-detail-side-col { order: 2; }
  .plugin-detail-cover-compact .plugin-hero-image-placeholder { aspect-ratio: 16 / 9; }
  .feature-list-grid { grid-template-columns: 1fr; }
}

#card-uploads-jars .admin-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.jar-plugin-block {
  background:
    linear-gradient(180deg, rgba(15, 19, 29, 0.92), rgba(8, 11, 18, 0.82)),
    radial-gradient(circle at top right, rgba(255, 60, 40, 0.08), transparent 48%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}
.jar-plugin-block-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.jar-plugin-block-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  margin: 0;
}
.jar-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.jar-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  grid-template-areas:
    "state meta    stats"
    "file  autover action"
    "file  autover reset";
  gap: 8px 12px;
  align-items: center;
  padding: 12px;
  background: rgba(2, 6, 14, 0.58);
  border: 1px solid rgba(255, 60, 40, 0.18);
  border-radius: 10px;
  transition: border-color .2s, background .2s;
  min-width: 0;
}
.jar-row > .jar-row-state    { grid-area: state; justify-self: center; }
.jar-row > .jar-row-meta     { grid-area: meta; min-width: 0; }
.jar-row > .jar-row-stats    { grid-area: stats; }
.jar-row > .jar-row-file     { grid-area: file; min-width: 0; }
.jar-row > .jar-row-autover  { grid-area: autover; min-width: 0; align-self: center; }
.jar-row > .jar-row-submit   { grid-area: action; white-space: nowrap; justify-self: end; }
.jar-row > .jar-row-reset    { grid-area: reset; white-space: nowrap; justify-self: end; }
.jar-row-autover {
  font-size: 0.76rem;
  color: var(--fg-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jar-row-reset { margin-top: 6px; }
.jar-row.has-file { border-color: rgba(255, 166, 0, 0.35); }
.jar-row.dragging {
  border-color: var(--accent-light);
  background: rgba(255, 60, 40, 0.08);
}
.jar-row-state {
  font-size: 0.9rem;
  width: 14px;
  text-align: center;
}
.jar-row-state.ok    { color: var(--success); }
.jar-row-state.empty { color: var(--fg-mute); }
.jar-row-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.jar-row-meta strong { font-size: 0.9rem; font-weight: 600; }
.jar-row-meta code {
  font-size: 0.74rem;
  color: var(--fg-mute);
  font-family: ui-monospace, monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jar-row-stats {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
}
.jar-row-stats span { white-space: nowrap; }
.jar-row-file {
  position: relative;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border-strong);
  border-radius: 9px;
  text-align: center;
  transition: background .2s, border-color .2s;
  overflow: hidden;
  height: 40px;
  display: grid;
  place-items: center;
}
.jar-row-file:hover { background: rgba(255, 60, 40, 0.08); border-color: var(--accent-light); }
.jar-row-file input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.jar-row-file-label {
  font-size: 0;
  color: var(--fg-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.jar-row-file-label::before {
  content: "↑";
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-light);
}
.jar-row-version-input {
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--fg);
  font: inherit;
  font-size: 0.84rem;
  min-width: 0;
  width: 100%;
}
.jar-row-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
}
.jar-row-submit-icon {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-weight: 800;
}

.jar-row-version-input:focus {
  outline: none;
  border-color: var(--accent-light);
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .jar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .jar-row-state { display: none; }
}

@media (max-width: 720px) {
  .form-card { padding: 24px 20px; }
  .form-card .field { margin-bottom: 14px; }
  .form-card .field input,
  .form-card .field textarea,
  .form-card .field select,
  .field input[type=email],
  .field input[type=password],
  .field input[type=text] {
    font-size: 16px;
    padding: 14px 14px;
    min-height: 48px;
  }
  .form-card .form-actions .btn,
  .form-card .btn-primary,
  .form-card .btn-ghost {
    min-height: 48px;
    font-size: 1rem;
  }
  .form-card .check-row {
    min-height: 44px;
    align-items: center;
  }
  .form-card .check-row input[type=checkbox] {
    width: 20px;
    height: 20px;
  }

  .fab { bottom: 16px; right: 16px; }
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-hint {
  color: var(--fg-mute);
  font-weight: 400;
  font-size: 0.78rem;
}
.field-help {
  color: var(--fg-mute);
  font-size: 0.8rem;
  margin: -4px 0 14px;
}
.form-card .field select {

  padding: 13px 36px 13px 16px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23ffa600' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 14px center,
    rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.form-card .field select:focus {
  outline: none;
  border-color: var(--accent-light);
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 4px rgba(255, 60, 40, 0.18);
}
.form-card .field select option { background: #0a0a14; color: var(--fg); }

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

.pricing-card {
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  will-change: transform;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 166, 0, 0.32);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 70px -28px rgba(255, 60, 40, 0.25);
}
.pricing-card.pricing-featured:hover {
  box-shadow: 0 35px 90px -25px rgba(255, 60, 40, 0.35);
}

.form-card {
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.form-card:hover {
  border-color: rgba(255, 166, 0, 0.22);
  box-shadow: 0 25px 65px -25px rgba(255, 60, 40, 0.18);
}

.support-channel {
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.support-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 166, 0, 0.28);
}

.form-card[style*="rgba(255, 60, 40,0.25)"]:hover {
  border-color: rgba(255, 166, 0, 0.5) !important;
}

.stat-card {
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 166, 0, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.plugin-detail-side-col .buy-block {
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.plugin-detail-side-col .buy-block:hover {
  border-color: rgba(255, 166, 0, 0.4);
  box-shadow: 0 25px 60px -25px rgba(255, 60, 40, 0.3);
}

.plugin-detail-downloads {
  transition: border-color .35s var(--ease);
}
.plugin-detail-downloads:hover {
  border-color: rgba(255, 166, 0, 0.22);
}

.pt-tight { padding-top: clamp(12px, 2.5vh, 32px); }

.modern-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.modern-hero-lg { padding: clamp(64px, 10vh, 104px) 0 clamp(36px, 6vh, 68px); }
.modern-hero-md { padding: clamp(48px, 8vh, 80px) 0 clamp(24px, 4vh, 44px); }

.modern-hero-sm { padding: clamp(40px, 6vh, 60px) 0 clamp(12px, 2vh, 24px); }
.modern-hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
.mh-grid {
  position: absolute; inset: -40px;
  background-image:
    linear-gradient(rgba(255, 166, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 166, 0, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
}
.mh-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.5;
  will-change: transform;
}
.mh-aurora-1 {
  width: 520px; height: 520px;
  left: -120px; top: -100px;
  background: radial-gradient(circle, rgba(255, 60, 40, 0.5), transparent 70%);
  animation: mh-aurora-float-1 22s ease-in-out infinite alternate;
}
.mh-aurora-2 {
  width: 480px; height: 480px;
  right: -80px; top: 60px;
  background: radial-gradient(circle, rgba(255, 166, 0, 0.36), transparent 70%);
  animation: mh-aurora-float-2 26s ease-in-out infinite alternate;
}
.mh-aurora-3 {
  width: 420px; height: 420px;
  left: 40%; bottom: -160px;
  background: radial-gradient(circle, rgba(255, 60, 40, 0.28), transparent 70%);
  animation: mh-aurora-float-3 30s ease-in-out infinite alternate;
}
@keyframes mh-aurora-float-1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(80px,40px) scale(1.15); } }
@keyframes mh-aurora-float-2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-60px,80px) scale(1.1); } }
@keyframes mh-aurora-float-3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px,-60px) scale(1.2); } }
.mh-sparkles { position: absolute; inset: 0; }
.mh-sparkles span {
  position: absolute;
  width: 3px; height: 3px;
  background: #ffa600;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 166, 0, 0.9);
  animation: mh-sparkle-twinkle 3.4s ease-in-out infinite;
}
.mh-sparkles span:nth-child(1) { top: 22%; left: 18%; animation-delay: 0s;   }
.mh-sparkles span:nth-child(2) { top: 38%; left: 82%; animation-delay: 0.5s; }
.mh-sparkles span:nth-child(3) { top: 55%; left: 12%; animation-delay: 1.0s; }
.mh-sparkles span:nth-child(4) { top: 18%; left: 64%; animation-delay: 1.5s; }
.mh-sparkles span:nth-child(5) { top: 70%; left: 78%; animation-delay: 2.0s; }
.mh-sparkles span:nth-child(6) { top: 28%; left: 48%; animation-delay: 0.3s; width: 2px; height: 2px; }
.mh-sparkles span:nth-child(7) { top: 62%; left: 36%; animation-delay: 1.2s; width: 2px; height: 2px; }
.mh-sparkles span:nth-child(8) { top: 12%; left: 88%; animation-delay: 1.8s; width: 2px; height: 2px; }
.mh-sparkles span:nth-child(9) { top: 78%; left: 22%; animation-delay: 0.8s; width: 2px; height: 2px; }
.mh-sparkles span:nth-child(10){ top: 44%; left: 30%; animation-delay: 2.3s; width: 4px; height: 4px; }
@keyframes mh-sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 1; transform: scale(1.2); }
}

.modern-hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.modern-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255, 60, 40, 0.08);
  border: 1px solid rgba(255, 60, 40, 0.28);
  border-radius: 999px;
  color: var(--accent-light, #ffa600);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: mh-pill-fade-up .8s ease .1s both;
}
.modern-hero-pill-dot {
  width: 7px; height: 7px;
  background: #ff5e00;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 60, 40, 0.2);
  animation: mh-pill-pulse 2.4s ease-in-out infinite;
}
@keyframes mh-pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 60, 40, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 60, 40, 0); }
}
@keyframes mh-pill-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modern-hero-eyebrow {
  animation: mh-line-up .9s ease .2s both;
}
.modern-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modern-hero-sm .modern-hero-title { font-size: clamp(1.8rem, 4vw, 3rem); }
.mh-line { display: block; animation: mh-line-up .9s ease .25s both; }
.mh-line-accent {
  background: linear-gradient(120deg, #ffa600 0%, #ff5e00 50%, #ff2d2d 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: mh-line-up .9s ease .4s both, mh-shimmer 6s ease-in-out infinite;
}
@keyframes mh-line-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mh-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.modern-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--fg-dim);
  max-width: 580px;
  line-height: 1.6;
  margin: 0;
  animation: mh-line-up .9s ease .55s both;
}
.modern-hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: mh-line-up .9s ease .7s both;
}
.mh-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 110px;
}
.mh-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--accent-light, #ffa600);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.mh-stat-label {
  font-size: 0.82rem;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.modern-hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
  animation: mh-line-up .9s ease .85s both;
}
.modern-hero-scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 166, 0, 0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  opacity: 0.65;
  transition: opacity .25s var(--ease, ease);
}
.modern-hero-scroll:hover { opacity: 1; }
.modern-hero-scroll span {
  display: block;
  width: 3px; height: 7px;
  background: #ffa600;
  border-radius: 999px;
  animation: mh-scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes mh-scroll-wheel {
  0%   { transform: translateY(0);  opacity: 1; }
  100% { transform: translateY(11px); opacity: 0; }
}

.hero-pro-stats {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  margin: 18px 0 8px;
  flex-wrap: wrap;
  justify-content: center;
  animation: mh-line-up 1s ease 1.6s both;
}
.hpp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 100px;
}
.hpp-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--accent-light, #ffa600);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hpp-stat-label {
  font-size: 0.78rem;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-card-glass {
  position: relative;
  background: rgba(10, 12, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  isolation: isolate;
  overflow: hidden;
}
.form-card-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 60, 40, 0.14), transparent 40%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}
.form-card-glass:hover::before { opacity: 1; }
.form-card-glass > * { position: relative; z-index: 1; }

.auth-screen { padding: 0 0 clamp(48px, 8vh, 96px); }

.plugin-detail-prose {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--fg-dim);
  margin: 0 0 20px;
  max-width: 65ch;
}
.plugin-detail-callout {
  margin: 0 0 22px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.06), rgba(10, 12, 18, 0.4));
  border: 1px solid rgba(251, 191, 36, 0.32);
  border-left-width: 3px;
  border-radius: 12px;
  color: var(--fg);
  font-size: 0.95rem;
  line-height: 1.6;
}
.plugin-detail-callout strong { color: #fbbf24; }

.plugin-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 0 0 8px;
}
.plugin-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  transition: border-color .25s var(--ease, ease), background .25s var(--ease, ease), transform .25s var(--ease, ease);
}
.plugin-feature-card:hover {
  border-color: rgba(255, 60, 40, 0.32);
  background: rgba(255, 60, 40, 0.04);
  transform: translateY(-1px);
}
.plugin-feature-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 60, 40, 0.15);
  border: 1px solid rgba(255, 60, 40, 0.35);
  border-radius: 6px;
  color: #ff5e00;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
}

.install-section {
  padding: clamp(48px, 8vh, 96px) 0;
}
.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.install-step {
  position: relative;
  padding: 24px 22px 22px;
  background: rgba(10, 12, 18, 0.45);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .3s var(--ease, ease), transform .3s var(--ease, ease);
}
.install-step:hover {
  border-color: rgba(255, 60, 40, 0.35);
  transform: translateY(-2px);
}
.install-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #ffa600, #ff5e00);
  color: #04040a;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px -8px rgba(255, 60, 40, 0.45);
}
.install-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--fg);
}
.install-step h3 code {
  background: rgba(255, 60, 40, 0.12);
  border: 1px solid rgba(255, 60, 40, 0.28);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 0.88em;
  color: var(--accent-light);
}
.install-step p {
  color: var(--fg-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.install-step p + p { margin-top: 6px; }
.install-step p code {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  font-family: ui-monospace, monospace;
  font-size: 0.86em;
  color: var(--accent-light);
}
.install-code {
  margin: 10px 0 0;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow-x: auto;
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--accent-light);
}
.install-code code { color: inherit; background: transparent; border: 0; padding: 0; }

@media (max-width: 720px) {
  .plugin-feature-grid { grid-template-columns: 1fr; }
  .install-grid { grid-template-columns: 1fr; }
}
.auth-screen .form-card-glass {
  padding: 32px clamp(20px, 4vw, 36px);
  max-width: 540px;
  margin: 0 auto;
}

.auth-screen .form-card-glass .form-actions {
  display: flex;
  margin-top: 8px;
}
.auth-screen .form-card-glass .form-actions .btn { width: 100%; justify-content: center; }
.auth-screen .form-card-glass .form-foot {
  text-align: center;
  margin-top: 16px;
  color: var(--fg-mute);
  font-size: 0.88rem;
}

.form-optional > summary::marker,
.form-optional > summary::-webkit-details-marker { display: none; color: transparent; }
.form-optional > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.form-optional > summary::after {
  content: '+';
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 60, 40, 0.12);
  border: 1px solid rgba(255, 60, 40, 0.32);
  border-radius: 7px;
  color: var(--accent-light, #ffa600);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform .25s var(--ease, ease);
}
.form-optional[open] > summary::after { transform: rotate(45deg); }

.plugin-card {
  position: relative;
  isolation: isolate;
}
.plugin-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 60, 40, 0.16), transparent 45%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.plugin-card:hover::after { opacity: 1; }
.plugin-card > * { position: relative; z-index: 1; }

.pricing-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 14vh, 140px) 0 clamp(48px, 8vh, 96px);
  text-align: center;
}
.pricing-hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
.ph-grid {
  position: absolute; inset: -40px;
  background-image:
    linear-gradient(rgba(255, 166, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 166, 0, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
}
.ph-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  will-change: transform;
}
.ph-aurora-1 {
  width: 520px; height: 520px;
  left: -120px; top: -100px;
  background: radial-gradient(circle, rgba(255, 60, 40, 0.55), transparent 70%);
  animation: ph-aurora-float-1 22s ease-in-out infinite alternate;
}
.ph-aurora-2 {
  width: 480px; height: 480px;
  right: -80px; top: 60px;
  background: radial-gradient(circle, rgba(255, 166, 0, 0.4), transparent 70%);
  animation: ph-aurora-float-2 26s ease-in-out infinite alternate;
}
.ph-aurora-3 {
  width: 420px; height: 420px;
  left: 40%; bottom: -160px;
  background: radial-gradient(circle, rgba(255, 60, 40, 0.32), transparent 70%);
  animation: ph-aurora-float-3 30s ease-in-out infinite alternate;
}
@keyframes ph-aurora-float-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 40px) scale(1.15); }
}
@keyframes ph-aurora-float-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 80px) scale(1.1); }
}
@keyframes ph-aurora-float-3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -60px) scale(1.2); }
}
.ph-sparkles {
  position: absolute; inset: 0;
}
.ph-sparkles span {
  position: absolute;
  width: 3px; height: 3px;
  background: #ffa600;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 166, 0, 0.9);
  animation: ph-sparkle-twinkle 3.4s ease-in-out infinite;
}
.ph-sparkles span:nth-child(1) { top: 22%; left: 18%; animation-delay: 0s;   }
.ph-sparkles span:nth-child(2) { top: 38%; left: 82%; animation-delay: 0.5s; }
.ph-sparkles span:nth-child(3) { top: 55%; left: 12%; animation-delay: 1.0s; }
.ph-sparkles span:nth-child(4) { top: 18%; left: 64%; animation-delay: 1.5s; }
.ph-sparkles span:nth-child(5) { top: 70%; left: 78%; animation-delay: 2.0s; }
.ph-sparkles span:nth-child(6) { top: 28%; left: 48%; animation-delay: 0.3s; width: 2px; height: 2px; }
.ph-sparkles span:nth-child(7) { top: 62%; left: 36%; animation-delay: 1.2s; width: 2px; height: 2px; }
.ph-sparkles span:nth-child(8) { top: 12%; left: 88%; animation-delay: 1.8s; width: 2px; height: 2px; }
.ph-sparkles span:nth-child(9) { top: 78%; left: 22%; animation-delay: 0.8s; width: 2px; height: 2px; }
.ph-sparkles span:nth-child(10){ top: 44%; left: 30%; animation-delay: 2.3s; width: 4px; height: 4px; }
@keyframes ph-sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 1; transform: scale(1.2); }
}

.pricing-hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.pricing-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255, 60, 40, 0.08);
  border: 1px solid rgba(255, 60, 40, 0.28);
  border-radius: 999px;
  color: var(--accent-light, #ffa600);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: ph-pill-fade-up .8s var(--ease, ease) .1s both;
}
.pricing-hero-pill-dot {
  width: 7px; height: 7px;
  background: #ff5e00;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 60, 40, 0.2);
  animation: ph-pill-pulse 2.4s ease-in-out infinite;
}
@keyframes ph-pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 60, 40, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 60, 40, 0); }
}
.pricing-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ph-line {
  display: block;
  animation: ph-line-up .9s var(--ease, ease) .25s both;
}
.ph-line-accent {
  background: linear-gradient(120deg, #ffa600 0%, #ff5e00 50%, #ff2d2d 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- Premium Button, Checkbox & Form Overrides ---- */
.btn {
  font-family: var(--mc-font-mono, 'JetBrains Mono', monospace);
  letter-spacing: -0.01em;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* Primary Button Redstone-Glow Vibe */
.btn-primary {
  background: linear-gradient(135deg, var(--mc-redstone) 0%, #a21caf 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 
    0 4px 14px -4px var(--mc-redstone-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 12px 28px -8px var(--mc-redstone-glow),
    0 0 12px rgba(255, 42, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Gold button variant */
.btn-gold {
  background: linear-gradient(135deg, var(--mc-gold) 0%, #b45309 100%) !important;
  color: #07080c !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -8px var(--mc-gold-glow), 0 0 12px var(--mc-gold-glow) !important;
}

/* Form inputs styling */
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--mc-diamond) !important;
  box-shadow: 
    0 0 0 3px var(--mc-diamond-glow),
    inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
  background: rgba(8, 9, 14, 0.7) !important;
}

/* Custom Checkboxes */
input[type="checkbox"] {
  accent-color: var(--mc-diamond);
  cursor: pointer;
  border-radius: 4px;
}