:root {
  --bg-main: #050505;
  --bg-soft: #0d0d0d;
  --bg-card: rgba(255, 255, 255, 0.05);
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.82);
  --white-muted: rgba(255, 255, 255, 0.62);
  --red: #c30000;
  --red-bright: #ef1f1f;
  --red-dark: #7f0000;
  --gold: #f4c542;
  --gold-light: #ffda72;
  --gold-dark: #b98600;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(244, 197, 66, 0.28);
  --shadow-main: 0 20px 55px rgba(0, 0, 0, 0.42);
  --shadow-red: 0 14px 34px rgba(195, 0, 0, 0.33);
  --shadow-gold: 0 14px 34px rgba(244, 197, 66, 0.22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(195, 0, 0, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(244, 197, 66, 0.12), transparent 24%),
    linear-gradient(180deg, #040404 0%, #0a0a0a 40%, #060606 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 18px;
  color: var(--white-soft);
  font-size: 16px;
  line-height: 1.85;
}

ul,
ol {
  margin: 0;
  padding-left: 22px;
}

li {
  margin-bottom: 12px;
  color: var(--white-soft);
  line-height: 1.75;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 32px, 900px);
}

.bg-orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.26;
  pointer-events: none;
  z-index: 0;
}

.orb-red {
  top: -40px;
  left: -80px;
  background: var(--red);
}

.orb-gold {
  right: -70px;
  top: 28%;
  background: var(--gold);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}

.site-header,
.hero,
.content-section,
.info-section,
.site-footer,
.floating-promo,
.back-to-top {
  position: relative;
  z-index: 2;
}

.site-header {
  padding: 18px 0 14px;
  background: rgba(8, 8, 8, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.logo-main {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.5px;
  color: var(--white);
  text-shadow:
    0 0 14px rgba(195, 0, 0, 0.42),
    0 0 24px rgba(244, 197, 66, 0.16);
}

.logo-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero {
  padding: 32px 0 56px;
  min-height: calc(100vh - 88px);
}

.hero-centered-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-banner-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin-bottom: 28px;
  perspective: 1200px;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(244, 197, 66, 0.08),
    0 0 40px rgba(195, 0, 0, 0.12);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.hero-banner-glow {
  position: absolute;
  inset: auto 8% -18px 8%;
  height: 70px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.3), transparent 70%);
  filter: blur(26px);
  z-index: -1;
}

.hero-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-main);
}

.hero-chip-top {
  top: 18px;
  left: 18px;
  animation: floatY 3.8s ease-in-out infinite;
}

.hero-chip-top span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.hero-chip-bottom {
  right: 18px;
  bottom: 18px;
  animation: floatY 4.2s ease-in-out infinite;
}

.hero-chip-bottom strong {
  display: block;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 3px;
}

.hero-chip-bottom span {
  font-size: 12px;
  color: var(--white-muted);
}

.hero-content {
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 66, 0.25);
  background: rgba(244, 197, 66, 0.08);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero-desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--white-soft);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(195, 0, 0, 0.42);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #1e1300;
  box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
  box-shadow: 0 18px 38px rgba(244, 197, 66, 0.32);
}

.btn-alt {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border: 1px solid rgba(244, 197, 66, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.btn-alt:hover {
  background: rgba(244, 197, 66, 0.08);
}

.pulse-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.32);
  animation: pulseRing 2s infinite;
  pointer-events: none;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 0.65s linear;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 0;
}

.hero-mini-info {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.mini-info-card {
  min-width: 138px;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(12px);
}

.mini-info-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 21px;
  color: var(--gold);
}

.mini-info-card span {
  font-size: 13px;
  color: var(--white-soft);
}

.content-section,
.info-section {
  padding: 78px 0;
}

.alt-surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title-wrap {
  margin-bottom: 28px;
}

.section-title-wrap.center {
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-list,
.number-list {
  margin: 18px 0 28px;
}

.feature-list li::marker,
.number-list li::marker {
  color: var(--gold);
  font-weight: 700;
}

.image-block {
  margin: 34px 0;
}

.content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin: 34px 0;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-main);
}

