@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700;800&family=Share+Tech+Mono&display=swap");

:root {
  --bg: #030505;
  --bg-elevated: #070b0a;
  --brand: #39ff14;
  --brand-2: #00ff9c;
  --brand-cyan: #00e5ff;
  --brand-soft: rgba(57, 255, 20, 0.75);
  --brand-glow: rgba(57, 255, 20, 0.35);
  --magenta: #ff2bd6;
  --text: #e8ffe8;
  --muted: rgba(180, 255, 200, 0.5);
  --border: rgba(57, 255, 20, 0.22);
  --font-mono: "Share Tech Mono", ui-monospace, monospace;
  --font-display: "Orbitron", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.landing-body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  position: relative;
}

.landing-body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.07;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.35) 2px,
    rgba(0, 0, 0, 0.35) 4px
  );
}

.font-display { font-family: var(--font-display); }

.bx-btn-primary,
.bx-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 2px;
  padding: 0.75rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.bx-btn-primary {
  background: var(--brand);
  color: #031006;
  border: 1px solid var(--brand);
  box-shadow: 0 0 20px var(--brand-glow);
}
.bx-btn-primary:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  box-shadow: 0 0 28px rgba(0, 255, 156, 0.45);
}

.bx-btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--border);
}
.bx-btn-outline:hover {
  border-color: var(--brand);
  background: rgba(57, 255, 20, 0.06);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.15);
}

/* Header — status bar */
.bx-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(3, 5, 5, 0.72);
  backdrop-filter: blur(10px);
  transition: background .25s ease, border-color .25s ease;
}
.bx-header.is-scrolled {
  background: rgba(3, 5, 5, 0.94);
  border-bottom-color: var(--border);
}
.bx-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  height: 3.75rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) {
  .bx-header-inner { padding: 0 1.5rem; }
}
.bx-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}
.bx-brand-proto {
  color: var(--brand-cyan);
  font-weight: 500;
  opacity: 0.85;
}
.bx-brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  display: grid;
  place-items: center;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}
.bx-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
}
.bx-nav {
  display: none;
  align-items: center;
  gap: .1rem;
}
.bx-nav a {
  border-radius: 2px;
  padding: .45rem .7rem;
  font-size: .78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s ease, text-shadow .15s ease;
}
.bx-nav a:hover {
  color: var(--brand);
  text-shadow: 0 0 10px var(--brand-glow);
}
.bx-header-actions {
  display: none;
  align-items: center;
  gap: .5rem;
}
.bx-header-actions .bx-btn-primary,
.bx-header-actions .bx-btn-outline {
  padding: .45rem .85rem;
  font-size: .75rem;
}
.bx-menu-btn {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--brand);
  cursor: pointer;
}
@media (min-width: 768px) {
  .bx-nav { display: flex; }
  .bx-header-actions { display: flex; }
  .bx-menu-btn { display: none; }
}
.bx-mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: #020403;
  padding: 1rem;
}
.bx-mobile-menu.open { display: block; }
.bx-mobile-menu a {
  display: block;
  padding: .65rem .75rem;
  border-radius: 2px;
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bx-mobile-menu a:hover { color: var(--brand); }
.bx-mobile-menu .bx-mobile-actions {
  margin-top: .75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

/* Hero */
.bx-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 50% at 75% 35%, rgba(0, 229, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 45% at 15% 70%, rgba(57, 255, 20, 0.1), transparent 50%),
    linear-gradient(180deg, #020403 0%, #030505 55%, #04100a 100%);
  padding: 6.5rem 0 4.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (min-width: 640px) {
  .bx-hero { padding: 8rem 0 5.5rem; }
}
.bx-hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bx-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .65;
}
.bx-hero-glow-a {
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  top: -10%;
  left: -10%;
  background: rgba(57, 255, 20, 0.18);
  animation: bxGlowPulse 8s ease-in-out infinite;
}
.bx-hero-glow-b {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  right: -4%;
  bottom: 10%;
  background: rgba(0, 229, 255, 0.12);
  animation: bxGlowPulse 10s ease-in-out infinite reverse;
}
.bx-hero-gridlines {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 15%, transparent 78%);
  transform: perspective(600px) rotateX(12deg) scale(1.15);
  transform-origin: center top;
}
.bx-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(3, 5, 5, 0.85) 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}
.bx-hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 640px) {
  .bx-hero-grid { padding: 0 1.5rem; gap: 3rem; }
}
@media (min-width: 1024px) {
  .bx-hero-grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
  }
}
.bx-hero-copy {
  animation: bxRise .7s ease both;
}
.bx-kicker {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  min-height: 1.25rem;
}
.bx-kicker-cursor {
  display: inline-block;
  width: 0.55rem;
  height: 1em;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand-glow);
  animation: bxBlink 1s step-end infinite;
  vertical-align: text-bottom;
}
.bx-hero-title {
  margin: 0;
}
.bx-hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 5.6rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--brand);
  text-shadow:
    0 0 40px var(--brand-glow),
    0 0 2px rgba(57, 255, 20, 0.8),
    2px 0 0 rgba(255, 43, 214, 0.25),
    -2px 0 0 rgba(0, 229, 255, 0.2);
}
.bx-hero-roles {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 36rem;
}
.bx-hero-roles li {
  font-size: .85rem;
  letter-spacing: 0.04em;
  color: rgba(200, 255, 210, 0.75);
}
.bx-hero-roles li::before {
  content: "> ";
  color: var(--brand);
}
.bx-hero-desc {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}
.bx-hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.bx-hero-actions .bx-btn-primary,
.bx-hero-actions .bx-btn-outline {
  min-height: 46px;
  padding: .8rem 1.25rem;
}

