:root {
  --bg: #0b0d09;
  --panel: #11150f;
  --panel-2: #161b13;
  --text: #f1f5ea;
  --muted: #b7c2a7;
  --accent: #d6ff3c;
  --accent-2: #92ff0a;
  --stroke: #243019;
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #0f1608, #070806 45%, #050504 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 55vh;
  background: radial-gradient(circle, rgba(214, 255, 60, 0.25), transparent 60%);
  filter: blur(60px);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 40px 0 80px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 6vw;
  background: rgba(5, 8, 4, 0.9);
  border-bottom: 1px solid rgba(214, 255, 60, 0.15);
  backdrop-filter: blur(8px);
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #21300a, #131b0b);
  border: 1px solid var(--stroke);
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(18, 24, 12, 0.8);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
  padding: 60px 0 40px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero h1,
.section-head h2,
.philosophy h2,
.contact h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.accent {
  color: var(--accent);
}

.lead {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #11140b;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(146, 255, 10, 0.25);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--text);
  box-shadow: none;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px rgba(146, 255, 10, 0.6);
}

.hero-card {
  background: linear-gradient(145deg, #0f140c, #0a0d08);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.avatar {
  width: 120px;
  height: 120px;
  position: relative;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(214, 255, 60, 0.4);
  box-shadow: 0 0 24px rgba(214, 255, 60, 0.3);
}

.avatar-core {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 26px;
  background: radial-gradient(circle, #1d2b0b, #0b0f07);
  color: var(--accent);
}

.hero-name h2 {
  font-size: 28px;
  letter-spacing: 2px;
}

.hero-name p {
  color: var(--muted);
  font-size: 14px;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--stroke);
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
}

.stat-value {
  font-weight: 700;
  color: var(--accent);
}

.philosophy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 40px 0 70px;
}

.philosophy-card,
.philosophy-badge {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
}

.philosophy-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.philosophy-badge {
  display: flex;
  gap: 16px;
  align-items: center;
}

.badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--accent-2), #3a4d10);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0e1207;
  font-size: 24px;
}

.badge-text strong {
  display: block;
  font-size: 18px;
}

.badge-text span {
  color: var(--muted);
  font-size: 14px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(146, 255, 10, 0.1);
  border: 1px solid rgba(146, 255, 10, 0.3);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.work-card {
  background: var(--panel-2);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 255, 60, 0.4);
}

.work-thumb {
  height: 140px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(214, 255, 60, 0.2), rgba(6, 8, 4, 0.8));
  border: 1px solid rgba(214, 255, 60, 0.2);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.work-label {
  background: rgba(10, 14, 7, 0.85);
  border: 1px solid var(--stroke);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
}

.services {
  margin: 70px 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.service-item {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--panel-2);
  font-weight: 600;
}

.reviews {
  margin-bottom: 70px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
}

.review-name {
  color: var(--muted);
  font-size: 13px;
}

.contact {
  display: grid;
  gap: 24px;
}

.contact-card {
  background: var(--panel-2);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--stroke);
  display: grid;
  gap: 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: 6px;
  color: rgba(214, 255, 60, 0.4);
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 24px 6vw 32px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }

  .topbar {
    padding: 16px 5vw;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 40px;
  }

  .hero-card {
    order: -1;
  }

  .contact-name {
    letter-spacing: 2px;
  }
}
