/* FOOTYUP · fourth style sheet — Checkout, Team, Search, Toast, Empty/loading, animations */

/* ════════════════════════════════════════════════════════════
   CHECKOUT
   ════════════════════════════════════════════════════════════ */
.checkout-page {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: calc(100vh - 73px);
  min-height: calc(100dvh - 73px);
  border-top: 1px solid var(--bone-faint);
}
.checkout-main {
  padding: 64px var(--pad-x);
  display: flex; flex-direction: column;
  gap: 40px;
}
.checkout-main h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.checkout-main h1 .italic { font-style: italic; color: var(--accent); font-weight: 800; }
.checkout-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--bone-faint);
  border-bottom: 1px solid var(--bone-faint);
}
.checkout-stepper .step {
  padding: 16px 18px;
  border-right: 1px solid var(--bone-faint);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-align: left;
  background: transparent;
  border-top: 0; border-bottom: 0; border-left: 0;
  position: relative;
  display: flex; align-items: center; gap: 12px;
}
.checkout-stepper .step:last-child { border-right: 0; }
.checkout-stepper .step .n {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border: 1px solid var(--bone-faint);
  color: var(--bone-dim);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0;
  flex-shrink: 0;
}
.checkout-stepper .step.active { color: var(--bone); }
.checkout-stepper .step.active .n {
  background: var(--accent); color: var(--accent-text); border-color: var(--accent);
}
.checkout-stepper .step.done .n {
  background: var(--bone); color: var(--ink); border-color: var(--bone);
}
.checkout-stepper .step.done .n::before { content: '✓'; }
.checkout-stepper .step.done .n > span { display: none; }

.checkout-form { display: flex; flex-direction: column; gap: 24px; max-width: 560px; }
.checkout-form h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 4px;
}
.checkout-form h2 .italic { font-style: italic; color: var(--accent); font-weight: 800; }
.checkout-form p { font-family: var(--font-sans); font-size: 14px; color: var(--bone-dim); line-height: 1.55; }

/* payment method radio cards (full-width) */
.pay-method-list { display: flex; flex-direction: column; }
.pay-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--bone-faint);
  border-bottom-width: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.18s, border-color 0.18s;
}
.pay-method:last-child { border-bottom-width: 1px; }
.pay-method:hover { background: rgba(244,241,235,0.04); }
.pay-method.on {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-color: var(--accent);
}
.pay-method.on + .pay-method { border-top-color: var(--accent); }
.pay-method .glyph {
  width: 48px; height: 36px;
  background: var(--bone-faint);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  flex-shrink: 0;
}
.pay-method.on .glyph { background: var(--accent); color: var(--accent-text); }
.pay-method .info { flex: 1; }
.pay-method .info b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone); /* readable on the active card; .is-soon mutes it below */
}
.pay-method .info small {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--bone-dim);
}
.pay-method .radio {
  width: 18px; height: 18px;
  border: 1px solid var(--bone-faint);
  border-radius: 50%;
  display: grid; place-items: center;
}
.pay-method.on .radio { border-color: var(--accent); }
.pay-method.on .radio::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* Upcoming / disabled methods — not selectable, with a "Soon" tag. Muted but
   still legible: dim the glyph + description, keep the label at readable
   contrast (a blanket opacity made the title unreadable on the dark surface). */
.pay-method.is-soon { cursor: not-allowed; }
.pay-method.is-soon:hover { background: transparent; }
.pay-method.is-soon .glyph { opacity: 0.45; }
.pay-method.is-soon .info b { color: var(--bone-dim); }
.pay-method.is-soon .info small { opacity: 0.7; }
.pay-method .soon-badge {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 8px;
}

/* ── Crypto payment panel ─────────────────────────────────────── */
.crypto-pay { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }

.crypto-assets { display: flex; flex-wrap: wrap; border: 1px solid var(--bone-faint); width: fit-content; }
.crypto-chip {
  appearance: none; background: transparent; border: 0;
  border-right: 1px solid var(--bone-faint);
  padding: 9px 16px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.03em; color: var(--bone-dim); cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.crypto-chip:last-child { border-right: 0; }
.crypto-chip:hover { color: var(--bone); }
.crypto-chip.on { background: var(--accent); color: var(--accent-text); }

.crypto-amount,
.crypto-addr { border: 1px solid var(--bone-faint); padding: 18px 20px; }
.crypto-amount .cl,
.crypto-addr .cl {
  display: block; margin-bottom: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-dim);
}
.crypto-amount .amt { font-family: var(--font-mono); display: flex; align-items: baseline; gap: 8px; }
.crypto-amount .amt b { font-size: 34px; font-weight: 700; color: var(--bone); letter-spacing: -0.01em; }
.crypto-amount .amt span { font-size: 15px; font-weight: 600; color: var(--bone-dim); }
.crypto-amount .rate { display: block; margin-top: 8px; font-family: var(--font-sans); font-size: 12px; color: var(--bone-dim); }

