:root {
  --bg: #080608;
  --bg-2: #0e090a;
  --bg-3: #160c0e;
  --surface: rgba(15, 9, 10, 0.84);
  --surface-strong: rgba(19, 11, 13, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --text: #f5edea;
  --muted: #b49c96;
  --line: rgba(220, 110, 90, 0.13);
  --line-strong: rgba(230, 135, 110, 0.18);
  --accent: #c42840;
  --accent-2: #d08828;
  --accent-3: #e04c28;
  --glow: rgba(196, 40, 64, 0.18);
  --card-a: rgba(40, 12, 16, 0.88);
  --card-b: rgba(14, 7, 8, 0.96);
  --banner-a: rgba(50, 14, 20, 0.9);
  --banner-b: rgba(12, 6, 7, 0.96);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.gc-dark {
  --accent: #e8304e;
  --accent-2: #f2a420;
  --accent-3: #ff5a35;
  --glow: rgba(232, 48, 78, 0.22);
  --card-a: rgba(56, 14, 22, 0.88);
  --banner-a: rgba(68, 18, 28, 0.9);
}

/* scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 48, 78, 0.45) rgba(14, 7, 8, 0.7);
}
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: rgba(14, 7, 8, 0.7);
  border-left: 1px solid rgba(220, 110, 90, 0.08);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(232, 48, 78, 0.55) 0%,
    rgba(196, 40, 64, 0.38) 100%
  );
  border-radius: 4px;
  border: 1px solid rgba(232, 48, 78, 0.18);
  transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(232, 48, 78, 0.8) 0%,
    rgba(242, 164, 32, 0.45) 100%
  );
  border-color: rgba(232, 48, 78, 0.35);
}
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #e8304e 0%, rgba(232, 48, 78, 0.7) 100%);
}
::-webkit-scrollbar-corner {
  background: rgba(14, 7, 8, 0.7);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(52rem 32rem at 0% -4%, var(--glow), transparent 60%),
    radial-gradient(
      40rem 28rem at 100% 10%,
      rgba(255, 255, 255, 0.05),
      transparent 62%
    ),
    linear-gradient(180deg, #0d0608 0%, #090507 45%, #060406 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size:
    100% 34px,
    34px 100%;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 92%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.035),
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 15%,
      rgba(255, 255, 255, 0.025),
      transparent 18%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.03),
      transparent 18%
    );
  opacity: 0.35;
  mix-blend-mode: screen;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
canvas.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.46;
}
.site-shell {
  position: relative;
  z-index: 1;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.progressbar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  z-index: 120;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px var(--glow);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 3, 4, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.desktop-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #f0e8e4;
  font-weight: 700;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}
.burger {
  display: none;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}
.mobile-nav {
  display: none;
  padding: 0 0 16px;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav a {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #ede5e1;
}
.mobile-nav.active {
  display: flex;
}

.hero {
  padding: 26px 0 8px;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: start;
}
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, var(--card-a), var(--card-b));
}
.hero-copy {
  padding: 30px;
}
.hero-copy::before,
.hero-side::before,
.banner-card::before,
.brand-card::before,
.note-card::before,
.faq-wrap::before,
.footer-panel::before {
  content: '';
  position: absolute;
  inset: auto -90px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 66%);
  pointer-events: none;
  filter: blur(6px);
}
.hero-copy::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0 63%,
      rgba(255, 255, 255, 0.05) 63.2%,
      transparent 63.5%
    ),
    linear-gradient(
      180deg,
      transparent 0 92%,
      rgba(255, 255, 255, 0.03) 92.1%,
      transparent 92.3%
    );
  opacity: 0.7;
  pointer-events: none;
}
.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c0a49c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px var(--glow);
}
.hero h1 {
  margin: 16px 0 14px;
  max-width: 10.5ch;
  font-size: clamp(2.85rem, 5vw, 5.4rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}
.hero-text {
  margin: 0;
  display: none;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}
@media (min-width: 768px) {
  .hero-text {
    display: block;
  }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.2),
    0 0 30px var(--glow);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--line-strong);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-tags span,
.visual-chip,
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #ede5e1;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero-art {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  margin-top: 22px;
}
.art-panel {
  min-height: 120px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  overflow: hidden;
}
.art-panel svg {
  width: 100%;
  height: 100%;
}
.hero-side {
  padding: 22px;
  display: grid;
  gap: 12px;
}
.side-lead {
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 18%, var(--glow), transparent 36%),
    rgba(255, 255, 255, 0.03);
}
.side-lead strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.side-lead p,
.side-mini p,
.section-head p,
.banner-card p,
.brand-card p,
.note-card p,
.faq-answer,
.page-card p,
.page-card li,
.footer-text,
.footer-note {
  color: var(--muted);
  line-height: 1.7;
}
.side-grid {
  display: grid;
  gap: 12px;
}
.side-mini {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.side-mini strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.section {
  padding: 26px 0;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 12px 0 0;
  max-width: 13ch;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.section-head.side-wide h2 {
  max-width: 15ch;
}
.head-with-svg {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.head-mark {
  flex: 0 0 180px;
  max-width: 180px;
  opacity: 0.9;
}
.head-mark svg {
  width: 100%;
  height: auto;
  display: block;
}

.banner-grid,
.cards-grid,
.note-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.banner-card,
.brand-card,
.note-card,
.info-card,
.faq-wrap,
.legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, var(--card-a), var(--card-b));
}
.banner-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.banner-card::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  transform: rotate(24deg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent);
}
.banner-card strong {
  display: block;
  margin: 16px 0 12px;
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.banner-card p {
  margin: 0 0 18px;
}
.banner-card .btn {
  margin-top: auto;
  width: max-content;
}
.banner-card:nth-child(1) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, var(--banner-a), var(--card-b));
}
.banner-card:nth-child(2) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, rgba(44, 12, 18, 0.92), var(--card-b));
}
.gc-dark .banner-card:nth-child(2) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, rgba(56, 14, 22, 0.92), var(--card-b));
}
.banner-card:nth-child(3) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, rgba(36, 10, 22, 0.92), var(--card-b));
}
.gc-dark .banner-card:nth-child(3) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, rgba(48, 12, 28, 0.92), var(--card-b));
}
.banner-svg {
  display: block;
  width: 100%;
  height: 56px;
  margin-top: 14px;
  opacity: 0.85;
}
.banner-svg path,
.banner-svg line,
.banner-svg circle {
  vector-effect: non-scaling-stroke;
}

.cards-grid {
  align-items: stretch;
}
.brand-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.brand-card:nth-child(2) {
  transform: translateY(8px);
}
.brand-card:nth-child(3) {
  transform: translateY(18px);
}
@media (max-width: 860px) {
  .brand-card:nth-child(2),
  .brand-card:nth-child(3) {
    transform: none;
  }
}
.brand-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.brand-logo-wrap {
  width: 100%;
  min-height: 88px;
  padding: 10px 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
}
.brand-logo-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
}
.brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-card p {
  margin: 18px 0 14px;
  font-size: 1.02rem;
}
.points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.points li {
  position: relative;
  padding-left: 20px;
}
.points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px var(--glow);
}
.brand-actions {
  margin-top: 18px;
}

.note-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}
.note-card,
.info-card {
  padding: 22px;
}
.note-card.feature {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, rgba(30, 8, 12, 0.94), var(--card-b));
}
.gc-dark .note-card.feature {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, rgba(36, 12, 18, 0.94), var(--card-b));
}
.note-card h3,
.info-card h3 {
  margin: 14px 0 10px;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.note-card.feature h3 {
  font-size: 1.8rem;
}
.note-svg {
  display: block;
  width: 100%;
  height: 74px;
  margin-top: 10px;
  opacity: 0.9;
}
.info-grid .info-card:nth-child(2) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, rgba(32, 8, 16, 0.92), var(--card-b));
}
.gc-dark .info-grid .info-card:nth-child(2) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, rgba(40, 10, 20, 0.92), var(--card-b));
}

.faq-wrap {
  padding: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, var(--card-a), var(--card-b));
}
.legal-grid {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 22px 20px;
}
.faq-item.open .faq-answer {
  display: block;
}

.footer {
  padding: 4px 0 28px;
}
.footer-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, #130709, var(--card-b));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.7fr 0.7fr;
  gap: 22px;
  padding: 28px;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--text);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.footer-badges a,
.footer-badges span {
  min-width: 54px;
  min-height: 54px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.footer-badges img {
  width: auto;
  max-height: 30px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: 24px 0 12px;
}
.page-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, var(--card-a), var(--card-b));
}
.page-card::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 66%);
}
.page-card h1 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.page-card h2 {
  margin: 24px 0 12px;
  font-size: 1.35rem;
}
.page-card ul {
  padding-left: 22px;
}

@media (max-width: 1100px) {
  .hero-shell,
  .section-head,
  .footer-grid,
  .note-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .hero h1 {
    max-width: none;
  }
  .head-with-svg {
    display: block;
  }
  .head-mark {
    display: none;
  }
  .banner-grid,
  .cards-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .topbar-inner {
    min-height: 78px;
  }
  .hero {
    padding-top: 16px;
  }
  .hero-shell,
  .hero-art,
  .banner-grid,
  .cards-grid,
  .note-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-side,
  .banner-card,
  .brand-card,
  .note-card,
  .info-card,
  .faq-wrap,
  .page-card {
    padding: 22px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 4.4rem);
  }
  .section-head h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }
  .banner-card {
    min-height: 0;
  }
  .footer-grid {
    padding: 22px;
  }
  .footer-bottom {
    padding: 18px 22px 22px;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 20px);
  }
  .topbar-inner {
    gap: 12px;
  }
  .burger {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .hero-copy,
  .hero-side,
  .banner-card,
  .brand-card,
  .note-card,
  .info-card,
  .faq-wrap,
  .page-card {
    padding: 18px;
  }
  .hero-actions .btn,
  .banner-card .btn,
  .brand-actions .btn {
    width: 100%;
  }
  .hero-tags span,
  .visual-chip,
  .brand-chip {
    font-size: 0.55rem;
  }
  .faq-question {
    padding: 18px;
  }
  .footer-grid {
    padding: 18px;
  }
  .footer-bottom {
    padding: 16px 18px 20px;
  }
}

/* ============================================================
   HERO FIRST-SCREEN — single-column intro above vitrina
   ============================================================ */
.hero.hero-first-screen {
  padding: clamp(20px, 4vw, 40px) 0 clamp(28px, 5vw, 52px);
}
.hero-intro {
  margin-bottom: clamp(18px, 3vw, 30px);
}
.hero-first-screen h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.94;
  margin: 14px 0 12px;
}
.hero-first-screen .hero-text {
  max-width: 64ch;
}
.hero-first-screen .hero-tags {
  margin-top: 14px;
}

/* ============================================================
   VITRINA — ranked showcase (mobile-first)
   ============================================================ */
.vitrina {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Desktop-only table header — hidden on mobile/tablet */
.vitrina-header {
  display: none;
}

/* Base card — mobile 2-column grid */
.vitrina-card {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 10px 12px;
  padding: clamp(12px, 2.5vw, 16px);
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    linear-gradient(135deg, var(--card-a), var(--card-b));
}
.vitrina-card:last-child {
  margin-bottom: 0;
}

.vitrina-card--featured {
  border-color: rgba(232, 48, 78, 0.45);
  box-shadow:
    0 0 0 1px rgba(232, 48, 78, 0.14),
    var(--shadow-soft);
}

/* Rank badge — absolute corner on mobile/tablet */
.vc-rank {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 28px;
  height: 28px;
  border-radius: 0 0 10px 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}
.vitrina-card:not(.vitrina-card--featured) .vc-rank {
  background: #eee;
  color: var(--accent);
}

/* Brand column — left, spans both card rows */
.vc-brand {
  grid-column: 1;
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 26px;
  min-width: 0;
}
.vc-logo-wrap {
  width: 100%;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
}
.vc-logo-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
  display: block;
}
.vc-chips {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vc-chips .brand-chip {
  font-size: 0.63rem;
  min-height: 26px;
  padding: 4px 8px;
  letter-spacing: 0.1em;
  justify-content: flex-start;
}

/* Info column — right, row 1 */
.vc-info {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 28px;
  min-width: 0;
}
.vc-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.vitrina-card:not(.vitrina-card--featured) .vc-label {
  color: var(--muted);
}
.vc-value {
  display: block;
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 2px 0 4px;
  color: var(--text);
}
.vc-desc {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Score — hidden on mobile/tablet */
.vc-score {
  display: none;
}
.vc-score-val {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc-score-sub {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Action (CTA) — right, row 2 */
.vc-action {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: flex-end;
  min-width: 0;
}
.vc-cta {
  width: 100%;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.25),
    0 0 18px var(--glow);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  border: none;
  min-width: 0;
}
.vitrina-card:not(.vitrina-card--featured) .vc-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--text);
}
.vc-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.3),
    0 0 24px var(--glow);
}
.vitrina-card:not(.vitrina-card--featured) .vc-cta:hover {
  border-color: var(--line-strong);
  box-shadow: none;
}

