:root {
  --ink: #f6f8ef;
  --muted: #aeb7aa;
  --black: #030503;
  --panel: #0b0f0a;
  --panel-2: #11170d;
  --line: rgba(213, 255, 0, 0.22);
  --lime: #d7ff00;
  --lime-2: #9ee900;
  --green: #00c805;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(215, 255, 0, 0.28), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(0, 200, 5, 0.22), transparent 22rem),
    radial-gradient(circle at 52% 82%, rgba(215, 255, 0, 0.12), transparent 28rem),
    linear-gradient(135deg, #061207 0%, #0e1a0b 42%, #050805 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(215, 255, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 255, 0, 0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(215, 255, 0, 0.18) 0 1px, transparent 1.5px);
  background-size: 4.5rem 4.5rem, 4.5rem 4.5rem, 1.15rem 1.15rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.24));
}

body::after {
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(215, 255, 0, 0.2) 34% 35%, transparent 35% 100%),
    linear-gradient(155deg, transparent 0 58%, rgba(0, 200, 5, 0.16) 58% 59%, transparent 59% 100%),
    repeating-linear-gradient(-12deg, transparent 0 2.2rem, rgba(215, 255, 0, 0.035) 2.2rem 2.35rem);
  opacity: 0.95;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(3, 5, 3, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--lime);
}

.top-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.top-links a {
  padding: 0.66rem 0.85rem;
  border: 1px solid rgba(246, 248, 239, 0.12);
  border-radius: 999px;
  color: #e9f5d8;
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.top-links a:hover,
.top-links a:focus-visible {
  color: #031003;
  background: var(--lime);
  outline: none;
}

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.82fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.hero-copy {
  width: 100%;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.5rem 0.72rem;
  color: var(--lime);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(215, 255, 0, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 9vw, 7.9rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 40rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
  width: 100%;
  max-width: 47rem;
  min-width: 0;
}

.action {
  display: flex;
  min-width: 0;
  min-height: 5.1rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.45rem;
  padding: 0.95rem;
  color: var(--ink);
  border: 1px solid rgba(215, 255, 0, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.action span {
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 950;
  line-height: 1.12;
}

.action small {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  border-color: var(--lime);
  outline: none;
}

.action.primary {
  color: #061006;
  background: linear-gradient(135deg, var(--lime), var(--green));
}

.action.primary small {
  color: #061006;
}

.ca-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  max-width: 47rem;
  margin-top: 0.85rem;
  padding: 0.95rem;
  border: 1px solid rgba(215, 255, 0, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(215, 255, 0, 0.14), rgba(0, 200, 5, 0.06)),
    rgba(6, 10, 5, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.ca-panel p {
  margin-bottom: 0.35rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ca-panel code {
  display: block;
  width: 100%;
  overflow: visible;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
}

.copy-ca {
  min-width: 6.5rem;
  min-height: 3.25rem;
  padding: 0.8rem 1rem;
  color: #061006;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--green));
  cursor: pointer;
  font-weight: 950;
}

.copy-ca:hover,
.copy-ca:focus-visible {
  filter: brightness(1.08);
  outline: 2px solid rgba(215, 255, 0, 0.5);
  outline-offset: 3px;
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1rem);
  border: 1px solid rgba(215, 255, 0, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 255, 0, 0.18), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(215, 255, 0, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.hero-card img {
  position: relative;
  display: block;
  width: min(100%, 30rem);
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.banner-strip {
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto clamp(2.5rem, 7vw, 5.5rem);
  padding: clamp(0.45rem, 1.6vw, 0.8rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.banner-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.ticker-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 20, 10, 0.92), rgba(5, 8, 5, 0.86));
}

.ticker-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.signal-list {
  display: grid;
  gap: 0.75rem;
}

.signal-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(246, 248, 239, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-list span {
  grid-row: span 2;
  color: var(--lime);
  font-weight: 950;
}

.signal-list h3 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.signal-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  color: #cad7bf;
  border-top: 1px solid var(--line);
  background: #030503;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-links {
    justify-content: flex-start;
  }

  .hero,
  .ticker-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 1rem;
  }

  .top-links a {
    padding: 0.58rem 0.7rem;
    font-size: 0.78rem;
  }

  .hero {
    width: calc(100% - 2rem);
    padding-inline: 0;
    overflow: hidden;
  }

  .lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .action.primary {
    grid-column: auto;
  }

  .ca-panel {
    grid-template-columns: 1fr;
  }

  .copy-ca {
    width: 100%;
  }

  .hero-card {
    width: 100%;
    padding: 0.75rem;
  }

  .hero-card img {
    width: 100%;
    max-width: 100%;
  }

  .banner-strip img {
    aspect-ratio: 1.8 / 1;
  }

  .signal-list article {
    grid-template-columns: 1fr;
  }

  .signal-list span {
    grid-row: auto;
  }
}
