/* ================================================
   JON KINGSLEY · aka JFK — STYLESHEET
   ================================================
   Type:    Space Grotesk (display) + Space Mono (labels)
   Page:    #0e0e0e near-black
   Panels:  rounded cards on #181818 / #242424
   Flag:    J #00c8f0 cyan · F #f020a0 magenta · K #f0c800 yellow
   Brand from the JFK business-card system.
   ================================================ */


/* ------------------------------------------------
   TOKENS
   ------------------------------------------------ */

:root {
  --page:    #0e0e0e;
  --panel:   #181818;
  --panel-2: #242424;
  --ink:     #f0f0f0;
  --rule:    #262626;

  /* J·F·K flag */
  --cyan:    #00c8f0;
  --magenta: #f020a0;
  --yellow:  #f0c800;

  /* discipline accents */
  --video:   #2b8aff;
  --showctl: #ff9f0a;
  --rigging: #bf5af2;
  --sound:   #3ddc84;
  --pm:      #00e5cc;

  --display: "Space Grotesk", "SF Pro Display", system-ui, sans-serif;
  --mono:    "Space Mono", "SF Mono", Menlo, Consolas, monospace;

  --pad:    clamp(1rem, 2.5vw, 2rem);
  --inset:  clamp(2rem, 4vw, 4rem);
  --radius: 20px;
  --bar-w:  28px;
}


/* ------------------------------------------------
   RESET
   ------------------------------------------------ */

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--page);
  color: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a      { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
img    { display: block; max-width: 100%; }


/* ------------------------------------------------
   ACCESSIBILITY
   ------------------------------------------------ */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ------------------------------------------------
   SECTION-PAGE LAYOUT
   ------------------------------------------------ */

.console {
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: var(--pad);
  max-width: 1440px;
  margin: 0 auto;
}


/* ------------------------------------------------
   SECTION-PAGE HERO
   Flag bar runs down the left edge.
   ------------------------------------------------ */

.hero {
  position: relative;
  padding: 1.5rem 0 1rem calc(var(--bar-w) + 2rem);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5rem; bottom: 0.5rem;
  width: var(--bar-w);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    var(--cyan)    0%,     var(--cyan)    33.33%,
    var(--magenta) 33.33%, var(--magenta) 66.66%,
    var(--yellow)  66.66%, var(--yellow)  100%
  );
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.45);
  margin-bottom: 1.25rem;
}

.hero-name {
  font-weight: 700;
  font-size: clamp(3.25rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.aka {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  margin-top: 1.5rem;
}

.aka-word {
  font-family: var(--mono);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.75rem);
  letter-spacing: 0.04em;
}

.aka-mark {
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.aka-mark .j { color: var(--cyan); }
.aka-mark .f { color: var(--magenta); }
.aka-mark .k { color: var(--yellow); }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: rgba(240, 240, 240, 0.7);
  line-height: 1.65;
  margin-top: 1.75rem;
  max-width: 48ch;
}

.hero-nav {
  position: absolute;
  top: 0.5rem; right: 0;
  display: flex;
  gap: 1.25rem;
  font-family: var(--mono);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  letter-spacing: 0.04em;
}
.hero-nav a { color: rgba(240, 240, 240, 0.4); transition: color 150ms ease; }
.hero-nav a:hover { color: var(--cyan); }


/* ------------------------------------------------
   PANELS — shared base
   ------------------------------------------------ */

.panel {
  position: relative;
  border-radius: var(--radius);
  padding: var(--inset);
  background-color: var(--panel);
  overflow: hidden;
}

.panel-2 { background-color: var(--panel-2); }

.panel-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 47px 47px;
  pointer-events: none;
}

.panel > * { position: relative; z-index: 1; }

.panel-flag::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    var(--cyan)    0%,     var(--cyan)    33.33%,
    var(--magenta) 33.33%, var(--magenta) 66.66%,
    var(--yellow)  66.66%, var(--yellow)  100%
  );
}


