.quote-main {
  max-width: var(--max-width);
  margin: 32px auto 72px;
  padding: 0 20px;
}

.quote-shell {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quote-header h1 {
  margin: 12px 0 10px;
  font-size: 34px;
}

.quote-header p {
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
}

.quote-summary,
.quote-form-panel {
  background: rgba(2, 6, 23, 0.6);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.quote-summary h2,
.quote-form-panel h2 {
  margin-top: 0;
}

.summary-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.summary-item {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 23, 42, 0.7);
}

.summary-item.user {
  border-color: rgba(236, 72, 153, 0.4);
}

.summary-item.assistant {
  border-color: rgba(129, 140, 248, 0.4);
}

.summary-role {
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.summary-text {
  font-size: 15px;
  color: rgba(248, 250, 252, 0.9);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-form label span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 6px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.5);
  color: #fff;
  padding: 12px 14px;
  font-size: 15px;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.form-errors {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
}

.quote-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 18px;
  padding: 18px;
}

.chat-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chat-action-btn {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.chat-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35);
}

.chat-action-btn:active {
  transform: translateY(0);
}

.chat-message.user .chat-message-actions {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Summary modal */
.summary-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.summary-modal-content {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  padding: 32px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(236, 72, 153, 0.1);
}

.summary-layout {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.summary-main {
  flex: 1;
}

.summary-sidebar {
  flex: 1;
  border-left: 1px solid rgba(236, 72, 153, 0.2);
  padding-left: 32px;
}

.summary-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-footer .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
}

.summary-footer .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-footer .btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-footer .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.summary-footer .btn-primary:hover {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(168, 85, 247, 0.9));
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35);
}

.summary-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: rgba(248, 250, 252, 0.7);
  padding: 6px;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.summary-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(248, 250, 252, 0.9);
  transform: scale(1.05);
}

.summary-section {
  margin-bottom: 28px;
}

.summary-section h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.95);
  letter-spacing: -0.02em;
}

.summary-price {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-pink);
  text-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.summary-inclusions, .summary-addons {
  margin: 0;
  padding-left: 20px;
  color: rgba(248, 250, 252, 0.8);
  font-size: 15px;
  line-height: 1.7;
}

.summary-inclusions li, .summary-addons li {
  margin-bottom: 8px;
  position: relative;
}

.summary-inclusions li::marker {
  color: var(--accent-pink);
}

.summary-addons li {
  color: var(--accent-purple);
  font-weight: 500;
}

.summary-addons li::marker {
  color: var(--accent-purple);
}

/* Quote success shell */
.quote-success-shell {
  max-width: 620px;
  margin: 40px auto 80px;
  padding: 32px;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 28px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  text-align: center;
  color: rgba(248, 250, 252, 0.92);
  box-shadow: var(--shadow-card);
}

.quote-success-shell h1 {
  margin-top: 12px;
}

.quote-success-shell p {
  color: rgba(203, 213, 225, 0.85);
}

@media (max-width: 720px) {
  .quote-shell {
    padding: 20px;
  }

  .quote-form input,
  .quote-form textarea {
    font-size: 14px;
  }
}
:root {
  --bg-dark: #050816;
  --bg-card: #0f172a;
  --accent-pink: #ff4fd8;
  --accent-purple: #9b5cff;
  --accent-orange: #ffb347;
  --accent-yellow: #ffd86f;
  --text-main: #ffffff;
  --text-muted: #a5b4cf;
  --text-dark: #0f172a;
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.55);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.45);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #20124d 0, #050816 45%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(5, 8, 22, 0.94), rgba(15, 23, 42, 0.94));
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 200px;
  height: 44px;
  overflow: hidden;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffdd55 0, #ff4fd8 45%, #7f5dff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #0b1020;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent-pink), var(--accent-purple));
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.18s ease-out;
  background: transparent;
  color: var(--text-muted);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-outline:hover {
  border-color: rgba(248, 250, 252, 0.9);
  color: #e5e7eb;
}

.btn-primary {
  background-image: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: var(--text-main);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.7);
}

main {
  flex: 1;
}

