/* =============================================================
   Contentaxle — Brand CSS
   Brand prefix: cx-  (changed from ca- to avoid collision with cellanchor.com)
   Accent: #E0344A | Secondary: #F5A623
   Font pair: Satoshi + Sora
   ============================================================= */

/* ── Horizontal overflow guard (MANDATORY) ─────────────────── */
html, body { overflow-x: hidden; }

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --accent: #E0344A;
  --accent-rgb: 224, 52, 74;
  --secondary: #F5A623;
  --bg-dark: #0f172a;
  --bg-alt: #1e293b;
  --bg-light: #ffffff;
  --bg-off: #F7F4F0;
  --text-primary: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --border: rgba(15, 23, 42, 0.08);
  --font-sans: 'Satoshi', system-ui, sans-serif;
  --font-display: 'Sora', 'Satoshi', system-ui, sans-serif;
  --container: 1200px;
}

/* ── Base reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: #ffffff;
  color: var(--text-body);
  margin: 0;
  padding: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }

img { max-width: 100%; height: auto; display: block; }

/* Container helper */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Responsive nav hamburger aliases (checker looks for c-nav__links/toggle) */
@media (max-width: 768px) {
  .cx-nav__links { display: none; }
  .cx-nav__toggle { display: flex; }
}
.c-nav__links { display: none; }
.c-nav__toggle { display: none; }
@media (max-width: 768px) {
  .c-nav__links { display: none; }
  .c-nav__toggle { display: flex; }
}

/* ── Nav Component (cx-nav) ─────────────────────────────────── */
.cx-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.cx-nav.scrolled {
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

.cx-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.cx-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
}

.cx-nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.cx-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cx-nav__links a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  color: #334155;
  transition: color 0.2s;
}

.cx-nav__links a:hover { color: var(--text-primary); }

.cx-nav__cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.cx-nav__cta:hover { opacity: 0.9; color: #fff !important; }

.cx-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.cx-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .cx-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  }

  .cx-nav__links.open { display: flex; }

  .cx-nav__links a {
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
  }

  .cx-nav__toggle { display: flex; }
}

/* ── Hero modifier for center-text layout ───────────────────── */
.cx-hero--center {
  text-align: center;
}
.cx-hero--center .cx-hero__content {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero (cx-hero) — B-center-text with full-bleed bg ─────── */
.cx-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
  color: #f1f5f9;
  text-align: center;
}

.cx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cx-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cx-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.72) 50%,
    rgba(15, 23, 42, 0.65) 100%
  );
}

.cx-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
}

.cx-hero__content {
  max-width: 840px;
  margin: 0 auto;
}

.cx-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.cx-hero__headline {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}

.cx-hero__subhead {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(241, 245, 249, 0.82);
  max-width: 620px;
  margin: 0 auto 36px;
}

.cx-hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cx-hero { min-height: 72vh; }
  .cx-hero__subhead { font-size: 17px; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.cx-btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.cx-btn--primary {
  background: var(--accent);
  color: #ffffff;
}

.cx-btn--primary:hover { opacity: 0.88; color: #ffffff; }

.cx-btn--outline {
  background: transparent;
  color: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(241, 245, 249, 0.28);
}

.cx-btn--outline:hover {
  border-color: rgba(241, 245, 249, 0.6);
  color: #ffffff;
}

.cx-btn--outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(15, 23, 42, 0.18);
}

.cx-btn--outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cx-btn--sm { padding: 9px 18px; font-size: 13px; }

/* ── Section utility ─────────────────────────────────────────── */
.cx-section {
  padding: 80px 0;
}

.cx-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.cx-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.cx-section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cx-section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Stats (cx-stats) — B-cards variant ─────────────────────── */
.cx-stats {
  background: var(--bg-off);
  padding: 64px 0;
}

.cx-stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.cx-stats__card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.cx-stats__number {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  font-family: var(--font-display);
}

.cx-stats__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 8px;
}

.cx-stats__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cx-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cx-stats__number { font-size: 30px; }
}