.bx-hero-media {
  width: 100%;
  max-width: 28rem;
  position: relative;
  justify-self: end;
  animation: bxRise .85s ease .08s both;
  margin: 0 auto;
}
.bx-hero-ring {
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(circle at 50% 40%, rgba(57, 255, 20, 0.28), transparent 58%);
  filter: blur(20px);
  z-index: 0;
  animation: bxGlowPulse 7s ease-in-out infinite;
}
.bx-hero-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: #010302;
  padding: 0;
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.12),
    0 0 40px rgba(57, 255, 20, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.55);
}
.bx-hero-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid var(--border);
  background: rgba(57, 255, 20, 0.06);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-soft);
}
.bx-hero-frame-bar span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand-glow);
}
.bx-hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #050805;
}
.bx-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.08) saturate(0.92);
}
.bx-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 5, 5, 0.85) 0%, transparent 45%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.12) 3px,
      rgba(0, 0, 0, 0.12) 4px
    );
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

@keyframes bxRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bxGlowPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.04); }
}
@keyframes bxBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Sections */
.bx-section {
  position: relative;
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(57, 255, 20, 0.08);
}
@media (min-width: 640px) {
  .bx-section { padding: 5.5rem 0; }
}
.bx-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .bx-wrap { padding: 0 1.5rem; }
}
.bx-label {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-cyan);
}
.bx-section h2 {
  margin: .45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.25);
}
.bx-muted {
  margin: .75rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.bx-about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .bx-about-grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.45fr);
  }
}
.bx-about-grid > * { min-width: 0; }

.bx-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  min-width: 0;
  width: 100%;
}
@media (min-width: 640px) {
  .bx-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .bx-stats { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.bx-stat {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .28rem;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: rgba(57, 255, 20, 0.04);
  padding: .7rem .4rem;
  text-align: center;
}
.bx-stat strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(.7rem, 24cqi, 1rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand);
}
.bx-stat span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(.42rem, 11cqi, .55rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--muted);
}

/* Social */
.bx-social-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}
.bx-social-followers {
  margin: .15rem 0 .35rem !important;
  font-size: .78rem !important;
  color: var(--brand-soft) !important;
}
@media (min-width: 768px) {
  .bx-social-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
  }
}
.bx-social-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  padding: 1rem;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.bx-social-card:hover {
  border-color: var(--brand);
  background: rgba(57, 255, 20, 0.06);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.12);
}
.bx-social-ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 2px;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bx-social-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e8ffe8;
}
.bx-social-card p {
  margin: .5rem 0 0;
  flex: 1;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--muted);
}
.bx-social-card .bx-social-go {
  margin-top: 1rem;
  font-size: .75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Contact */
.bx-contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.1), transparent 45%),
    rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .bx-contact-box { padding: 2rem; }
}
.bx-contact-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bx-contact-ico {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 2px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(57, 255, 20, 0.08);
  color: var(--brand);
}
.bx-contact-box h2 {
  margin: .25rem 0 0;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
}
.bx-contact-box .bx-muted { max-width: 28rem; }
.bx-contact-mail {
  display: inline-block;
  margin-top: .75rem;
  color: var(--brand-cyan);
  text-decoration: none;
  font-size: .9rem;
}
.bx-contact-mail:hover {
  color: var(--brand);
  text-shadow: 0 0 10px var(--brand-glow);
}
.bx-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Footer */
.bx-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  background: #020403;
}
.bx-footer p {
  margin: 0;
  text-align: center;
  font-size: .72rem;
  letter-spacing: 0.08em;
  color: rgba(180, 255, 200, 0.35);
}

@media (max-width: 640px) {
  .bx-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx-hero { min-height: auto; }
  .bx-hero-media { max-width: 22rem; order: -1; }
  .bx-hero-grid { gap: 1.75rem; }
  .bx-hero-title-main { font-size: clamp(2.8rem, 14vw, 3.6rem); }
}
