/* ═══════════════════════════════════════════════════════════
   INNER PAGE STYLES
   Shared styles for all rebuilt inner pages (blog, solutions,
   case studies, use cases, company, news, media, integrations)
   Depends on brand.css variables and base styles.
   ═══════════════════════════════════════════════════════════ */

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--k-muted);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--k-gray3);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--k-lime); }
.breadcrumb .sep { color: var(--k-gray4); }

/* ── PAGE HERO (centered) ── */
.page-hero {
  text-align: center;
  padding: 80px 40px 56px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--k-lime);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--k-white);
}
.page-hero .hero-desc {
  font-size: 17px;
  color: var(--k-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.page-hero .hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: var(--k-muted);
  margin-bottom: 12px;
}
.page-hero .hero-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--k-gray3);
}
.page-hero .hero-image {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--k-border2);
}
.page-hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── SPLIT HERO (text + image / stat) ── */
.split-hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.split-hero .hero-text .label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--k-lime);
  margin-bottom: 14px;
}
.split-hero .hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--k-white);
}
.split-hero .hero-text .hero-desc {
  font-size: 16px;
  color: var(--k-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.split-hero .hero-stat {
  text-align: center;
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 16px;
  padding: 48px 32px;
}
.split-hero .hero-stat .stat-num {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 400;
  color: var(--k-lime);
  letter-spacing: -0.03em;
  line-height: 1;
}
.split-hero .hero-stat .stat-label {
  font-size: 14px;
  color: var(--k-muted);
  margin-top: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.split-hero .hero-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--k-border2);
}
.split-hero .hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .split-hero {
    grid-template-columns: 1fr;
    padding: 56px 20px 40px;
    gap: 32px;
  }
}

/* ── PROSE CONTENT (articles, descriptions) ── */
.prose {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #E8E8E6;
}
.prose h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--k-white);
  margin: 56px 0 16px;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--k-white);
  margin: 40px 0 12px;
}
.prose h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--k-white);
  margin: 32px 0 10px;
}
.prose p {
  margin-bottom: 20px;
}
.prose a {
  color: var(--k-lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(242,255,102,0.3);
  transition: text-decoration-color .2s;
}
.prose a:hover {
  text-decoration-color: var(--k-lime);
}
.prose a.btn-lime,
.prose a.btn-outline,
.prose a.btn-dark {
  text-decoration: none;
}
.prose a.btn-lime { color: var(--k-dark); }
.prose a.btn-outline { color: var(--k-white); }
.prose strong { color: var(--k-white); font-weight: 500; }
.prose ul, .prose ol {
  margin: 0 0 20px 24px;
}
.prose li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.prose li::marker { color: var(--k-lime); }
.prose blockquote {
  border-left: 3px solid var(--k-lime);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(242,255,102,0.03);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--k-gray1);
}
.prose img {
  border-radius: 10px;
  margin: 32px 0;
  border: 1px solid var(--k-border2);
}
.prose figure {
  margin: 32px 0;
}
.prose figcaption {
  font-size: 14px;
  color: var(--k-muted);
  text-align: center;
  margin-top: 10px;
}
.prose pre {
  background: #0D0D0D;
  border: 1px solid var(--k-border2);
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--k-text);
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: rgba(242,255,102,0.06);
  border: 1px solid rgba(242,255,102,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--k-lime);
}
.prose pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.prose th {
  background: var(--k-dark3);
  color: var(--k-white);
  font-weight: 500;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--k-border2);
}
.prose td {
  padding: 10px 16px;
  border: 1px solid var(--k-border2);
  color: var(--k-text);
}
.prose hr {
  border: none;
  height: 1px;
  background: var(--k-border2);
  margin: 40px 0;
}

/* ── READING PROGRESS BAR ── */
.reading-progress {
  position: fixed;
  top: 64px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--k-lime), var(--k-lime3));
  z-index: 99;
  transition: width 50ms linear;
  box-shadow: 0 0 10px rgba(242,255,102,0.3);
}