.crypto-addr .addr-row { display: flex; align-items: stretch; gap: 12px; }
.crypto-addr code {
  flex: 1; min-width: 0;
  font-family: var(--font-mono); font-size: 13px; color: var(--bone);
  word-break: break-all; line-height: 1.5;
  background: var(--surface-faint);
  border: 1px solid var(--bone-faint);
  padding: 10px 12px;
}
.copy-btn {
  appearance: none; flex-shrink: 0;
  background: transparent; border: 1px solid var(--bone); color: var(--bone);
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0 16px; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.crypto-addr .addr-meta {
  display: flex; flex-wrap: wrap; gap: 6px 20px; margin-top: 12px;
  font-family: var(--font-sans); font-size: 12px; color: var(--bone-dim);
}
.crypto-addr .addr-meta b { color: var(--bone); font-weight: 600; }

.crypto-warn {
  font-family: var(--font-sans); font-size: 12.5px; line-height: 1.5;
  color: var(--bone-dim);
  border-left: 2px solid var(--accent); padding-left: 12px;
}
.crypto-warn b { color: var(--bone); }

.crypto-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 13px; color: var(--bone-dim);
}
.crypto-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: cryptoPulse 1.6s ease-in-out infinite;
}
@keyframes cryptoPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.checkout-actions {
  margin-top: auto;
  display: flex; justify-content: space-between; gap: 12px;
}

/* checkout summary sidebar */
.checkout-aside {
  padding: 64px 48px;
  border-left: 1px solid var(--bone-faint);
  background: rgba(244,241,235,0.02);
  display: flex; flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 73px;
  align-self: flex-start;
  max-height: calc(100vh - 73px);
  overflow-y: auto;
}
.checkout-aside h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: flex; align-items: center; gap: 12px;
}
.checkout-aside h3::before {
  content: ''; width: 20px; height: 1px; background: var(--accent);
}
.summary-item {
  padding: 16px 0;
  border-top: 1px solid var(--bone-faint);
}
.summary-item:last-of-type { border-bottom: 1px solid var(--bone-faint); }
.summary-item .top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 14px;
}
.summary-item .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}
.summary-item .when {
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--bone-dim);
}
.summary-item .price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.summary-totals { display: flex; flex-direction: column; gap: 6px; padding-top: 12px; }
.summary-totals > div {
  display: flex; justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.summary-totals .total {
  margin-top: 8px; padding-top: 12px;
  border-top: 1px solid var(--bone-faint);
  color: var(--bone);
  font-weight: 900;
  font-size: 13px;
}
.summary-totals .total b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.summary-totals .total b .o { color: var(--accent); font-size: 18px; margin-right: 4px; }

/* checkout success */
.checkout-success {
  padding: 96px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bone-faint);
}
.checkout-success::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 30%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
  pointer-events: none;
}
.checkout-success .seal {
  width: 140px; height: 140px;
  border: 1px solid var(--accent);
  display: inline-grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -0.04em;
  color: var(--accent);
  position: relative;
  margin-bottom: 24px;
}
.checkout-success .seal::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed var(--accent);
  animation: nmSpin 18s linear infinite;
}
.checkout-success h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(64px, 8vw, 144px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  position: relative;
}
.checkout-success h1 .italic { font-style: italic; color: var(--accent); font-weight: 800; }
.checkout-success p {
  margin: 28px auto 0;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--bone-dim);
  max-width: 520px;
  line-height: 1.55;
  position: relative;
}
.checkout-success .ref {
  margin: 32px auto 0;
  display: inline-flex;
  padding: 10px 18px;
  border: 1px solid var(--bone-faint);
  font-family: 'JetBrains Mono';
  font-size: 13px;
  letter-spacing: 0.06em;
  position: relative;
}
.checkout-success .ref b { color: var(--accent); margin-left: 10px; }
.checkout-success .ctas {
  margin-top: 36px;
  display: inline-flex; gap: 12px;
  position: relative;
}

