:root {
  --bg: #020617;
  --bg-deep: #000000;

  /* WAZCHER BRAND GREEN */
  --green: #76B900;
  box-shadow: 0 0 22px var(--green-glow);
  

  /* Optional: keep cyan but slightly darker so green dominates */
  --cyan: #4CAF50;

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  /* Hacker / Web3 font stack */
  font-family: "JetBrains Mono", "Space Mono", Menlo, Consolas, monospace;

  color: var(--text-main);
  background: radial-gradient(circle at top, #020617 0, #000 60%, #000 100%);
  overflow-x: hidden;
  position: relative;
}


.hero-title,
.section-title,
.info-title {
  font-family: "Space Mono", "JetBrains Mono", monospace;
  letter-spacing: 0.18em;
}


.site-header,
.page-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ========= 背景：canvas + grid ========= */

#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;           /* 👈 critical */
  pointer-events: none;
}


.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.85) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.85) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.22;
  mix-blend-mode: soft-light;
}

/* scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.9);
  z-index: 40;
}

/* ========= HEADER / NAV ========= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(24px) saturate(160%);
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.68),
    rgba(0, 0, 0, 0.86)
  );
  border-bottom: 1px solid rgba(30, 41, 59, 0.85);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-block {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img-full {
  height: 32px;   /* adjust size if needed */
  width: auto;
  object-fit: contain;

  filter: none;  /* ❌ no glow */
  transition: transform 0.2s ease;
}

.logo-block:hover .logo-img-full {
  transform: translateY(-1px); /* subtle premium hover */
}


/* nav: 只有字，hover 才有 highlight */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-link {
  position: relative;
  padding: 4px 0;          /* 只有上下 4px，不再有左右外框 */
  color: var(--text-muted);
  text-decoration: none;
  border: none;
  background: transparent;
  transition: color 0.18s ease-out, text-shadow 0.18s ease-out;
}


.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
  opacity: 0.9;
}

.nav-link:hover {
  text-shadow: none;
}


.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.is-current {
  color: var(--green);
  text-shadow:
    0 0 10px rgba(34, 197, 94, 0.9),
    0 0 18px rgba(34, 197, 94, 0.7);
}

.nav-link.is-current::after {
  transform: scaleX(1);
}

.nav-pill {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: none;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.3; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 800px) {
  .nav-inner {
    flex-wrap: wrap;
  }
  .nav-pill {
    display: none;
  }
}

/* ========= layout 基礎 ========= */

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.section {
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ========= REVEAL ANIMATIONS (UPGRADED) ========= */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.7s cubic-bezier(.2,.8,.2,1),
    transform 0.7s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-left { transform: translate3d(-26px, 0, 0); }
.reveal-right { transform: translate3d(26px, 0, 0); }
.reveal-up { transform: translate3d(0, 22px, 0); }

.reveal-left.in-view,
.reveal-right.in-view,
.reveal-up.in-view {
  transform: translate3d(0, 0, 0);
}

/* ========= STAGGER ========= */
.people-grid-v2 .person-card-v2.reveal:nth-child(1) { transition-delay: 0ms; }
.people-grid-v2 .person-card-v2.reveal:nth-child(2) { transition-delay: 90ms; }
.people-grid-v2 .person-card-v2.reveal:nth-child(3) { transition-delay: 180ms; }
.people-grid-v2 .person-card-v2.reveal:nth-child(4) { transition-delay: 270ms; }

.advisors-grid-v2 .person-card-v2.reveal:nth-child(1) { transition-delay: 0ms; }
.advisors-grid-v2 .person-card-v2.reveal:nth-child(2) { transition-delay: 80ms; }
.advisors-grid-v2 .person-card-v2.reveal:nth-child(3) { transition-delay: 160ms; }
.advisors-grid-v2 .person-card-v2.reveal:nth-child(4) { transition-delay: 240ms; }
.advisors-grid-v2 .person-card-v2.reveal:nth-child(5) { transition-delay: 320ms; }


/* tilt */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

/* ========= 共用 glass 風格 ========= */

.glass {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.28), transparent 60%),
    rgba(8, 15, 30, 0.65);
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.9),
    0 0 80px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(22px) saturate(130%);
}

/* ========= HERO ========= */

.hero-section {
  align-items: flex-start;
}

.hero-inner {
  max-width: 1400px;
}

.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--green);
  margin-bottom: 18px;
}


.hero-title.mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(18px, 4vw, 64px);
  row-gap: clamp(10px, 1.8vw, 22px);

  align-items: baseline;
  justify-items: start;

  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 0.92;
}

/* Left column words: WATCH / EARN / BUY */
.hero-title.mega .k {
  justify-self: start;
}

