:root {
  --bg: #0a1020;
  --bg-soft: #121a32;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #edf2ff;
  --muted: #a8b2d6;
  --primary: #0b3d66;
  --primary-strong: #0a2f4f;
  --accent: #f2bf3a;
  --accent-soft: #ffd76d;
  --accent-bright: #ffe28c;
  --secondary: #6eb5ff;
  --danger: #ff5a6e;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: min(1120px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(84, 152, 220, 0.2), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(242, 191, 58, 0.12), transparent 32%),
    radial-gradient(circle at 94% 38%, rgba(32, 108, 111, 0.16), transparent 36%),
    linear-gradient(160deg, #050a16 0%, #0a1730 42%, #0d2b31 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  filter: blur(75px);
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}

.page-glow-top {
  top: -140px;
  right: -100px;
  background: #1f6ea8;
}

.page-glow-bottom {
  bottom: -160px;
  left: -120px;
  background: #f2bf3a;
  opacity: 0.33;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

h1,
h2,
h3,
.brand {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(8, 13, 28, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

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

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
  color: #e6edff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.hero {
  padding-top: 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-block;
  color: #f8d97d;
  background: rgba(242, 191, 58, 0.14);
  border: 1px solid rgba(242, 191, 58, 0.38);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin-bottom: 14px;
  max-width: 17ch;
}

.subheadline {
  max-width: 58ch;
  font-size: 1.04rem;
}

.demo-line {
  display: inline-block;
  margin-bottom: 10px;
  color: #fde9ad;
  background: rgba(242, 191, 58, 0.14);
  border: 1px solid rgba(242, 191, 58, 0.28);
  border-radius: 10px;
  padding: 8px 12px;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #102741;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 12px 28px rgba(242, 191, 58, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f8cc50, var(--accent-bright));
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--panel-border);
}

.btn-nav {
  padding: 7px 14px;
  font-size: 0.87rem;
  box-shadow: 0 4px 12px rgba(242, 191, 58, 0.18);
  border-radius: 8px;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 14px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
}

.hero-stats strong {
  display: block;
  color: #f7fbff;
  font-size: 1.3rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.chatbot-demo {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.live-demo-guide {
  padding: 8px 14px 16px;
  text-align: right;
}

.live-demo-guide p {
  color: #fde9ad;
  font-size: 0.9rem;
}

.live-demo-arrow {
  display: inline-block;
  font-size: 1.4rem;
  color: #ffd76d;
  margin-bottom: 4px;
  animation: arrowNudge 2s ease-in-out infinite;
}

.chatbot-topbar {
  background: rgba(0, 0, 0, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #dce5ff;
}

.topbar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ff6a80;
}

.dot-yellow {
  background: #f7be45;
}

.dot-green {
  background: #44d38f;
}

.chatbot-body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.msg {
  max-width: 85%;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.93rem;
}

.msg-bot {
  background: rgba(110, 181, 255, 0.17);
  border: 1px solid rgba(110, 181, 255, 0.28);
  justify-self: start;
}

.msg-user {
  background: rgba(242, 191, 58, 0.18);
  border: 1px solid rgba(242, 191, 58, 0.32);
  justify-self: end;
}

.typing {
  display: inline-flex;
  gap: 6px;
  width: fit-content;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7e3ff;
  animation: pulse 1.2s infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.lead-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 13px;
  display: grid;
  gap: 4px;
}

.lead-card p {
  font-size: 0.8rem;
}

.lead-card strong {
  font-size: 0.92rem;
}

.lead-card span {
  color: #f6d888;
  font-size: 0.84rem;
}

.section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

.cards {
  display: grid;
  gap: 16px;
}

.steps-grid,
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 22px;
  backdrop-filter: blur(8px);
}

.step-number {
  color: #93cbff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 1.22rem;
}

.pricing-card .price {
  font-size: 2rem;
  color: #f6fbff;
  margin: 6px 0 12px;
  font-weight: 800;
}

.pricing-card .price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing-card .price-after {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  color: #d8e4ff;
}

.pricing-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  position: absolute;
  left: 0;
  top: 9px;
}

.pricing-featured {
  border-color: rgba(242, 191, 58, 0.45);
  box-shadow: 0 16px 35px rgba(242, 191, 58, 0.16);
  position: relative;
}

.popular {
  position: absolute;
  top: -12px;
  right: 16px;
  background: rgba(242, 191, 58, 0.22);
  border: 1px solid rgba(242, 191, 58, 0.4);
  color: #ffe7a8;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 999px;
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
}

.testimonial p {
  line-height: 1.72;
  color: #c8d4ee;
  font-size: 0.97rem;
  margin: 0;
}

.testimonial p::before {
  content: '\201C';
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  color: #f2bf3a;
  opacity: 0.45;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.testimonial-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial strong,
.testimonial-meta strong {
  display: block;
  margin-top: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #edf2ff;
  letter-spacing: 0.01em;
}

.testimonial span,
.testimonial-meta span {
  display: block;
  font-size: 0.81rem;
  color: #8898c0;
  margin-top: 3px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  background: linear-gradient(135deg, rgba(13, 26, 54, 0.82), rgba(14, 36, 51, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.contact-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: #d8e4ff;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f0f5ff;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.contact-form input:focus {
  outline: 2px solid rgba(242, 191, 58, 0.65);
  border-color: transparent;
}

.form-submit {
  margin-top: 4px;
}

.form-note {
  min-height: 22px;
  font-size: 0.92rem;
}

.site-footer {
  padding: 28px 0 34px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 12, 24, 0.55);
}

.chat-tooltip {
  position: fixed;
  right: 28px;
  bottom: 98px;
  max-width: 240px;
  background: rgba(12, 31, 52, 0.95);
  border: 1px solid rgba(242, 191, 58, 0.46);
  color: #ffecc0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.88rem;
  line-height: 1.35;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 900;
}

.chat-tooltip.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.widget-attention-pulse {
  animation: widgetPulseGlow 3s ease-in-out infinite;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-branding {
  display: grid;
  gap: 2px;
}

.footer-industries {
  display: grid;
  gap: 8px;
}

.footer-industries-label {
  color: #a8b2d6;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-title {
  color: #e6edff;
  font-weight: 700;
  font-size: 1rem;
}

.footer-tagline {
  color: #9aa9cb;
  font-size: 0.9rem;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.footer-copyright {
  color: #c3d0ed;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d6e2fa;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.footer-links a:not(:last-child) {
  position: relative;
  padding-right: 14px;
}

.footer-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 13px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

#onboarding {
  margin-top: 60px;
}

.selected-plan {
  color: #e6f0ff;
  font-weight: 700;
}

.payment-note {
  color: #f2d383;
  font-size: 0.95rem;
}

#onboarding-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

#onboarding-form input,
#onboarding-form textarea,
#onboarding-form select {
  background: rgba(15, 35, 50, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f0f5ff;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

#onboarding-form select option {
  background-color: #ffffff;
  color: #0f172a;
}

#onboarding-form textarea {
  min-height: 110px;
  resize: vertical;
}

#onboarding-form input:focus,
#onboarding-form textarea:focus,
#onboarding-form select:focus {
  outline: 2px solid rgba(242, 191, 58, 0.65);
  border-color: transparent;
}

#onboarding-success {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.onboarding-error {
  min-height: 20px;
  color: #ff9fad;
  font-size: 0.92rem;
}

.success-training-note {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
}

.success-training-note h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

#embed-code {
  background: #000;
  color: #0f0;
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
  white-space: pre-wrap;
}

@keyframes pulse {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.45;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes arrowNudge {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.75;
  }

  50% {
    transform: translate(8px, 8px);
    opacity: 1;
  }
}

@keyframes widgetPulseGlow {
  0%,
  82%,
  100% {
    box-shadow: 0 0 0 rgba(242, 191, 58, 0);
  }

  90% {
    box-shadow: 0 0 0 10px rgba(242, 191, 58, 0.15);
  }

  94% {
    box-shadow: 0 0 0 0 rgba(242, 191, 58, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 92px;
  }

  .steps-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    width: var(--container);
    margin-inline: auto;
    padding: 14px;
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    background: rgba(11, 19, 39, 0.98);
    display: grid;
    gap: 8px;
    transform-origin: top;
    transform: scaleY(0.85);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 8px 4px;
  }

  .logo img {
    height: 36px;
  }

  .logo span {
    font-size: 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .chat-tooltip {
    right: 14px;
    bottom: 92px;
    max-width: 210px;
    font-size: 0.82rem;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a:not(:last-child) {
    padding-right: 10px;
  }
}

/* ── Blog / Article Layout ─────────────────────────────────────────────── */

.article-shell {
  padding-top: 110px;
  padding-bottom: 96px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #8898c0;
  font-size: 0.84rem;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #8898c0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #edf2ff; }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.15); }

/* Industry page demo split layout */
.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.demo-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  line-height: 1.3;
}

.demo-copy p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 22px;
}

@media (max-width: 760px) {
  .demo-split { grid-template-columns: 1fr; gap: 32px; }
  .demo-split .chatbot-demo { max-width: 460px; margin: 0 auto; }
}

.demo-live-dot { display: inline-block; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; margin-right: 7px; vertical-align: middle; animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.75); } }
.demo-callout { background: rgba(242,191,58,0.07); border: 1px solid rgba(242,191,58,0.25); border-radius: 8px; padding: 12px 16px; font-size: 0.88rem; color: #c8d4ee; margin-bottom: 22px !important; line-height: 1.55; }
.chatbot-demo.is-clickable { cursor: pointer; transition: box-shadow 0.25s ease, transform 0.25s ease; }
.chatbot-demo.is-clickable:hover { box-shadow: 0 0 0 2px rgba(242,191,58,0.4), 0 8px 32px rgba(0,0,0,0.3); transform: translateY(-2px); }
.chatbot-demo.is-clickable:focus-visible { outline: 2px solid rgba(242,191,58,0.6); outline-offset: 3px; }
.demo-open-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border: 1px solid rgba(242,191,58,0.5); border-radius: 6px; background: rgba(242,191,58,0.08); color: #f2bf3a; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease; font-family: inherit; }
.demo-open-btn:hover { background: rgba(242,191,58,0.15); border-color: rgba(242,191,58,0.7); }

.article-header {
  max-width: 700px;
  margin: 0 auto 52px;
}

.article-header h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
  margin-bottom: 0;
  margin-top: 20px;
}