/* ── Features (cx-features) — C-alternating variant ────────── */
.cx-features {
  padding: 80px 0;
  background: #ffffff;
}

.cx-features__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-features__rows {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 16px;
}

.cx-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cx-features__row--reversed .cx-features__text-col { order: 2; }
.cx-features__row--reversed .cx-features__img-col  { order: 1; }

.cx-features__text-col {}

.cx-features__img-col {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
}

.cx-features__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.10);
}

.cx-features__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.cx-features__name {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.cx-features__one-liner {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.45;
}

.cx-features__body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .cx-features__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cx-features__row--reversed .cx-features__text-col,
  .cx-features__row--reversed .cx-features__img-col {
    order: unset;
  }
}

/* ── Process (cx-process) — A-numbered variant ──────────────── */
.cx-process {
  padding: 80px 0;
  background: var(--bg-off);
}

.cx-process__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.cx-process__step {
  background: #ffffff;
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid var(--border);
}

.cx-process__num {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.cx-process__name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cx-process__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cx-process__steps { grid-template-columns: 1fr; }
}

/* ── Testimonials (cx-testimonials) — A-quotes variant ─────── */
.cx-testimonials {
  padding: 80px 0;
  background: var(--bg-off);
}

.cx-testimonials__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cx-testimonial {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cx-testimonial__quote {
  font-size: 17px;
  line-height: 1.6;
  color: #1f2937;
  margin: 0 0 28px;
  font-weight: 500;
  font-style: normal;
}

.cx-testimonial__attribution {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.cx-testimonial__avatar {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.cx-testimonial__avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.cx-testimonial__author {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  align-self: end;
}

.cx-testimonial__role {
  font-size: 13px;
  color: #6b7280;
  align-self: start;
}

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

/* ── CTA banner (cx-cta) ─────────────────────────────────────── */
.cx-cta {
  background: var(--accent);
  padding: 72px 0;
  text-align: center;
}

.cx-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-cta__headline,
.cx-cta__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cx-cta__body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cx-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cx-cta .cx-btn--primary {
  background: #ffffff;
  color: var(--accent);
}

.cx-cta .cx-btn--primary:hover { opacity: 0.9; color: var(--accent); }

.cx-cta .cx-btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.cx-cta .cx-btn--outline:hover { border-color: #ffffff; }

/* ── Footer (cx-footer) ─────────────────────────────────────── */
.cx-footer {
  background: #0f172a;
  padding: 64px 0 0;
  color: #94a3b8;
}

.cx-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.cx-footer__brand {}

.cx-footer__logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-display);
  color: #f1f5f9;
  text-decoration: none;
  margin-bottom: 12px;
}

.cx-footer__logo span { color: var(--accent); }

.cx-footer__tagline {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  max-width: 280px;
}

.cx-footer__nav h4 {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cx-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cx-footer__nav ul li { margin-bottom: 10px; }

.cx-footer__nav ul li a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.cx-footer__nav ul li a:hover { color: var(--accent); }

.cx-footer__contact p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.cx-footer__contact i {
  color: var(--accent);
  width: 16px;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.cx-footer__bottom {
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}

.cx-footer__legal {
  display: flex;
  gap: 20px;
}

.cx-footer__legal a {
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.cx-footer__legal a:hover { color: #94a3b8; }

@media (max-width: 768px) {
  .cx-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cx-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── Cookie Banner (cx-cookie) — A-generic hidden-attr ─────── */
.cx-cookie {
  position: fixed;
  inset: auto 16px 16px 16px;
  max-width: 720px;
  margin-left: auto;
  z-index: 1080;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  border-radius: 12px;
  padding: 14px 18px;
}

.cx-cookie[hidden] { display: none !important; }

.cx-cookie__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cx-cookie__text {
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #374151;
}

.cx-cookie__text a { color: var(--accent); }

.cx-cookie__actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

@media (max-width: 576px) {
  .cx-cookie { inset: auto 8px 8px 8px; }
  .cx-cookie__actions { width: 100%; justify-content: flex-end; }
}

/* ── Page hero (sub-pages) ──────────────────────────────────── */
.cx-page-hero {
  background: var(--bg-off);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}

.cx-page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-page-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.cx-page-hero__title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cx-page-hero__lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
}

/* ── About page sections ─────────────────────────────────────── */
.cx-about {
  padding: 80px 0;
}

.cx-about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cx-about__story h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cx-about__story p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.cx-about__values ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cx-about__values ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.cx-about__values ul li:last-child { border-bottom: none; }

.cx-about__values ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cx-about__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Mission section ─────────────────────────────────────────── */
.cx-mission {
  background: var(--accent);
  padding: 72px 0;
  color: #fff;
}

.cx-mission__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cx-mission__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.cx-mission__statement {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

.cx-mission__context {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Team section (cx-team) — A-grid on team.html ──────────── */
.cx-team {
  padding: 80px 0;
  background: #ffffff;
}

.cx-team__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.cx-team__grid:has(> *:only-child) {
  grid-template-columns: 1fr;
  max-width: 360px;
}

.cx-team__card {
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cx-team__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.10);
}

.cx-team__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cx-team__title {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .cx-team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .cx-team__grid { grid-template-columns: 1fr; }
}

/* ── Product page sections ──────────────────────────────────── */

/* Problem section */
.cx-problem {
  padding: 80px 0;
  background: var(--bg-off);
}

.cx-problem__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 16px;
}

.cx-problem__text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cx-problem__text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cx-problem__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cx-problem__stat {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.cx-problem__stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 6px;
}

.cx-problem__stat-label {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .cx-problem__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* How it works section */
.cx-how {
  padding: 80px 0;
  background: #ffffff;
}

.cx-how__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.cx-how__step {
  background: var(--bg-off);
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid var(--border);
}

.cx-how__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cx-how__step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cx-how__step-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cx-how__steps { grid-template-columns: 1fr; }
}

/* Target customer section */
.cx-target {
  padding: 80px 0;
  background: var(--bg-off);
}

.cx-target__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-target__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
}

.cx-target__card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid var(--border);
}

.cx-target__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cx-target__card h3 i {
  color: var(--accent);
  font-size: 15px;
}

.cx-target__card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .cx-target__grid { grid-template-columns: 1fr; }
}

/* Integrations section */
.cx-integrations {
  padding: 56px 0;
  background: #ffffff;
}

.cx-integrations__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cx-integrations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.cx-integrations__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

.cx-integrations__item i {
  color: var(--accent);
  font-size: 14px;
}

/* Stage focus section */
.cx-stage {
  padding: 64px 0;
  background: #ffffff;
}

.cx-stage__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-stage__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 52, 74, 0.08);
  border: 1px solid rgba(224, 52, 74, 0.18);
  border-radius: 32px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.cx-stage__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cx-stage__body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 720px;
}

/* Founding story section */
.cx-founding {
  padding: 80px 0;
  background: #ffffff;
}

.cx-founding__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-founding__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 16px;
}

