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

:root {
  --bg: #050608;
  --bg-elevated: #0b0d11;
  --bg-soft: rgba(255, 255, 255, 0.02);
  --accent: #7df58a;
  --accent-soft: rgba(125, 245, 138, 0.2);
  --accent-strong: #44dd63;
  --text-main: #f5f7fb;
  --text-soft: #a5abb8;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1a2a2f 0, #050608 45%, #020203 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

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

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  padding: 32px 20px 40px;
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  backdrop-filter: blur(16px);
}

.logo-icon {
  font-size: 1.3rem;
}

.logo-text {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.nav-pill {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-soft);
  background: radial-gradient(circle at left, rgba(125, 245, 138, 0.18), transparent 60%);
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.hero-text {
  padding: 24px 22px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(125,245,138,0.12), transparent 55%),
              linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(5, 6, 8, 0.98));
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
  margin-bottom: 12px;
}

h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.underline {
  position: relative;
  white-space: nowrap;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #bbffce);
  opacity: 0.8;
  z-index: -1;
}

.subcopy {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-soft);
  margin-bottom: 20px;
  max-width: 34rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #042011;
  box-shadow: 0 12px 28px rgba(27, 255, 120, 0.3);
}

.btn.primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 15px 36px rgba(27, 255, 120, 0.4);
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-card {
  padding: 22px 20px 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(1, 15, 8, 0.85), rgba(8, 8, 12, 0.98));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hand-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-soft);
  background: radial-gradient(circle at top, rgba(125, 245, 138, 0.18), rgba(1, 15, 8, 0.9));
  padding: 14px 14px 16px;
}

.hand-illustration {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  margin: 0 auto 8px;
}

.hand {
  position: absolute;
  right: 18%;
  bottom: 24%;
  width: 50%;
  height: 38%;
  border-radius: 18px 18px 10px 18px;
  background: linear-gradient(135deg, #f5d7c4, #f0b7a0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  transform-origin: center right;
  animation: hand-hover 3.2s ease-in-out infinite;
}

.blade {
  position: absolute;
  bottom: 16%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(to top, #0a3b18, var(--accent));
  transform-origin: bottom center;
  animation: grass-wiggle 2.8s ease-in-out infinite;
}

.blade-1 {
  left: 20%;
  height: 46%;
  animation-delay: 0.1s;
}

.blade-2 {
  left: 30%;
  height: 58%;
  animation-delay: 0.3s;
}

.blade-3 {
  left: 40%;
  height: 40%;
  animation-delay: 0.5s;
}

.hand-caption {
  font-size: 0.8rem;
  color: var(--text-main);
}

.studio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.studio-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(125, 245, 138, 0.7);
}

.tiny-text {
  font-size: 0.75rem;
  color: #717785;
  margin-top: 6px;
}

.footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: var(--text-soft);
}

@keyframes hand-hover {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

@keyframes grass-wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(4deg);
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-text, .hero-card {
    padding: 18px 16px 20px;
  }
}

@media (max-width: 520px) {
  .nav-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-text {
    margin-bottom: 6px;
  }
}
