/* ==========================================================================
   Live Cast Deck — homepage + public site chrome
   ========================================================================== */

:root {
  --lcd-bg: #050507;
  --lcd-surface: #0e0e12;
  --lcd-text: #f5f4f7;
  --lcd-muted: #9a96a3;
  --lcd-lime: #b6ff2e;
  --lcd-lime-dim: rgba(182,255,46,.14);
  --lcd-line: rgba(255,255,255,.08);
  --lcd-radius: 22px;
}

body.lcd-site {
  background: var(--lcd-bg);
  color: var(--lcd-text);
  overflow-x: hidden;
}

body.lcd-site .brand .dot {
  animation: lcd-live-ping 1.8s ease-out infinite;
}

body.lcd-site .footer {
  border-top: 1px solid var(--lcd-line);
  background: #08080b;
  padding: 28px 0;
}

/* Shared page heads — align sibling public pages */
body.lcd-site .agency-head h1,
body.lcd-site .week-stage-head h1,
body.lcd-site .live-blog-head h1,
body.lcd-site .live-apps-head h1,
body.lcd-site .app-store-info h1 {
  letter-spacing: -.045em;
}

body.lcd-site .edi-form-page .section-head h2,
body.lcd-site .edi-static-page .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -.035em;
}

/* ---- Homepage hero ---- */
.lcd-hero {
  position: relative;
  padding: 28px 0 64px;
  min-height: min(92vh, 820px);
}
.lcd-hero-bg {
  position: absolute;
  inset: -10% -5% auto;
  height: 110%;
  background:
    radial-gradient(ellipse 50% 48% at 72% 42%, rgba(182,255,46,.18), transparent 58%),
    radial-gradient(ellipse 36% 40% at 18% 78%, rgba(255,80,120,.08), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.04), transparent 40%);
  pointer-events: none;
  animation: lcd-breathe 8s ease-in-out infinite;
}
.lcd-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 40px;
  align-items: center;
  min-height: min(74vh, 640px);
}
.lcd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lcd-lime);
}
.lcd-kicker em {
  font-style: normal;
  color: var(--lcd-muted);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.lcd-hero-copy .brand-signal {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  letter-spacing: -.04em;
  line-height: 1;
  color: #fff;
}
.lcd-hero-copy .brand-signal span { color: var(--lcd-lime); }
.lcd-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: #fff;
}
.lcd-hero h1 b {
  font-weight: 800;
  background: linear-gradient(120deg, #fff 30%, var(--lcd-lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lcd-hero .lead {
  margin: 0 0 28px;
  max-width: 38ch;
  color: var(--lcd-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 600;
}
.lcd-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.lcd-cta .btn-line {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.lcd-cta .btn-line:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.lcd-live-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lcd-muted);
  font-size: .86rem;
  font-weight: 700;
}
.lcd-faces { display: flex; }
.lcd-faces img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #050507;
  margin-left: -10px;
  max-width: none;
}
.lcd-faces img:first-child { margin-left: 0; }

