/* ═══════════════════════════════════════════════════════════════
   TrustID by ACBIZ — Main Stylesheet
   Design: Dark-anchored enterprise SaaS with teal/blue accents
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --c-teal:   #00D4A8;
  --c-blue:   #0A7BFF;
  --c-teal2:  #00B894;
  --c-blue2:  #0062CC;

  /* Neutrals */
  --c-dark:   #080C14;
  --c-dark2:  #0D1421;
  --c-dark3:  #141C2E;
  --c-slate:  #1A2438;
  --c-border: rgba(255,255,255,0.07);
  --c-border2:rgba(255,255,255,0.12);

  /* Text */
  --c-text:   #E8EDF5;
  --c-muted:  #8A96A8;
  --c-dim:    #5A6478;

  /* Accents */
  --c-amber:  #F59E0B;
  --c-red:    #EF4444;
  --c-green:  #10B981;
  --c-purple: #8B5CF6;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--c-teal) 0%, var(--c-blue) 100%);
  --grad-glow:  radial-gradient(ellipse at center, rgba(0,212,168,0.15) 0%, transparent 70%);

  /* Spacing */
  --sp-xs: 4px;  --sp-sm: 8px;  --sp-md: 16px;
  --sp-lg: 24px; --sp-xl: 40px; --sp-2xl: 64px; --sp-3xl: 96px;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px;

  /* Shadow */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.05) inset;
  --shadow-glow: 0 0 40px rgba(0,212,168,0.2);

  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--c-dark);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

/* ── Utilities ────────────────────────────────────────────── */
.tid-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-teal);
  background: rgba(0,212,168,0.08);
  border: 1px solid rgba(0,212,168,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: var(--sp-lg);
}
.tid-eyebrow--light { color: var(--c-teal); }

/* ── Buttons ──────────────────────────────────────────────── */
.tid-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--r-md);
  padding: 11px 22px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.tid-btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,212,168,0.3);
}
.tid-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,168,0.45);
}
.tid-btn--ghost {
  background: transparent;
  color: var(--c-muted);
  border: 1px solid var(--c-border2);
}
.tid-btn--ghost:hover { color: var(--c-text); border-color: var(--c-border2); background: rgba(255,255,255,0.04); }
.tid-btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border2);
}
.tid-btn--outline:hover { background: rgba(255,255,255,0.05); }
.tid-btn--outline-light {
  background: transparent;
  color: var(--c-muted);
  border: 1px solid rgba(255,255,255,0.2);
}
.tid-btn--outline-light:hover { color: var(--c-text); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.tid-btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
}
.tid-btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.tid-btn--white {
  background: #fff;
  color: var(--c-dark);
  font-weight: 600;
}
.tid-btn--white:hover { background: #f0f4ff; transform: translateY(-2px); }
.tid-btn--lg { font-size: 15px; padding: 14px 28px; border-radius: 14px; }
.tid-btn--full { width: 100%; justify-content: center; }

/* ── Logo ─────────────────────────────────────────────────── */
.tid-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.tid-logo__text {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.03em;
}
.tid-logo__text strong { color: var(--c-teal); }
.tid-logo__by {
  font-size: 10px;
  font-weight: 500;
  color: var(--c-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.tid-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.tid-nav.scrolled {
  background: rgba(8,12,20,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--c-border);
}
.tid-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  height: 72px;
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}
.tid-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  margin-left: auto;
}
.tid-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.tid-nav__link:hover { color: var(--c-text); }
.tid-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-left: var(--sp-lg);
}
.tid-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-sm);
  margin-left: auto;
}
.tid-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-muted);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.tid-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 72px;
}
.tid-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tid-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}
.tid-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.tid-hero__glow--1 {
  width: 600px; height: 400px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(0,212,168,0.18) 0%, transparent 70%);
}
.tid-hero__glow--2 {
  width: 500px; height: 400px;
  top: 100px; right: -100px;
  background: radial-gradient(circle, rgba(10,123,255,0.18) 0%, transparent 70%);
}
.tid-hero__orbs { position: absolute; inset: 0; }
.tid-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  animation: orbFloat 8s ease-in-out infinite;
}
.tid-orb--1 { width: 300px; height: 300px; background: var(--c-teal); top: 10%; left: 60%; animation-delay: 0s; }
.tid-orb--2 { width: 200px; height: 200px; background: var(--c-blue); top: 50%; left: 10%; animation-delay: 3s; }
.tid-orb--3 { width: 150px; height: 150px; background: var(--c-purple); top: 30%; left: 80%; animation-delay: 6s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.tid-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-lg) var(--sp-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-3xl);
  flex: 1;
}

