:root {
  --bg: #0a0c10;
  --text: #f5f7fa;
  --muted: #a7b0bd;
  --accent: #a4ff3d;
  --accent-2: #36e0ff;
  --card: rgba(16, 19, 26, 0.7);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10%;
  background: radial-gradient(circle at 20% 30%, rgba(164, 255, 61, 0.22), transparent 55%),
    radial-gradient(circle at 85% 25%, rgba(54, 224, 255, 0.18), transparent 50%),
    radial-gradient(circle at 45% 80%, rgba(32, 68, 60, 0.55), transparent 60%);
  z-index: 0;
  animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
  0% {
    transform: translateY(-12px) scale(1);
  }
  100% {
    transform: translateY(12px) scale(1.04);
  }
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}

header,
main,
footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: relative;
  z-index: 20;
}

.nav-shell {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 36px));
  z-index: 20;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(15, 19, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(26px) saturate(160%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.2),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(164, 255, 61, 0.2),
      transparent 40%
    );
  opacity: 0.65;
  pointer-events: none;
}

.nav > * {
  position: relative;
  z-index: 1;
}

.nav .logo {
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
  color: var(--text);
  text-decoration: none;
}

.nav .logo:hover {
  color: var(--text);
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  outline: none;
}

.nav-cta {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 8vw 120px;
}

.hero-inner {
  max-width: 780px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  justify-content: center;
}

.hero-chips span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 11, 15, 0.55);
  color: var(--muted);
  font-size: 0.85rem;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #09100b;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(164, 255, 61, 0.25);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.section {
  padding: 70px 8vw;
  scroll-margin-top: 120px;
}

#services {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 24px;
  padding-top: 120px;
  padding-bottom: 120px;
}

#proof {
  padding-top: 120px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 28px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-heading p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.service-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(13, 16, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(140%);
  display: grid;
  gap: 12px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 600;
  background: rgba(164, 255, 61, 0.12);
  color: var(--accent);
  border: 1px solid rgba(164, 255, 61, 0.3);
}

.service-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.service-card ul li::before {
  content: "-";
  color: var(--accent);
  margin-right: 8px;
}

.proof {
  padding-top: 20px;
}

.studio-mockup {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 20px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(13, 16, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: var(--shadow);
}

.studio-sidebar {
  border-radius: 20px;
  padding: 18px;
  background: rgba(9, 11, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
  align-content: start;
}

.studio-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.studio-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(164, 255, 61, 0.08);
  border: 1px solid rgba(164, 255, 61, 0.3);
  padding: 6px;
}

.studio-brand span {
  font-weight: 600;
}

.studio-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.studio-nav {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.studio-nav span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.studio-nav svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.studio-nav span.active svg {
  stroke: var(--accent);
}

.studio-nav span.active {
  background: rgba(164, 255, 61, 0.12);
  color: var(--text);
  border: 1px solid rgba(164, 255, 61, 0.3);
}

.studio-pill {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 15, 0.55);
  color: var(--muted);
  font-size: 0.85rem;
}

.studio-main {
  border-radius: 20px;
  padding: 22px;
  background: rgba(9, 11, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
}

.studio-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.studio-topbar h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.3rem;
}

.studio-range {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.8rem;
}

.studio-headline h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}

.studio-headline h3 span {
  color: var(--accent);
  font-weight: 700;
}

.studio-headline p {
  color: var(--muted);
  margin-top: 6px;
}

.studio-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.studio-stat {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 13, 0.6);
  display: grid;
  gap: 6px;
}

.studio-stat span {
  color: var(--muted);
  font-size: 0.8rem;
}

.studio-stat strong {
  font-size: 1.2rem;
}

.stat-value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-arrow {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  background: rgba(164, 255, 61, 0.18);
  color: var(--accent);
  border: 1px solid rgba(164, 255, 61, 0.4);
}

.studio-graph {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(9, 11, 15, 0.7), rgba(9, 11, 15, 0.35));
  overflow: hidden;
  position: relative;
}

.studio-graph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 34px
  );
  opacity: 0.35;
}

.studio-graph svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.studio-path {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.studio-fill {
  fill: url(#studioFill);
  opacity: 0;
}

.reveal.in-view .studio-path {
  animation: draw 2.2s ease forwards;
}

.reveal.in-view .studio-fill {
  animation: fadeIn 2.2s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contact {
  padding-bottom: 110px;
}

.form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(13, 16, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(140%);
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(245, 247, 250, 0.75);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.field.full {
  grid-column: span 2;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(7, 9, 13, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(164, 255, 61, 0.6);
  box-shadow: 0 0 0 3px rgba(164, 255, 61, 0.12);
}

.turnstile {
  padding: 4px 0 0;
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer {
  padding: 24px 8vw 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 104px;
  }

  .nav-links {
    display: none;
  }

  .nav {
    padding: 10px 16px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .section {
    padding: 60px 6vw;
  }

  #services {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 96px;
  }

  .hero {
    padding: 150px 6vw 90px;
    min-height: auto;
  }

  .studio-mockup {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .studio-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: span 1;
  }

  .form {
    padding: 22px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .studio-stats {
    grid-template-columns: 1fr;
  }

  .studio-main {
    padding: 18px;
  }

  .studio-sidebar {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }

  .reveal.in-view .studio-path,
  .reveal.in-view .studio-fill {
    animation: none;
  }
}
