@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;700&display=swap');

:root {
  --bg-color: #F9F6F0;
  --bg-color-alt: #F2EBE1;
  --primary-color: #2C1A11;
  --primary-light: #5C3D2E;
  --accent-color: #FFEEDB;
  --accent-glow: #FCE8D3;
  --surface-color: #FFFFFF;
  --text-dark: #2C1A11;
  --text-grey: #7E7C73;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(44, 26, 17, 0.05);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--primary-color);
}

/* Typography */
.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--primary-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(249, 246, 240, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 26, 17, 0.03);
  transition: all 0.3s ease;
}

.brand {
  font-size: 2.2rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-color);
  box-shadow: 0 10px 30px rgba(44, 26, 17, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(44, 26, 17, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, var(--surface-color) 0%, var(--bg-color) 100%);
}

.hero-content {
  flex: 1;
  z-index: 2;
  padding-right: 2rem;
}

.hero-visual {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  z-index: 2;
  min-height: 650px;
  position: relative;
}

/* Ambient Blobs */
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.7;
}

.blob-1 {
  background: var(--accent-glow);
  width: 700px;
  height: 700px;
  top: -150px;
  right: -100px;
  animation: float 12s ease-in-out infinite alternate;
}

.blob-2 {
  background: #EED7C5;
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: 5%;
  animation: float 15s ease-in-out infinite alternate-reverse;
}

/* 3D Phone Mockup */
.phone-mockup-wrapper {
  position: relative;
  width: 320px;
  height: 650px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

.phone-mockup {
  position: absolute;
  inset: 0;
  background: var(--surface-color);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    -30px 30px 80px rgba(44, 26, 17, 0.15),
    inset 0 0 0 4px #e5e5e5,
    inset 0 0 20px rgba(0,0,0,0.05);
  transform-style: preserve-3d;
  transform: translateZ(20px);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transform: translateZ(10px);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #F9F6F0;
  pointer-events: none;
}

/* Dynamic Floating Badges */
.floating-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  font-weight: 500;
  color: var(--primary-color);
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-1 {
  top: 15%;
  left: -100px;
  transform: translateZ(80px);
  animation: bob 5s ease-in-out infinite;
}

.badge-2 {
  bottom: 25%;
  right: -80px;
  transform: translateZ(100px);
  animation: bob 6s ease-in-out infinite 1.5s;
}

/* AI Highlight Section (Interactive Split Layout) */
.ai-section {
  padding: 7rem 5%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.ai-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.ai-text-content {
  text-align: left;
}

.ai-badge {
  display: inline-block;
  background: rgba(255, 238, 219, 0.15);
  color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 238, 219, 0.2);
}

.ai-text-content h2 {
  color: var(--accent-color);
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-family: 'DM Serif Display', serif;
}

.ai-text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.ai-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ai-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  color: inherit;
  font: inherit;
  appearance: none;
}

.ai-feature-card:hover, .ai-feature-card.active {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent-color);
  transform: translateX(6px);
}

.ai-feature-card .af-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 238, 219, 0.15);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-feature-card h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.ai-feature-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.ai-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.ai-visual-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.showcase-phone-card {
  width: 290px;
  height: 610px;
  background: #1E100A;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 
    0 25px 60px rgba(44, 26, 17, 0.3),
    inset 0 0 0 2px rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
}

.showcase-phone-card .phone-screen {
  width: 100%;
  height: 100%;
  background: #F9F6F0;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.showcase-phone-card .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #F9F6F0;
  display: block;
}

@media (max-width: 900px) {
  .ai-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ai-text-content {
    text-align: center;
  }
}/* Bento Box Features Section */
.features {
  padding: 8rem 5%;
  background: var(--bg-color);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-item {
  background: var(--surface-color);
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(44, 26, 17, 0.04);
  box-shadow: 0 10px 40px rgba(44, 26, 17, 0.03);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44, 26, 17, 0.08);
}

.bento-item.large {
  grid-column: span 2;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-color-alt);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.bento-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bento-item p {
  color: var(--text-grey);
  font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0 10rem;
  background: var(--bg-color);
}

.ai-phones-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  margin: 2rem auto 0;
}

.ai-phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 300px;
}

.ai-phone-wrapper {
  position: relative;
  width: 280px;
  height: 570px;
}

.ai-card-caption {
  text-align: center;
}

.ai-card-caption h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.ai-card-caption p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.app-screen-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
}

.app-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 26, 17, 0.95) 0%, rgba(44, 26, 17, 0.6) 70%, transparent 100%);
  padding: 1.8rem 1.2rem 1.2rem;
  color: #FFFFFF;
  text-align: center;
}

.frame-overlay h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.frame-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.carousel {
  display: flex;
  gap: 2rem;
  padding: 2rem 5vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  scroll-snap-align: center;
  flex: 0 0 310px;
  height: 640px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(44, 26, 17, 0.15);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 8px solid var(--surface-color);
  background: #000;
}