.tid-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: var(--sp-lg);
}
.tid-pill__dot {
  width: 7px; height: 7px;
  background: var(--c-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--c-teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.tid-hero__headline {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-lg);
}
.tid-hero__sub {
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: var(--sp-xl);
}
.tid-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}
.tid-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
}
.tid-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-muted);
}

/* ── Verify Card ─────────────────────────────────────────── */
.tid-hero__visual { position: relative; display: flex; justify-content: flex-end; }
.tid-card--verify {
  background: var(--c-dark3);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-card);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.tid-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--c-border);
}
.tid-card__avatar {
  width: 44px; height: 44px;
  background: rgba(10,123,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tid-card__name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
}
.tid-card__sub { font-size: 12px; color: var(--c-muted); }
.tid-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: auto;
  white-space: nowrap;
}
.tid-status--success { background: rgba(16,185,129,0.12); color: #10B981; }
.tid-status--live { background: rgba(0,212,168,0.12); color: var(--c-teal); font-size: 12px; }
.tid-status__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.5s infinite;
}

.tid-card__checks { display: flex; flex-direction: column; gap: var(--sp-sm); margin-bottom: var(--sp-lg); }
.tid-check {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 13px;
}
.tid-check--done { color: var(--c-text); }
.tid-check--done svg { color: var(--c-teal); flex-shrink: 0; }
.tid-check--scanning { color: var(--c-muted); }
.tid-check__score {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-teal);
  background: rgba(0,212,168,0.08);
  padding: 2px 8px;
  border-radius: 100px;
}
.tid-spinner {
  width: 14px; height: 14px;
  border: 2px solid var(--c-border2);
  border-top-color: var(--c-teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.tid-card__risk {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md);
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.12);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-md);
}
.tid-risk-label { font-size: 12px; color: var(--c-muted); white-space: nowrap; }
.tid-risk-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.tid-risk-bar__fill {
  height: 100%;
  background: var(--c-teal);
  border-radius: 3px;
}
.tid-risk-value { font-size: 12px; font-weight: 700; white-space: nowrap; }
.tid-risk-value--low { color: var(--c-teal); }

.tid-card__footer {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--c-dim);
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-md);
}

/* ── Floating badges ─────────────────────────────────────── */
.tid-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--c-dark3);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-md);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  animation: cardFloat 5s ease-in-out infinite;
}
.tid-float--1 { top: -20px; left: -30px; animation-delay: 1s; }
.tid-float--2 { bottom: 60px; left: -40px; animation-delay: 2.5s; }
.tid-float--3 { top: 120px; right: -20px; animation-delay: 4s; }

/* ── Stats Bar ───────────────────────────────────────────── */
.tid-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--c-border);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}
.tid-stats-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.tid-stats-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--c-border2);
  margin: 0 var(--sp-xl);
}
.tid-stat { text-align: center; }
.tid-stat__num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.tid-stat__label { font-size: 12px; color: var(--c-muted); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════
   LOGOS BAND
═══════════════════════════════════════════════════════════ */
.tid-logos { padding: var(--sp-xl) 0; overflow: hidden; border-bottom: 1px solid var(--c-border); }
.tid-logos__inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-lg); }
.tid-logos__label {
  text-align: center;
  font-size: 12px;
  color: var(--c-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
}
.tid-logos__track { overflow: hidden; }
.tid-logos__slide {
  display: flex;
  gap: var(--sp-lg);
  animation: logoScroll 24s linear infinite;
  width: max-content;
}
@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tid-logo-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.tid-section {
  padding: var(--sp-3xl) 0;
}
.tid-section--dark {
  background: var(--c-dark2);
}
.tid-section--slate {
  background: var(--c-slate);
}
.tid-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.tid-section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-3xl);
}
.tid-section__title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: var(--sp-md);
}
.tid-section__title--light { color: var(--c-text); }
.tid-section__sub { font-size: 17px; color: var(--c-muted); line-height: 1.7; }
.tid-section__sub--light { color: var(--c-muted); }

