*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #08080a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 2000;
  padding: 12px 20px;
  border-radius: 8px;
  background: #ea580c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus-visible {
  top: 16px;
  outline: 3px solid #14b8a6;
  outline-offset: 2px;
}

/* Focus indicators */
a:focus-visible,
button:focus-visible {
  outline: 3px solid #14b8a6;
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-color: #fff;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .navbar {
    transition: none;
  }
  .nav-links a {
    transition: none;
  }
  .nav-cta {
    transition: none;
  }
  .btn {
    transition: none;
  }
  .hamburger span {
    transition: none;
  }
  .service-card {
    transition: none;
  }
  .service-card::before {
    transition: none;
  }
  .showcase-card {
    transition: none;
  }
  .value-item {
    transition: none;
  }
  .footer-email {
    transition: none;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-cta {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta-primary {
  background: #ea580c;
  color: #fff;
}
.nav-cta-primary:hover {
  background: #c2410c;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Section base */
.section {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #14b8a6;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #14b8a6, #a855f7, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-teal-purple {
  background: linear-gradient(135deg, #14b8a6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.12) 0%,
    rgba(168, 85, 247, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  max-width: 800px;
}
.hero p {
  font-size: 18px;
  color: #a1a1aa;
  max-width: 560px;
  margin: 24px 0 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #ea580c;
  color: #fff;
}
.btn-primary:hover {
  background: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.4);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
}
.metric-card {
  background: #08080a;
  padding: 40px 32px;
  text-align: center;
}
.metric-number {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .metric-number {
    font-size: 32px;
  }
}
.metric-number.teal {
  color: #14b8a6;
}
.metric-number.purple {
  color: #a855f7;
}
.metric-number.orange {
  color: #f97316;
}
.metric-label {
  font-size: 14px;
  color: #a1a1aa;
  font-weight: 500;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:nth-child(1)::before {
  background: rgba(20, 184, 166, 0.15);
}
.service-card:nth-child(2)::before {
  background: rgba(168, 85, 247, 0.15);
}
.service-card:nth-child(3)::before {
  background: rgba(249, 115, 22, 0.15);
}
.service-card:nth-child(4)::before {
  background: rgba(20, 184, 166, 0.15);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.service-icon.teal {
  background: rgba(20, 184, 166, 0.12);
  color: #14b8a6;
}
.service-icon.purple {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}
.service-icon.orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  color: #a1a1aa;
  font-size: 15px;
  line-height: 1.7;
}

/* How We Work */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.workflow-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #14b8a6, #a855f7, #f97316);
}
.workflow-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
}
.step-1 {
  background: rgba(20, 184, 166, 0.12);
  color: #14b8a6;
}
.step-2 {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}
.step-3 {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}
.workflow-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.workflow-step p {
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.7;
}

/* Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-card {
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.showcase-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.1);
}
.showcase-image {
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.15),
    rgba(168, 85, 247, 0.15),
    rgba(249, 115, 22, 0.1)
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.1);
}
.showcase-tags {
  display: flex;
  gap: 8px;
  padding: 24px 24px 0;
  flex-wrap: wrap;
}
.showcase-tag {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: #a1a1aa;
}
.showcase-card h3 {
  font-size: 18px;
  font-weight: 700;
  padding: 12px 24px 8px;
}
.showcase-card p {
  color: #a1a1aa;
  font-size: 14px;
  padding: 0 24px 24px;
  line-height: 1.6;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: #a1a1aa;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.values-list {
  display: grid;
  gap: 20px;
}
.value-item {
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s;
}
.value-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.value-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.value-item p {
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 40px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.08),
    rgba(168, 85, 247, 0.08),
    rgba(249, 115, 22, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: #a1a1aa;
  font-size: 17px;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn {
  position: relative;
}

/* Footer */
.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #14b8a6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-info {
  color: #a1a1aa;
  font-size: 14px;
}
.footer-email {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-email:hover {
  color: #14b8a6;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hamburger {
    display: flex;
  }
  .section {
    padding: 80px 24px;
  }
  .hero {
    padding: 160px 24px 80px;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .workflow-steps::before {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer {
    padding: 40px 24px;
    text-align: center;
    flex-direction: column;
  }
}