/* ── ARTICLE LAYOUT (blog, news) ── */
.article-layout {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.article-main .prose {
  max-width: none;
  padding: 0;
}
.article-sidebar {
  position: sticky;
  top: 88px;
}

/* ── Drop Cap ── */
.prose > p:first-child::first-letter {
  float: left;
  font-family: var(--font-head);
  font-size: 3.5em;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--k-lime);
  font-weight: 400;
}

/* Sidebar: TOC */
.sidebar-toc {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-toc h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--k-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-toc h4::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--k-lime);
  border-radius: 2px;
  flex-shrink: 0;
}
.sidebar-toc a {
  display: block;
  font-size: 14px;
  color: var(--k-gray3);
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color .2s, border-color .2s;
  line-height: 1.5;
}
.sidebar-toc a:hover,
.sidebar-toc a.active {
  color: var(--k-lime);
  border-left-color: var(--k-lime);
}

/* Sidebar: Share box */
.sidebar-share {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.sidebar-share h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--k-muted);
  margin-bottom: 14px;
}
.share-links {
  display: flex;
  gap: 10px;
}
.share-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--k-dark3);
  border: 1px solid var(--k-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-muted);
  transition: all .2s;
}
.share-link:hover {
  background: rgba(242,255,102,0.08);
  border-color: rgba(242,255,102,0.2);
  color: var(--k-lime);
}
.share-link svg {
  width: 18px;
  height: 18px;
}

/* Sidebar: CTA card */
.sidebar-cta {
  background: linear-gradient(165deg, rgba(242,255,102,0.06) 0%, var(--k-dark2) 60%);
  border: 1px solid var(--k-border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--k-white);
  margin-bottom: 10px;
}
.sidebar-cta p {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ── Blog Hero Meta Tags ── */
.hero-meta-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.hero-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--k-muted);
}
.hero-meta-tag svg {
  width: 14px;
  height: 14px;
  color: var(--k-gray3);
  flex-shrink: 0;
}

/* Author box */
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(135deg, var(--k-dark2) 0%, rgba(242,255,102,0.02) 100%);
  border: 1px solid var(--k-border2);
  border-radius: 12px;
  margin: 56px 0 0;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(242,255,102,0.12), rgba(242,255,102,0.04));
  border: 1px solid rgba(242,255,102,0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--k-lime);
}
.author-info .author-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--k-white);
  margin-bottom: 2px;
}
.author-info .author-role {
  font-size: 14px;
  color: var(--k-muted);
}

/* ── Blog FAQ Accordion ── */
.blog-faq {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--k-border2);
}
.blog-faq-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--k-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.blog-faq .faq-item {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .3s;
}
.blog-faq .faq-item.open {
  border-color: rgba(242,255,102,0.15);
}
.blog-faq .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--k-white);
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.blog-faq .faq-q:hover { color: var(--k-lime); }
.blog-faq .faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--k-muted);
  transition: transform .3s, color .3s;
}
.blog-faq .faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--k-lime);
}
.blog-faq .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-faq .faq-item.open .faq-a {
  max-height: 600px;
}
.blog-faq .faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--k-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px 56px;
  }
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-toc { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .article-sidebar { grid-template-columns: 1fr; }
  .prose { padding: 0 16px; }
}