/* ═══════════════════════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════════════════════ */
.tid-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.tid-feature {
  background: var(--c-dark3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.tid-feature:hover {
  border-color: var(--c-border2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.tid-feature--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0,212,168,0.05), rgba(10,123,255,0.05));
  border-color: rgba(0,212,168,0.15);
}
.tid-feature__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}
.tid-feature__icon--blue   { background: rgba(10,123,255,0.12); color: #0A7BFF; }
.tid-feature__icon--green  { background: rgba(16,185,129,0.12); color: #10B981; }
.tid-feature__icon--amber  { background: rgba(245,158,11,0.12); color: #F59E0B; }
.tid-feature__icon--purple { background: rgba(139,92,246,0.12); color: #8B5CF6; }
.tid-feature__icon--teal   { background: rgba(0,212,168,0.12);  color: #00D4A8; }
.tid-feature__icon--red    { background: rgba(239,68,68,0.12);  color: #EF4444; }

.tid-feature h3 {
  font-size: 19px;
  margin-bottom: var(--sp-sm);
  color: var(--c-text);
}
.tid-feature p { font-size: 14px; color: var(--c-muted); line-height: 1.7; }
.tid-feature__list {
  margin-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  list-style: none;
}
.tid-feature__list li {
  font-size: 13px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.tid-feature__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS STEPS
═══════════════════════════════════════════════════════════ */
.tid-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  position: relative;
}
.tid-steps::before {
  content: '';
  position: absolute;
  top: 60px; left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-blue));
  opacity: 0.3;
}
.tid-step {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.tid-step:hover {
  border-color: rgba(0,212,168,0.25);
  background: rgba(0,212,168,0.03);
}
.tid-step__num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-lg);
  line-height: 1;
}
.tid-step__icon {
  width: 60px; height: 60px;
  background: var(--c-dark3);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-teal);
  margin-bottom: var(--sp-lg);
}
.tid-step h3 { font-size: 20px; margin-bottom: var(--sp-sm); }
.tid-step p { font-size: 14px; color: var(--c-muted); line-height: 1.7; margin-bottom: var(--sp-lg); }
.tid-step__code {
  background: var(--c-dark);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  overflow-x: auto;
}
.tid-step__code pre { margin: 0; }
.tid-step__code code { font-family: 'Fira Code', 'Courier New', monospace; font-size: 11.5px; color: var(--c-muted); }

/* ═══════════════════════════════════════════════════════════
   SOLUTIONS
═══════════════════════════════════════════════════════════ */
.tid-solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.tid-solution {
  background: var(--c-dark3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  transition: border-color 0.3s, transform 0.3s;
}
.tid-solution:hover {
  border-color: rgba(0,212,168,0.2);
  transform: translateY(-3px);
}
.tid-solution__icon { font-size: 36px; margin-bottom: var(--sp-md); display: block; }
.tid-solution h3 { font-size: 18px; margin-bottom: var(--sp-sm); }
.tid-solution p { font-size: 14px; color: var(--c-muted); line-height: 1.7; margin-bottom: var(--sp-md); }
.tid-solution__link { font-size: 13px; font-weight: 600; color: var(--c-teal); text-decoration: none; }
.tid-solution__link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   COMPLIANCE
═══════════════════════════════════════════════════════════ */
.tid-compliance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.tid-compliance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}
.tid-comp-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-md);
}
.tid-comp-item__icon { font-size: 22px; flex-shrink: 0; }
.tid-comp-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--c-text); }
.tid-comp-item span { display: block; font-size: 11px; color: var(--c-muted); }