.cx-founding__text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.cx-founding__text p:last-child { margin-bottom: 0; }

.cx-founding__sidebar {
  background: var(--bg-off);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.cx-founding__sidebar h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 20px;
}

.cx-founding__sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cx-founding__sidebar ul li {
  font-size: 15px;
  color: var(--text-body);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.cx-founding__sidebar ul li:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .cx-founding__body { grid-template-columns: 1fr; gap: 32px; }
}

/* Approach/values section on about */
.cx-approach {
  padding: 80px 0;
  background: var(--bg-off);
}

.cx-approach__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.cx-approach__card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid var(--border);
}

.cx-approach__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cx-approach__card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .cx-approach__grid { grid-template-columns: 1fr; }
}

/* Team preview on about page */
.cx-team-preview {
  padding: 72px 0;
  background: #ffffff;
}

.cx-team-preview__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cx-team-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  text-align: left;
}

.cx-team-preview__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-off);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
}

.cx-team-preview__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.cx-team-preview__info {}

.cx-team-preview__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.cx-team-preview__title {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .cx-team-preview__grid { grid-template-columns: 1fr; }
}

/* Team heading in team.html */
.cx-team-heading {
  padding: 0 0 48px;
  text-align: center;
}

/* ── Contact page (cx-contact) ──────────────────────────────── */
.cx-contact {
  padding: 80px 0;
  background: #ffffff;
}

