@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #132a4c;
  --navy-deep: #0c1d38;
  --orange: #d9622c;
  --orange-light: #f2a06b;
  --paper: #faf8f4;
  --line: #e4ddd0;
  --ink: #1c1c1c;
  --muted: #6b6a66;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: width .1s linear;
}

/* FLUID BACKGROUND BLOBS */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.blob-orange {
  background: radial-gradient(circle at 30% 30%, rgba(217, 98, 44, .35), rgba(217, 98, 44, 0) 70%);
}

.blob-navy {
  background: radial-gradient(circle at 60% 40%, rgba(19, 42, 76, .28), rgba(19, 42, 76, 0) 70%);
}

.blob-sky {
  background: radial-gradient(circle at 40% 40%, rgba(159, 190, 222, .35), rgba(159, 190, 222, 0) 70%);
}

@keyframes drift-a {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -24px) scale(1.08);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes drift-b {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-26px, 20px) scale(1.05);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.drift-a {
  animation: drift-a 14s ease-in-out infinite;
}

.drift-b {
  animation: drift-b 18s ease-in-out infinite;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, transform .4s cubic-bezier(.2, .7, .2, 1), opacity .4s ease;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

nav.nav-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

nav.scrolled {
  box-shadow: 0 6px 24px rgba(19, 42, 76, .08);
}

.navlinks a {
  position: relative;
}

.navlinks a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .3s cubic-bezier(.2, .7, .2, 1);
}

.navlinks a:hover::after {
  width: 100%;
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--navy);
}

.brand span {
  color: var(--orange);
}

.navlinks {
  display: flex;
  gap: 36px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
}

.navlinks a {
  opacity: .75;
  transition: opacity .2s;
}

.navlinks a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid var(--navy);
  padding: 9px 18px;
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .25s cubic-bezier(.2, .7, .2, 1);
  display: inline-block;
}

.nav-cta:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19, 42, 76, .25);
}

/* HERO */
.hero {
  position: relative;
  padding: 96px 0 280px;
  overflow: hidden;
}

.hero-mountains {
  position: absolute;
  inset: auto -5% -2px -5%;
  width: 110%;
  height: 240px;
  pointer-events: none;
}

.mountain-sway {
  position: absolute;
  inset: 0;
}

.sway-back {
  animation: sway-back 10s ease-in-out infinite;
}

.sway-front {
  animation: sway-front 7.5s ease-in-out infinite;
}

@keyframes sway-back {

  0%,
  100% {
    transform: translateX(-16px);
  }

  50% {
    transform: translateX(16px);
  }
}

@keyframes sway-front {

  0%,
  100% {
    transform: translateX(22px);
  }

  50% {
    transform: translateX(-22px);
  }
}

.hero-mountains .layer-back {
  opacity: .45;
  transition: transform .2s ease-out;
}

.hero-mountains .layer-front {
  opacity: .85;
  transition: transform .2s ease-out;
}

.hero-mountains.paused .sway-back,
.hero-mountains.paused .sway-front {
  animation-play-state: paused !important;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 26px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
  transform-origin: left center;
  animation: line-grow 1.4s cubic-bezier(.2, .7, .2, 1) .2s both;
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.hero h1 {
  font-size: 3.05rem;
  line-height: 1.14;
  color: var(--navy-deep);
  letter-spacing: -.01em;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  font-family: 'Source Serif 4', serif;
}

.hero-meta {
  display: flex;
  gap: 38px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta .label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.hero-meta .value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.hero-ctas {
  margin-top: 44px;
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: var(--navy-deep);
  color: #fff;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .3s ease, transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(217, 98, 44, .3);
}

.btn-ghost {
  padding: 14px 24px;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy-deep);
  border-bottom: 1px solid var(--navy-deep);
  display: inline-block;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1), color .3s ease, border-color .3s ease;
}

.btn-ghost:hover {
  transform: translateX(4px);
  color: var(--orange);
  border-color: var(--orange);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  opacity: 0;
  animation: fade-up .9s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-content .eyebrow {
  animation-delay: .05s;
}

.hero-content h1 {
  animation-delay: .18s;
}

.hero-content .hero-sub {
  animation-delay: .32s;
}

.hero-content .hero-meta {
  animation-delay: .46s;
}

.hero-content .hero-ctas {
  animation-delay: .6s;
}

/* THEMES */
.section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.kicker {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

.section-head h2 {
  font-size: 2.1rem;
  color: var(--navy-deep);
  line-height: 1.25;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.themes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  background: transparent;
  border: none;
}

.theme-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), box-shadow .4s ease;
  display: flex;
  flex-direction: column;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: width .45s cubic-bezier(.2, .7, .2, 1);
}