/* Audit Card */
.tid-audit-card {
  background: var(--c-dark);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tid-audit-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--c-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
}
.tid-audit-card__header .tid-status { margin-left: auto; }
.tid-audit-list { padding: var(--sp-sm) 0; }
.tid-audit-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 10px var(--sp-lg);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tid-audit-item--success { color: var(--c-text); }
.tid-audit-item--success .tid-audit-item__event::before {
  content: '✓ ';
  color: var(--c-teal);
  font-weight: 700;
}
.tid-audit-item--new { color: var(--c-muted); }
.tid-audit-item__time { color: var(--c-dim); width: 65px; flex-shrink: 0; font-family: monospace; }
.tid-audit-item__event { flex: 1; }
.tid-audit-item__ref { color: var(--c-dim); font-family: monospace; font-size: 10px; }
.tid-audit-card__footer {
  padding: var(--sp-md) var(--sp-lg);
  font-size: 11px;
  color: var(--c-dim);
  border-top: 1px solid var(--c-border);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   DEVELOPER
═══════════════════════════════════════════════════════════ */
.tid-dev-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.tid-dev-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin: var(--sp-xl) 0;
}
.tid-dev-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 14px;
  color: var(--c-muted);
}
.tid-code-window {
  background: #0D1117;
  border: 1px solid var(--c-border2);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-md);
}
.tid-code-window--response { margin-bottom: 0; }
.tid-code-window__bar {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 10px var(--sp-md);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--c-border);
}
.tid-code-window__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.tid-code-window__dot--green { background: var(--c-teal); }
.tid-code-window__title {
  font-size: 11px;
  color: var(--c-dim);
  margin-left: var(--sp-sm);
  font-family: monospace;
}
.tid-code {
  padding: var(--sp-lg);
  overflow-x: auto;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
}
.tid-code code { font-family: 'Fira Code', 'Courier New', monospace; }
.tok-comment { color: #6B7280; }
.tok-var     { color: #60A5FA; }
.tok-kw      { color: #C084FC; }
.tok-cls     { color: #34D399; }
.tok-str     { color: #FCD34D; }
.tok-fn      { color: #60A5FA; }
.tok-key     { color: #60A5FA; }
.tok-num     { color: #F87171; }

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.tid-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  align-items: start;
}
.tid-plan {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  position: relative;
  transition: border-color 0.3s;
}
.tid-plan--featured {
  background: linear-gradient(135deg, rgba(0,212,168,0.06), rgba(10,123,255,0.06));
  border-color: rgba(0,212,168,0.3);
  box-shadow: 0 0 40px rgba(0,212,168,0.1);
}
.tid-plan__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.tid-plan__name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--sp-md);
}
.tid-plan__price {
  margin-bottom: var(--sp-sm);
}
.tid-plan__price span {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tid-plan__price em { font-size: 14px; color: var(--c-muted); font-style: normal; }
.tid-plan__desc { font-size: 13px; color: var(--c-muted); margin-bottom: var(--sp-xl); min-height: 40px; }
.tid-plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-xl);
}
.tid-plan__features li {
  font-size: 14px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.tid-plan__features li::before {
  content: '✓';
  color: var(--c-teal);
  font-weight: 700;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.tid-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.tid-testimonial {
  background: var(--c-dark3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  transition: border-color 0.3s;
}
.tid-testimonial:hover { border-color: rgba(0,212,168,0.2); }
.tid-testimonial__stars { color: #F59E0B; font-size: 16px; margin-bottom: var(--sp-md); letter-spacing: 2px; }
.tid-testimonial p { font-size: 14px; color: var(--c-muted); line-height: 1.75; margin-bottom: var(--sp-lg); font-style: italic; }
.tid-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.tid-testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.tid-testimonial__author strong { display: block; font-size: 14px; color: var(--c-text); }
.tid-testimonial__author span { display: block; font-size: 12px; color: var(--c-muted); }

/* ═══════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════ */
.tid-cta {
  position: relative;
  padding: var(--sp-3xl) 0;
  overflow: hidden;
  background: linear-gradient(135deg, #040810 0%, #071220 50%, #040810 100%);
  border-top: 1px solid var(--c-border);
}
.tid-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.tid-cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,168,0.12) 0%, rgba(10,123,255,0.08) 40%, transparent 70%);
}
.tid-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--sp-lg);
}
.tid-cta__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-lg);
}
.tid-cta p { font-size: 17px; color: var(--c-muted); margin-bottom: var(--sp-xl); }
.tid-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}
.tid-cta__fine { font-size: 12px; color: var(--c-dim); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.tid-footer {
  background: var(--c-dark2);
  border-top: 1px solid var(--c-border);
}
.tid-footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-lg) var(--sp-2xl);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--sp-3xl);
}
.tid-footer__tagline {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin: var(--sp-md) 0 var(--sp-sm);
}
.tid-footer__desc { font-size: 13px; color: var(--c-muted); line-height: 1.7; margin-bottom: var(--sp-lg); }
.tid-footer__badges { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.tid-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-sm);
  padding: 3px 10px;
}
.tid-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
}
.tid-footer__col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
}
.tid-footer__col a {
  display: block;
  font-size: 13px;
  color: var(--c-muted);
  text-decoration: none;
  margin-bottom: var(--sp-sm);
  transition: color 0.2s;
}
.tid-footer__col a:hover { color: var(--c-teal); }
.tid-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-lg);
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tid-footer__bottom p { font-size: 12px; color: var(--c-dim); }
.tid-footer__socials { display: flex; gap: var(--sp-md); }
.tid-footer__socials a {
  color: var(--c-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.tid-footer__socials a:hover { color: var(--c-teal); }

/* ═══════════════════════════════════════════════════════════
   ANIMATION SYSTEM
═══════════════════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-anim="fade-left"] { transform: translateX(24px); }
[data-anim="fade-right"] { transform: translateX(-24px); }
[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tid-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .tid-hero__sub { margin: 0 auto var(--sp-xl); }
  .tid-hero__trust { justify-content: center; }
  .tid-hero__visual { justify-content: center; }
  .tid-float--1, .tid-float--2, .tid-float--3 { display: none; }
  .tid-features-grid { grid-template-columns: 1fr 1fr; }
  .tid-feature--wide { grid-column: span 2; }
  .tid-compliance { grid-template-columns: 1fr; }
  .tid-dev-split { grid-template-columns: 1fr; }
  .tid-footer__top { grid-template-columns: 1fr; }
  .tid-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --sp-3xl: 60px; --sp-2xl: 40px; }
  .tid-nav__links, .tid-nav__actions { display: none; }
  .tid-hamburger { display: flex; }
  .tid-features-grid { grid-template-columns: 1fr; }
  .tid-feature--wide { grid-column: span 1; }
  .tid-steps { grid-template-columns: 1fr; }
  .tid-steps::before { display: none; }
  .tid-solutions { grid-template-columns: 1fr 1fr; }
  .tid-pricing { grid-template-columns: 1fr; }
  .tid-testimonials { grid-template-columns: 1fr; }
  .tid-stats-bar__inner { gap: var(--sp-md); }
  .tid-stats-bar__divider { display: none; }
  .tid-stat { padding: var(--sp-md); }
  .tid-compliance__grid { grid-template-columns: 1fr; }
  .tid-footer__cols { grid-template-columns: 1fr 1fr; }
  .tid-footer__bottom { flex-direction: column; gap: var(--sp-md); text-align: center; }
}

@media (max-width: 480px) {
  .tid-solutions { grid-template-columns: 1fr; }
  .tid-hero__actions { flex-direction: column; align-items: stretch; }
  .tid-cta__actions { flex-direction: column; align-items: stretch; }
  .tid-footer__cols { grid-template-columns: 1fr; }
}