/* Deck */
.lcd-deck-stage {
  position: relative;
  height: min(62vh, 560px);
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.lcd-deck {
  position: relative;
  width: min(100%, 420px);
  height: 100%;
  max-height: 520px;
}
.lcd-card {
  position: absolute;
  width: 280px;
  height: 373px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #16161c;
  box-shadow:
    0 30px 60px -28px rgba(0,0,0,.85),
    0 0 0 1px rgba(182,255,46,.08);
  transform-origin: center bottom;
}
.lcd-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform .6s ease;
}
.lcd-card:hover img { transform: scale(1.1); }
.lcd-card-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(180deg, rgba(5,5,7,.15) 0%, transparent 35%, rgba(5,5,7,.78) 100%);
  pointer-events: none;
  z-index: 1;
}
.lcd-stamp {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lcd-lime);
  color: #050507;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.lcd-stamp i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #050507;
  animation: pulse 1.2s infinite;
}
.lcd-card-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.02em;
  color: #fff;
}
.lcd-card-meta span {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(245,244,247,.78);
}
.lcd-card.c1 {
  left: 6%;
  top: 10%;
  z-index: 3;
  transform: rotate(-7deg) translateY(8px);
  animation: lcd-float-a 5.5s ease-in-out infinite;
}
.lcd-card.c2 {
  right: 2%;
  top: 2%;
  z-index: 4;
  width: 300px;
  height: 400px;
  transform: rotate(4deg);
  animation: lcd-float-b 6.2s ease-in-out infinite;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.9),
    0 0 40px -16px rgba(182,255,46,.28);
}
.lcd-card.c3 {
  left: 16%;
  bottom: 0;
  z-index: 2;
  width: 230px;
  height: 307px;
  transform: rotate(8deg);
  animation: lcd-float-c 5.8s ease-in-out infinite;
}
.lcd-orbit {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(14,14,18,.85);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .75rem;
  color: #fff;
  z-index: 6;
  text-decoration: none;
  animation: lcd-orb 7s ease-in-out infinite;
}
.lcd-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.lcd-orbit.o1 { left: -2%; top: 28%; animation-delay: 0s; }
.lcd-orbit.o2 { right: -4%; top: 36%; animation-delay: 1.2s; color: var(--lcd-lime); }
.lcd-orbit.o3 { left: 42%; bottom: -2%; animation-delay: 2s; }

/* Marquee */
.lcd-marquee {
  border-block: 1px solid var(--lcd-line);
  background: #08080b;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.lcd-marquee-track {
  display: inline-flex;
  animation: lcd-marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
}
.lcd-marquee-track span {
  padding: 0 28px;
  color: var(--lcd-muted);
}
.lcd-marquee-track b { color: #fff; }
.lcd-marquee-track em {
  color: var(--lcd-lime);
  font-style: normal;
}

/* Sections */
.lcd-section { padding: 72px 0; }
.lcd-section-alt {
  background: #08080b;
  border-block: 1px solid var(--lcd-line);
}
.lcd-section .eyebrow {
  display: block;
  width: fit-content;
  padding: 0;
  margin: 0 0 10px;
  border: 0;
  background: none;
  border-radius: 0;
  color: var(--lcd-lime);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lcd-section h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -.035em;
  line-height: 1.1;
  color: #fff;
}
.lcd-section .sub {
  margin: 0 0 36px;
  max-width: 48ch;
  color: var(--lcd-muted);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
}
.lcd-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.lcd-head-row .sub { margin: 0; max-width: 42ch; }
.lcd-link-more {
  color: var(--lcd-lime);
  font-weight: 800;
  text-decoration: none;
  font-size: .9rem;
  white-space: nowrap;
}
.lcd-link-more:hover { filter: brightness(1.1); }

/* Cast board */
.lcd-board {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.lcd-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--lcd-radius);
  border: 1px solid var(--lcd-line);
  background: var(--lcd-surface);
  min-height: 220px;
  isolation: isolate;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease;
}
a.lcd-tile { display: block; }
.lcd-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(182,255,46,.35);
}
.lcd-tile.featured {
  grid-row: span 2;
  min-height: 460px;
}
.lcd-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
  transition: transform .7s ease;
}
.lcd-tile:hover img { transform: scale(1.06); }
.lcd-tile-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,7,.88) 100%);
}
.lcd-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px;
}
.lcd-tile-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: #fff;
}
.lcd-tile-body span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--lcd-muted);
}
.lcd-tile .lcd-stamp {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

/* Agencies */
.lcd-agency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.lcd-agency {
  padding: 22px;
  border-radius: var(--lcd-radius);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--lcd-line);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.lcd-agency:hover {
  border-color: rgba(182,255,46,.4);
  transform: translateY(-3px);
}
.lcd-agency-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.lcd-agency-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--lcd-lime-dim);
  color: var(--lcd-lime);
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
}
.lcd-agency-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.lcd-agency strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -.02em;
  color: #fff;
}
.lcd-agency em {
  font-style: normal;
  font-size: .78rem;
  color: var(--lcd-muted);
  font-weight: 700;
}
.lcd-agency p {
  margin: 0;
  color: var(--lcd-muted);
  font-size: .88rem;
  line-height: 1.5;
  font-weight: 600;
}