.styled-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.styled-table thead th {
  padding: 18px 16px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(195, 0, 0, 0.28), rgba(244, 197, 66, 0.16));
}

.styled-table tbody td {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white-soft);
  font-size: 15px;
}

.styled-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(244, 197, 66, 0.14);
  border: 1px solid rgba(244, 197, 66, 0.22);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.info-card {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-main);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(244, 197, 66, 0.08);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(195, 0, 0, 0.9), rgba(244, 197, 66, 0.75));
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  box-shadow: var(--shadow-main);
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--white);
}

.info-card p {
  margin: 0;
  font-size: 15px;
}

.dual-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.image-card {
  margin: 0;
  border-radius: 22px;
  overflow: visible;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
  background: rgba(255, 255, 255, 0.025);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  background: rgba(0, 0, 0, 0.36);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
  z-index: 30;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-promo {
  position: fixed;
  top: 120px;
  right: 18px;
  width: 190px;
  padding: 12px 12px 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.94), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(244, 197, 66, 0.26);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.36),
    0 0 18px rgba(244, 197, 66, 0.08);
  backdrop-filter: blur(12px);
  z-index: 40;
  animation: promoFloat 3.5s ease-in-out infinite;
}

.floating-promo__label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(195, 0, 0, 0.22);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-promo__btn {
  display: block;
  padding: 14px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #170f00;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-promo__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(244, 197, 66, 0.28);
}

.floating-promo__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.floating-promo.hidden {
  display: none;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.62;
  }
  70% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes promoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-banner-image {
    aspect-ratio: 16 / 9;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .dual-images {
    grid-template-columns: 1fr;
  }

  .floating-promo {
    top: auto;
    bottom: 84px;
    right: 14px;
  }
}

@media (max-width: 767px) {
  .container,
  .narrow {
    width: min(100% - 24px, 100%);
  }

  .site-header {
    padding: 15px 0 12px;
  }

  .logo-main {
    font-size: 28px;
  }

  .logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero {
    min-height: calc(100vh - 72px);
    padding: 14px 0 28px;
  }

  .hero-banner-wrap {
    margin-bottom: 18px;
  }

  .hero-banner-image {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 22px;
  }

  .hero-chip-top {
    top: 10px;
    left: 10px;
    padding: 8px 10px;
  }

  .hero-chip-top span {
    font-size: 11px;
  }

  .hero-chip-bottom {
    right: 10px;
    bottom: 10px;
    padding: 9px 10px;
  }

  .hero-chip-bottom strong {
    font-size: 14px;
  }

  .hero-chip-bottom span {
    font-size: 10px;
  }

  .hero-badge {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
  }

  .btn {
    min-width: 0;
    min-height: 50px;
    padding: 12px 14px;
    font-size: 15px;
  }

  .hero-mini-info {
    margin-top: 18px;
    gap: 10px;
  }

  .mini-info-card {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 0;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .mini-info-card strong {
    font-size: 16px;
  }

  .mini-info-card span {
    font-size: 10px;
  }

  .content-section,
  .info-section {
    padding: 54px 0;
  }

  .section-title {
    font-size: 28px;
  }

  p,
  li {
    font-size: 15px;
  }

  .content-image {
    aspect-ratio: 16 / 10;
  }

  .styled-table {
    min-width: 640px;
  }

  .floating-promo {
    width: 155px;
    padding: 10px 10px 12px;
    right: 10px;
    bottom: 78px;
    border-radius: 16px;
  }

  .floating-promo__btn {
    padding: 12px 8px;
    font-size: 11px;
  }

  .floating-promo__label {
    font-size: 9px;
    margin-bottom: 8px;
  }

  .back-to-top {
    width: 46px;
    height: 46px;
    right: 12px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: calc(100vh - 70px);
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .btn {
    min-height: 48px;
    font-size: 14px;
    padding: 12px 12px;
  }

  .mini-info-card {
    padding: 10px 8px;
  }

  .mini-info-card strong {
    font-size: 14px;
  }

  .mini-info-card span {
    font-size: 10px;
  }

  .floating-promo {
    width: 145px;
  }
}