/* Right column words: VIDEOS / REWARDS / INSTANTLY */
.hero-title.mega .v {
  justify-self: start;
  color: rgba(229, 231, 235, 0.96);
}

/* Big but bounded so it never explodes off screen */
.hero-title.mega .k,
.hero-title.mega .v {
  font-family: "Space Mono", "JetBrains Mono", monospace;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 130px);

  white-space: nowrap;        /* 👈 keep words intact */
  overflow-wrap: normal;      /* 👈 no mid-word breaks */
}


/* Wazcher green */
.hero-title.mega .accent {
  color: var(--green);
}

/* Mobile: stack into 1 column cleanly */
@media (max-width: 900px) {
  .hero-title.mega {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .hero-title.mega .k,
  .hero-title.mega .v {
    font-size: clamp(44px, 11vw, 74px);
    letter-spacing: 0.12em;
    line-height: 0.95;
  }
}



.hero-sub {
  font-size: 18px;
  line-height: 1.9;
  color: #d1d5db;
  max-width: 640px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-top: 22px;
  margin-bottom: 34px;

  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(229, 231, 235, 0.96);

  white-space: nowrap;     /* 👈 force single line */
}


.hero-proof-item {
  padding: 0;
  border: none;
  background: none;
}


.hero-proof-sep {
  color: var(--green);
  font-weight: 900;
  opacity: 0.95;
}


@media (max-width: 768px) {
  .hero-proof {
    font-size: 18px;
    letter-spacing: 0.16em;
    gap: 18px;
  }
}


.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.partners-title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: e5e7eb;
  margin-bottom: 18px;
}


/* ===== PARTNER LOGO MARQUEE (BIG + SMOOTH) ===== */

.partners-strip {
  margin: 44px 0;
  overflow: hidden;
}

.logo-marquee {
  position: relative;
  overflow: hidden;

  /* fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* The moving track */
.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: partner-scroll 18s linear infinite; /* speed here */
}

/* Each set is the same width, so the loop is seamless */
.logo-set {
  display: flex;
  align-items: center;
  gap: 110px;              /* spacing between logos */
  padding-right: 110px;    /* keeps spacing consistent at the seam */
}

/* BIG logos */
.logo-set img {
  height: 120px;            /* 👈 make it big */
  width: auto;
  object-fit: contain;
  flex-shrink: 0;

  opacity: 0.92;
  filter: none;            /* clean, no glow */
}

/* Smooth loop: move by exactly one set width */
@keyframes partner-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .logo-set img { height: 54px; }
  .logo-set { gap: 70px; padding-right: 70px; }
  .logo-track { animation-duration: 16s; }
}



/* ========= section 標題 ========= */

.section-header {
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 13px;
  max-width: 540px;
  line-height: 1.8;
  color: #d1d5db;
}

/* ========= Buttons ========= */

.btn-primary {
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #020617;
  box-shadow:
    0 0 22px rgba(34, 197, 94, 0.9),
    0 0 40px rgba(34, 197, 94, 0.7);
}
.btn-primary:hover {
  box-shadow:
    0 0 26px rgba(34, 197, 94, 1),
    0 0 52px rgba(34, 197, 94, 0.9);
}

.btn-secondary {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-main);
}
.btn-secondary:hover {
  border-color: rgba(209, 213, 219, 0.9);
  background: rgba(15, 23, 42, 0.95);
}

/* ========= VIDEO SECTION ========= */

.video-section {
  gap: 24px;
}

.video-shell {
  padding: 16px 16px 18px;
}
.video-shell.glass {}

/* video shell 用 glass */
.video-shell {
  --glow-x: 0.5;
  --glow-y: 0.5;

  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);

  background:
    radial-gradient(
      circle at calc(var(--glow-x) * 100%) calc(var(--glow-y) * 100%),
      rgba(255, 255, 255, 0.24),
      rgba(255, 255, 255, 0.02) 55%,
      transparent 75%
    ),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.55),
      rgba(15, 23, 42, 0.16)
    );

  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.9),
    0 0 32px rgba(34, 197, 94, 0.22);

  padding: 16px 16px 18px;
}

.video-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.video-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.video-chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.18);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.video-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.45), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.9), transparent 60%);
  mix-blend-mode: soft-light;
}

.video-placeholder {
  position: relative;
  text-align: center;
  z-index: 1;
}

