/*
Theme Name: Vantage
Description: Marketing dashboard landing page
Version: 1.0.0
Author: Red Salt Media
Text Domain: vantage
Domain Path: /languages
*/

:root {
  --accent: #ff5436;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: #0b0b0d;
  color: #e9e9ec;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

@keyframes floatGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

nav a {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 8px;
  padding: 7px 6px;
  justify-content: center;
}

.logo span {
  width: 3px;
  background: #fff;
  border-radius: 1px;
}

.logo span:nth-child(1) {
  height: 7px;
}

.logo span:nth-child(2) {
  height: 11px;
}

.logo span:nth-child(3) {
  height: 15px;
}

.logo-text {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #fff;
}

nav .nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav .nav-links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 500;
  transition: color 0.2s ease;
}

nav .nav-links a:hover {
  color: #fff;
}

.demo-button {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
  padding: 9px 18px;
  border-radius: 8px;
  cursor: not-allowed;
  white-space: nowrap;
}

/* Hero */
header {
  position: relative;
  padding: 96px 40px 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(255, 84, 54, 0.2), transparent 64%);
  filter: blur(20px);
  animation: floatGlow 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono';
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 84, 54, 0.32);
  background: rgba(255, 84, 54, 0.08);
  padding: 6px 13px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 22px;
}

h1 .accent {
  color: var(--accent);
}

.hero-description {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 660px;
  margin: 0 auto 34px;
}

.hero-cta {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cta-primary {
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 14px 26px;
  border-radius: 10px;
  transition: filter 0.2s ease;
}

.cta-primary:hover {
  filter: brightness(0.92);
}

.cta-secondary {
  font-size: 15.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 26px;
  border-radius: 10px;
  cursor: not-allowed;
  white-space: nowrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.dashboard-mock {
  position: relative;
  margin: 62px auto 0;
  max-width: 1120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.65s cubic-bezier(0.2, 0.6, 0.2, 1);
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* Sections */
section {
  background: #0b0b0d;
  overflow-x: hidden;
  display: block;
  width: 100%;
}

section h2 {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

section p {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.section-label {
  font-family: 'Space Mono';
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Grid */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.toolkit-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #141417;
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.2s ease;
}

.toolkit-card:hover {
  border-color: rgba(255, 84, 54, 0.4);
}

.toolkit-card.featured {
  border: 1px solid rgba(255, 84, 54, 0.4);
  background: linear-gradient(160deg, rgba(255, 84, 54, 0.14), rgba(255, 84, 54, 0.04));
}

.toolkit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 84, 54, 0.12);
  margin-bottom: 16px;
}

.toolkit-card h3 {
  font-family: 'Space Grotesk';
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 7px;
}

.toolkit-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 44px;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-number.accent {
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* Footer */
footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

footer .footer-brand .logo {
  width: 28px;
  height: 28px;
}

footer .footer-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  h1 {
    font-size: 42px;
  }

  nav {
    padding: 14px 20px;
  }

  nav .nav-links {
    display: none;
  }
}