/* Apps */
.lcd-apps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.lcd-app {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--lcd-line);
  background: rgba(255,255,255,.025);
  text-decoration: none;
  color: inherit;
  transition: .2s ease;
}
.lcd-app:hover {
  border-color: rgba(182,255,46,.35);
  background: var(--lcd-lime-dim);
}
.lcd-app i,
.lcd-app .lcd-app-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #15151a;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  font-size: .85rem;
  flex-shrink: 0;
}
.lcd-app .lcd-app-ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.lcd-app strong {
  display: block;
  font-size: .95rem;
  color: #fff;
}
.lcd-app span {
  font-size: .75rem;
  color: var(--lcd-muted);
  font-weight: 700;
}

/* Stats */
.lcd-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.lcd-stat {
  padding: 22px 18px;
  border-radius: var(--lcd-radius);
  border: 1px solid var(--lcd-line);
  background: rgba(255,255,255,.03);
  text-align: center;
}
.lcd-stat .v {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.03em;
  color: #fff;
}
.lcd-stat .l {
  display: block;
  margin-top: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--lcd-muted);
}

/* Notes / blog */
.lcd-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.lcd-note {
  border-radius: var(--lcd-radius);
  overflow: hidden;
  border: 1px solid var(--lcd-line);
  background: var(--lcd-surface);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease;
}
.lcd-note:hover {
  transform: translateY(-3px);
  border-color: rgba(182,255,46,.35);
}
.lcd-note-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: #15151a;
}
.lcd-note-body { padding: 16px 18px 20px; }
.lcd-note-body time {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--lcd-muted);
  margin-bottom: 6px;
}
.lcd-note-body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -.02em;
}
.lcd-note-body p {
  margin: 0;
  font-size: .86rem;
  color: var(--lcd-muted);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* End CTA */
.lcd-end-wrap { padding: 0 0 80px; }
.lcd-end {
  padding: 48px 36px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(182,255,46,.18), transparent 50%),
    linear-gradient(135deg, #101014, #08080b);
  border: 1px solid rgba(182,255,46,.2);
  text-align: center;
}
.lcd-end h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -.04em;
  color: #fff;
}
.lcd-end p {
  margin: 0 0 24px;
  color: var(--lcd-muted);
  font-weight: 600;
}
.lcd-end .lcd-cta {
  justify-content: center;
  margin: 0;
}

@keyframes lcd-live-ping {
  0% { box-shadow: 0 0 0 0 rgba(182,255,46,.55); }
  70% { box-shadow: 0 0 0 10px rgba(182,255,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(182,255,46,0); }
}
@keyframes lcd-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.03); }
}
@keyframes lcd-float-a {
  0%, 100% { transform: rotate(-7deg) translateY(8px); }
  50% { transform: rotate(-5deg) translateY(-6px); }
}
@keyframes lcd-float-b {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}
@keyframes lcd-float-c {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(8px); }
}
@keyframes lcd-orb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes lcd-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Mobile ---- */
@media (max-width: 960px) {
  .lcd-hero {
    min-height: 0;
    padding: 18px 0 48px;
  }
  .lcd-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }
  .lcd-deck-stage {
    height: 440px;
    order: -1;
  }
  .lcd-card {
    width: 220px;
    height: 293px;
  }
  .lcd-card.c2 {
    width: 240px;
    height: 320px;
  }
  .lcd-card.c3 {
    width: 180px;
    height: 240px;
  }
  .lcd-board { grid-template-columns: 1fr 1fr; }
  .lcd-tile.featured {
    grid-row: auto;
    grid-column: span 2;
    min-height: 320px;
  }
  .lcd-agency-grid,
  .lcd-notes { grid-template-columns: 1fr; }
  .lcd-apps { grid-template-columns: 1fr 1fr; }
  .lcd-stats { grid-template-columns: 1fr; }
  .lcd-hero-copy { text-align: center; }
  .lcd-hero .lead { margin-left: auto; margin-right: auto; }
  .lcd-cta { justify-content: center; }
  .lcd-live-row { justify-content: center; }
  .lcd-kicker { justify-content: center; margin-left: auto; margin-right: auto; }
  .lcd-head-row { align-items: start; }
}