.carousel-item:hover {
  transform: scale(1.03) translateY(-10px);
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--bg-color);
  padding: 6rem 5% 4rem;
  text-align: center;
}

.footer-brand {
  color: var(--accent-color);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 40px) scale(1.1); }
}

@keyframes bob {
  0%, 100% { transform: translateZ(80px) translateY(0); }
  50% { transform: translateZ(80px) translateY(-20px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-item.large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 10rem;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 4rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 11vw, 3.5rem);
  }

  .phone-mockup-wrapper {
    width: min(320px, 78vw);
    height: min(650px, 164vw);
  }
  
  .badge-1, .badge-2 {
    display: none;
  }
  
  .ai-visual-showcase {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Rendered App UI Screens (No Static Images)
   ========================================================================== */
.app-screen {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

.app-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1rem 0.6rem;
  background: var(--surface-color);
  border-bottom: 1px solid rgba(44, 26, 17, 0.05);
  z-index: 10;
}

.app-screen-header .app-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-avatar-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.verified-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0D9488;
  color: #fff;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid #fff;
}

.app-screen-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.app-screen-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--surface-color);
  border-top: 1px solid rgba(44, 26, 17, 0.06);
  padding: 0.6rem 0;
  z-index: 10;
}

.screen-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-grey);
}

.screen-nav-item.active {
  color: var(--primary-color);
}

/* Screen 1: Discovery Radar UI */
.screen-radar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.radar-title-pill {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.radar-title-pill .green-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.radar-sonar-rings {
  position: relative;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(44, 26, 17, 0.2);
}

.radar-ring.r3 { width: 170px; height: 170px; animation: pulse-ring 4s ease-in-out infinite; }
.radar-ring.r2 { width: 120px; height: 120px; border-style: solid; border-color: rgba(44, 26, 17, 0.15); }
.radar-ring.r1 { width: 75px; height: 75px; border-style: solid; border-color: var(--primary-light); background: rgba(238, 215, 197, 0.3); }

.radar-center-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(44, 26, 17, 0.3);
  z-index: 2;
}

.radar-floating-icon {
  position: absolute;
  background: #fff;
  border: 1px solid var(--accent-glow);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.r-icon1 { top: 15px; left: 25px; }
.r-icon2 { bottom: 20px; right: 20px; }

.screen-cta-btn {
  width: 100%;
  background: var(--primary-color);
  color: var(--bg-color);
  padding: 0.75rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(44, 26, 17, 0.2);
}

/* Screen 2: Activities UI */
.act-search-bar {
  background: var(--surface-color);
  border: 1px solid rgba(44, 26, 17, 0.08);
  border-radius: 14px;
  padding: 0.55rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-grey);
}

.act-pills-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.act-pills-row::-webkit-scrollbar {
  display: none;
}

.act-cat-pill {
  background: var(--surface-color);
  border: 1px solid rgba(44, 26, 17, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
}

.act-cat-pill.active {
  background: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
}

.act-card {
  background: var(--surface-color);
  border-radius: 18px;
  padding: 0.85rem;
  border: 1px solid rgba(44, 26, 17, 0.06);
  box-shadow: 0 4px 16px rgba(44, 26, 17, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.act-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.act-host-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.75rem;
}

.act-time-badge {
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.act-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  line-height: 1.2;
}

.act-card-loc {
  font-size: 0.7rem;
  color: var(--text-grey);
  display: flex;
  align-items: center;
  gap: 4px;
}

.act-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px dashed rgba(44, 26, 17, 0.08);
}

.act-count-pill {
  font-size: 0.65rem;
  font-weight: 700;
  color: #0D9488;
  background: #E6FFFA;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

/* Screen 3: Chat UI */
.chat-security-banner {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.chat-bubble-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.chat-bubble {
  max-width: 82%;
  padding: 0.65rem 0.8rem;
  border-radius: 16px;
  font-size: 0.75rem;
  line-height: 1.35;
  position: relative;
}

.chat-bubble.incoming {
  background: var(--surface-color);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(44, 26, 17, 0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.chat-bubble.outgoing {
  background: var(--primary-color);
  color: var(--bg-color);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-trans-tag {
  font-size: 0.6rem;
  color: var(--text-grey);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.chat-input-bar {
  background: var(--surface-color);
  border-radius: 999px;
  border: 1px solid rgba(44, 26, 17, 0.08);
  padding: 0.4rem 0.6rem 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-grey);
}

.chat-send-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Screen 4: Profile UI */
.prof-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(44, 26, 17, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.prof-avatar-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFEEDB 0%, #FCE8D3 100%);
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.prof-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  margin-top: 4px;
}

.prof-badges-row {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}

.badge-chip {
  background: var(--bg-color-alt);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 3px;
}

.badge-chip.verified {
  background: #E6FFFA;
  color: #0D9488;
}

.prof-section-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 0.75rem;
  border: 1px solid rgba(44, 26, 17, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.75rem;
}

.prof-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 0.9; }
}