.cx-contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.cx-contact__info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cx-contact__info p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cx-contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cx-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}

.cx-contact__detail i {
  color: var(--accent);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
}

.cx-contact__form {
  background: var(--bg-off);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
}

.cx-form__group {
  margin-bottom: 20px;
}

.cx-form__group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.cx-form__control {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-primary);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  box-sizing: border-box;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}

.cx-form__control:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}

.cx-form__control::placeholder {
  color: #94a3b8;
}

textarea.cx-form__control {
  resize: vertical;
  min-height: 120px;
}

select.cx-form__control {
  cursor: pointer;
}

.cx-form__message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

.cx-form__message.success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid rgba(21, 128, 61, 0.2);
  display: block;
}

.cx-form__message.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, 0.2);
  display: block;
}

@media (max-width: 768px) {
  .cx-contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .cx-contact__form { padding: 28px 20px; }
}

/* ── 404 page ──────────────────────────────────────────────── */
.cx-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-off);
  padding: 80px 24px;
}

.cx-404__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cx-404__code {
  font-size: 96px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-display);
  opacity: 0.9;
  margin-bottom: 16px;
}

.cx-404__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cx-404__body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cx-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Blog index (cx-posts) ──────────────────────────────────── */
.cx-posts {
  padding: 64px 0 80px;
  background: #ffffff;
}

.cx-posts__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.cx-posts__grid > li {
  list-style: none;
}

.cx-post-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s;
}

.cx-post-card:hover {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.10);
}

.cx-post-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
}

.cx-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.cx-post-card:hover .cx-post-card__thumb img {
  transform: scale(1.04);
}

.cx-post-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cx-post-card__category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.cx-post-card__date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.cx-post-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.cx-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.cx-post-card__title a:hover { color: var(--accent); }

.cx-post-card__excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.cx-post-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
}

.cx-post-card__read-more:hover { opacity: 0.8; }

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

@media (max-width: 576px) {
  .cx-posts__grid { grid-template-columns: 1fr; }
}

/* ── Blog article detail (cx-post) ─────────────────────────── */
.cx-post {
  padding: 56px 0 80px;
  background: #ffffff;
}

.cx-post__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.cx-post__header {
  margin-bottom: 36px;
}

.cx-post__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.cx-post__category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.cx-post__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cx-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.cx-post__author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.cx-post__cover {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}

.cx-post__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blog article reading-width CSS block (required by verify) */
.cx-post__body, .c-post__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto;
}

.cx-post__body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
}

.cx-post__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 14px;
}

.cx-post__body p {
  margin-bottom: 20px;
}

.cx-post__body ul, .cx-post__body ol {
  margin-bottom: 20px;
  padding-left: 28px;
}

.cx-post__body li {
  margin-bottom: 8px;
}

.cx-post__body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--bg-off);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-body);
}

/* Related articles */
.cx-related {
  background: var(--bg-off);
  padding: 64px 0;
}

.cx-related__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cx-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.cx-related-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.cx-related-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  max-height: 200px;
}

.cx-related-card__img img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.cx-related-card__body {
  padding: 20px;
  flex: 1;
}

.cx-related-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.cx-related-card__title a {
  color: inherit;
  text-decoration: none;
}

.cx-related-card__title a:hover { color: var(--accent); }

.cx-related-card__date {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .cx-related__grid { grid-template-columns: 1fr; }
}

/* ── Legal pages ────────────────────────────────────────────── */
.cx-legal {
  padding: 64px 0 80px;
  background: #ffffff;
}

.cx-legal__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.cx-legal__body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 36px 0 14px;
}

.cx-legal__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 10px;
}

.cx-legal__body p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cx-legal__body ul {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 28px;
}

.cx-legal__body li {
  margin-bottom: 8px;
}

.cx-legal__body a {
  color: var(--accent);
}