/* ── FEATURE CARDS (solutions, use cases) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              box-shadow 0.4s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-5px);
  background: var(--k-dark3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 60px rgba(242,255,102,0.04);
}
.feature-card:hover::after {
  background: linear-gradient(135deg, rgba(242,255,102,0.4), rgba(242,255,102,0.08), rgba(242,255,102,0.3));
  opacity: 1;
}
.feature-card .fc-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(242,255,102,0.06);
  border: 1px solid rgba(242,255,102,0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover .fc-icon { transform: scale(1.1); }
.feature-card .fc-icon svg { color: var(--k-lime); }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 400;
  color: var(--k-white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.65;
}

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* ── BLOG CARD GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}
.blog-card .bc-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--k-dark3);
}
.blog-card .bc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .bc-image img { transform: scale(1.05); }
.blog-card .bc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .bc-cat {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--k-lime);
  margin-bottom: 10px;
}
.blog-card .bc-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--k-white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card .bc-excerpt {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .bc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--k-border2);
  font-size: 14px;
  color: var(--k-muted);
}
.blog-card .bc-meta .read-more {
  color: var(--k-lime);
  font-weight: 500;
  transition: opacity .2s;
}
.blog-card .bc-meta .read-more:hover { opacity: .8; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── MEDIA CARD (videos, webinars) ── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.media-card {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}
.media-card .mc-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--k-dark3);
}
.media-card .mc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card .mc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity .3s;
}
.media-card:hover .mc-play { opacity: 1; }
.media-card .mc-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--k-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(242,255,102,0.3);
}
.media-card .mc-body {
  padding: 20px;
}
.media-card .mc-tag {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--k-lime);
  margin-bottom: 8px;
}
.media-card .mc-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 400;
  color: var(--k-white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.media-card .mc-meta {
  font-size: 14px;
  color: var(--k-muted);
}

@media (max-width: 900px) { .media-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .media-grid { grid-template-columns: 1fr; } }

/* ── INTEGRATION HERO (v2) ── */
.integ-hero-cta {
  display: inline-flex;
  margin-top: 24px;
}
.hero-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--k-border2);
}
.hero-icon-box.brand {
  background: rgba(242,255,102,0.06);
  border-color: rgba(242,255,102,0.15);
}
.hero-icon-box.brand svg {
  width: 28px;
  height: 28px;
  color: var(--k-lime);
}
.hero-icon-box.app {
  background: var(--k-dark3);
}
.hero-icon-box.app img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── ENGLISH AS CODE BOX ── */
.eac-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--k-dark3);
  border: 1px solid var(--k-border2);
  border-radius: 16px;
  padding: 40px 44px;
}
.eac-overview {
  margin-bottom: 32px;
}
.eac-overview h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--k-white);
  margin-bottom: 12px;
}
.eac-overview p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--k-muted);
}
.eac-steps-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--k-white);
  margin-bottom: 24px;
}
.eac-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.eac-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.eac-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(242,255,102,0.10);
  border: 1px solid rgba(242,255,102,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--k-lime);
}
.eac-step-body h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--k-white);
  margin-bottom: 8px;
  line-height: 36px;
}
.eac-step-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.eac-step-body ul li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--k-muted);
  padding-left: 16px;
  position: relative;
}
.eac-step-body ul li::before {
  content: '\25AA';
  position: absolute;
  left: 0;
  color: var(--k-gray3);
  font-size: 14px;
  top: 2px;
}
@media (max-width: 600px) {
  .eac-box { padding: 24px 20px; }
  .eac-step { gap: 14px; }
}

/* ── USE CASE GRID ── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.use-case-card {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              box-shadow 0.4s ease;
}
.use-case-card:hover {
  transform: translateY(-5px);
  background: var(--k-dark3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 60px rgba(242,255,102,0.04);
}
.use-case-card .uc-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(242,255,102,0.06);
  border: 1px solid rgba(242,255,102,0.12);
}
.use-case-card .uc-icon svg {
  width: 20px;
  height: 20px;
  color: var(--k-lime);
}
.use-case-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 400;
  color: var(--k-white);
  margin-bottom: 10px;
}
.use-case-card p {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.65;
}
@media (max-width: 900px) { .use-case-grid { grid-template-columns: 1fr; } }

/* ── DEMO BANNER (integration pages) ── */
.demo-banner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
.demo-banner-inner {
  background: linear-gradient(165deg, var(--k-dark2) 0%, var(--k-dark3) 100%);
  border: 1px solid var(--k-border2);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-banner-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 30%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(242,255,102,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.demo-banner-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--k-white);
  position: relative;
}
.demo-subtitle {
  font-size: 16px;
  color: var(--k-muted);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
  position: relative;
}
.demo-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  max-width: 440px;
  text-align: left;
  position: relative;
}
.demo-benefits li {
  font-size: 15px;
  color: var(--k-muted);
  line-height: 1.7;
  padding: 6px 0 6px 28px;
  position: relative;
}
.demo-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(242,255,102,0.12);
  border: 1.5px solid rgba(242,255,102,0.35);
}
.demo-benefits li::after {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 12px;
  font-size: 14px;
  line-height: 16px;
  color: var(--k-lime);
}
.demo-sub {
  border-top: 1px solid var(--k-border2);
  padding-top: 28px;
  position: relative;
}
.demo-sub h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--k-white);
  margin-bottom: 8px;
}
.demo-sub p {
  font-size: 15px;
  color: var(--k-muted);
  margin-bottom: 20px;
}
.demo-sub .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--k-lime);
  color: #000;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}
