:root {
  --bg: #06101a;
  --bg-soft: #091827;
  --panel: rgba(9, 24, 39, 0.78);
  --panel-strong: rgba(8, 19, 31, 0.92);
  --panel-light: rgba(255, 255, 255, 0.06);
  --card: rgba(9, 24, 39, 0.82);
  --card-hover: rgba(12, 32, 52, 0.94);
  --text: #eff7ff;
  --text-soft: #9eb6ca;
  --text-dim: #7190aa;
  --brand: #70f2ea;
  --brand-strong: #2e9fff;
  --brand-deep: #123f69;
  --line: rgba(173, 222, 255, 0.12);
  --line-strong: rgba(173, 222, 255, 0.22);
  --success: #2ccf75;
  --discord: #5865f2;
  --whatsapp: #25d366;
  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 14px 28px rgba(0, 0, 0, 0.18);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --font-display: "Aptos Display", "Segoe UI Variable Display", sans-serif;
  --font-body: Aptos, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(112, 242, 234, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(46, 159, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #07121d 0%, #07111a 32%, #081522 100%);
}

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  width: min(1400px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 44px;
  overflow: clip;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.ambient--one {
  top: 12px;
  left: -90px;
  width: 300px;
  height: 300px;
  background: rgba(112, 242, 234, 0.22);
}

.ambient--two {
  top: 40px;
  right: -110px;
  width: 340px;
  height: 340px;
  background: rgba(46, 159, 255, 0.2);
}

.ambient--three {
  top: 420px;
  left: 30%;
  width: 240px;
  height: 240px;
  background: rgba(89, 122, 255, 0.15);
}

.hero,
.control-panel,
.feature-panel,
.catalog-shell {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(7, 18, 29, 0.98), rgba(8, 20, 34, 0.82)),
    linear-gradient(135deg, rgba(112, 242, 234, 0.06), transparent 34%);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

.hero__nav,
.hero__content,
.hero__actions,
.metrics-strip,
.control-panel__heading,
.catalog-shell__top,
.product-card__top,
.product-card__meta,
.feature-panel__top,
.feature-panel__actions,
.platform-card__top,
.platform-card__bottom {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__nav,
.control-panel__heading,
.catalog-shell__top,
.product-card__top,
.product-card__meta,
.platform-card__top,
.platform-card__bottom {
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand__logo {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__copy strong,
.brand__copy small {
  display: block;
}

.brand__copy strong {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--text-soft);
}

.hero__nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.live-pill,
.nav-link,
.action,
.price-badge,
.catalog-shell__fx,
.product-card__category,
.product-card__price,
.chip,
.meta-chip,
.platform-chip,
.platform-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
}

.live-pill {
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
}

.live-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(44, 207, 117, 0.14);
}

.nav-link {
  min-height: 42px;
  padding: 0 14px;
  text-decoration: none;
  border: 1px solid transparent;
}

.nav-link--discord {
  background: rgba(88, 101, 242, 0.15);
  color: #dfe4ff;
  border-color: rgba(88, 101, 242, 0.24);
}

.nav-link--whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #dcffe8;
  border-color: rgba(37, 211, 102, 0.24);
}

.hero__content {
  align-items: stretch;
  margin-top: 18px;
}

.hero__copy,
.hero__visual {
  min-width: 0;
}

.hero__copy {
  flex: 1 1 0;
  padding: clamp(18px, 2vw, 26px);
}

.hero__visual {
  flex: 0 0 min(47%, 560px);
  display: grid;
  gap: 16px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

.section-kicker--soft {
  color: #b4fff5;
}

.hero__copy h1,
.control-panel h2,
.feature-panel h3,
.product-card__name,
.empty-state h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

.hero__copy h1 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 6.6vw, 6rem);
  line-height: 0.92;
}

.hero__text,
.hero__side p,
.feature-panel__description,
.product-card__description,
.empty-state p,
.platform-card p {
  margin: 0;
  line-height: 1.78;
}

.hero__text {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.hero__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}

.action {
  min-height: 48px;
  padding: 0 18px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.action:hover {
  transform: translateY(-2px);
}

.action--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #02101d;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(46, 159, 255, 0.28);
}

.action--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.action--light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-strip {
  flex-wrap: wrap;
  margin-top: 32px;
}

.metric {
  flex: 1 1 140px;
  min-width: 0;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric span {
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.metric strong {
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.hero__poster,
.hero__side,
.control-panel,
.feature-panel,
.catalog-shell,
.product-card__surface,
.empty-state,
.platform-card {
  border-radius: var(--radius-lg);
}

.hero__poster {
  overflow: hidden;
  min-height: 300px;
  background: linear-gradient(135deg, #08131f, #102235);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__side {
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__side strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.hero__side p {
  color: var(--text-soft);
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.hero__links a {
  color: #bfe6ff;
  font-weight: 700;
  text-decoration: none;
}

.page-content {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.control-panel,
.feature-panel,
.catalog-shell {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.control-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.control-panel__grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.input-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.input-card--search {
  grid-column: span 2;
}

.input-card span {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 800;
}

.input-card input,
.input-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.input-card--toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-card--toggle input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
}

.feature-panel {
  overflow: hidden;
}

.feature-panel__intro,
.feature-panel__content {
  display: grid;
  gap: 18px;
}

.feature-panel__intro {
  min-height: 180px;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(112, 242, 234, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-md);
  border: 1px dashed rgba(173, 222, 255, 0.14);
}

.feature-panel__content {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: start;
}

.feature-panel__media {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(112, 242, 234, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(46, 159, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0a1725, #12263a);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-panel__media img,
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-panel__body {
  display: grid;
  gap: 18px;
}

.feature-panel__top {
  align-items: flex-start;
  justify-content: space-between;
}

.feature-panel__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.feature-panel h3 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.feature-panel__description,
.empty-state p,
.product-card__description,
.platform-card p {
  color: var(--text-soft);
}

.price-badge,
.product-card__price {
  padding: 10px 14px;
  background: rgba(112, 242, 234, 0.14);
  color: #d8fffb;
  border: 1px solid rgba(112, 242, 234, 0.18);
  font-weight: 800;
}

.feature-panel__meta,
.feature-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-chip,
.chip {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
}

.catalog-shell__fx,
.product-card__category,
.platform-chip,
.platform-card__status {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #d0ebff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.catalog-shell__top p {
  margin: 0;
  color: var(--text-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.product-card {
  min-width: 0;
}

.product-card__surface {
  position: relative;
  width: 100%;
  padding: 0;
  color: inherit;
  background: linear-gradient(180deg, rgba(8, 18, 29, 0.92), rgba(9, 24, 39, 0.96));
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.product-card__surface:hover,
.product-card__surface.is-active {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.28);
  background: linear-gradient(180deg, rgba(10, 24, 38, 0.96), rgba(12, 31, 49, 0.98));
}

.product-card__media {
  position: relative;
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(112, 242, 234, 0.1), transparent 24%),
    radial-gradient(circle at bottom right, rgba(46, 159, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #0a1725, #12263a);
}

.product-card__overlay {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(6, 16, 26, 0), rgba(6, 16, 26, 0.95));
  pointer-events: none;
}

.product-card__body {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  margin-top: -46px;
  z-index: 1;
}

.product-card__name {
  font-size: 1.48rem;
}

.product-card__description {
  min-height: 4.9em;
}

.product-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card__count {
  color: var(--text-dim);
  font-size: 0.84rem;
}

.platform-list {
  display: grid;
  gap: 12px;
}

.platform-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.platform-card p,
.platform-card__bottom {
  color: var(--text-soft);
}

.platform-card__bottom {
  margin-top: 12px;
  font-size: 0.92rem;
}

.platform-card a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(173, 222, 255, 0.14);
}

.hidden {
  display: none !important;
}

@media (max-width: 1200px) {
  .control-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .input-card--search {
    grid-column: span 2;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel__content,
  .hero__content {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    flex: 1 1 auto;
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 18px, 100%);
  }

  .hero__nav,
  .hero__content,
  .hero__actions,
  .control-panel__heading,
  .catalog-shell__top,
  .product-card__top,
  .product-card__meta,
  .feature-panel__top,
  .platform-card__top,
  .platform-card__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__copy h1 {
    max-width: 100%;
  }

  .control-panel__grid,
  .product-grid,
  .feature-panel__content {
    grid-template-columns: 1fr;
  }

  .input-card--search {
    grid-column: auto;
  }

  .feature-panel__actions {
    justify-content: flex-start;
  }
}