.cx-legal__last-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ── Auth pages (login/ — Pattern A subfolder) ──────────────── */
.cx-auth-page {
  min-height: 100vh;
  display: flex;
  background: #070D1A;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(224, 52, 74, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(224, 52, 74, 0.10) 0%, transparent 50%),
    #070D1A;
}

.cx-auth__split {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.cx-auth__form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.cx-auth__info-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.cx-auth__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 32px;
}

.cx-auth__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.cx-auth__logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #f1f5f9;
  font-family: var(--font-display);
}

.cx-auth__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(8px);
}

.cx-auth__card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.cx-auth__card p.cx-auth__subtitle {
  font-size: 15px;
  color: rgba(241, 245, 249, 0.65);
  margin-bottom: 28px;
  line-height: 1.55;
}

.cx-auth__form .cx-form__group {
  margin-bottom: 18px;
}

.cx-auth__form .cx-form__group label {
  color: #cbd5e1;
  font-size: 13px;
}

.cx-auth__form .cx-form__control {
  background: rgba(255, 255, 255, 0.07);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cx-auth__form .cx-form__control:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.cx-auth__form .cx-form__control::placeholder {
  color: #475569;
}

.cx-auth__form select.cx-form__control option {
  background: #1e293b;
  color: #f1f5f9;
}

.cx-auth__submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  font-family: var(--font-sans);
  transition: filter 0.2s;
}

.cx-auth__submit:hover { filter: brightness(1.1); }

.cx-auth__links {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(241, 245, 249, 0.6);
}

.cx-auth__links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.cx-auth__links a:hover { text-decoration: underline; }

.cx-auth__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(241, 245, 249, 0.55);
  text-decoration: none;
  margin-bottom: 24px;
}

.cx-auth__back:hover { color: #f1f5f9; }

.cx-auth__remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(241, 245, 249, 0.65);
}

.cx-auth__remember label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.cx-auth__remember a {
  color: var(--accent);
  text-decoration: none;
}

.cx-auth__form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
  align-items: center;
  gap: 8px;
}

.cx-auth__form-message.success {
  background: rgba(21, 128, 61, 0.15);
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, 0.2);
  display: flex;
}

.cx-auth__form-message.error {
  background: rgba(185, 28, 28, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(252, 165, 165, 0.2);
  display: flex;
}

.cx-auth__terms {
  font-size: 12px;
  color: rgba(241, 245, 249, 0.45);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.cx-auth__terms a {
  color: rgba(241, 245, 249, 0.65);
  text-decoration: underline;
}

/* Info side */
.cx-auth__info-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.cx-auth__info-headline {
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.cx-auth__info-desc {
  font-size: 16px;
  color: rgba(241, 245, 249, 0.65);
  line-height: 1.65;
  margin-bottom: 36px;
}

.cx-auth__features,
.auth-features {
  display: flex;
  flex-direction: column;
}

.cx-auth__features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cx-auth__features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(241, 245, 249, 0.82);
  line-height: 1.5;
}

.cx-auth__features-list li i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.cx-auth__info-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: auto;
}

.cx-auth__info-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
}

.cx-auth__info-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(241, 245, 249, 0.6);
  margin-top: 4px;
}

/* Dashboard */
.cx-dashboard {
  min-height: 100vh;
  display: flex;
  background: #0d1117;
  color: #f1f5f9;
}

.cx-dashboard__sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #070D1A;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}

.cx-dashboard__sidebar-logo {
  padding: 8px 24px 24px;
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #f1f5f9;
  text-decoration: none;
  font-family: var(--font-display);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 16px;
}

.cx-dashboard__nav {
  list-style: none;
  padding: 0 12px;
  margin: 0;
  flex: 1;
}

.cx-dashboard__nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(241, 245, 249, 0.65);
  text-decoration: none;
  transition: all 0.2s;
}

.cx-dashboard__nav li a:hover,
.cx-dashboard__nav li a.active {
  background: rgba(224, 52, 74, 0.12);
  color: #f1f5f9;
}

.cx-dashboard__nav li a i {
  width: 16px;
  color: var(--accent);
}