/* ------------------------------------------------
   SECTION HEADS
   ------------------------------------------------ */

.section-head {
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.75rem;
}

.panel-statement {
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.panel-title {
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}


/* ------------------------------------------------
   IDENTITY LIST (section pages)
   ------------------------------------------------ */

.identity-list { display: flex; flex-direction: column; }

.identity-list li {
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--accent, var(--ink));
}

.identity-list .lede {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.4);
  margin-bottom: 1rem;
}


/* ------------------------------------------------
   NAV CARDS
   ------------------------------------------------ */

.nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pad);
}

.nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 1.75rem;
  border-radius: var(--radius);
  background-color: var(--panel);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color 150ms ease, transform 150ms ease;
}

.nav-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: var(--accent, var(--cyan));
}

.nav-card:hover { border-color: var(--accent, var(--cyan)); transform: translateY(-3px); }

.nav-card-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.4);
  margin-bottom: 0.5rem;
}

.nav-card-name {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav-card-arrow { color: var(--accent, var(--cyan)); margin-left: 0.4rem; }

.nav-card-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(240, 240, 240, 0.55);
  margin-top: 0.75rem;
}


/* ------------------------------------------------
   HIGHLIGHTS
   ------------------------------------------------ */

.highlight-list { border-top: 1px solid var(--rule); }

.highlight-list li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}

.highlight-where {
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  flex: 1;
}

.highlight-what {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.45);
  text-align: right;
}


/* ------------------------------------------------
   CURRENTLY (section pages)
   ------------------------------------------------ */

.currently {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.currently-title {
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--cyan);
  transition: opacity 150ms ease;
}
.text-link:hover { opacity: 0.7; }


/* ------------------------------------------------
   BIO (section pages)
   ------------------------------------------------ */

.bio-grid { display: grid; gap: 2rem; }

.bio-body p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  color: rgba(240, 240, 240, 0.7);
}
.bio-body p + p { margin-top: 1.1rem; }

.bio-credits {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.5);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.bio-photo {
  border-radius: 14px;
  border: 1px solid var(--rule);
  filter: grayscale(0.15) contrast(1.02);
  width: 100%;
}


/* ------------------------------------------------
   CONTACT (section pages)
   ------------------------------------------------ */

.contact-email {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--cyan);
  margin-top: 0.5rem;
  transition: opacity 150ms ease;
}
.contact-email:hover { opacity: 0.6; }

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(240, 240, 240, 0.55);
}
.contact-meta a { color: rgba(240, 240, 240, 0.75); transition: color 150ms ease; }
.contact-meta a:hover { color: var(--cyan); }
.contact-locale { color: var(--yellow); }


/* ------------------------------------------------
   INFO ROWS (section pages)
   ------------------------------------------------ */

.info-block + .info-block { margin-top: 1.5rem; }

.info-head {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.info-line {
  font-family: var(--mono);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  color: rgba(240, 240, 240, 0.62);
  letter-spacing: 0.02em;
}
.info-line .hl { color: var(--yellow); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.about-col h3 {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.875rem;
}
.about-col p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  color: rgba(240, 240, 240, 0.68);
}
.about-col p + p { margin-top: 1rem; }

.about-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.about-col li {
  position: relative;
  padding-left: 1.4rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: rgba(240, 240, 240, 0.68);
}
.about-col li::before { content: "›"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }


/* ------------------------------------------------
   BADGES
   ------------------------------------------------ */

.badge-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }

.badge {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  border: 2px solid rgba(240, 240, 240, 0.18);
  color: rgba(240, 240, 240, 0.7);
}


/* ------------------------------------------------
   BACK NAV
   ------------------------------------------------ */

.back-nav {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.4);
  margin-bottom: 1.5rem;
  transition: color 150ms ease;
}
.back-nav:hover { color: var(--cyan); }