.demo-sub .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,255,102,0.2);
  filter: brightness(1.05);
}

@media (max-width: 900px) {
  .demo-banner { padding: 0 20px; }
  .demo-banner-inner { padding: 40px 24px; }
}

/* ── CTA BANNER ── */
.cta-banner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
.cta-banner-inner {
  background: var(--k-lime);
  color: #000;
  border-radius: 20px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner-inner p {
  font-size: 16px;
  opacity: .75;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
  position: relative;
}
.cta-banner-inner .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--k-dark);
  color: var(--k-white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
}
.cta-banner-inner .btn-dark:hover {
  background: var(--k-dark3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Dark CTA variant */
.cta-dark {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}
.cta-dark h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--k-white);
}
.cta-dark p {
  font-size: 16px;
  color: var(--k-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-dark .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── METRICS STRIP ── */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--k-border2);
  border: 1px solid var(--k-border2);
  border-radius: 10px;
  overflow: hidden;
  margin: 40px 0;
}
.metric-block {
  background: var(--k-dark2);
  padding: 32px 20px;
  text-align: center;
  transition: background .3s;
}
.metric-block:hover { background: var(--k-dark3); }
.metric-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 400;
  color: var(--k-lime);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.metric-label {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.5;
}

/* ── STEPS LIST (use cases, how-it-works) ── */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-item {
  display: flex;
  gap: 16px;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(242,255,102,0.08);
  border: 1px solid rgba(242,255,102,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  color: var(--k-lime);
  margin-top: 2px;
}
.step-content h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--k-white);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.65;
}

/* ── TESTIMONIAL CARD ── */
.testimonial-card {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 64px;
  color: rgba(242,255,102,0.15);
  position: absolute;
  top: 20px;
  left: 32px;
  line-height: 1;
}
.testimonial-card .tc-text {
  font-size: 18px;
  font-style: italic;
  color: var(--k-gray1);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-card .tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--k-dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--k-lime);
}
.testimonial-card .tc-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--k-white);
}
.testimonial-card .tc-role {
  font-size: 14px;
  color: var(--k-muted);
}

/* ── LOGO BAR (reusable) ── */
.page-logo-bar {
  background: var(--k-dark2);
  border-top: 1px solid var(--k-border2);
  border-bottom: 1px solid var(--k-border2);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.page-logo-bar .logo-bar-label {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--k-muted);
  margin-bottom: 20px;
}

/* ── FAQ / ACCORDION ── */
.accordion {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accordion-item {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 10px;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--k-white);
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.accordion-trigger:hover { color: var(--k-lime); }
.accordion-trigger .chevron {
  width: 20px;
  height: 20px;
  transition: transform .3s;
  color: var(--k-muted);
  flex-shrink: 0;
}
.accordion-item.open .accordion-trigger .chevron {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.accordion-item.open .accordion-body {
  max-height: 500px;
}
.accordion-body-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--k-muted);
  line-height: 1.7;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid var(--k-border2);
  background: transparent;
  color: var(--k-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover {
  border-color: var(--k-gray3);
  color: var(--k-white);
}
.filter-btn.active {
  background: rgba(242,255,102,0.08);
  border-color: rgba(242,255,102,0.2);
  color: var(--k-lime);
}

/* ── INTEGRATION SEARCH & FILTER ── */
.integ-search-bar {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 10px;
  padding: 12px 20px;
  transition: border-color .2s;
}
.integ-search-bar:focus-within {
  border-color: rgba(242,255,102,0.3);
}
.integ-search-bar svg {
  color: var(--k-muted);
  flex-shrink: 0;
}
.integ-search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--k-white);
}
.integ-search-bar input::placeholder {
  color: var(--k-gray3);
}
.integ-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.integ-cat-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 6px;
  border: 1px solid var(--k-border2);
  background: transparent;
  color: var(--k-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.integ-cat-btn:hover {
  border-color: var(--k-gray3);
  color: var(--k-white);
}
.integ-cat-btn.active {
  background: rgba(242,255,102,0.08);
  border-color: rgba(242,255,102,0.25);
  color: var(--k-lime);
}

/* ── INTEGRATION CARD ── */
.integ-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.integ-card {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.integ-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242,255,102,0.15);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.integ-card .ic-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--k-dark3);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.integ-card .ic-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--k-white);
  margin-bottom: 6px;
}
.integ-card .ic-desc {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.5;
}