.video-placeholder-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.video-placeholder-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.video-play-button {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #f9fafb, #e5e7eb);
  box-shadow:
    0 0 40px rgba(249, 250, 251, 0.9),
    0 0 80px rgba(34, 197, 94, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.video-play-button::before {
  content: "";
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #111827;
  transform: translateX(2px);
}
.video-play-button:hover {
  box-shadow:
    0 0 48px rgba(249, 250, 251, 1),
    0 0 100px rgba(34, 197, 94, 1);
}

.video-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ========= INFO SECTION ========= */

.info-section {
  gap: 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.info-card {
  --glow-x: 0.5;
  --glow-y: 0.5;

  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);

  background:
    radial-gradient(
      circle at calc(var(--glow-x) * 100%) calc(var(--glow-y) * 100%),
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.02) 55%,
      transparent 75%
    ),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.55),
      rgba(15, 23, 42, 0.16)
    );

  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.85),
    0 0 30px rgba(34, 197, 94, 0.18);

  padding: 18px 20px 22px;
  transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
}

.info-card:hover {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.9),
    0 0 42px rgba(34, 197, 94, 0.25);
}

.info-title {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info-text {
  font-size: 13px;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 10px;
}

.info-tagline {
  font-size: 11px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.info-footer {
  margin-top: 22px;
}

/* =========================
   ABOUT V2 (BIGGER, OPEN)
   ========================= */

.about-v2 {
  padding-top: 26px;
}

/* HERO */
.about-hero-v2 {
  padding-top: 46px;
  padding-bottom: 28px;
}

.about-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-title {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 18px;
}

.about-title .g {
  color: var(--green);
}

.about-lede {
  font-size: 15px;
  line-height: 1.9;
  color: #d1d5db;
  max-width: 820px;
}

/* BIG PROOF STRIP */
.proof-strip {
  margin-top: 26px;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.32);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(200px, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.proof-item {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(0, 0, 0, 0.18);
  padding: 16px 16px 14px;
}

.proof-value {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.proof-credit {
  border-radius: 18px;
  border: 1px solid rgba(118, 185, 0, 0.28);
  background: rgba(118, 185, 0, 0.06);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-credit-top {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.proof-credit-name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5e7eb;
  font-weight: 800;
}

/* CORE TECH LAYOUT (OPEN TWO COLUMN) */
.about-tech-v2 {
  margin-top: 26px;
  padding-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.tech-title {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 14px;
}

.tech-title .g {
  color: var(--green);
}

.tech-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #d1d5db;
  margin-bottom: 18px;
  max-width: 720px;
}

.tech-bullets {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.tech-bullet {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.22);
}

.tech-bullet .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  margin-top: 6px;
}

.tech-bullet-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 6px;
}

.tech-bullet-sub {
  font-size: 12px;
  line-height: 1.7;
  color: #d1d5db;
}

/* PATENT PROOF */
.patent-proof {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.22);
}

.patent-head {
  margin-bottom: 12px;
}

.patent-kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.patent-sub {
  font-size: 12px;
  color: #d1d5db;
  line-height: 1.7;
}

.patent-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.patent-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.16);
  text-decoration: none;
}

.patent-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: none;
}

/* PEOPLE */
.about-people-v2 {
  padding-top: 34px;
}

.people-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.advisors-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.person-card-v2 {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.22);
}

.pfp {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(2, 6, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;  
  margin-bottom: 22px;
}

.pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* smaller avatar for advisors */
.pfp-sm {
  max-width: 120px;
}


.person-role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.person-name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.person-xp {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 12px;
  line-height: 1.7;
  color: #d1d5db;
}

.person-xp li {
  position: relative;
  padding-left: 14px;
}

.person-xp li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .about-tech-v2 {
    grid-template-columns: 1fr;
  }

  .people-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisors-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .patent-card img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .people-grid-v2,
  .advisors-grid-v2 {
    grid-template-columns: 1fr;
  }

  .pfp {
    height: 140px;
  }
}



/* ========= CONTACT PAGE ========= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 2.3fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-panel {
  padding: 18px 18px 20px;
}
.contact-panel.glass {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg,
      rgba(15, 23, 42, 0.55),
      rgba(15, 23, 42, 0.16)
    );
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(34, 197, 94, 0.16);
}

.contact-title-large {
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-text {
  font-size: 13px;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 16px;
}

.email-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 7px 12px;
  font-size: 12px;
  text-decoration: none;
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.7);
  margin-bottom: 8px;
  backdrop-filter: blur(18px);
}
.email-pill span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.contact-note {
  font-size: 11px;
  color: var(--text-muted);
}

.contact-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.95);
  margin-right: 6px;
  animation: pulse 1.6s ease-in-out infinite;
}

/* ========= FOOTER ========= */

.site-footer {
  padding: 14px 20px 18px;
  font-size: 11px;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at bottom, #020617 0, #000 60%);
}

.site-footer a {
  color: var(--green);
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* ========= RWD ========= */

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-sub {
    font-size: 13px;
  }
  .section {
    padding-top: 72px;
    padding-bottom: 50px;
  }
}