/* ============================================================
   VITRINA — DESKTOP (1100px+)
   ============================================================ */
@media (min-width: 1100px) {
  .hero.hero-first-screen {
    padding-bottom: clamp(36px, 5vw, 60px);
  }

  .vitrina-header {
    display: grid;
    grid-template-columns:
      56px minmax(220px, 1.4fr) minmax(190px, 1.1fr)
      110px minmax(160px, 0.9fr);
    gap: 16px;
    padding: 0 20px 10px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
  }
  .vitrina-header > div {
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .vitrina-header > div:last-child {
    text-align: right;
  }

  .vitrina-card {
    display: grid;
    grid-template-columns:
      56px minmax(220px, 1.4fr) minmax(190px, 1.1fr)
      110px minmax(160px, 0.9fr);
    grid-template-rows: 1fr;
    grid-template-areas: 'rank brand info score action';
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    margin-bottom: 0;
    border-radius: 14px;
  }

  /* Rank: static large number */
  .vc-rank {
    position: static;
    grid-area: rank;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    justify-content: center;
    box-shadow: none;
    z-index: auto;
  }
  .vitrina-card:not(.vitrina-card--featured) .vc-rank {
    background: transparent;
    color: rgba(255, 255, 255, 0.22);
  }

  /* Brand: horizontal row, logo + chips */
  .vc-brand {
    grid-area: brand;
    grid-row: auto;
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    gap: 12px;
  }
  .vc-logo-wrap {
    flex: 0 0 108px;
    min-height: 50px;
    padding: 8px 12px;
    border-radius: 10px;
  }
  .vc-chips {
    flex-direction: column;
    gap: 5px;
    min-width: 0;
  }
  .vc-chips .brand-chip {
    justify-content: center;
  }

  .vc-info {
    grid-area: info;
    grid-row: auto;
    padding-top: 0;
  }

  .vc-score {
    grid-area: score;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .vc-action {
    grid-area: action;
    grid-row: auto;
    align-items: center;
    justify-content: flex-end;
  }

  /* Non-featured: separator row style */
  .vitrina-card:not(.vitrina-card--featured) {
    background: transparent;
    border: none;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  /* Featured: full bordered box */
  .vitrina-card--featured {
    border-radius: 14px;
    margin-bottom: 2px;
  }
}

/* Extra-small screens (≤380px) */
@media (max-width: 380px) {
  .vc-cta {
    font-size: 0.72rem;
    min-height: 36px;
  }
  .vc-desc {
    font-size: 0.75rem;
  }
}