/* ------------------------------------------------
   FOOTER — shared across all pages
   ------------------------------------------------ */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: clamp(56px, 8vw, 104px);
  padding: clamp(24px, 3vw, 32px) clamp(20px, 5vw, 64px) clamp(24px, 3vw, 32px);
  border-top: 1px solid #1f1f1f;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.4);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer a { transition: color 150ms ease; }
.footer a:hover { color: var(--cyan); }

.footer-dots { display: flex; gap: 0.5rem; align-items: center; }
.footer-dots span { width: 11px; height: 11px; border-radius: 50%; }
.d-j { background: var(--cyan); }
.d-f { background: var(--magenta); }
.d-k { background: var(--yellow); }

/* Section-page footer links (class used on section pages) */
.footer-areas { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; }
.footer-areas a { color: rgba(240, 240, 240, 0.55); }

/* Home-page footer links */
.footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; }
.footer-links a { color: rgba(240, 240, 240, 0.55); }


/* ------------------------------------------------
   SHARED RESPONSIVE
   ------------------------------------------------ */

@media (max-width: 768px) {
  .nav-grid    { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .highlight-list li { flex-direction: column; gap: 0.25rem; }
  .highlight-what { text-align: left; }
}

@media (max-width: 480px) {
  :root { --radius: 14px; --bar-w: 18px; }
}


/* ================================================
   HOME — JFK homepage (design handoff 2026-06-24)
   ================================================ */

/* Page shell */
.home-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 72px) clamp(20px, 5vw, 64px) clamp(36px, 5vw, 56px);
}