/* big confetti */
.confetti-burst {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.confetti-burst i {
  position: absolute;
  left: 50%; top: 30%;
  width: 6px; height: 14px;
  transform-origin: center;
  animation: confetti-fall 2.5s var(--d, 0s) cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes confetti-fall {
  0%   { transform: translate(-50%, -50%) rotate(0); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(720deg); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   TEAM / PRESS
   ════════════════════════════════════════════════════════════ */
.team-hero {
  padding: 80px var(--pad-x) 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: end;
  border-bottom: 1px solid var(--bone-faint);
}
.team-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(64px, 8.5vw, 144px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.team-hero h1 .italic { font-style: italic; color: var(--accent); font-weight: 800; }
.team-hero .lede {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--bone-dim);
  line-height: 1.55;
  max-width: 440px;
  padding-bottom: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bone-faint);
  border-left: 1px solid var(--bone-faint);
}
.team-card {
  padding: 36px 28px;
  border-right: 1px solid var(--bone-faint);
  border-bottom: 1px solid var(--bone-faint);
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
}
.team-card .portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--portrait-bg, linear-gradient(135deg, #2A2030, #1F2233));
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}
.team-card .portrait::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%);
  mix-blend-mode: screen;
}
.team-card .portrait .ini {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 88px;
  letter-spacing: -0.05em;
  color: rgba(244,241,235,0.18);
}
/* Real portrait photo fills the frame; drop the accent-tint overlay so the
   photo reads true (the ::after screen-blend is for the initials placeholder). */
.team-card .portrait .portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-card .portrait.has-photo::after { display: none; }
.team-card .role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.team-card .name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  line-height: 1.05;
}
.team-card .bio {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.5;
}
.team-card .meta {
  margin-top: auto;
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: var(--bone-dim);
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--bone-faint);
}

.advisors-section { padding: 80px var(--pad-x); border-bottom: 1px solid var(--bone-faint); }
.advisors-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 64px;
}
.advisor-row {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bone-faint);
}
.advisor-row:last-child { border-bottom: 0; }
.advisor-row .av {
  width: 56px; height: 56px;
  background: var(--av-bg);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--bone);
  overflow: hidden;
}
.advisor-row .av .av-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.advisor-row .who { flex: 1; }
.advisor-row .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.advisor-row .role {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--bone-dim);
  margin-top: 2px;
}

.press-section { padding: 80px var(--pad-x); border-bottom: 1px solid var(--bone-faint); }
.press-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--bone-faint);
  border-left: 1px solid var(--bone-faint);
}
.press-row {
  padding: 28px 24px;
  border-right: 1px solid var(--bone-faint);
  border-bottom: 1px solid var(--bone-faint);
  text-decoration: none;
  color: var(--bone);
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.2s;
}
.press-row:hover { background: rgba(244,241,235,0.04); }
.press-row .outlet {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.press-row .date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.press-row .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--bone);
}
.press-row .arrow {
  position: absolute;
  right: 24px; top: 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--bone-dim);
}
.press-row:hover .arrow { color: var(--accent); }

.press-pack {
  padding: 80px var(--pad-x);
  text-align: center;
  background: rgba(244,241,235,0.02);
}
.press-pack h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.press-pack h2 .italic { font-style: italic; color: var(--accent); font-weight: 800; }
.press-pack p {
  margin: 16px auto 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--bone-dim);
  max-width: 500px;
}
.press-pack .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ════════════════════════════════════════════════════════════
   SEARCH OVERLAY (⌘K)
   ════════════════════════════════════════════════════════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(5, 6, 12, 0.78);
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column;
  align-items: center;
  padding: 80px 24px 24px;
  animation: nmFadeIn 0.18s ease;
}
.search-box {
  width: 100%;
  max-width: 720px;
  background: var(--ink);
  border: 1px solid var(--bone-faint);
  display: flex; flex-direction: column;
  animation: searchSlideIn 0.25s cubic-bezier(.2,.7,.3,1);
}
@keyframes searchSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
}
.search-input-wrap {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bone-faint);
}
.search-input-wrap .ico { color: var(--bone-dim); }
.search-input-wrap input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--bone);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.005em;
  padding: 4px 0;
}
.search-input-wrap input::placeholder {
  color: var(--bone-dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
}
.search-input-wrap .kbd {
  padding: 4px 8px;
  border: 1px solid var(--bone-faint);
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: var(--bone-dim);
}
.search-results {
  max-height: min(60vh, 600px);
  overflow-y: auto;
}
.search-section {
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--bone-faint);
}
.search-section:last-child { border-bottom: 0; }
.search-section-title {
  padding: 8px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.search-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--bone);
  font-family: inherit;
  width: 100%;
  transition: background 0.15s;
}
.search-row:hover, .search-row.focus { background: rgba(244,241,235,0.06); }
.search-row .ico {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--bone-faint);
  color: var(--bone);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.search-row.focus .ico, .search-row:hover .ico { background: var(--accent); color: var(--accent-text); }
