/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg: #06111f;
  --bg-1: #081827;
  --bg-2: #0b2240;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #89B6FF;
  --accent-2: #5AE2A9;
  --text: #e8f2ff;
  --muted: #7a9cc5;
  --danger: #ff6b6b;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --nav-h: 64px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
    --bg-color: #0a0a0a;
    --grid-line: #3d3d3d;
    --accent-p: #a855f7;
    /* Purple */
    --accent-o: #f26f21;
    /* Orange */
    --accent-pk: #ec4c9f;
    /* Pink */
    --grid-size: 60px;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
/* --- 2. The Responsive Grid Background --- */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    z-index: -1;
}
img,
svg {
  display: block;
}

a {
  color: inherit;
}

ul[role="list"] {
  list-style: none;
}

/* ─── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  overflow: visible;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #06202a;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-h);
  background: rgba(6, 17, 31, 0.75);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 16px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-wordmark {
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: 8px;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .15s, background .15s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── HAMBURGER & MOBILE NAV ─────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 20px;
  height: 20px;
  padding: 0px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--text);
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(6, 17, 31, 0.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}

.navbar.nav-open .nav-mobile {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.nav-mobile-links a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .15s, background .15s;
}

.nav-mobile-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.nav-mobile-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity .15s, transform .1s, box-shadow .15s;
}

.btn:hover {
  opacity: .88;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #04131f;
  box-shadow: 0 0 24px rgba(137, 182, 255, .25);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(137, 182, 255, .4);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
  opacity: 1;
}

.btn-lg {
  padding: 13px 26px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-block {
  display: flex;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(137, 182, 255, .18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(137, 182, 255, .3);
  background: rgba(137, 182, 255, .07);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  background: linear-gradient(160deg, #fff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero-sub {
  max-width: 580px;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 56px;
}

/* Discord mock window */
.discord-mock {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0e1a2b;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(137, 182, 255, .08);
}

.discord-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0a1524;
  padding: 10px 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ff6058;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #29cc41;
}

.mock-title {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 8px;
  font-weight: 600;
}

.discord-mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
}

.mock-user {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-right: 8px;
}

.mock-cmd {
  font-size: 0.82rem;
  color: var(--accent-2);
  background: rgba(90, 226, 169, .1);
  padding: 2px 8px;
  border-radius: 4px;
}

.mock-reply {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mock-bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a2d47;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.mock-embed {
  flex: 1;
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0a1524;
  border: 1px solid var(--border);
}

.embed-bar {
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
}

.embed-body {
  padding: 10px 12px;
}

.embed-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  text-align: start !important;
}

.embed-fields {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
  text-align: start !important;
}

.embed-field b {
  color: var(--text);
}

.embed-btns {
  display: flex;
  gap: 6px;
}

.embed-btn {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: default;
}

.embed-thumb-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.embed-thumb-row img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-right: 8px;
}

/* ─── SOCIAL PROOF ────────────────────────────────────────── */
.social-proof {
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 0;
}

.proof-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 2px;
}

.proof-num {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── SECTIONS ────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ─── FEATURE GRID ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s;
}

.feat-card:hover {
  border-color: rgba(137, 182, 255, .3);
  transform: translateY(-2px);
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(137, 182, 255, .15), rgba(90, 226, 169, .1));
  border: 1px solid rgba(137, 182, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.feat-card code {
  font-size: 0.82em;
  background: rgba(137, 182, 255, .1);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--accent-2);
}

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing-section {
  background: linear-gradient(180deg, transparent, rgba(137, 182, 255, .04) 50%, transparent);
}

.pricing-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(137, 182, 255, .4);
  background: linear-gradient(180deg, rgba(137, 182, 255, .06), rgba(90, 226, 169, .03));
  box-shadow: 0 0 60px rgba(137, 182, 255, .1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #04131f;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 0.88rem;
  color: var(--muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-features li b {
  color: var(--text);
}

.pricing-features li:first-child {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* ─── TERMINAL / COMMANDS ─────────────────────────────────── */
.terminal {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #08131f;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  max-width: 680px;
  margin: 0 auto;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #060f1a;
  padding: 10px 14px;
}

.terminal-title {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 8px;
  font-weight: 600;
}

.terminal-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.terminal-body li {
  font-size: 0.9rem;
}

.t-cmd {
  color: var(--accent-2);
  font-weight: 700;
}

.t-arg {
  color: var(--accent);
  opacity: .7;
}

.t-desc {
  color: var(--muted);
}

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(137, 182, 255, .15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.cta-inner p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 17, 31, 0) 0%, rgba(8, 18, 30, 0.95) 100%), var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}

.footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 56px 40px;
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand .nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: fit-content;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-discord-btn {
  margin-top: 4px;
  width: fit-content;
  font-size: 0.875rem;
  padding: 9px 20px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  max-width: 1120px;
  margin-inline: auto;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.footer-legal a:hover {
  color: var(--text);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .proof-stat {
    padding: 0 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 16px;
  }

  .hero {
    padding: 56px 0 36px;
  }

  .section {
    padding: 56px 0;
  }

  .section-sub {
    margin-bottom: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner {
    padding: 64px 0;
  }

  .proof-inner {
    gap: 16px 0;
  }

  .proof-divider {
    display: none;
  }

  .proof-stat {
    padding: 0 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card {
    max-width: 100%;
  }

  .terminal {
    border-radius: var(--radius);
  }

  .terminal-body {
    padding: 14px 16px;
  }

  .terminal-body li {
    font-size: 0.82rem;
    overflow-wrap: break-word;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-mobile {
    padding: 12px 16px 20px;
  }

  .reveal {
    --reveal-delay: 0ms;
  }
}


@media (max-width: 492px) {
  .discord-mock {
    max-width: 100%;
  }

  .embed-thumb-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
  }

  .embed-thumb-row img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-right: 8px;
  }
  .embed-btn{
    font-size: 0.65rem;
    padding: 2px 6px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .discord-mock {
    border-radius: var(--radius);
  }
  .embed-btn{
    font-size: 0.55rem;
    padding: 2px 6px;
  }
}