/* ============================================================
   CLAWPRO — REDESIGN v2
   Palette: Deep navy + Electric violet (#7C3AED) + Cyan (#06B6D4)
   Typography: Inter — refined, airy, premium
   ============================================================ */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-0: #04040C;
  /* page */
  --bg-1: #07071A;
  /* section alt */
  --bg-2: #0D0D28;
  /* card base */
  --bg-3: #12122F;
  /* card hover */

  /* Brand gradient */
  --violet: #7C3AED;
  --violet-mid: #9F5FFF;
  --violet-light: #C4B5FD;
  --cyan: #06B6D4;
  --cyan-light: #67E8F9;

  /* Text */
  --white: #FFFFFF;
  --t1: #F0F0FF;
  /* headings */
  --t2: #8888BB;
  /* body */
  --t3: #44445A;
  /* muted / labels */

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-up: rgba(255, 255, 255, 0.12);
  --border-brand: rgba(124, 58, 237, 0.35);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--violet), var(--cyan));
  --grad-brand-rev: linear-gradient(135deg, var(--cyan), var(--violet));
  --grad-card: linear-gradient(160deg, #0D0D28 0%, #090920 100%);

  /* Glow */
  --glow-v: rgba(124, 58, 237, 0.25);
  --glow-c: rgba(6, 182, 212, 0.18);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.22s var(--ease);
}

/* ── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--bg-0);
  color: var(--t2);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

em {
  font-style: normal;
}

strong {
  color: var(--t1);
  font-weight: 600;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 110px 0;
}

/* ── TYPOGRAPHY SCALE ──────────────────────────────────────── */
h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--t1);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--t1);
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--t1);
}

h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t1);
}

/* gradient text */
.gtext {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--t2);
}

/* ── PILLS ───────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 8px var(--violet);
  flex-shrink: 0;
}

.pill-cyan {
  color: var(--cyan-light);
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.22);
}

.pill-cyan::before {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.pill-green {
  color: #6EE7B7;
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.22);
}

.pill-green::before {
  background: #34D399;
  box-shadow: 0 0 8px #34D399;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.45);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--t1);
  border: 1px solid var(--border-up);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--violet-light);
  border: 1px solid var(--border-brand);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.5);
}

.btn-full {
  width: 100%;
}

.btn-xl {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-nav {
  padding: 8px 18px;
  font-size: 0.84rem;
}

.play-icon {
  font-size: 0.65rem;
  opacity: 0.8;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  transition: background var(--trans), border-color 0.3s;
}

.nav.scrolled {
  background: rgba(4, 4, 12, 0.8);
  backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-mark svg {
  display: block;
}

.logo-wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t2);
  transition: color var(--trans);
}

.nav-links a:hover {
  color: var(--t1);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* radial glows */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 900px;
  height: 900px;
  top: -350px;
  right: -200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 60%);
  filter: blur(60px);
}

.orb-2 {
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 65%);
  filter: blur(70px);
}

.orb-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 35%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  filter: blur(80px);
}

/* grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 60px 28px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--t3);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.6);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.85), 0 0 32px rgba(6, 182, 212, 0.3);
  }
}

.hero-title {
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--t2);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-0);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.proof-avatars span:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.82rem;
  color: var(--t2);
  line-height: 1.4;
}

.proof-text strong {
  color: var(--t1);
  display: block;
}

/* ── HERO VISUAL (Dashboard) ─────────────────────────────────── */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: linear-gradient(145deg, #0F0F2A 0%, #080820 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(124, 58, 237, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

/* subtle top gradient line */
.dashboard-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.6), rgba(6, 182, 212, 0.6), transparent);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dots span:nth-child(1) {
  background: #FF5F57;
}

.dash-dots span:nth-child(2) {
  background: #FEBC2E;
}

.dash-dots span:nth-child(3) {
  background: #28C840;
}

.dash-title {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--t3);
  font-family: 'JetBrains Mono', monospace;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #34D399;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 6px #34D399;
  animation: pulse-dot 2s infinite;
}

.dash-body {
  display: grid;
  grid-template-columns: 170px 1fr;
}

.dash-sidebar {
  padding: 12px 8px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.agent-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  transition: background var(--trans);
  cursor: pointer;
  position: relative;
}

.agent-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.agent-item.active {
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.agent-avatar {
  font-size: 1rem;
  flex-shrink: 0;
}

.agent-item>div p {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.2;
}

.agent-item>div small {
  font-size: 0.68rem;
  color: var(--t3);
}

.agent-online {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 5px #34D399;
}

.dash-main {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.active-metric {
  border-color: rgba(124, 58, 237, 0.3);
}

.metric-label {
  font-size: 0.68rem;
  color: var(--t3);
  font-weight: 500;
}

.metric-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--t1);
  font-family: 'JetBrains Mono', monospace;
}

.live-val {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dash-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  color: var(--t2);
}