@media (max-width: 900px) { .integ-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .integ-card-grid { grid-template-columns: 1fr; } }

/* ── EVENT CARD ── */
.event-card {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .3s, box-shadow .3s;
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.event-date-box {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: rgba(242,255,102,0.06);
  border: 1px solid rgba(242,255,102,0.15);
  border-radius: 8px;
  padding: 12px 8px;
}
.event-date-box .month {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--k-lime);
}
.event-date-box .day {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 400;
  color: var(--k-white);
  line-height: 1.2;
}
.event-info h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--k-white);
  margin-bottom: 6px;
}
.event-info .event-location {
  font-size: 14px;
  color: var(--k-muted);
  margin-bottom: 8px;
}
.event-info .event-type {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(242,255,102,0.06);
  border: 1px solid rgba(242,255,102,0.12);
  color: var(--k-lime);
}
.event-info .event-desc {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.6;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-info .event-date-inline {
  font-size: 14px;
  color: var(--k-lime);
  font-weight: 500;
  margin-bottom: 4px;
}
.event-card .event-arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--k-muted);
  transition: color .2s, transform .2s;
}
.event-card:hover .event-arrow {
  color: var(--k-lime);
  transform: translateX(4px);
}
@media (max-width: 600px) {
  .event-card { flex-direction: column; }
  .event-date-box { width: auto; flex-direction: row; gap: 8px; display: flex; align-items: center; padding: 8px 14px; }
}

/* ── PODCAST CARD ── */
.podcast-card {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform .3s, box-shadow .3s;
}
.podcast-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.podcast-card .pc-play {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242,255,102,0.08);
  border: 1px solid rgba(242,255,102,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.podcast-card:hover .pc-play {
  background: rgba(242,255,102,0.15);
}
.podcast-card .pc-info h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 400;
  color: var(--k-white);
  margin-bottom: 4px;
}
.podcast-card .pc-meta {
  font-size: 14px;
  color: var(--k-muted);
}

/* ── SHARED SECTION SPACERS ── */
.section-pad {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-pad.border-b {
  border-bottom: 1px solid var(--k-border2);
}

/* ── USE CASE TAGS ── */
.uc-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(242,255,102,0.06);
  border: 1px solid rgba(242,255,102,0.12);
  color: var(--k-lime);
}

/* ── PROCESS DETAILS BOX ── */
.pd-item {
  background: var(--k-dark2);
  border: 1px solid var(--k-border2);
  border-radius: 10px;
  padding: 24px;
}
.pd-item h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--k-lime);
  margin-bottom: 10px;
}
.pd-item p {
  font-size: 14px;
  color: var(--k-muted);
  line-height: 1.65;
}

/* ── PAGE-LEVEL RESPONSIVE ── */
@media (max-width: 900px) {
  .page-hero { padding: 56px 20px 40px; }
  .section-pad { padding: 56px 20px; }
  .cta-banner { padding: 0 20px; }
  .cta-banner-inner { padding: 40px 24px; }
  .cta-dark { padding: 56px 20px; }
}
@media (max-width: 600px) {
  .page-hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .feature-card { padding: 24px; }
  .testimonial-card { padding: 28px; }
}
