@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');
:root {
  --bg: #0E1512;
  --ink: #E8F0EC;
  --accent: #4FB891;
  --accent-2: #7BD3B0;
  --on-accent: #0E1512;
  --fh: 'JetBrains Mono', ui-monospace, monospace;
  --fb: 'Inter', system-ui, sans-serif;
}
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--on-accent);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex; flex-direction: column;
}
a { color: inherit; text-decoration: none; }

.bg { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; mix-blend-mode: screen; }
.blob--1 { width: 700px; height: 700px; background: #ffffff; top: -200px; right: -200px; animation: drift 20s ease-in-out infinite; }
.blob--2 { width: 500px; height: 500px; background: var(--accent-2); bottom: -100px; left: -100px; opacity: 0.7; animation: drift 26s ease-in-out -8s infinite; }
.blob--3 { width: 400px; height: 400px; background: var(--accent); top: 30%; left: 50%; opacity: 0.4; animation: drift 32s ease-in-out -16s infinite; }
@keyframes drift {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-30px, 40px); }
}
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.top {
  position: relative; z-index: 2;
  padding: 24px clamp(20px, 4vw, 40px);
  display: flex; justify-content: space-between; align-items: center;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fh); font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--on-accent);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--on-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--on-accent) 25%, transparent); }

.top nav { display: flex; gap: 22px; font-size: 0.92rem; opacity: 0.85; }
.top nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

.hero {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(32px, 6vw, 80px) clamp(24px, 6vw, 80px);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.hero > * { animation: rise 1s ease backwards; }
.hero > *:nth-child(1) { animation-delay: .1s; }
.hero > *:nth-child(2) { animation-delay: .22s; }
.hero > *:nth-child(3) { animation-delay: .4s; }
.hero > *:nth-child(4) { animation-delay: .6s; }

.tag {
  font-family: var(--fh);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid color-mix(in srgb, var(--on-accent) 45%, transparent);
  background: color-mix(in srgb, var(--on-accent) 12%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 28px;
}
.title {
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--on-accent);
  max-width: 20ch;
  text-wrap: balance;
}
.sub {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  opacity: 0.9;
  margin: 0 0 44px;
  max-width: 40ch;
}

.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  border-radius: 16px;
  background: var(--on-accent);
  color: var(--accent);
  font-family: var(--fh); font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: -0.005em;
  align-self: flex-start;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transition: transform .2s, box-shadow .2s;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 26px 60px rgba(0,0,0,0.25); }
.cta svg { transition: transform .2s; }
.cta:hover svg { transform: translateX(4px); }

.bot {
  position: relative; z-index: 2;
  padding: 18px clamp(20px, 4vw, 40px);
  display: flex; justify-content: space-between;
  font-size: 0.86rem;
  opacity: 0.85;
}

@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

::selection { background: rgba(255,255,255,0.25); color: var(--on-accent); }