@media (max-width: 700px) {
  .lcd-section { padding: 52px 0; }
  .lcd-end { padding: 36px 22px; border-radius: 24px; }
  .lcd-end-wrap { padding-bottom: 56px; }
  .lcd-cta .btn { width: 100%; }
  .lcd-orbit { width: 44px; height: 44px; font-size: .68rem; }
}

@media (max-width: 560px) {
  .lcd-deck-stage { height: 380px; }
  .lcd-card {
    width: 170px;
    height: 227px;
    border-radius: 22px;
  }
  .lcd-card.c2 {
    width: 190px;
    height: 253px;
  }
  .lcd-card.c3 {
    width: 140px;
    height: 187px;
  }
  .lcd-card-meta strong { font-size: 1rem; }
  .lcd-board { grid-template-columns: 1fr; }
  .lcd-tile.featured { grid-column: auto; min-height: 280px; }
  .lcd-apps { grid-template-columns: 1fr; }
  .lcd-hero h1 { font-size: clamp(2rem, 10vw, 2.6rem); }
}

/* ---- Sibling public pages (mobile + LCD polish) ---- */
body.lcd-site .live-agency-page,
body.lcd-site .live-apps-page,
body.lcd-site .live-blog-page,
body.lcd-site .week-stage,
body.lcd-site .agency-profile-page {
  padding-top: 48px;
}

body.lcd-site .edi-form-page,
body.lcd-site .edi-static-page {
  padding: 48px 0 72px;
}

body.lcd-site .form-wrap {
  max-width: 480px;
  margin: 0 auto;
}

body.lcd-site .form-card {
  border-radius: 22px;
  border: 1px solid var(--lcd-line);
  background: var(--lcd-surface);
}

@media (max-width: 900px) {
  body.lcd-site .live-agency-page,
  body.lcd-site .live-apps-page,
  body.lcd-site .live-blog-page,
  body.lcd-site .week-stage,
  body.lcd-site .agency-profile-page {
    padding: 32px 0 56px;
  }
  body.lcd-site .agency-head,
  body.lcd-site .week-stage-head,
  body.lcd-site .live-blog-head,
  body.lcd-site .live-apps-head {
    text-align: left;
    margin-bottom: 28px;
  }
  body.lcd-site .agency-head-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  body.lcd-site .edi-form-page,
  body.lcd-site .edi-static-page {
    padding: 28px 0 48px;
  }
  body.lcd-site .form-card {
    padding: 20px;
    border-radius: 18px;
  }
  body.lcd-site .blog-feature {
    grid-template-columns: 1fr;
  }
  body.lcd-site .agency-best {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lcd-hero-bg,
  .lcd-card.c1,
  .lcd-card.c2,
  .lcd-card.c3,
  .lcd-orbit,
  .lcd-marquee-track,
  body.lcd-site .brand .dot,
  .ag-feat-glow {
    animation: none !important;
  }
}

/* ==========================================================================
   Agency directory + profile (Live Cast Deck)
   Metaphor: partner ledger — oversized names, roster faces, lime pulse
   ========================================================================== */

.ag-page {
  position: relative;
  overflow: hidden;
  padding: 28px 0 80px;
  background:
    radial-gradient(ellipse 50% 40% at 85% 0%, rgba(182,255,46,.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 60%, rgba(255,255,255,.03), transparent 50%),
    #050507;
}
.ag-page .container { position: relative; z-index: 1; }

.ag-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lcd-lime);
}
.ag-kicker i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lcd-lime);
  animation: pulse 1.3s infinite;
}