.search-row .title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.search-row .sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--bone-dim);
  margin-top: 2px;
}
.search-row .meta {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: var(--bone-dim);
}
.search-row .enter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
}
.search-empty {
  padding: 56px 24px;
  text-align: center;
}
.search-empty h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.search-empty p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--bone-dim);
  margin-top: 8px;
}
.search-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 24px;
  border-top: 1px solid var(--bone-faint);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.search-foot .kbds { display: flex; gap: 12px; }
.search-foot .kbds .kbd {
  padding: 2px 6px;
  border: 1px solid var(--bone-faint);
  font-family: 'JetBrains Mono';
  font-size: 10px;
  color: var(--bone-dim);
  letter-spacing: 0;
}

/* ════════════════════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════════════════════ */
.toast-stack {
  position: fixed;
  top: max(84px, calc(env(safe-area-inset-top, 0px) + 80px)); /* just under the sticky header */
  left: 50%;
  transform: translateX(-50%);
  z-index: 310; /* above every overlay (auth 100, onboarding 120/200, update bar 300) so errors are never hidden behind a modal backdrop */
  display: flex; flex-direction: column;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: min(440px, calc(100vw - 24px));
  pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--ink);
  border: 1px solid var(--bone-faint);
  border-left: 3px solid var(--accent);
  color: var(--bone);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: auto;
  animation: toastIn 0.25s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(-16px); }
}
.toast.success { border-left-color: var(--success, #2DD881); }
.toast.error   { border-left-color: var(--accent); }
.toast.info    { border-left-color: var(--bone-faint); }
.toast .ico {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
  flex-shrink: 0;
}
.toast.success .ico { background: color-mix(in srgb, var(--success, #2DD881) 18%, transparent); color: var(--success, #2DD881); }
.toast .body { flex: 1; }
.toast .body .title { font-weight: 900; font-size: 12px; }
.toast .body .desc {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone-dim);
  margin-top: 4px;
}
.toast .x {
  width: 22px; height: 22px;
  border: 0;
  background: transparent;
  color: var(--bone-dim);
  cursor: pointer;
  display: grid; place-items: center;
}
.toast .x:hover { color: var(--bone); }

/* ════════════════════════════════════════════════════════════
   EMPTY STATES (schedule no-results, etc)
   ════════════════════════════════════════════════════════════ */
.fu-empty {
  padding: 80px var(--pad-x);
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  text-align: center;
  border-bottom: 1px solid var(--bone-faint);
}
.fu-empty .frame {
  width: 110px; height: 110px;
  border: 1px solid var(--bone-faint);
  display: grid; place-items: center;
  margin-bottom: 12px;
  color: var(--bone-dim);
  position: relative;
}
.fu-empty .frame::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px dashed var(--bone-faint);
}
.fu-empty h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 0.95;
}
.fu-empty h3 .italic { font-style: italic; color: var(--accent); font-weight: 800; }
.fu-empty p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--bone-dim);
  max-width: 360px;
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   SKELETON LOADERS
   ════════════════════════════════════════════════════════════ */
.skel {
  display: block;
  background:
    linear-gradient(90deg,
      var(--bone-faint) 0%,
      rgba(244,241,235,0.10) 40%,
      var(--bone-faint) 80%);
  background-size: 400% 100%;
  animation: skelShimmer 1.4s ease-in-out infinite;
}
@keyframes skelShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.gc-skel {
  border: 1px solid var(--bone-faint);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.gc-skel .ph-img {
  aspect-ratio: 5 / 3;
  background: rgba(244,241,235,0.06);
}
.gc-skel .ph-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; }
.gc-skel .ph-line { height: 14px; }
.gc-skel .ph-line.lg { height: 22px; width: 80%; }
.gc-skel .ph-line.sm { height: 10px; width: 60%; }

/* ════════════════════════════════════════════════════════════
   SEARCH HEADER BUTTON (in fu-header)
   ════════════════════════════════════════════════════════════ */
.search-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--bone-faint);
  color: var(--bone-dim);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.search-trigger:hover { border-color: var(--bone); color: var(--bone); }