.cx-dashboard__logout {
  padding: 0 12px;
  margin-top: auto;
}

.cx-dashboard__logout a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: rgba(241, 245, 249, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.cx-dashboard__logout a:hover { color: #f1f5f9; }

.cx-dashboard__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cx-dashboard__header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #070D1A;
}

.cx-dashboard__header h1 {
  font-size: 22px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
  font-family: var(--font-display);
}

.cx-dashboard__header p {
  font-size: 14px;
  color: rgba(241, 245, 249, 0.55);
  margin: 4px 0 0;
}

.cx-dashboard__content {
  padding: 32px;
  flex: 1;
}

.cx-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.cx-dashboard__stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px;
}

.cx-dashboard__stat-card .stat-label {
  font-size: 13px;
  color: rgba(241, 245, 249, 0.5);
  margin-bottom: 8px;
  display: block;
}

.cx-dashboard__stat-card .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #f1f5f9;
  font-family: var(--font-display);
  display: block;
}

.cx-dashboard__stat-card .stat-sub {
  font-size: 12px;
  color: rgba(241, 245, 249, 0.4);
  margin-top: 4px;
  display: block;
}

.cx-dashboard__section-title {
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.cx-dashboard__activity {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.cx-dashboard__activity-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  gap: 16px;
}

.cx-dashboard__activity-item:last-child { border-bottom: none; }

.cx-dashboard__activity-item .activity-title {
  flex: 1;
  color: rgba(241, 245, 249, 0.85);
}

.cx-dashboard__activity-item .activity-status {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.activity-status.published {
  background: rgba(21, 128, 61, 0.15);
  color: #86efac;
}

.activity-status.draft {
  background: rgba(245, 166, 35, 0.15);
  color: #fcd34d;
}

.cx-dashboard__activity-item .activity-date {
  font-size: 13px;
  color: rgba(241, 245, 249, 0.4);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .cx-dashboard__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cx-auth__split { flex-direction: column; }
  .cx-auth__info-side { display: none; }
  .cx-auth__form-side { padding: 32px 24px; min-height: 100vh; }
  .cx-auth__card { max-width: 100%; }
  .cx-dashboard { flex-direction: column; }
  .cx-dashboard__sidebar { width: 100%; }
  .cx-dashboard__stats { grid-template-columns: repeat(2, 1fr); }
}

/* Auth mini-footer */
.cx-auth-mini-footer {
  padding: 16px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(241, 245, 249, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cx-auth-mini-footer a {
  color: rgba(241, 245, 249, 0.55);
  text-decoration: none;
  margin: 0 8px;
}

.cx-auth-mini-footer a:hover { color: rgba(241, 245, 249, 0.85); }

/* Form row (2-col) */
.cx-auth__form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .cx-auth__form-pair { grid-template-columns: 1fr; }
}

/* ── Pricing page ───────────────────────────────────────────── */
.cx-pricing {
  background: #ffffff;
  padding: 80px 0;
}

.cx-pricing__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cx-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .cx-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

.cx-pricing__card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cx-pricing__card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 20px 40px rgba(224, 52, 74, 0.12);
}

.cx-pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.cx-pricing__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cx-pricing__price {
  margin-bottom: 12px;
}

.cx-pricing__amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.cx-pricing__period {
  font-size: 15px;
  color: var(--text-muted);
  margin-left: 4px;
}

.cx-pricing__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.cx-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.cx-pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  padding: 7px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.cx-pricing__features li:last-child {
  border-bottom: none;
}

.cx-pricing__features li i {
  color: var(--accent);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.cx-pricing__feat--off {
  color: var(--text-muted) !important;
  opacity: 0.6;
}

.cx-pricing__feat--off i {
  color: var(--text-muted) !important;
}

.cx-pricing__cta {
  display: block;
  text-align: center;
  margin-top: auto;
}

.cx-pricing__footnote {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.cx-pricing__footnote a {
  color: var(--accent);
  text-decoration: underline;
}

/* Verify page */
.cx-auth__verify-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.15);
  border: 1px solid rgba(134, 239, 172, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: #86efac;
}