.ag-hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 48px;
  min-height: min(42vh, 360px);
}
.ag-hero-copy h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -.045em;
  line-height: 1.02;
  color: #fff;
}
.ag-hero-copy h1 span { color: var(--lcd-lime); }
.ag-hero-copy .lead {
  margin: 0 0 22px;
  max-width: 42ch;
  color: var(--lcd-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 600;
}
.ag-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.ag-hero-cta .btn-line {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.ag-hero-cta .btn-line:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.ag-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  max-width: 420px;
}
.ag-facts > div {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--lcd-line);
}
.ag-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.02em;
  color: #fff;
}
.ag-facts span {
  font-size: .72rem;
  color: var(--lcd-muted);
  font-weight: 700;
}

.ag-hero-visual {
  position: relative;
  min-height: 280px;
}
.ag-hero-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.ag-hero-orb {
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(182,255,46,.35), transparent 50%),
    linear-gradient(160deg, #1a1c14, #0a0a0c);
  border: 1px solid rgba(182,255,46,.28);
  box-shadow: 0 40px 80px -40px rgba(182,255,46,.35);
}
.ag-hero-faces {
  position: absolute;
  inset: 12% 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  justify-content: center;
}
.ag-hero-faces img,
.ag-hero-faces span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #050507;
  background: #15151a;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--lcd-lime);
  font-size: .9rem;
}

.ag-feat {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 0;
  margin-bottom: 56px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(182,255,46,.25);
  background: linear-gradient(135deg, #10140c 0%, #0a0a0c 55%, #0e0e12 100%);
}
.ag-feat-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -40px;
  top: -60px;
  border-radius: 50%;
  background: rgba(182,255,46,.14);
  filter: blur(40px);
  animation: lcd-breathe 8s ease-in-out infinite;
  pointer-events: none;
}
.ag-feat-main {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
}
.ag-feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--lcd-lime);
  color: #050507;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.ag-feat-main h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -.04em;
  color: #fff;
}
.ag-feat-main p {
  margin: 0 0 18px;
  color: var(--lcd-muted);
  font-weight: 600;
  max-width: 40ch;
}
.ag-feat-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.ag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--lcd-line);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}
.ag-chip img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
}
.ag-feat-side {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: rgba(0,0,0,.28);
  border-left: 1px solid var(--lcd-line);
}
.ag-feat-metrics { display: grid; gap: 14px; }
.ag-feat-metrics div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: #fff;
}
.ag-feat-metrics div span {
  font-size: .75rem;
  font-weight: 700;
  color: var(--lcd-muted);
}
.ag-feat-roster { display: flex; margin-top: 18px; }
.ag-feat-roster img,
.ag-feat-roster span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a0a0c;
  margin-left: -8px;
  background: #15151a;
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 800;
  color: #fff;
}
.ag-feat-roster img:first-child,
.ag-feat-roster span:first-child { margin-left: 0; }

.ag-dir-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ag-dir-head h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -.035em;
  color: #fff;
}
.ag-dir-head p {
  margin: 0;
  color: var(--lcd-muted);
  font-weight: 600;
}

.ag-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ag-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--lcd-line);
  background: linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.ag-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182,255,46,.4);
}
.ag-card.is-top {
  border-color: rgba(182,255,46,.45);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(182,255,46,.12), transparent 50%),
    linear-gradient(165deg, rgba(182,255,46,.08), rgba(255,255,255,.02));
}
.ag-card-top {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lcd-lime);
  color: #050507;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.ag-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ag-card-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--lcd-lime-dim);
  color: var(--lcd-lime);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ag-card-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.ag-card-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -.02em;
  color: #fff;
}
.ag-card-row em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 700;
  color: var(--lcd-muted);
}
.ag-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ag-card-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--lcd-line);
  font-size: .72rem;
  font-weight: 700;
  color: var(--lcd-muted);
}
.ag-card-faces { display: flex; margin-top: auto; }
.ag-card-faces img,
.ag-card-faces span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a0a0c;
  margin-left: -7px;
  background: #15151a;
  display: grid;
  place-items: center;
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
}
.ag-card-faces img:first-child,
.ag-card-faces span:first-child { margin-left: 0; }
.ag-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--lcd-line);
  font-size: .82rem;
  font-weight: 800;
}
.ag-card-foot b { color: var(--lcd-lime); font-family: var(--font-display); }
.ag-card-foot span { color: #fff; }

.ag-empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--lcd-muted);
  border: 1px dashed var(--lcd-line);
  border-radius: 22px;
}

