
:root {
  --red: #E8000D;
  --red-dark: #b0000a;
  --red-light: #ff2233;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #e8e8e8;
  --mid-gray: #999;
  --dark: #111111;
  --text: #222222;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* HEADER / HERO */
#hero {
  position: relative;
  height: 100vh;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,0,13,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,13,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: bgShift 20s linear infinite;
}

@keyframes bgShift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,0,13,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,0,13,0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--red); }

.btn-red {
  background: var(--red);
  color: white;
  border: none;
  padding: 12px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-light);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn-red:hover::before { transform: translateX(0); }
.btn-red:hover { transform: translateY(-2px); }
.btn-red span { position: relative; z-index: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 4px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-title .red { color: var(--red); }

.hero-sub {
  margin-top: 24px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.45s both;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s;
}

.btn-outline:hover { border-color: var(--red); color: var(--red); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SCROLL MOUSE */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: fadeUp 1s ease 0.9s both;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-wheel {
  width: 3px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: mouseScroll 1.8s ease-in-out infinite;
}

@keyframes mouseScroll {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.scroll-arrows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.scroll-arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: arrowBounce 1.8s ease infinite;
}

.scroll-arrows span:nth-child(2) { animation-delay: 0.2s; }
.scroll-arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrowBounce {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* SECTION BASE */
section {
  padding: 100px 60px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--dark);
}

/* PLATFORMS */
#platforms {
  background: var(--off-white);
  text-align: center;
}

.platforms-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.platform-card {
  background: white;
  border: 1px solid var(--light-gray);
  padding: 44px 36px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.platform-card:hover::before { transform: scaleX(1); }
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: rgba(232,0,13,0.2);
}

.platform-card i {
  font-size: 2.4rem;
  color: var(--red);
}

.platform-card span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* SERVICES */
#services {
  background: #0a0a0a;
  color: white;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.services-header .section-title { color: white; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.service-item {
  background: #161616;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.service-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(232,0,13,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-item:hover { background: #1a1a1a; }
.service-item:hover::after { opacity: 1; }

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 20px; right: 30px;
  line-height: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,0,13,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(232,0,13,0.2);
}

.service-icon i { color: var(--red); font-size: 1.4rem; }

.service-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: white;
}

.service-item p {
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-size: 0.92rem;
  max-width: 340px;
}

/* RESULTS */
#results {
  background: white;
  padding: 100px 60px;
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
}

.dashboards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.dashboard-card {
  background: #f8f8f8;
  border: 1px solid var(--light-gray);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.dashboard-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: top;
  display: block;
  background: white;
  padding: 12px;
}

.launch-badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.dashboard-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
}

.dashboard-placeholder i { font-size: 2.5rem; color: var(--red); opacity: 0.4; }
.dashboard-placeholder span { font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

.dashboard-info {
  padding: 20px 24px;
}

.dashboard-info .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--dark);
}

.dashboard-info .period {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 4px;
}

.dashboard-info .growth {
  font-size: 0.85rem;
  font-weight: 700;
  color: #16a34a;
  margin-top: 6px;
}

/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--dark);
  margin-top: 0;
}

.stat-item {
  background: #111;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: white;
  line-height: 1;
  letter-spacing: 2px;
}

.stat-number span { color: var(--red); }

.stat-label {
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* CONTACT FORM */
#contact {
  background: var(--off-white);
  padding: 100px 60px;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-title { margin-bottom: 14px; }
.contact-inner p {
  color: var(--mid-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: white;
  border: 1px solid var(--light-gray);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--red);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-submit {
  margin-top: 28px;
}

/* LEARN MORE CTA */
#learn-cta {
  background: var(--red);
  padding: 80px 60px;
  text-align: center;
}

#learn-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: white;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

#learn-cta p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-white {
  background: white;
  color: var(--red);
  border: none;
  padding: 14px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* FOOTER */
footer {
  background: #0a0a0a;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 3px;
}

footer .logo span { color: var(--red); }

footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}