.feed-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feed-dot.green {
  background: #34D399;
  box-shadow: 0 0 4px #34D399;
}

.feed-dot.amber {
  background: #F59E0B;
  box-shadow: 0 0 4px #F59E0B;
}

.feed-dot.blue {
  background: var(--cyan);
  box-shadow: 0 0 4px var(--cyan);
}

.feed-item time {
  margin-left: auto;
  color: var(--t3);
  font-size: 0.65rem;
  white-space: nowrap;
}

/* floating badge above mockup */
.hero-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan-light);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}

.badge-label {
  font-size: 0.65rem;
  color: var(--t3);
  font-weight: 500;
  text-align: center;
}

/* ── LOGOS STRIP ─────────────────────────────────────────────── */
.logos-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.04), transparent);
}

.logos-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logos-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t3);
  white-space: nowrap;
}

.logos-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pub-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: -0.01em;
  transition: color var(--trans);
}

.pub-name:hover {
  color: var(--t2);
}

.pub-sep {
  color: var(--t3);
  font-size: 0.65rem;
}

/* ── AUDIENCE CARDS ─────────────────────────────────────────── */
.audiences {
  background: var(--bg-1);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.audience-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease),
    border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}

.audience-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 58, 237, 0.08);
}

.audience-card:hover::before {
  opacity: 1;
}

.acard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.acard-emoji {
  font-size: 1.8rem;
}

.acard-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-light);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.22);
  padding: 3px 10px;
  border-radius: 100px;
}

.audience-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.audience-card>p {
  font-size: 0.85rem;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 18px;
}

.acard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acard-list li {
  font-size: 0.8rem;
  color: var(--t2);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.acard-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.65rem;
  margin-top: 2px;
}

/* ── ALWAYS-ON ───────────────────────────────────────────────── */
.always-on {
  background: var(--bg-0);
}

.always-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.always-text h2 {
  margin-bottom: 16px;
}

.always-text>p {
  margin-bottom: 32px;
}

.always-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}

.af-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.af-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-row strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.af-row p {
  font-size: 0.84rem;
  color: var(--t2);
  line-height: 1.55;
}

.always-note {
  font-size: 0.85rem;
  color: var(--t2);
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: var(--r-sm);
  padding: 12px 16px;
}

/* Terminal */
.terminal-window {
  background: #06060F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 28px 70px rgba(0, 0, 0, 0.7);
  margin-bottom: 14px;
}

.tw-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tw-dots {
  display: flex;
  gap: 6px;
}

.tw-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2A2A4A;
}

.tw-label {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--t3);
}

.tw-content {
  padding: 16px 18px;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tl {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.77rem;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.3s;
}

.tl.show {
  opacity: 1;
}

.cursor-row {
  opacity: 1 !important;
}

.t-time {
  color: #2A2A4A;
  width: 64px;
  flex-shrink: 0;
}

.t-ok {
  color: #34D399;
  width: 10px;
  flex-shrink: 0;
  font-size: 0.6rem;
}

.t-info {
  color: #5555AA;
  width: 10px;
  flex-shrink: 0;
}

.tl span:last-child {
  color: #6666AA;
}

.t-hi {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.t-warn {
  color: #F87171;
  font-style: normal;
}

.tl-cursor {
  color: var(--violet-light);
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.telegram-pill {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid var(--border-brand);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  backdrop-filter: blur(8px);
}

.tg-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tg-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet-light);
  margin-bottom: 4px;
}

.tg-bubble p {
  font-size: 0.83rem;
  color: var(--t1);
  line-height: 1.5;
  margin-bottom: 5px;
}

.tg-bubble time {
  font-size: 0.68rem;
  color: var(--t3);
}

/* ── SECURITY ────────────────────────────────────────────────── */
.security-section {
  background: var(--bg-1);
}

.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sec-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-diagram {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sec-node {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-up);
  border-radius: var(--r-md);
  padding: 13px 20px;
  text-align: center;
  min-width: 130px;
}

.sec-node.highlighted {
  border-color: var(--border-brand);
  background: rgba(124, 58, 237, 0.06);
}

.sec-node span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 5px;
}

.sec-node small {
  font-size: 0.7rem;
  color: var(--t2);
  font-weight: 500;
}

.sec-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--violet), var(--cyan));
  margin: 0 auto;
  opacity: 0.5;
}

.sec-labels {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.sec-labels span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--t3);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

.sec-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sec-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--trans);
}

.sec-badge:hover {
  border-color: var(--border-up);
}

.security-text h2 {
  margin-bottom: 14px;
}

.security-text>p {
  margin-bottom: 26px;
}

