/* ═══════════════════════════════════════════════════════════════════
   TEXXTO BRAND KIT v1.0 — Shared Design System
   Applied to: all pages. Override page-specific styles BELOW this link.
   ═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --brand:       #635BFF;
  --brand-dark:  #4F46E5;
  --brand-dim:   rgba(99,91,255,0.12);
  --brand-glow:  rgba(99,91,255,0.28);
  --green:       #00D4AA;
  --green-dim:   rgba(0,212,170,0.10);
  --amber:       #F59E0B;
  --red:         #EF4444;
  --red-dim:     rgba(239,68,68,0.10);

  --d-bg:        #08080F;
  --d-raised:    #0F0F1A;
  --d-card:      #121220;
  --d-card2:     #16162A;
  --d-border:    rgba(255,255,255,0.07);
  --d-border2:   rgba(255,255,255,0.13);
  --d-ink:       #FFFFFF;
  --d-ink2:      rgba(255,255,255,0.62);
  --d-ink3:      rgba(255,255,255,0.32);

  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'SF Mono', 'Fira Code', Menlo, monospace;

  --r:     8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 2px 8px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 4px 16px rgba(0,0,0,0.2), 0 24px 64px rgba(0,0,0,0.2);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-optical-sizing: auto; }
body {
  font-family: var(--sans);
  background: var(--d-bg);
  color: var(--d-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }


/* ════════════════════════════════════
   NAV
   ════════════════════════════════════ */
.tx-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--d-border);
  background: rgba(8,8,15,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.tx-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.tx-nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--d-ink);
  flex-shrink: 0;
}
.tx-nav-logo span { color: var(--brand); }
.tx-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.tx-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--d-ink2);
  transition: color 0.15s;
  white-space: nowrap;
}
.tx-nav-links a:hover { color: var(--d-ink); }
.tx-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
/* Mobile nav hamburger + drawer */
.tx-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--d-ink2);
  cursor: pointer;
  border-radius: var(--r);
  -webkit-tap-highlight-color: transparent;
}
.tx-nav-toggle:hover { background: rgba(255,255,255,0.06); }
.tx-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99;
}

@media (max-width: 768px) {
  .tx-nav-toggle { display: flex; }
  .tx-nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 260px;
    background: var(--d-card);
    border-left: 1px solid var(--d-border);
    z-index: 101;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 72px 0 24px;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
  }
  .tx-nav-links.open {
    transform: translateX(0);
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
  }
  .tx-nav-overlay.open { display: block; }
  .tx-nav-links a {
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--d-border);
  }
  .tx-nav-inner { gap: 0; }
  .tx-nav-actions .btn-sm { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 640px) {
  .tx-nav-inner { padding: 0 16px; }
  .tx-nav-actions .btn-ghost { display: none; }
}


/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--brand);
  padding: 10px 22px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2), 0 4px 14px rgba(99,91,255,0.3);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.24), 0 8px 24px rgba(99,91,255,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--d-ink2);
  background: transparent;
  padding: 9px 18px;
  border-radius: var(--r);
  border: 1px solid var(--d-border2);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.28);
  color: var(--d-ink);
  background: rgba(255,255,255,0.05);
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--brand);
  padding: 15px 30px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-hero:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(99,91,255,0.48);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.38);
}


/* ════════════════════════════════════
   BADGES / EYEBROWS
   ════════════════════════════════════ */
/* Pill badge — audience targeting (reference: the user's B2B SaaS ad style) */
.tx-audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1.5px solid rgba(99,91,255,0.4);
  background: rgba(99,91,255,0.10);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 24px;
}
.tx-audience-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* Hero badge — solid fill white text (high contrast version) */
.tx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 24px;
  box-shadow: 0 0 0 1px rgba(99,91,255,0.5), 0 4px 20px rgba(99,91,255,0.38);
}
.tx-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

/* Section eyebrow */
.tx-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

/* Status / live badge */
.tx-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,212,170,0.25);
  background: rgba(0,212,170,0.08);
  border-radius: 100px;
  padding: 5px 12px;
}
.tx-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(0,212,170,0.28);
  animation: tx-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tx-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(0,212,170,0.28); }
  50%       { box-shadow: 0 0 0 5px rgba(0,212,170,0.06); }
}

/* Tag pills — status indicators (red = problem, green = solution) */
.tx-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.tx-tag-red {
  color: var(--red);
  background: var(--red-dim);
  border: 1px solid rgba(239,68,68,0.2);
}
.tx-tag-red::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.tx-tag-green {
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0,212,170,0.2);
}
.tx-tag-green::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.tx-tag-brand {
  color: var(--brand);
  background: var(--brand-dim);
  border: 1px solid rgba(99,91,255,0.22);
}


/* ════════════════════════════════════
   SECTION TYPOGRAPHY
   ════════════════════════════════════ */