.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(19, 42, 76, .09);
  z-index: 1;
}

.theme-card:hover::before {
  width: 100%;
}

.theme-num {
  font-family: 'Source Serif 4', serif;
  font-size: .8rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .08em;
}

.theme-card h3 {
  font-size: 1.22rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
  line-height: 1.35;
}

.theme-card p {
  font-size: .91rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 18px 0;
}

.theme-q-box {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.theme-q-title {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 10px;
}

.theme-q-list {
  margin: 0;
  padding-left: 18px;
  font-size: .85rem;
  color: #4a4945;
  line-height: 1.6;
}

.theme-q-list li {
  margin-bottom: 8px;
}

.theme-q-list li:last-child {
  margin-bottom: 0;
}

/* SPEAKERS */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 24px;
}

@media(max-width:820px) {
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.speaker {
  text-align: center;
}

.speaker .avatar-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 3px;
  background: conic-gradient(from 0deg, var(--orange), var(--orange-light), #9fbede, var(--navy), var(--orange));
  background-size: 200% 200%;
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), box-shadow .4s ease, background-position .6s ease;
  box-shadow: 0 6px 16px rgba(19, 42, 76, .08);
}

.speaker img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--paper);
}

.speaker:hover .avatar-ring {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 30px rgba(217, 98, 44, .25);
  background-position: 100% 100%;
}

.speaker .name {
  margin-top: 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.speaker .role {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 2px;
}

.speaker .speaker-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(217, 98, 44, .08);
  border: 1px solid rgba(217, 98, 44, .25);
  padding: 2px 8px;
  border-radius: 12px;
}

@media (min-width: 821px) {
  .speakers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .speakers-grid .speaker {
    flex: 0 1 calc(20% - 24px);
    max-width: 190px;
    min-width: 160px;
  }
}

/* INVITED / GUEST SPEAKER SEPARATE ROW */
.guest-speaker-block,
.invited-speaker-block {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px dashed var(--line);
  text-align: center;
}

.guest-speaker-divider,
.invited-speaker-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.guest-speaker-divider span,
.invited-speaker-divider span {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(217, 98, 44, .06);
  border: 1px solid rgba(217, 98, 44, .22);
  padding: 4px 16px;
  border-radius: 20px;
}

.guest-speaker-row,
.invited-speaker-row {
  display: flex;
  justify-content: center;
}

.guest-speaker-row .speaker,
.invited-speaker-row .speaker {
  max-width: 220px;
}

