/* TheHedgeCrest — Under Construction Landing Page */
:root {
  --black: #030504;
  --black-soft: #080b09;
  --white: #f4f6f3;
  --muted: #a2aaa3;
  --green: #8fc51f;
  --green-bright: #b6ee20;
  --green-dark: #24482e;
  --border: rgba(175, 230, 55, .16);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: 28px clamp(24px, 5vw, 80px) 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 45%, rgba(96, 142, 18, .12), transparent 30%),
    radial-gradient(circle at 15% 90%, rgba(23, 68, 42, .15), transparent 32%),
    var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(166, 221, 50, .06);
  border-radius: 50%;
  right: -360px;
  top: 12%;
  box-shadow:
    0 0 0 90px rgba(166, 221, 50, .018),
    0 0 0 180px rgba(166, 221, 50, .012);
}

.page-glow {
  position: fixed;
  z-index: -3;
  pointer-events: none;
  width: 400px;
  height: 400px;
  filter: blur(100px);
  opacity: .08;
  border-radius: 50%;
  background: var(--green);
}

.glow-one { top: 5%; left: -180px; }
.glow-two { right: -180px; bottom: 0; background: #2d9a52; }

.nav {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: block;
  width: min(420px, 46vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: #dce4dc;
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status i,
.live-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 14px rgba(182, 238, 32, .7);
}

.hero-content {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  padding: 80px 0 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
}

.eyebrow .line {
  width: 34px;
  height: 1px;
  background: var(--green-bright);
}

h1 {
  max-width: 950px;
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 112px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 800;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,246,243,.58);
}

.intro {
  max-width: 610px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.construction-card {
  width: min(690px, 100%);
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 20px;
  border: 1px solid var(--border);
  background: linear-gradient(105deg, rgba(116, 161, 31, .09), rgba(255,255,255,.025));
  border-radius: 14px;
  box-shadow: inset 0 1px rgba(255,255,255,.035);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--green-bright);
  background: rgba(150, 206, 35, .09);
}

.icon-wrap svg {
  width: 27px;
}

.card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-copy strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.card-copy span {
  color: var(--muted);
  font-size: 13px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 238, 32, .45); }
  50% { box-shadow: 0 0 0 9px rgba(182, 238, 32, 0); }
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0b1007;
  background: var(--green-bright);
}

.btn-primary:hover {
  background: #c3fa39;
}

.btn-primary span {
  font-size: 17px;
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.12);
  color: #d4d9d5;
  background: rgba(255,255,255,.025);
}

.btn-ghost:hover {
  border-color: rgba(175, 230, 55, .35);
}

.bottom-meta {
  width: 100%;
  max-width: 1440px;
  margin: auto auto 0;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #879087;
  font-size: 11px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-label {
  color: #5e665f;
  font-size: 9px;
  letter-spacing: .18em;
  font-weight: 700;
}

.meta-item:nth-child(2) {
  padding-left: 12%;
}

.meta-item:nth-child(2) span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.about {
  min-height: 55vh;
  padding: 120px clamp(24px, 8vw, 130px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,.05);
}

.section-label {
  color: var(--green-bright);
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 700;
}

.about h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.055em;
}

.about h2 em {
  color: var(--green-bright);
  font-style: normal;
}

.about p {
  max-width: 510px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 22px clamp(24px, 8vw, 130px);
  color: #5d665e;
  background: var(--black-soft);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 20px 20px 24px;
  }

  .brand {
    width: min(300px, 62vw);
  }

  .status {
    padding: 8px 10px;
    font-size: 8px;
  }

  .hero-content {
    padding: 70px 0 65px;
  }

  h1 {
    font-size: clamp(49px, 14vw, 78px);
  }

  h1 span {
    -webkit-text-stroke-width: .7px;
  }

  .intro {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 22px;
  }

  .construction-card {
    margin-top: 30px;
    padding: 14px;
  }

  .icon-wrap {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .card-copy strong {
    font-size: 12px;
  }

  .card-copy span {
    font-size: 11px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .bottom-meta {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }

  .meta-item:nth-child(2) {
    padding-left: 0;
    align-items: flex-end;
  }

  .meta-right {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .about {
    min-height: auto;
    padding: 85px 24px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about p {
    font-size: 15px;
  }

  footer {
    padding: 20px 24px;
    gap: 20px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pulse-dot { animation: none; }
  .btn { transition: none; }
}
