:root {
  --ink: #0a0a0f;
  --off-white: #f5f2ed;
  --coral: #ff4d3d;
  --lime: #c8f544;
  --sky: #4de8f0;
  --violet: #9b5de5;
  --warm: #ffd166;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  cursor: none;
}

/* Cursor */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: exclusion;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(200, 245, 68, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.3s, height 0.3s;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
}
.nav-bg {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(10,10,15,0.95), transparent);
  z-index: 99;
  pointer-events: none;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--off-white);
  text-decoration: none;
  z-index: 101;
}
.logo span { color: var(--lime); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  z-index: 101;
}
.nav-links a {
  color: rgba(245,242,237,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--lime); }
.nav-cta {
  background: var(--lime);
  color: var(--ink);
  border: none;
  padding: 12px 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
  z-index: 101;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatBlob 12s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: var(--violet); top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 350px; height: 350px; background: var(--coral); bottom: 0; left: 10%; animation-delay: -4s; }
.blob-3 { width: 280px; height: 280px; background: var(--sky); top: 30%; right: 20%; animation-delay: -8s; }
@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.08); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,245,68,0.1);
  border: 1px solid rgba(200,245,68,0.3);
  color: var(--lime);
  padding: 6px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(4.5rem, 10vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .word { display: inline-block; animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-title .line:nth-child(1) .word { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.2s; }
.hero-title .line:nth-child(3) .word { animation-delay: 0.3s; }
.hero-title .accent { color: var(--lime); font-style: normal; }
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-desc {
  max-width: 380px;
  color: rgba(245,242,237,0.55);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 300;
}
.hero-cta-group { display: flex; align-items: center; gap: 24px; }
.btn-primary {
  background: var(--lime);
  color: var(--ink);
  padding: 18px 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: translateX(-101%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.btn-primary:hover { color: #fff; }
.btn-primary:hover::after { transform: translateX(0); }
.btn-ghost {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  cursor: none;
}
.btn-ghost:hover { color: var(--lime); }
.btn-ghost .arrow { transition: transform 0.2s; }
.btn-ghost:hover .arrow { transform: translateX(6px); }

/* MARQUEE */
.marquee-section {
  border-top: 1px solid rgba(245,242,237,0.1);
  border-bottom: 1px solid rgba(245,242,237,0.1);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(200,245,68,0.04);
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.4);
  white-space: nowrap;
}
.marquee-dot { color: var(--lime); font-size: 1.2rem; }

/* SERVICES */
.services { padding: 120px 60px; position: relative; }
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.section-subtitle {
  max-width: 320px;
  color: rgba(245,242,237,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  padding-top: 8px;
  align-self: flex-end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(245,242,237,0.1);
}
.service-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(245,242,237,0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(255,255,255,0.03); }
.service-card:nth-child(1)::before { background: var(--lime); }
.service-card:nth-child(2)::before { background: var(--coral); }
.service-card:nth-child(3)::before { background: var(--sky); }
.service-card:nth-child(4)::before { background: var(--violet); }
.service-card:nth-child(5)::before { background: var(--warm); }
.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(245,242,237,0.25);
  margin-bottom: 48px;
}
.service-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.875rem;
  color: rgba(245,242,237,0.45);
  line-height: 1.65;
  font-weight: 300;
}

/* STATS */
.stats-strip {
  padding: 80px 60px;
  background: var(--lime);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(10,10,15,0.15);
  color: var(--ink);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-label { font-size: 0.875rem; margin-top: 8px; opacity: 0.65; font-weight: 400; }

/* CONTACT */
.contact {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 24px; }
.contact-left p {
  color: rgba(245,242,237,0.5);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(245,242,237,0.7);
}
.contact-item .icon {
  width: 40px; height: 40px;
  background: rgba(200,245,68,0.1);
  border: 1px solid rgba(200,245,68,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.45);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245,242,237,0.05);
  border: 1px solid rgba(245,242,237,0.12);
  color: var(--off-white);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: none;
  -webkit-appearance: none;
}
.form-group select option { background: #1a1a22; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  background: rgba(200,245,68,0.04);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,242,237,0.2); }
.btn-submit {
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--violet); transform: translateY(-2px); }

/* FOOTER */
footer {
  border-top: 1px solid rgba(245,242,237,0.08);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo { font-size: 1.2rem; }
footer p { font-size: 0.8rem; color: rgba(245,242,237,0.3); text-align: center; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(245,242,237,0.3);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--lime); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Toast */
.toast {
  position: fixed;
  bottom: 40px; right: 40px;
  background: var(--lime);
  color: var(--ink);
  padding: 16px 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
  nav, .hero, .services, .contact, footer { padding-left: 32px; padding-right: 32px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(3) { border-right: none; }
  .service-card:nth-child(4) { border-right: 1px solid rgba(245,242,237,0.1); border-top: 1px solid rgba(245,242,237,0.1); }
  .service-card:last-child { border-top: 1px solid rgba(245,242,237,0.1); }
  .stats-strip { grid-template-columns: repeat(2,1fr); gap: 40px 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(10,10,15,0.15); padding-left: 0; }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .services { padding: 80px 24px; }
  .section-header { flex-direction: column; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(245,242,237,0.1); }
  .service-card:last-child { border-bottom: none; }
  .stats-strip { padding: 60px 24px; grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 0 20px; }
  .stat-item:nth-child(odd) { padding-left: 0; }
  .contact { padding: 80px 24px; grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }
}