.ag-prof-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  color: var(--lcd-muted);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}
.ag-prof-back:hover { color: var(--lcd-lime); }

.ag-prof-hero {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  margin-bottom: 40px;
  border-radius: 28px;
  border: 1px solid rgba(182,255,46,.22);
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(182,255,46,.14), transparent 50%),
    linear-gradient(145deg, #10140c, #08080b);
  overflow: hidden;
}
.ag-prof-avatar {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  object-fit: cover;
  border: 2px solid rgba(182,255,46,.35);
  background: #15151a;
  flex-shrink: 0;
}
.ag-prof-avatar-ph {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--lcd-lime);
  background: var(--lcd-lime-dim);
}
.ag-prof-copy .ag-kicker { margin-bottom: 8px; }
.ag-prof-copy h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -.04em;
  color: #fff;
}
.ag-prof-copy > p {
  margin: 0 0 18px;
  max-width: 48ch;
  color: var(--lcd-muted);
  font-weight: 600;
  line-height: 1.6;
}
.ag-prof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.ag-prof-stats div {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--lcd-line);
}
.ag-prof-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}
.ag-prof-stats span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--lcd-muted);
}

.ag-sec { margin-bottom: 44px; }
.ag-sec-head { margin-bottom: 18px; }
.ag-sec-head h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  letter-spacing: -.03em;
  color: #fff;
}
.ag-sec-head p {
  margin: 0;
  color: var(--lcd-muted);
  font-weight: 600;
}

.ag-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ag-roster {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.ag-roster-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--lcd-line);
  background: #121216;
}
.ag-roster-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.ag-roster-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--lcd-lime);
  background: linear-gradient(180deg, #1a1c14, #0a0a0c);
}
.ag-roster-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(5,5,7,.9));
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.ag-contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--lcd-line);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}
.ag-contact-copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: #fff;
  letter-spacing: -.03em;
}
.ag-contact-copy p {
  margin: 0 0 16px;
  color: var(--lcd-muted);
  font-weight: 600;
  line-height: 1.6;
}
.ag-contact-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ag-contact-copy li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: #d4d1db;
  font-size: .9rem;
  font-weight: 600;
  border-bottom: 1px solid var(--lcd-line);
}
.ag-contact-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lcd-lime);
}
.ag-contact-form-wrap {
  padding: 22px;
  border-radius: 20px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--lcd-line);
}
.ag-contact-form-wrap .field { margin-bottom: 14px; }
.ag-contact-form-wrap label {
  display: block;
  margin-bottom: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--lcd-muted);
}
.ag-contact-form-wrap input,
.ag-contact-form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--lcd-line);
  background: #0e0e12;
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
}
.ag-contact-form-wrap input:focus,
.ag-contact-form-wrap textarea:focus {
  outline: none;
  border-color: rgba(182,255,46,.45);
}

.ag-prof-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--lcd-line);
}

@media (max-width: 960px) {
  .ag-hero,
  .ag-feat,
  .ag-contact { grid-template-columns: 1fr; }
  .ag-hero-visual { min-height: 220px; order: -1; }
  .ag-feat-side { border-left: 0; border-top: 1px solid var(--lcd-line); }
  .ag-feat-metrics { grid-template-columns: repeat(3, 1fr); }
  .ag-grid { grid-template-columns: 1fr 1fr; }
  .ag-roster { grid-template-columns: repeat(3, 1fr); }
  .ag-prof-hero { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ag-page { padding: 18px 0 56px; }
  .ag-facts { grid-template-columns: 1fr; max-width: none; }
  .ag-grid { grid-template-columns: 1fr; }
  .ag-roster { grid-template-columns: repeat(2, 1fr); }
  .ag-feat-metrics { grid-template-columns: 1fr; }
  .ag-prof-hero { padding: 22px; }
  .ag-prof-avatar { width: 88px; height: 88px; border-radius: 20px; }
  .ag-contact { padding: 20px; }
  .ag-hero-cta .btn { width: 100%; }
}
