@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
  --font: 'Manrope', system-ui, sans-serif;
  --text: #030711;
  --text-secondary: #64748B;
  --accent: #6696FF;
  --bg: #FFFFFF;
  --bg-muted: #F8FAFC;
  --border: #E2E8F0;
  --radius-pill: 9999px;
  --radius-card: 16px;
  --max-w: 1280px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: url('https://assets.aceternity.com/noise.webp') repeat;
  opacity: 0.03;
  mix-blend-mode: soft-light;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 24px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.navbar-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.navbar-logo svg {
  height: 28px;
  width: auto;
  fill: var(--text);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.navbar-links a:hover { color: var(--text); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.15s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== NAVBAR SCROLL EFFECT ===== */
.navbar-inner {
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.navbar-inner.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-color: rgba(226,232,240,0.6);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
  padding: 0 24px;
}

.mobile-menu.active {
  max-height: 320px;
  padding: 12px 24px 24px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 12px;
  padding: 12px 24px;
  color: #fff !important;
  border-radius: 12px;
}

.mobile-menu a:hover {
  color: var(--text);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PREMIUM HOVER EFFECTS ===== */
.serve-card,
.stat-card,
.compare-card {
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.serve-card:hover,
.stat-card:hover,
.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1);
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

/* Moving border badge */
.moving-border-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  background: var(--bg);
  margin-bottom: 32px;
  overflow: hidden;
}

.moving-border-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-pill);
  background: conic-gradient(from var(--angle, 0deg), transparent 60%, var(--accent) 80%, transparent 100%);
  animation: rotate-border 3s linear infinite;
  z-index: -2;
}

.moving-border-badge::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  z-index: -1;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-border {
  to { --angle: 360deg; }
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(102,150,255,0.25), 0 4px 6px -4px rgba(102,150,255,0.25);
  position: relative;
  overflow: hidden;
}

.btn-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://assets.aceternity.com/noise.webp') repeat;
  opacity: 0.1;
  pointer-events: none;
}

.btn-blue:hover { transform: translateY(-1px); box-shadow: 0 14px 20px -3px rgba(102,150,255,0.3); }


.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.hero-stat svg { width: 14px; height: 14px; color: var(--accent); }

.section-chip {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 48px;
}

/* ===== SHOWCASE GALLERY ===== */
.showcase {
  padding: 80px 0 40px;
  text-align: center;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee {
  display: flex;
  gap: 16px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee img {
  height: 300px;
  width: auto;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

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

@media (max-width: 599px) {
  .marquee img { height: 220px; }
}


/* ===== COMPARISON ===== */
.comparison {
  padding: 100px 0;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: left;
}

.compare-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.compare-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.compare-card.shotless {
  background: linear-gradient(135deg, #030711 0%, #1a1a2e 100%);
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.compare-card.shotless::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://assets.aceternity.com/noise.webp') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.compare-card.shotless .shotless-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.compare-list li svg { width: 18px; height: 18px; flex-shrink: 0; }

.icon-x { color: #EF4444; }
.icon-check { color: #22C55E; }
.compare-card.shotless .icon-check { color: #6696FF; }


/* ===== SOLUTION ===== */
.solution {
  padding: 100px 0;
  text-align: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://assets.aceternity.com/noise.webp') repeat;
  opacity: 0.04;
  pointer-events: none;
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== WHO WE SERVE ===== */
.serve {
  padding: 100px 0;
  text-align: center;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.serve-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.serve-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://assets.aceternity.com/noise.webp') repeat;
  opacity: 0.03;
  pointer-events: none;
}

.serve-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.serve-card-icon svg { width: 20px; height: 20px; color: var(--text-secondary); }

.serve-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.serve-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #030711 0%, #0F172A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://assets.aceternity.com/noise.webp') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.final-cta h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}

.final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.btn-blue-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(102,150,255,0.25);
  position: relative;
  overflow: hidden;
}

.btn-blue-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://assets.aceternity.com/noise.webp') repeat;
  opacity: 0.1;
  pointer-events: none;
}


/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 13px; color: var(--text-secondary); }
.footer-bottom a { color: var(--text-secondary); }
.footer-bottom a:hover { color: var(--text); }

.footer-logo-watermark {
  margin-top: 60px;
  text-align: center;
  opacity: 0.05;
}

.footer-logo-watermark span,
.footer-logo-watermark svg { height: 80px; width: auto; margin: 0 auto; fill: var(--text); }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 899px) {
  .navbar-links { display: none; }
  .navbar-inner > div[style] { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

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

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 599px) {
  .navbar { padding: 0 12px; }
  .navbar-inner { padding: 10px 16px; }

  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .section-title { font-size: 28px; }
  .final-cta h2 { font-size: 28px; }

  .comparison-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }

  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-blue { justify-content: center; }

  .final-cta-inner { padding: 60px 24px; border-radius: 16px; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-logo-watermark span { font-size: 48px !important; }
}
