:root {
  --bg: #0a100c;
  --bg-2: #0e1610;
  --panel: #16231a;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --ink: #f4f1e6;
  --ink-soft: rgba(244, 241, 230, 0.74);
  --ink-mute: rgba(244, 241, 230, 0.46);
  --ink-ghost: rgba(244, 241, 230, 0.24);
  --green: #5fbf6b;
  --green-2: #8fe09a;
  --green-dim: #3b7a45;
  --amber: #f0a93c;
  --blue: #6fa8dc;
  --body-font: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Fredoka', 'Outfit', system-ui, sans-serif;
  --cursive: 'Dancing Script', 'Brush Script MT', cursive;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: radial-gradient(1200px 800px at 22% 42%, rgba(95, 191, 107, 0.16), transparent 62%),
    radial-gradient(900px 700px at 88% 18%, rgba(240, 169, 60, 0.10), transparent 60%),
    linear-gradient(160deg, #0c1410 0%, #080d0a 55%, #0a120d 100%);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.focus-root {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  position: relative;
  overflow: hidden;
  gap: 0;
}

.focus-root::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.045) 1px, transparent 1.6px);
  background-size: 26px 26px;
  opacity: 0.55;
  pointer-events: none;
  mask-image: radial-gradient(80% 70% at 40% 45%, #000 20%, transparent 78%);
}

.focus-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 20px 5vh;
  min-height: 60vh;
}

.stage-glow {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: min(62vh, 560px);
  height: min(62vh, 560px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(95, 191, 107, 0.30), rgba(95, 191, 107, 0.06) 46%, transparent 68%);
  filter: blur(14px);
  animation: glow-pulse 6.5s var(--ease) infinite;
  pointer-events: none;
}

.stage-ring {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(52vh, 470px);
  height: min(14vh, 120px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
  pointer-events: none;
}

.iguako-wrap {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
  animation: iguako-enter .95s var(--pop) both;
}

.iguako {
  display: block;
  height: min(68vh, 600px);
  width: auto;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.55));
  transform-origin: 50% 92%;
  animation: iguako-float 5.2s ease-in-out .15s infinite;
}

.fly {
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: radial-gradient(circle, #cff3a8, rgba(207, 243, 168, 0) 70%);
  animation: fly-drift linear infinite;
  opacity: 0;
  pointer-events: none;
}

.x1 { left: 10%; top: 30%; width: 5px; height: 5px; animation-duration: 10s; --dx: 35px; --dy: -160px; }
.x2 { left: 20%; top: 58%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 1s; --dx: -28px; --dy: -146px; }
.x3 { left: 40%; top: 48%; width: 6px; height: 6px; animation-duration: 9s; animation-delay: .8s; --dx: -45px; --dy: -122px; }
.x4 { left: 67%; top: 36%; width: 4px; height: 4px; animation-duration: 11s; animation-delay: 2.1s; --dx: 61px; --dy: -170px; }
.x5 { left: 78%; top: 64%; width: 5px; height: 5px; animation-duration: 13s; animation-delay: 1.6s; --dx: 28px; --dy: -146px; }
.x6 { left: 88%; top: 52%; width: 3px; height: 3px; animation-duration: 8s; animation-delay: 3s; --dx: -41px; --dy: -139px; }

.focus-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vh clamp(26px, 5vw, 72px);
  position: relative;
  z-index: 3;
}

.brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--green), var(--green-dim));
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: #08130b;
  box-shadow: 0 8px 22px rgba(95, 191, 107, 0.32);
}

.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.01em;
}

.brand-domain {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-ghost);
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  margin: 0;
  background: linear-gradient(96deg, #ffffff 0%, #dff6d9 42%, var(--green-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.signature {
  font-family: var(--cursive);
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--amber);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  transform: rotate(-3deg);
  transform-origin: left bottom;
}

.hero-copy p {
  margin: 1rem 0 2rem;
  max-width: 60ch;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border-radius: 14px;
  cursor: pointer;
  border: 1.5px solid var(--line-2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  transition: transform 0.16s var(--pop), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn:active {
  transform: translateY(2px) scale(0.985);
}

.btn-primary {
  width: fit-content;
  background: linear-gradient(150deg, var(--green-2), var(--green));
  border-color: var(--green-2);
  color: #08130b;
  box-shadow: 0 12px 28px rgba(95, 191, 107, 0.28);
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.feature-card h2 {
  font-family: var(--display);
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: 0.005em;
}

.feature-card p {
  margin: 0.55rem 0 0;
  color: var(--ink-mute);
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.72;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.07);
  }
}

@keyframes iguako-enter {
  0% {
    opacity: 0;
    transform: translateY(90px) scale(0.86) rotate(-5deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-14px) scale(1.03) rotate(1.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes iguako-float {
  0%, 100% {
    transform: translateY(0) rotate(-1.4deg);
  }
  50% {
    transform: translateY(-18px) rotate(1.4deg);
  }
}

@keyframes fly-drift {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  12% { opacity: 0.85; }
  88% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--dx, 40px), var(--dy, -160px)) scale(1.15); }
}

@media (max-width: 980px) {
  .focus-root {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .focus-panel {
    padding: 5vh 1.25rem 2.7rem;
  }

  .focus-stage {
    min-height: 45vh;
    padding: 3vh 1rem 4vh;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }

  .feature-card:last-child {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 600px) {
  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.5rem);
  }

  .signature {
    margin-top: 10px;
    font-size: 1.55rem;
  }

  .brandline {
    margin-bottom: 20px;
  }

  .btn {
    width: 100%;
  }

  .focus-root::before {
    display: none;
  }
}