/* ── Masthead ── */
.home-masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.home-masthead-left {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.home-name {
  font-weight: 700;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #f0f0f0;
}

.home-aka {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42em;
  flex-shrink: 0;
}

.home-aka-word {
  font-family: var(--mono);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 0.04em;
  color: rgba(240, 240, 240, 0.82);
}

.home-aka-mark {
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 38px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.home-aka-mark .j { color: #00c8f0; }
.home-aka-mark .f { color: #f020a0; }
.home-aka-mark .k { color: #f0c800; }

/* ── Discipline nav pills ── */
.disc-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.pill {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  border: 1px solid;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.pill-magenta { color: #f020a0; border-color: rgba(240,32,160,0.45); }
.pill-magenta:hover { background: #f020a0; color: #0e0e0e; }
.pill-teal    { color: #00e5cc; border-color: rgba(0,229,204,0.45); }
.pill-teal:hover { background: #00e5cc; color: #0e0e0e; }
.pill-cyan    { color: #00c8f0; border-color: rgba(0,200,240,0.45); }
.pill-cyan:hover { background: #00c8f0; color: #0e0e0e; }
.pill-yellow  { color: #f0c800; border-color: rgba(240,200,0,0.45); }
.pill-yellow:hover { background: #f0c800; color: #0e0e0e; }

/* ── Flag rule ── */
.home-flag-rule {
  height: 4px;
  border-radius: 2px;
  margin-top: clamp(20px, 3vw, 30px);
  background: linear-gradient(90deg, #00c8f0 0 33.33%, #f020a0 33.33% 66.66%, #f0c800 66.66% 100%);
}

/* ── Hero ── */
.home-hero {
  position: relative;
  margin-top: clamp(48px, 8vw, 104px);
  overflow: hidden;
}

.home-grid-texture {
  position: absolute;
  inset: -40px 0 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 88%);
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  pointer-events: none;
}

.home-eyebrow {
  position: relative;
  font-family: var(--mono);
  font-size: clamp(14px, 1.7vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.42);
  margin: 0 0 clamp(14px, 2vw, 22px);
}

.home-role-link {
  position: relative;
  display: block;
  text-decoration: none;
}

@keyframes roleIn {
  from { opacity: 0; transform: translateY(0.42em) rotateX(-55deg); }
  to   { opacity: 1; transform: none; }
}

.home-role-word {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(24px, 7.6vw, 86px);
  line-height: 1;
  letter-spacing: -0.04em;
  min-height: 1em;
  white-space: nowrap;
  color: #00c8f0;
  transform-origin: 50% 0%;
  animation: roleIn 560ms cubic-bezier(.2, .7, .2, 1) both;
}

.home-lede {
  position: relative;
  max-width: 60ch;
  font-size: clamp(17px, 1.85vw, 25px);
  line-height: 1.6;
  color: rgba(240, 240, 240, 0.78);
  margin-top: clamp(24px, 3.5vw, 38px);
  text-wrap: pretty;
}

.lede-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 150ms ease;
}
.lede-link:hover { opacity: 0.7; }
.lede-cyan    { color: #00c8f0; }
.lede-magenta { color: #f020a0; }
.lede-yellow  { color: #f0c800; }

/* ── Separator ── */
.home-sep {
  height: 1px;
  background: #262626;
  margin-top: clamp(48px, 7vw, 88px);
}

/* ── Who? card ── */
.who-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  background: #151515;
  border: 1px solid #262626;
  border-radius: 18px;
  overflow: hidden;
  align-items: stretch;
  margin-top: clamp(52px, 8vw, 96px);
}

.who-text {
  padding: clamp(28px, 3.6vw, 52px);
  display: flex;
  flex-direction: column;
}

.who-heading {
  font-family: var(--mono);
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #00c8f0;
  margin: 0 0 clamp(20px, 2.8vw, 30px);
}

.who-lede {
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: #f0f0f0;
  margin: 0 0 1.3rem;
  text-wrap: pretty;
}

.who-body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: rgba(240, 240, 240, 0.62);
  text-wrap: pretty;
}

.who-photo-col {
  position: relative;
  min-height: 280px;
  border-left: 1px solid #262626;
}

.who-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(0.08) contrast(1.02);
}

/* ── Currently working on ── */
.currently-section { margin-top: clamp(40px, 6vw, 72px); }

.currently-heading {
  font-family: var(--mono);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00c8f0;
  margin: 0 0 clamp(16px, 2.2vw, 24px);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.tile {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  background: #101010;
  border: 1px solid #262626;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
a.tile { transition: border-color 150ms ease, transform 150ms ease; }
a.tile:hover { transform: translateY(-3px); }

.tile-body {
  flex: 1;
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tile-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.72rem clamp(16px, 1.8vw, 22px);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Tile 1: Standby (lime) */
.tile-standby:hover { border-color: #cbff00; }

.standby-mark {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
.standby-caret { font-weight: 700; font-size: 1.5em; color: #cbff00; }
.standby-name  { font-weight: 700; font-size: 1.2em; letter-spacing: -0.02em; color: #cbff00; }
.standby-rest  { font-weight: 400; color: rgba(203, 255, 0, 0.7); }

.tile-footer-standby { background: #cbff00; color: #161616; }

/* Tile 2: Rise and Grind (magenta) */
.tile-rag:hover { border-color: #f020a0; }

.tile-title {
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #f0f0f0;
}

.tile-footer-rag { background: #f020a0; color: #161616; }

/* Shared tile body text */
.tile-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(240, 240, 240, 0.6);
}

/* Tile 3: TBD (muted) */
.tile-body-tbd {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-tbd-mark {
  font-weight: 700;
  font-size: clamp(44px, 6vw, 68px);
  letter-spacing: 0.12em;
  color: rgba(240, 240, 240, 0.32);
}

.tile-footer-tbd { background: #242424; color: rgba(240, 240, 240, 0.45); }


/* ================================================
   HOME RESPONSIVE
   ================================================ */

@media (max-width: 780px) {
  .home-masthead { align-items: flex-start; }
  .disc-nav { flex-direction: row; flex-wrap: wrap; align-items: flex-start; justify-content: flex-end; }
  .who-card { grid-template-columns: 1fr; }
  .who-photo-col { min-height: 260px; border-left: none; border-top: 1px solid #262626; }
  .tile-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .home-role-word { animation: none; }
}