.article-lede {
  font-size: 1.08rem;
  color: #c0c9e8;
  line-height: 1.76;
  margin-top: 18px;
  margin-bottom: 0;
}

.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  color: #8898c0;
  font-size: 0.85rem;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-meta-tag {
  background: rgba(242, 191, 58, 0.1);
  color: #f2bf3a;
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 11px;
  border-radius: 999px;
  border: 1px solid rgba(242, 191, 58, 0.22);
}

.article-body {
  max-width: 700px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: clamp(1.28rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.28;
  margin: 58px 0 18px;
  color: #edf2ff;
}

.article-body h3 {
  font-size: 1.11rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 38px 0 13px;
  color: #edf2ff;
}

.article-body p {
  color: #b8c4df;
  margin-bottom: 22px;
  font-size: 1.01rem;
  line-height: 1.84;
}

.article-body ul,
.article-body ol {
  color: #b8c4df;
  padding-left: 22px;
  margin-bottom: 22px;
  display: grid;
  gap: 10px;
  font-size: 1.01rem;
  line-height: 1.74;
}

.article-body strong { color: #edf2ff; }

/* In-body links: brand blue, never browser blue
   :not(.btn) excludes CTA buttons from this color override */
.article-body a:not(.btn) {
  color: #6eb5ff;
  text-decoration: underline;
  text-decoration-color: rgba(110, 181, 255, 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.article-body a:not(.btn):hover {
  color: #a8d8ff;
  text-decoration-color: rgba(168, 216, 255, 0.58);
}

/* Formula / highlight block */
.formula-block {
  background: rgba(110, 181, 255, 0.07);
  border: 1px solid rgba(110, 181, 255, 0.18);
  border-left: 3px solid rgba(110, 181, 255, 0.5);
  border-radius: 10px;
  padding: 17px 22px;
  margin: 4px 0 22px;
  color: #edf2ff;
  font-size: 1rem;
  line-height: 1.62;
}

.formula-block strong { color: #c8e0ff; }

/* Stat callout — horizontal editorial layout */
.stat-callout {
  background: rgba(10, 18, 40, 0.7);
  border: 1px solid rgba(242, 191, 58, 0.22);
  border-left: 3px solid #f2bf3a;
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin: 42px 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat-callout strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #f2bf3a;
  font-family: "Sora", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  flex-shrink: 0;
  min-width: 76px;
  text-align: center;
}

.stat-callout span {
  color: #b4bedd;
  font-size: 0.94rem;
  line-height: 1.62;
}

/* Table scroll wrapper — enables horizontal scroll on mobile */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 36px 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.91rem;
  margin: 0;
}

.cost-table th {
  text-align: left;
  padding: 13px 18px;
  background: rgba(8, 16, 38, 0.95);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #edf2ff;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.cost-table td {
  padding: 14px 18px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: #b4bedd;
  background: rgba(10, 18, 40, 0.55);
  vertical-align: middle;
  line-height: 1.5;
}

.cost-table tr:last-child td { border-bottom: 0; }

.cost-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.028);
  transition: background 0.15s;
}

.cost-table td strong { color: #f2bf3a; }

.cost-table a {
  color: #6eb5ff;
  text-decoration: none;
}

.cost-table a:hover { color: #a8d8ff; }

.article-cta {
  background: rgba(10, 18, 40, 0.72);
  border: 1px solid rgba(242, 191, 58, 0.28);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  margin: 56px 0;
  text-align: center;
}

.article-cta h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: #edf2ff;
  margin-bottom: 12px;
}

.article-cta > p {
  max-width: 52ch;
  margin: 0 auto 26px;
  font-size: 1rem;
  color: #b4bedd;
}

.article-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.industry-pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.industry-pills a {
  color: #8898c0;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.industry-pills a:hover {
  color: #f2bf3a;
  border-color: rgba(242, 191, 58, 0.38);
  background: rgba(242, 191, 58, 0.06);
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.related-card {
  background: rgba(10, 18, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-decoration: none;
  color: #edf2ff;
  display: block;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

/* (0,2,1): beats .article-body a:not(.btn) specificity tie by appearing later */
.article-body a.related-card { text-decoration: none; }

.related-card:hover {
  border-color: rgba(242, 191, 58, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.related-card-label {
  display: block;
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f2bf3a;
  margin-bottom: 9px;
}

.related-card h4 {
  color: #edf2ff;
  font-size: 0.94rem;
  line-height: 1.48;
  margin: 0;
}

/* Resources Hub */

.resources-hub-intro {
  max-width: 640px;
  margin-bottom: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 52px;
  align-items: stretch;
}

.blog-card {
  background: rgba(15, 26, 52, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 30px 28px;
  text-decoration: none;
  color: #edf2ff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(242, 191, 58, 0) 0%, rgba(242, 191, 58, 0.5) 50%, rgba(242, 191, 58, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(242, 191, 58, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(242, 191, 58, 0.1);
}

.blog-card:hover::after {
  opacity: 1;
}

.blog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(242, 191, 58, 0.1);
  border: 1px solid rgba(242, 191, 58, 0.22);
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.blog-card-time {
  font-size: 0.79rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-card h3 {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.38;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

.blog-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 22px 0 18px;
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-card-read {
  gap: 11px;
}

.blog-card-read-arrow {
  display: inline-block;
  font-style: normal;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-read-arrow {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .article-shell { padding-top: 92px; }
  .article-cta { padding: 32px 22px; }
  .stat-callout { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 20px; }
  .stat-callout strong { font-size: 2rem; min-width: unset; text-align: left; }
  .blog-grid { gap: 20px; margin-top: 40px; }
  .blog-card { padding: 28px 24px 24px; }
}