.tx-section-heading {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.tx-section-sub {
  font-size: 17px;
  color: var(--d-ink2);
  line-height: 1.65;
  max-width: 560px;
}
.tx-section-sub.wide { max-width: 720px; }
.tx-h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.tx-gradient-text {
  background: linear-gradient(135deg, #A78BFA 0%, var(--brand) 40%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tx-brand-text { color: var(--brand); }
.tx-green-text { color: var(--green); }


/* ════════════════════════════════════
   HERO (shared structure)
   ════════════════════════════════════ */
.tx-hero {
  position: relative;
  height: 90vh;
  min-height: 620px;
  max-height: 860px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.tx-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 28%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: brightness(0.72) saturate(1.05);
}
.tx-hero-bg.loaded { transform: scale(1); }
.tx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,15,1.0) 0%,
    rgba(8,8,15,0.78) 30%,
    rgba(8,8,15,0.38) 58%,
    rgba(8,8,15,0.05) 100%
  );
}
.tx-hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,15,0.55) 0%, transparent 62%);
}
.tx-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 88px;
}
.tx-hero-content h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 820px;
  margin-bottom: 24px;
}
.tx-hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA 0%, var(--brand) 40%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tx-hero-sub {
  font-size: clamp(16px, 1.9vw, 20px);
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 38px;
  font-weight: 400;
}
.tx-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 640px) {
  .tx-hero-content { padding: 0 20px 64px; }
  .tx-hero-content h1 { font-size: clamp(34px, 9vw, 52px); }
}


/* ════════════════════════════════════
   METRICS BAR
   ════════════════════════════════════ */
.tx-metrics-bar {
  background: var(--d-raised);
  border-bottom: 1px solid var(--d-border);
}
.tx-metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.tx-metric {
  padding: 28px 32px;
  border-right: 1px solid var(--d-border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tx-metric:last-child { border-right: none; }
.tx-metric-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green);
}
.tx-metric-label {
  font-size: 12px;
  color: var(--d-ink3);
  line-height: 1.5;
}
@media (max-width: 800px) {
  .tx-metrics-inner { grid-template-columns: 1fr 1fr; }
  .tx-metric:nth-child(2) { border-right: none; }
  .tx-metric { border-bottom: 1px solid var(--d-border); }
}


/* ════════════════════════════════════
   CARDS
   ════════════════════════════════════ */
.tx-card {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.tx-card:hover {
  background: var(--d-card2);
  border-color: var(--d-border2);
  transform: translateY(-2px);
}
.tx-pain-card {
  background: var(--d-card);
  padding: 36px 32px;
  transition: background 0.2s;
}
.tx-pain-card:hover { background: var(--d-card2); }
.tx-pain-cost {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--d-ink);
  margin: 12px 0 8px;
}
.tx-pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.tx-pain-card p { font-size: 14px; color: var(--d-ink2); line-height: 1.65; }

/* Grid card — bordered full bleed */
.tx-grid-card {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tx-grid-card:hover { background: var(--d-card2); border-color: var(--d-border2); }
.tx-grid-card-icon {
  font-size: 28px;
  line-height: 1;
}
.tx-grid-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--d-ink);
}
.tx-grid-card p {
  font-size: 14px;
  color: var(--d-ink2);
  line-height: 1.65;
}


/* ════════════════════════════════════
   PROOF / SPLIT LAYOUTS
   ════════════════════════════════════ */
.tx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.tx-split.flip { direction: rtl; }
.tx-split.flip > * { direction: ltr; }
@media (max-width: 900px) {
  .tx-split { grid-template-columns: 1fr; gap: 48px; }
  .tx-split.flip { direction: ltr; }
}
.tx-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px var(--d-border);
}
.tx-img-wrap img { width: 100%; height: auto; }
.tx-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(8,8,15,0.95), transparent);
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tx-img-caption::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: tx-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tx-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

/* Proof stat list */
.tx-proof-list { display: flex; flex-direction: column; gap: 0; }
.tx-proof-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--d-border);
}
.tx-proof-item:first-child { padding-top: 0; }
.tx-proof-item:last-child { border-bottom: none; padding-bottom: 0; }
.tx-proof-num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--green);
  flex-shrink: 0;
  min-width: 75px;
}
.tx-proof-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.02em; }
.tx-proof-text p { font-size: 13px; color: var(--d-ink2); line-height: 1.6; }


/* ════════════════════════════════════
   FEATURE / CONTROL GRID
   ════════════════════════════════════ */