/* LOGISTICS */
.logistics {
  background: var(--navy-deep);
  color: #f4f1ea;
  border-radius: 2px;
  padding: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media(max-width:720px) {
  .logistics {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
}

.logistics h4 {
  font-family: 'Source Serif 4', serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange-light);
  margin-bottom: 12px;
  font-weight: 600;
}

.logistics .big {
  font-size: 1.4rem;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
}

.logistics .small {
  margin-top: 8px;
  font-size: .86rem;
  color: #c7c2b6;
  line-height: 1.6;
}

/* PARTNERS */
.partners {
  border-top: 1px solid var(--line);
  padding: 64px 0;
  text-align: center;
}

.partners .kicker {
  display: block;
  margin-bottom: 32px;
}

.partners img {
  max-width: 420px;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: transform .4s cubic-bezier(.2, .7, .2, 1);
}

.partners img:hover {
  transform: scale(1.03);
}

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

footer a {
  color: var(--navy-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
}

.note {
  display: inline-block;
  margin-top: 56px;
  padding: 10px 16px;
  background: #fff3e6;
  border: 1px dashed var(--orange-light);
  color: #8a5326;
  font-size: .78rem;
  border-radius: 2px;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE MEDIA QUERIES FOR MOBILE */
@media (max-width: 820px) {
  .wrap {
    padding: 0 20px;
  }

  /* NAV */
  nav .wrap {
    height: auto;
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .navlinks {
    gap: 18px;
    font-size: 0.84rem;
    width: 100%;
    order: 3;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }

  /* HERO */
  .hero {
    padding: 56px 0 80px;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .hero-sub {
    font-size: 0.98rem;
    margin-top: 16px;
  }

  .hero-meta {
    gap: 20px 28px;
    margin-top: 28px;
  }

  .hero-ctas {
    margin-top: 32px;
    gap: 12px;
  }

  /* SECTIONS */
  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: 1.65rem;
  }

  /* THEMES GRID */
  .themes {
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;
    border: none;
  }

  .theme-card {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 32px 24px;
  }

  /* SPEAKERS GRID */
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 16px;
  }

  /* NAV */
  .brand {
    font-size: 0.98rem;
  }

  .nav-cta {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .navlinks {
    gap: 14px;
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  /* HERO */
  .hero {
    padding: 40px 0 64px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* SPEAKERS GRID */
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }

  .speaker .avatar-ring {
    width: 80px;
    height: 80px;
  }

  /* LOGISTICS */
  .logistics {
    padding: 32px 18px;
    gap: 24px;
  }

  .logistics .big {
    font-size: 1.2rem;
  }

  /* FOOTER */
  footer .wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

/* ==========================================================================
   CHATBOT & FEEDBACK WIDGET
   ========================================================================== */

/* Floating Launcher Button */
.chat-launcher {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 14px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  border: 1px solid rgba(242, 160, 107, 0.35);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(12, 29, 56, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease, background 0.3s ease;
}

.chat-launcher:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(217, 98, 44, 0.35), 0 4px 12px rgba(12, 29, 56, 0.2);
  border-color: var(--orange-light);
}

.chat-launcher:active {
  transform: translateY(-1px) scale(0.99);
}

.chat-launcher-bubble {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
}

.chat-launcher .chat-icon-close {
  display: none;
}

.chat-launcher.is-active .chat-icon-msg {
  display: none;
}

.chat-launcher.is-active .chat-icon-close {
  display: block;
}

.chat-launcher.is-active .chat-launcher-ping {
  display: none;
}

.chat-launcher-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f4f1ea;
}

.chat-launcher-ping {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 2px var(--navy-deep);
  animation: chat-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes chat-ping {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* Chatbot Drawer / Modal */
.chat-drawer {
  position: fixed;
  bottom: 86px;
  right: 26px;
  width: 390px;
  max-width: calc(100vw - 32px);
  max-height: min(640px, calc(100vh - 110px));
  height: 610px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(12, 29, 56, 0.26), 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
  font-family: 'Inter', sans-serif;
  animation: chat-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chat-drawer[hidden] {
  display: none !important;
}

@keyframes chat-slide-up {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header */
.chat-header {
  background: var(--navy-deep);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar-mini {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(242, 160, 107, 0.22) 0%, rgba(19, 42, 76, 0.5) 100%);
  border: 1px solid rgba(242, 160, 107, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-header h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}

.chat-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 3px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.chat-close-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Chat Body */
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 20px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Messages */
.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 94%;
}

.bot-msg .msg-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  border-top-left-radius: 4px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(19, 42, 76, 0.04);
}

.msg-content p {
  margin: 0 0 8px;
  font-size: 0.86rem;
  line-height: 1.48;
  color: var(--ink);
}

.msg-content p:last-child {
  margin-bottom: 0;
}

.msg-time {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 4px;
  padding-left: 4px;
}

/* Theme Pills */
.theme-pills-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}

.pills-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.theme-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.theme-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--navy-deep);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.theme-pill:hover {
  border-color: var(--orange-light);
  background: rgba(217, 98, 44, 0.04);
}

.theme-pill.active {
  background: rgba(217, 98, 44, 0.1);
  border-color: var(--orange);
  color: var(--orange);
  font-weight: 600;
}

/* Chat Form */
.chat-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(19, 42, 76, 0.04);
}

.chat-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-form label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.chat-form label .opt {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.72rem;
}

.chat-form label .req {
  color: var(--orange);
  font-weight: 700;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.84rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.chat-form input:focus,
.chat-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 98, 44, 0.12);
}

.chat-form textarea {
  resize: vertical;
  min-height: 72px;
}

.char-counter {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: right;
  margin-top: 2px;
}

.chat-alert {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1.35;
  background: rgba(217, 98, 44, 0.1);
  border: 1px solid rgba(217, 98, 44, 0.3);
  color: #a43a0f;
}

.chat-submit-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.chat-submit-btn:hover:not(:disabled) {
  background: #c35220;
  transform: translateY(-1px);
}

.chat-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success Card */
.chat-success-state {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.chat-success-state .success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.12);
  color: #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.chat-success-state h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0;
}

.chat-success-state p {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 10px;
}

.chat-reset-btn {
  background: var(--navy-deep);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chat-reset-btn:hover {
  background: var(--navy);
}

/* Mobile Adjustments */
@media (max-width: 520px) {
  .chat-launcher {
    bottom: 18px;
    right: 18px;
    padding: 10px 14px;
  }
  .chat-launcher-label {
    display: none;
  }
  .chat-drawer {
    right: 12px;
    left: 12px;
    bottom: 76px;
    width: auto;
    max-width: none;
    height: calc(100vh - 96px);
  }
}

