/* ============================================
   ADVISING BY IVAN — Dark Luxury Landing Page
   Premium SaaS meets personal brand.
   ============================================ */

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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-light: #f0f0ee;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: rgba(255,255,255,0.5);
  --text-dark: #111111;
  --text-dark-secondary: #444444;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: #e0e0dc;
  --red: rgba(239,68,68,0.8);
  --green: rgba(34,197,94,0.8);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.15); }
  50% { box-shadow: 0 0 30px rgba(201, 168, 76, 0.3); }
}

/* ---- LAYOUT ---- */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.section-sub {
  max-width: 600px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 56px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-white:hover {
  background: #f0f0ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), padding var(--transition);
}
.nav.nav-scrolled {
  border-bottom-color: var(--border-dark);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition);
}
.nav.nav-scrolled .nav-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-glow 2s ease-in-out infinite;
}
.hero-headline {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
}
.stat { flex: 1; text-align: center; }
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 1px;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: var(--border-dark);
  align-self: stretch;
  flex-shrink: 0;
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.trust-line {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.nvidia-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.nvidia-badge {
  position: absolute;
  bottom: -12px;
  left: 16px;
  right: 16px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-glow);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Telegram Phone Mockup ── */
.tg-phone {
  width: 280px;
  background: #000;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  margin: 0 auto;
}
.tg-screen {
  background: #1c1c1e;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
}
.tg-header {
  background: #1c1c1e;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tg-back { color: #2aabee; font-size: 18px; font-weight: 400; }
.tg-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg,#2aabee,#005e8b);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.tg-name { color: #fff; font-size: 14px; font-weight: 600; }
.tg-status { color: #8e8e93; font-size: 10px; margin-top: 1px; }
.tg-info { display: flex; flex-direction: column; }
.tg-messages {
  flex: 1; padding: 10px 8px;
  display: flex; flex-direction: column; gap: 5px; overflow: hidden;
}
.tg-date { text-align: center; color: #8e8e93; font-size: 10px; margin-bottom: 6px; }
.tg-msg { display: flex; gap: 5px; align-items: flex-end; }
.tg-sent { flex-direction: row-reverse; }
.tg-agent-av {
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 9px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tg-bubble {
  max-width: 190px; padding: 7px 10px; border-radius: 14px;
  font-size: 11.5px; line-height: 1.4; position: relative;
  display: flex; flex-direction: column; gap: 2px;
}
.tg-sent .tg-bubble { background: #2aabee; color: #fff; border-bottom-right-radius: 3px; }
.tg-recv .tg-bubble { background: #2c2c2e; color: #fff; border-bottom-left-radius: 3px; }
.tg-agent-name { font-size: 10px; font-weight: 700; color: #2aabee; margin-bottom: 2px; }
.tg-time { font-size: 9px; opacity: 0.55; text-align: right; margin-top: 2px; }
.tg-input-bar {
  background: #1c1c1e; border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 10px; display: flex; align-items: center; gap: 7px;
}
.tg-input-box {
  flex: 1; background: #2c2c2e; border-radius: 18px;
  padding: 7px 12px; color: #8e8e93; font-size: 12px;
}
.tg-send {
  width: 28px; height: 28px; background: #2aabee; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px;
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,22,22,0.95);
  border: 1px solid var(--border-dark);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.hero-float-1 { top: 20px; left: -24px; }
.hero-float-2 { bottom: 60px; right: -24px; animation-delay: 1.5s; }
.float-dot {
  width: 8px; height: 8px; background: #22c55e;
  border-radius: 50%; flex-shrink: 0;
}
.float-dot-gold { background: var(--gold); }

/* ============================================
   REALITY — light section
   ============================================ */
.reality {
  padding: 120px 0;
  background: var(--bg-light);
}
.reality .section-title {
  color: var(--text-dark);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.reality-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.reality-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid;
  background: var(--white);
}
.reality-card.bad {
  border-color: rgba(239,68,68,0.2);
}
.reality-card.good {
  border-color: rgba(34,197,94,0.2);
}
.reality-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bad .reality-card-label { color: rgba(239,68,68,0.8); }
.good .reality-card-label { color: rgba(34,197,94,0.8); }
.reality-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reality-list li {
  font-size: 14px;
  color: var(--text-dark-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.bad .reality-list li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: rgba(239,68,68,0.7);
  font-size: 12px;
  top: 2px;
}
.good .reality-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: rgba(34,197,94,0.8);
  font-size: 12px;
  top: 2px;
}

/* ============================================
   HOW IT WORKS — dark section
   ============================================ */
.how {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.how .section-title { color: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.step-connector {
  width: 1px;
  height: 32px;
  background: var(--border-dark);
  margin-left: 23px;
  flex-shrink: 0;
}
.how-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

/* ============================================
   TEAM — dark section
   ============================================ */
.team {
  padding: 120px 0;
  background: var(--bg-primary);
}
.team .section-title { color: var(--white); text-align: center; }
.team .section-title { margin-left: auto; margin-right: auto; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--gold-glow);
}
.team-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.team-avatar.marco { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.team-avatar.outreach { background: var(--gold); }
.team-avatar.followup { background: linear-gradient(135deg, #22c55e, #16a34a); }
.team-avatar.valeria { background: linear-gradient(135deg, #c9a84c, #a87a2a); }
.team-card-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.team-card-info .team-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   DASHBOARD — dark section
   ============================================ */
.dashboard {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.dashboard .section-title { color: var(--white); text-align: center; }
.dashboard .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.dashboard-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border-dark);
  object-fit: cover;
}

/* ============================================
   WHO IT'S FOR — dark section
   ============================================ */
.who {
  padding: 120px 0;
  background: var(--bg-primary);
}
.who .section-title { color: var(--white); }
.who .section-sub { color: var(--text-secondary); margin-bottom: 40px; }
.who-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill {
  display: inline-block;
  background: var(--bg-card);
  border: 1.5px solid var(--border-dark);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: default;
}
.pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ============================================
   ABOUT — dark section
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.about .section-title { color: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-headshot-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.about-headshot {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gold);
  display: block;
}
.about-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border-dark);
  border-radius: 50px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.about-ig:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}
.about-control {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

/* ============================================
   FINAL CTA — gold section
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-section > .section-inner { position: relative; }
.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-content p {
  font-size: 17px;
  color: rgba(17,17,17,0.8);
  margin-bottom: 36px;
  line-height: 1.65;
}
.cta-sub {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(17,17,17,0.5);
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 38px; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-float-1 { left: 0; top: -16px; }
  .hero-float-2 { right: 0; bottom: 40px; }

  .reality-cards { grid-template-columns: 1fr; }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .how-visual { order: -1; }

  .team-grid { grid-template-columns: 1fr; max-width: 480px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 90px 0 48px; }
  .hero-headline { font-size: 30px; }
  .hero-sub { font-size: 15px; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
  .stat-num { font-size: 26px; }

  .tg-phone { width: 260px; }
  .tg-screen { height: 440px; }

  .reality, .how, .team, .dashboard, .who, .about { padding: 80px 0; }

  .section-title { font-size: 26px; margin-bottom: 16px; }

  .cta-section { padding: 64px 0; }
  .cta-content h2 { font-size: 26px; }
  .cta-content p { font-size: 15px; }

  .nav-inner { padding: 16px 24px; }
  .nav.nav-scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }
}

@media (max-width: 375px) {
  .section-inner { padding: 0 16px; }
  .nav-inner { padding: 16px; }
  .hero-headline { font-size: 26px; }
  .btn-primary, .btn-white { font-size: 14px; padding: 13px 22px; }
  .tg-phone { width: 240px; }
  .tg-screen { height: 400px; }
  .tg-bubble { max-width: 170px; font-size: 11px; }
}

/* Team avatar photos */
.team-avatar-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold, #c9a84c);
  flex-shrink: 0;
}
.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.agent-role { font-size: 0.75rem; font-weight: 500; color: var(--gold, #c9a84c); letter-spacing: 0.08em; text-transform: uppercase; margin-left: 6px; }