.search-trigger .kbd {
  padding: 1px 5px;
  border: 1px solid var(--bone-faint);
  font-family: 'JetBrains Mono';
  font-size: 9px;
  color: var(--bone-dim);
  letter-spacing: 0;
}

/* ════════════════════════════════════════════════════════════
   ANIMATIONS PASS
   ════════════════════════════════════════════════════════════ */
/* page transition — fade-up on route change */
.fu-page-fade {
  animation: pageFade 0.45s cubic-bezier(.2,.7,.3,1);
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(12px); }
}

/* reveal-on-scroll — toggled via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.40s; }

/* enhance hover transitions */
.gc, .included-card, .bento-tile, .promo-card, .contact-card, .team-card, .press-row, .gcard {
  transition: background 0.25s cubic-bezier(.2,.7,.3,1),
              transform 0.25s cubic-bezier(.2,.7,.3,1),
              border-color 0.25s cubic-bezier(.2,.7,.3,1);
}
.gc:hover, .contact-card:hover, .team-card:hover {
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .checkout-page { grid-template-columns: 1fr; }
  .checkout-aside { position: static; max-height: none; border-left: 0; border-top: 1px solid var(--bone-faint); padding: 40px var(--pad-x); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .advisors-list { grid-template-columns: 1fr; gap: 0 0; }
  .press-list { grid-template-columns: 1fr; }
  .team-hero { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 700px) {
  .checkout-stepper { grid-template-columns: repeat(2, 1fr); }
  .checkout-stepper .step:nth-child(odd) { border-right: 1px solid var(--bone-faint); }
  .checkout-stepper .step:nth-child(-n+2) { border-bottom: 1px solid var(--bone-faint); }
  .team-grid { grid-template-columns: 1fr; }
  .search-overlay { padding: 40px 16px 16px; }
  .search-box { max-width: none; }
  .search-input-wrap input { font-size: 18px; }
  .toast-stack {
    top: calc(env(safe-area-inset-top, 0px) + 68px);
    left: 12px; right: 12px;
    transform: none;
    width: auto;
    max-width: none;
    align-items: stretch;
  }
}

/* ── PHONE TIER ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Checkout layout */
  .checkout-main { padding: 40px 16px; gap: 32px; }
  .checkout-main h1 { font-size: clamp(40px, 8vw, 80px); }
  .checkout-form { max-width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .checkout-aside {
    padding: 24px 16px;
    position: static;
    border-top: 1px solid var(--bone-faint);
    border-left: 0;
  }
  .checkout-actions { flex-direction: column; }
  .checkout-actions button { width: 100%; min-height: 44px; }

  /* Checkout stepper → single column (override the 700px 2-col rule) */
  .checkout-stepper { grid-template-columns: 1fr; }
  .checkout-stepper .step {
    padding: 14px 12px;
    font-size: 9px;
    border-right: 0;
    border-bottom: 1px solid var(--bone-faint);
  }
  .checkout-stepper .step:nth-child(odd) { border-right: 0; }
  .checkout-stepper .step:last-child { border-bottom: 0; }
  .checkout-stepper .step .n { width: 22px; height: 22px; font-size: 10px; }

  /* Payment method cards — keep the horizontal row on phones (glyph chip ·
     label · radio). The old column-stack stretched the glyph into a full-width
     bar that read as broken. */
  .pay-method { padding: 14px 16px; gap: 14px; }
  .pay-method .glyph { width: 44px; height: 40px; flex-shrink: 0; }
  .pay-method .info b { font-size: 13px; }
  .pay-method .info small { font-size: 11px; }
  .pay-method .radio { width: 20px; height: 20px; }

  /* Search overlay */
  .search-overlay { padding: 60px 12px 12px; }
  .search-input-wrap { padding: 16px; gap: 12px; }
  .search-input-wrap input { font-size: 16px; }
  .search-input-wrap .kbd { padding: 2px 6px; font-size: 10px; }
  .search-row {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 10px 16px;
  }
  .search-row .ico { width: 32px; height: 32px; font-size: 9px; }
  .search-row .title { font-size: 13px; }
  .search-row .meta, .search-row .enter { display: none; }

  /* Toast — full-bleed, tighter */
  .toast-stack {
    top: calc(env(safe-area-inset-top, 0px) + 72px);
    left: 8px; right: 8px;
    max-width: calc(100vw - 16px);
  }
  .toast { padding: 12px 14px; font-size: 11px; }
  .toast .ico { width: 24px; height: 24px; }
}