.tx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--d-border);
  border: 1px solid var(--d-border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.tx-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tx-grid-3-card {
  background: var(--d-card);
  padding: 36px 32px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tx-grid-3-card:hover { background: var(--d-card2); }
.tx-grid-3-card-icon { font-size: 24px; }
.tx-grid-3-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.tx-grid-3-card p { font-size: 14px; color: var(--d-ink2); line-height: 1.6; }
@media (max-width: 900px) {
  .tx-grid-3 { grid-template-columns: 1fr; }
  .tx-grid-2 { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════
   TESTIMONIAL BLOCK
   ════════════════════════════════════ */
.tx-testi-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: center;
}
.tx-testi-card {
  background: var(--d-raised);
  border: 1px solid var(--d-border2);
  border-radius: var(--r-xl);
  padding: 48px 52px;
  position: relative;
}
.tx-quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.8;
  color: var(--brand);
  position: absolute;
  top: 36px;
  left: 44px;
  opacity: 0.5;
}
.tx-testi-text {
  font-size: 17px;
  line-height: 1.72;
  color: var(--d-ink);
  position: relative;
  z-index: 1;
  padding-top: 32px;
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 400;
}
.tx-testi-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tx-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--d-border2);
  flex-shrink: 0;
}
.tx-testi-name { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; }
.tx-testi-role { font-size: 13px; color: var(--d-ink2); margin-top: 2px; }
.tx-testi-stars { margin-left: auto; display: flex; gap: 3px; }
.tx-star { color: var(--amber); font-size: 16px; }
.tx-testi-stat-card {
  background: var(--brand-dim);
  border: 1px solid rgba(99,91,255,0.2);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 220px;
}
.tx-testi-stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--d-ink3); margin-bottom: 8px; }
.tx-testi-stat-num { font-size: 56px; font-weight: 900; letter-spacing: -0.06em; line-height: 1; color: var(--brand); }
.tx-testi-stat-desc { font-size: 14px; color: var(--d-ink2); line-height: 1.6; margin-top: 12px; }
.tx-testi-stat-source { font-size: 11px; color: var(--d-ink3); }
@media (max-width: 900px) {
  .tx-testi-wrap { grid-template-columns: 1fr; }
  .tx-testi-card { padding: 36px 28px; }
}


/* ════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════ */
.tx-cta-section {
  padding: 100px 0;
  background: var(--d-bg);
}
.tx-cta-box {
  background: var(--d-raised);
  border: 1px solid var(--d-border2);
  border-radius: var(--r-2xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tx-cta-box::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(99,91,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.tx-cta-box-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(99,91,255,0.3);
  background: var(--brand-dim);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  position: relative;
}
.tx-cta-box h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 18px;
}
.tx-cta-box h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA 0%, var(--brand) 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tx-cta-box > p {
  font-size: 18px;
  color: var(--d-ink2);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
}
.tx-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 22px;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 16px 36px;
  border-radius: var(--r-md);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-cta-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(99,91,255,0.48);
}
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--d-ink2);
  border: 1px solid var(--d-border2);
  background: transparent;
  padding: 15px 28px;
  border-radius: var(--r-md);
  transition: all 0.2s;
}
.btn-cta-ghost:hover { color: var(--d-ink); background: rgba(255,255,255,0.05); border-color: var(--d-border2); }
.tx-cta-note {
  font-size: 13px;
  color: var(--d-ink3);
  position: relative;
}
@media (max-width: 640px) {
  .tx-cta-box { padding: 48px 28px; }
  .tx-cta-box h2 { font-size: clamp(28px, 8vw, 40px); }
}


/* ════════════════════════════════════
   CHECKLIST / ANALYTICS POINTS
   ════════════════════════════════════ */
.tx-check-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.tx-check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--d-border);
}
.tx-check-item:last-child { border-bottom: none; }
.tx-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,212,170,0.12);
  border: 1px solid rgba(0,212,170,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.tx-check-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.tx-check-item p { font-size: 13px; color: var(--d-ink2); line-height: 1.6; }


/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.tx-footer {
  border-top: 1px solid var(--d-border);
  background: var(--d-bg);
  padding: 40px 0 32px;
}
.tx-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--d-border);
  flex-wrap: wrap;
}
.tx-footer-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--d-ink);
}
.tx-footer-logo span { color: var(--brand); }
.tx-footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.tx-footer-links a {
  font-size: 14px;
  color: var(--d-ink2);
  font-weight: 500;
  transition: color 0.15s;
}
.tx-footer-links a:hover { color: var(--d-ink); }
.tx-footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--d-ink3);
}
.tx-footer-bottom a { color: var(--brand); }


/* ════════════════════════════════════
   SECTIONS — spacing
   ════════════════════════════════════ */
.tx-section { padding: 100px 0; }
.tx-section-raised { padding: 100px 0; background: var(--d-raised); }
.tx-section-header { margin-bottom: 64px; }
.tx-section-header.center { text-align: center; }
.tx-section-header.center .tx-section-sub { margin: 12px auto 0; }