.sec-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.sp {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sp>span {
  color: #34D399;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.sp p {
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.6;
}

.sec-note {
  font-size: 0.83rem;
  color: var(--t2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-left: 2px solid var(--violet);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-it-works {
  background: var(--bg-0);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), border-color var(--trans), background var(--trans);
  background: var(--grad-card);
}

.step-card:first-child {
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

.step-card:last-child {
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.step-card:hover {
  border-color: var(--border-up);
  background: var(--bg-3);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* top accent line on hover */
.step-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--trans);
}

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

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--violet-light);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dur {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--t3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.65;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  background: var(--bg-1);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testi-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all var(--trans);
  opacity: 0;
  transform: translateY(16px);
}

.testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testi-card:hover {
  border-color: var(--border-up);
  transform: translateY(-4px);
}

.testi-card.testi-large {
  grid-column: 1/3;
}

.testi-card.testi-highlight {
  border-color: var(--border-brand);
  background: rgba(124, 58, 237, 0.04);
}

.testi-stars {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #F59E0B;
  margin-bottom: 14px;
}

.testi-card blockquote {
  font-size: 0.92rem;
  color: var(--t1);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}

.testi-large blockquote {
  font-size: 1.05rem;
}

.testi-card cite {
  font-size: 0.78rem;
  color: var(--t3);
  font-style: normal;
  font-weight: 600;
}

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing {
  background: var(--bg-0);
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.price-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: all var(--trans);
  opacity: 0;
  transform: translateY(20px);
}

.price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card:hover {
  border-color: var(--border-up);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
  border-color: var(--border-brand);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.08) 0%, #0D0D28 60%);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--grad-brand);
  border-radius: 100px;
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.05rem;
}

.price-desc {
  font-size: 0.86rem;
  color: var(--t2);
  line-height: 1.55;
}

.price-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-num span {
  font-size: 1.4rem;
  vertical-align: super;
  font-weight: 400;
}

.price-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-list li {
  font-size: 0.84rem;
  color: var(--t2);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.price-addon {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 14px;
}

.addon-left {
  flex: 1;
}

.addon-left h4 {
  margin-bottom: 5px;
}

.addon-left p {
  font-size: 0.85rem;
  color: var(--t2);
}

.addon-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.addon-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.04em;
}

.addon-unit {
  font-size: 0.72rem;
  color: var(--t3);
}

.price-guarantee {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.guarantee-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.price-guarantee strong {
  display: block;
  color: var(--t1);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.price-guarantee p {
  font-size: 0.85rem;
  color: var(--t2);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  background: var(--bg-1);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 88px;
}

.faq-header h2 {
  margin-bottom: 14px;
}

.faq-header>p {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.65;
}

.faq-link {
  color: var(--violet-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-link:hover {
  color: var(--t1);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item:hover {
  border-color: var(--border-up);
}

.faq-item[open] {
  border-color: var(--border-brand);
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--t1);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: color var(--trans);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--t3);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--violet-light);
}

.faq-item[open] summary {
  color: var(--violet-light);
}

.faq-item p {
  padding: 0 20px 18px;
  padding-top: 14px;
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-0);
}

.cta-box {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--grad-brand);
  opacity: 0.7;
}

.cta-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 35% 50% at 80% 90%, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 64px;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content>p {
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1rem;
}

.cta-form {
  margin-bottom: 16px;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--t3);
  margin-bottom: 28px;
}

.cta-reassure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-reassure span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #34D399;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 28px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.86rem;
  color: var(--t3);
  max-width: 260px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t3);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: var(--t2);
  margin-bottom: 8px;
  transition: color var(--trans);
}

.footer-col a:hover {
  color: var(--t1);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--t3);
}

.footer-bottom a {
  color: var(--violet-light);
  transition: color var(--trans);
}

.footer-bottom a:hover {
  color: var(--t1);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 600px;
  }

  .hero-badge {
    top: -12px;
    right: 0;
  }

  .always-inner,
  .security-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .security-inner .sec-visual-wrap {
    order: 2;
  }

  .security-inner .security-text {
    order: 1;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-header {
    position: static;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding: 48px 28px 72px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-card.testi-large {
    grid-column: 1;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .step-card:first-child {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }

  .step-card:last-child {
    border-radius: 0 0 var(--r-lg) var(--r-lg);
  }

  .price-addon {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-content {
    padding: 48px 24px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .dash-body {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  .hero-badge {
    display: none;
  }
}

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

  .hero-ctas {
    flex-direction: column;
  }

  .btn-xl {
    width: 100%;
  }

  .cta-reassure {
    gap: 14px;
  }
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  animation: fadeUp 0.6s 0.05s both;
}

.hero-title {
  animation: fadeUp 0.6s 0.12s both;
}

.hero-sub {
  animation: fadeUp 0.6s 0.20s both;
}

.hero-ctas {
  animation: fadeUp 0.6s 0.28s both;
}

.hero-social-proof {
  animation: fadeUp 0.6s 0.36s both;
}

.hero-visual {
  animation: fadeUp 0.8s 0.15s both;
}

.reveal-el {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal-el.visible {
  opacity: 1;
  transform: none;
}