@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Inter:wght@400;500;600&display=swap');
:root {
  --color-bg: #050507;
  --color-surface: #0f1015;
  --color-surface-hover: #181a22;
  --color-accent: #ccff00;
  --color-accent-2: #00e5ff;
  --color-text: #ffffff;
  --color-text-muted: #cbcbcc;
  --color-border: #1f222e;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  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: 50px 50px;
  background-position: center center;
}
a {
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}
h1 {
  font-size: clamp(2.2rem, 8vw, 6rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}
.text-accent {
  color: var(--color-accent);
}
.container {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
}
.section {
  padding: 8rem 0;
  position: relative;
}
.ticker-wrap {
  width: 100%;
  background: var(--color-accent);
  color: #000;
  padding: 0.5rem 0;
  overflow: hidden;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1001;
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-block;
  padding: 0 2rem;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
header {
  position: fixed;
  top: 36px;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  top: 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  display: inline-block;
  transform: skewX(-15deg);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a.btn {
  color: #000;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.mobile-toggle span {
  width: 30px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transform: skewX(-10deg);
}
.btn span {
  transform: skewX(10deg);
}
.btn-primary {
  background: var(--color-accent);
  color: #000;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-border);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 8rem;
}
.hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  animation: bgZoom 20s ease-in-out infinite alternate;
}
@keyframes bgZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 5, 7, 0.95) 0%, rgba(5, 5, 7, 0.4) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 700px;
}
.hero-subtitle {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  display: block;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
}
.feature-text {
  grid-column: span 5;
}
.feature-visual {
  grid-column: span 7;
  position: relative;
}
.feature-visual img {
  border-radius: 4px;
  filter: grayscale(20%) contrast(1.1);
  transition: var(--transition);
}
.feature-visual:hover img {
  filter: grayscale(0%) contrast(1.1);
}
.feature-visual::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 2px solid var(--color-accent);
  z-index: -1;
  transition: var(--transition);
}
.feature-visual:hover::after {
  transform: translate(-10px, 10px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
}
.stat-box h3 {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.stat-box p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.formats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.format-card {
  background: var(--color-surface);
  padding: 3rem;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.format-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
}
.format-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(204, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.format-card svg {
  width: 30px;
  height: 30px;
  fill: var(--color-accent);
}
.cta-section {
  background: var(--color-accent);
  color: #000;
  text-align: center;
  padding: 6rem 0;
}
.cta-section h2 {
  color: #000;
}
.cta-section p {
  color: #333;
}
.cta-section .btn-primary {
  background: #000;
  color: #fff;
}
.cta-section .btn-primary:hover {
  background: #fff;
  color: #000;
}
footer {
  background: #020203;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}
.footer-col p {
  font-size: 0.95rem;
}
.footer-col ul li {
  margin-bottom: 1rem;
}
.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.footer-col ul li a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.form-control {
  width: 100%;
  padding: 1.2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: #fff;
  font-family: var(--font-body);
  transition: var(--transition);
  border-radius: 0;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.page-header {
  padding: 12rem 0 6rem;
  background: linear-gradient(to bottom, rgba(5, 5, 7, 0.6), var(--color-bg)), url('/assets../images/subpage_hero.webp') center/cover no-repeat;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-text,
  .feature-visual {
    grid-column: span 1;
  }
  .feature-visual {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--color-border);
    transition: var(--transition);
  }
  .nav-links.active {
    right: 0;
  }
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .content-grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: 2rem;
  }
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: translateY(20px);
  transition: var(--transition);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(204, 255, 0, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}