/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Variables ─── */
:root {
  --bg:         #0d0d0d;
  --surface:    #161616;
  --green:      #7bc67e;
  --green-dark: #4a9e4d;
  --cream:      #f0ead6;
  --muted:      #7a7a7a;
  --border:     #2a2a2a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ─── Noise overlay ─── */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── Body ─── */
html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* background glow */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(123, 198, 126, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Wrapper ─── */
.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px 40px;
}

/* ─── Header ─── */
.header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  animation: fadeUp 0.6s ease both;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0.06em;
  color: var(--cream);
}

.tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* ─── Main ─── */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
}

/* Pill badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 198, 126, 0.1);
  border: 1px solid rgba(123, 198, 126, 0.25);
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.1s ease both;
}

/* Headline */
.headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.headline .accent {
  color: var(--green);
  display: block;
}

/* Body text */
.body-text {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  max-width: 380px;
  animation: fadeUp 0.7s 0.25s ease both;
}

/* Divider */
.divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Contact label */
.contact-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  animation: fadeUp 0.7s 0.35s ease both;
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.link-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  width: fit-content;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.link-item:hover {
  border-color: var(--green);
  background: rgba(123, 198, 126, 0.06);
  color: var(--green);
}

.link-icon {
  font-size: 16px;
  line-height: 1;
  color: var(--green);
}

/* ─── Footer ─── */
.footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  animation: fadeUp 0.6s 0.5s ease both;
}

.footer-dot {
  color: var(--border);
}

/* ─── Animation ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ─── */
@media (max-width: 480px) {
  .wrapper {
    padding: 36px 24px 32px;
  }

  .main {
    padding: 60px 0 40px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .link-item {
    width: 100%;
  }

  .footer {
    flex-wrap: wrap;
    gap: 6px;
  }

  .footer-dot {
    display: none;
  }
}