.hero {
  max-width: var(--max-width);
  margin: 44px auto 56px;
  padding: 40px 30px 46px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(244, 114, 182, 0.24) 0, transparent 45%),
              radial-gradient(circle at 80% 0, rgba(56, 189, 248, 0.22) 0, transparent 50%),
              linear-gradient(135deg, #020617, #020617 32%, #020617 60%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
  gap: 48px;
  box-shadow: var(--shadow-soft);
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.hero-title {
  margin: 0;
  font-size: 44px;
  line-height: 1.15;
}

.highlight-pink {
  color: var(--accent-pink);
}

.highlight-purple {
  color: var(--accent-purple);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.65);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-form .btn {
  padding: 12px 26px;
  font-size: 16px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 60px 20px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--accent-pink);
  font-weight: 600;
}

.section-title {
  font-size: 36px;
  margin: 12px 0 18px;
  line-height: 1.15;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.highlight {
  color: var(--accent-purple);
}

.features-grid,
.pricing-grid,
.addons-grid,
.card-row,
.faq-grid {
  display: grid;
  gap: 24px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: rgba(15, 23, 42, 0.75);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card {
  background: #0f172a;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: var(--shadow-card);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  background: linear-gradient(160deg, rgba(255, 79, 216, 0.15), rgba(155, 92, 255, 0.25));
  border-color: rgba(255, 79, 216, 0.35);
}

.badge-popular {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 12px;
  background: rgba(5, 8, 22, 0.8);
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-name {
  margin: 0 0 6px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
}

.pricing-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-cta {
  display: flex;
  justify-content: center;
}

.btn-soft {
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: transform 0.18s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-soft:hover {
  transform: translateY(-1px);
}

.btn-soft-primary {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: #fff;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.45);
}

.addons-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.addon-card {
  background: rgba(15, 23, 42, 0.75);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow-card);
}

.addon-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-pink);
  margin-bottom: 12px;
}

.addon-price {
  font-weight: 600;
  margin: 8px 0 16px;
}

.card-row {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-highlight-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border-radius: 26px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.plan-media {
  background: linear-gradient(145deg, rgba(255, 79, 216, 0.15), rgba(155, 92, 255, 0.25));
  padding: 20px;
  display: flex;
  justify-content: center;
}

.plan-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.plan-body {
  padding: 24px;
}

.plan-body h4 {
  margin: 0 0 10px;
}

.plan-meta {
  display: flex;
  justify-content: space-between;
  color: rgba(15, 23, 42, 0.65);
  font-size: 13px;
}

.chip {
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
}

.faq-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.75);
  border-radius: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.faq-q {
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-panel {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

footer {
  padding: 32px 20px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 150px;
    height: 38px;
  }

  .hero {
    margin: 24px auto 40px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

  .features-grid,
  .pricing-grid,
  .addons-grid,
  .card-row,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    gap: 24px;
  }
}

/* Engage page */
.engage-main {
  max-width: var(--max-width);
  margin: 32px auto 64px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.engage-hero {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(244, 114, 182, 0.24) 0, transparent 45%),
              radial-gradient(circle at 80% 0, rgba(56, 189, 248, 0.22) 0, transparent 50%),
              linear-gradient(135deg, #020617, #020617 32%, #020617 60%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.engage-copy h1 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.1;
}

.engage-copy p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 18px;
}

/* Package focus card removed */

.pkg-tab {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.pkg-tab.active {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.45);
}

.engage-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.chat-panel {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.chat-header {
  padding: 24px 26px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-log {
  flex: 1;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.chat-message {
  max-width: 90%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.08);
}

.chat-message.assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
}

.chat-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: #fff;
}

.chat-form {
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chat-form textarea {
  flex: 1 1 260px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  padding: 12px 14px;
  min-height: 64px;
  font-family: inherit;
  resize: vertical;
}

/* Guardrail panel removed */

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  background: rgba(15, 23, 42, 0.08);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d4ed8;
}

.status-pill.ready .status-dot {
  background: #16a34a;
}

.chat-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .engage-hero,
  .engage-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .package-focus-card {
    order: -1;
  }

  .chat-message {
    max-width: 100%;
  }
}
