@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy:      #0B1739;
  --royal:     #2563EB;
  --bright:    #3B82F6;
  --cyan:      #22D3EE;
  --sky-bg:    #EFF6FF;
  --off-white: #F8FAFC;
  --ink:       #172033;
  --muted:     #64748B;
  --white:     #FFFFFF;
  --border:    #E2E8F0;
  --border-strong: #CBD5E1;

  --max-w:     1200px;
  --pad-x:     clamp(20px, 4vw, 40px);
  --sec-pad-y: clamp(56px, 8vw, 104px);
  --card-radius: 16px;
  --btn-radius:  10px;

  --fs-eyebrow: 12px;
  --fs-body:    clamp(15px, 0.35vw + 14px, 17px);
  --fs-lead:    clamp(17px, 0.5vw + 15px, 20px);
  --fs-h4:      clamp(18px, 0.6vw + 15px, 22px);
  --fs-h3:      clamp(22px, 1vw + 18px, 28px);
  --fs-h2:      clamp(28px, 2vw + 20px, 42px);
  --fs-h1:      clamp(34px, 3vw + 22px, 56px);

  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 32px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.06);
  --shadow-hero: 0 24px 60px rgba(37,99,235,0.18);
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body.ts {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.ts h1, body.ts h2, body.ts h3, body.ts h4, body.ts h5, body.ts h6 {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.6em 0;
}
body.ts h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
body.ts h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.025em; }
body.ts h3 { font-size: var(--fs-h3); font-weight: 700; }
body.ts h4 { font-size: var(--fs-h4); font-weight: 600; }
body.ts p  { margin: 0 0 1em; color: var(--ink); }
body.ts p.lead { font-size: var(--fs-lead); color: var(--muted); }
body.ts .eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  color: var(--royal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
body.ts a { color: var(--royal); text-decoration: none; transition: color 0.15s ease; }
body.ts a:hover { color: var(--navy); }

.ts-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.ts-section { padding: var(--sec-pad-y) 0; position: relative; }
.ts-section-alt { background: var(--off-white); }
.ts-section-sky { background: var(--sky-bg); }

.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.ts-btn-primary { background: var(--royal); color: var(--white) !important; }
.ts-btn-primary:hover { background: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.ts-btn-secondary { background: var(--white); color: var(--ink) !important; border-color: var(--border-strong); }
.ts-btn-secondary:hover { border-color: var(--royal); color: var(--royal) !important; }
.ts-btn-ghost { background: transparent; color: var(--white) !important; border-color: rgba(255,255,255,0.35); }
.ts-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.ts-btn-lg { padding: 16px 30px; font-size: 16px; }

.ts-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ts-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.98);
}
.ts-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.ts-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.ts-brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  box-shadow: 0 4px 10px rgba(37,99,235,0.25);
}
.ts-nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.ts-nav-links a {
  color: var(--ink) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
  transition: color 0.15s ease, background 0.15s ease;
}
.ts-nav-links a:hover { color: var(--royal) !important; background: var(--sky-bg); }
.ts-nav-links a.active {
  color: var(--royal) !important;
}
.ts-nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--royal);
  border-radius: 2px;
}
.ts-nav-cta { margin-left: 12px; }
.ts-nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  color: var(--ink);
}

.ts-hero {
  padding: clamp(56px, 6vw, 96px) 0 clamp(72px, 8vw, 128px);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.ts-hero::before {
  content: "";
  position: absolute;
  top: -140px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(59,130,246,0.20) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.ts-hero::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(34,211,238,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.ts-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.ts-hero-copy h1 { max-width: 560px; }
.ts-hero-copy p.lead { max-width: 520px; }
.ts-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 20px; }
.ts-hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  color: var(--muted); font-size: 13px; font-weight: 500;
}
.ts-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.ts-hero-trust span::before { content: "•"; color: var(--royal); font-weight: 700; }

.ts-mockup-stack {
  position: relative;
  min-height: 420px;
  perspective: 1400px;
}
.ts-mockup {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ts-mockup:hover { transform: translateY(-4px) rotate(0deg) !important; box-shadow: var(--shadow-hero); z-index: 10; }
.ts-mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
}
.ts-mockup-bar span {
  width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1;
}
.ts-mockup-body { padding: 14px; min-height: 100px; }
.ts-mockup-body .row { height: 10px; background: #E2E8F0; border-radius: 4px; margin-bottom: 8px; }
.ts-mockup-body .row.short { width: 60%; }
.ts-mockup-body .row.accent { background: linear-gradient(90deg, var(--royal), var(--cyan)); height: 18px; margin-bottom: 12px; width: 70%; }
.ts-mockup-body .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px;
}
.ts-mockup-body .grid > div { height: 40px; background: #F1F5F9; border-radius: 6px; }

.ts-mockup.m1 { top: 0;    left: 0;    width: 60%; z-index: 3; transform: rotate(-2deg); }
.ts-mockup.m2 { top: 60px; right: 0;   width: 62%; z-index: 4; transform: rotate(2.5deg); }
.ts-mockup.m3 { bottom: 0; left: 15%;  width: 55%; z-index: 5; transform: rotate(-1deg); }

.ts-hero-badge {
  position: absolute;
  bottom: 20px; right: 0;
  z-index: 20;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.ts-hero-badge::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.ts-proof {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.ts-proof-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px 32px;
  align-items: center;
}
.ts-proof-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.ts-proof-item svg { color: var(--royal); flex-shrink: 0; }

.ts-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.ts-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.ts-card::before {
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--cyan));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ts-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.ts-card:hover::before { opacity: 1; }
.ts-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--sky-bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--royal);
  margin-bottom: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.ts-card:hover .ts-card-icon { background: var(--royal); color: var(--white); }
.ts-card h4 { margin: 0 0 8px; }
.ts-card p { color: var(--muted); font-size: 15px; margin: 0 0 12px; }
.ts-card-link {
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 4px;
}
.ts-card-link::after { content: "→"; transition: transform 0.2s ease; }
.ts-card-link:hover::after { transform: translateX(3px); }

.ts-section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 12px;
}
.ts-section-title .eyebrow { display: inline-block; }
.ts-section-title p.lead { margin-top: 12px; }

.ts-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.ts-steps::before {
  content: "";
  position: absolute;
  top: 32px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, var(--royal) 50%, var(--border) 100%);
  z-index: 0;
}
.ts-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ts-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(37,99,235,0.25);
}
.ts-step h4 { margin: 0 0 8px; }
.ts-step p { color: var(--muted); margin: 0; }

.ts-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.ts-showcase-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ts-showcase-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ts-showcase-mock {
  background: linear-gradient(160deg, var(--sky-bg) 0%, #DBEAFE 100%);
  padding: 0;
  min-height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ts-showcase-mock .ts-mock-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ts-mock-nav {
  background: var(--white);
  padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(11,23,57,0.06);
}
.ts-mock-nav .logo { width: 40px; height: 8px; background: var(--royal); border-radius: 2px; }
.ts-mock-nav .links { display: flex; gap: 6px; }
.ts-mock-nav .links span { width: 20px; height: 5px; background: rgba(11,23,57,0.15); border-radius: 2px; }
.ts-mock-nav .cta { width: 34px; height: 12px; background: linear-gradient(90deg, var(--royal), var(--cyan)); border-radius: 4px; }
.ts-mock-body { padding: 14px 12px 4px; }
.ts-mock-hero {
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  border-radius: 5px;
  padding: 14px;
  margin-bottom: 8px;
  color: #fff;
  min-height: 55px;
}
.ts-mock-hero .h { height: 8px; background: rgba(255,255,255,0.9); border-radius: 2px; margin-bottom: 5px; width: 75%; }
.ts-mock-hero .sub { height: 4px; background: rgba(255,255,255,0.6); border-radius: 2px; width: 55%; margin-bottom: 6px; }
.ts-mock-hero .btn { width: 30px; height: 10px; background: #fff; border-radius: 3px; }
.ts-mock-thumbs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 8px; flex: 1; min-height: 90px;
}
.ts-mock-thumbs > div {
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(34,211,238,0.18));
  border-radius: 4px;
  border: 1px solid rgba(11,23,57,0.05);
  min-height: 60px;
}
.ts-mock-list > div { height: 5px; background: rgba(11,23,57,0.15); border-radius: 2px; margin-bottom: 4px; }
.ts-mock-list > div.short { width: 60%; }
.ts-mock-dash {
  display: grid; grid-template-columns: 50px 1fr; gap: 8px; flex: 1; min-height: 130px;
}
.ts-mock-dash .side { background: var(--navy); border-radius: 4px; padding: 8px 6px; }
.ts-mock-dash .side span { display: block; height: 5px; background: rgba(255,255,255,0.3); border-radius: 2px; margin-bottom: 6px; }
.ts-mock-dash .side span:nth-child(1) { background: var(--cyan); }
.ts-mock-dash .main { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ts-mock-dash .main > div {
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(34,211,238,0.18));
  border-radius: 4px;
  border: 1px solid rgba(11,23,57,0.05);
  min-height: 55px;
}
.ts-mock-shop {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; flex: 1;
}
.ts-mock-shop .prod {
  background: #fff;
  border: 1px solid rgba(11,23,57,0.08);
  border-radius: 5px;
  padding: 7px;
  display: flex;
  flex-direction: column;
}
.ts-mock-shop .prod .img {
  min-height: 32px;
  flex: 1;
  background: linear-gradient(135deg, rgba(37,99,235,0.22), rgba(34,211,238,0.22));
  border-radius: 3px;
  margin-bottom: 6px;
}
.ts-mock-shop .prod .name { height: 4px; background: rgba(11,23,57,0.25); border-radius: 2px; margin-bottom: 3px; width: 70%; }
.ts-mock-shop .prod .price { height: 4px; background: var(--royal); border-radius: 2px; width: 35%; }
.ts-mock-vertical {
  display: flex; gap: 6px; flex: 1;
}
.ts-mock-vertical .card {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(11,23,57,0.08);
  border-radius: 5px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-height: 80px;
}
.ts-mock-vertical .card .icon {
  width: 14px; height: 14px; border-radius: 3px;
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  margin-bottom: 5px;
}
.ts-mock-vertical .card .line {
  height: 3px; background: rgba(11,23,57,0.2); border-radius: 2px; margin-bottom: 2px;
}
.ts-mock-vertical .card .line.short { width: 60%; }
.ts-mock-portfolio {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; flex: 1; min-height: 130px;
}
.ts-mock-portfolio > div {
  border-radius: 5px;
  border: 1px solid rgba(11,23,57,0.05);
  min-height: 55px;
}
.ts-mock-portfolio > div:nth-child(1) { background: linear-gradient(135deg, #6366F1, #A855F7); }
.ts-mock-portfolio > div:nth-child(2) { background: linear-gradient(135deg, var(--cyan), #22C55E); }
.ts-mock-portfolio > div:nth-child(3) { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.ts-mock-portfolio > div:nth-child(4) { background: linear-gradient(135deg, var(--royal), var(--cyan)); }
.ts-showcase-label {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.ts-showcase-label h5 { margin: 0; font-size: 15px; font-weight: 600; }
.ts-showcase-label .cat-tag {
  background: var(--sky-bg); color: var(--royal);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}

.ts-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.ts-price {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex; flex-direction: column;
}
.ts-price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ts-price.featured {
  border-color: var(--royal);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.ts-price-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--royal);
  color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase;
}
.ts-price h3 { margin: 0 0 4px; font-size: 20px; }
.ts-price .price-tag {
  font-size: 36px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1; margin: 12px 0;
}
.ts-price .price-tag small { font-size: 14px; font-weight: 500; color: var(--muted); }
.ts-price ul { list-style: none; padding: 0; margin: 20px 0; flex: 1; }
.ts-price ul li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
}
.ts-price ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sky-bg);
  color: var(--royal);
  font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

.ts-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--sky-bg);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px);
  margin-top: 40px;
}
.ts-editorial .pill-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.ts-editorial .pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  text-align: center;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.ts-editorial-visual {
  display: flex; flex-direction: column; gap: 12px;
}
.ts-brief-card, .ts-select-card, .ts-download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.ts-brief-card { transform: rotate(-1deg); }
.ts-select-card { transform: rotate(1deg) translateX(20px); }
.ts-download-card {
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: var(--white);
  border-color: transparent;
}
.ts-brief-card h5, .ts-select-card h5, .ts-download-card h5 { margin: 0 0 4px; font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.ts-download-card h5 { color: rgba(255,255,255,0.7); }
.ts-brief-card p, .ts-select-card p, .ts-download-card p { margin: 0; font-size: 14px; font-weight: 500; }
.ts-download-card p { color: var(--white); }

.ts-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ts-cta::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,211,238,0.25) 0%, transparent 70%);
}
.ts-cta h2, .ts-cta p { position: relative; z-index: 1; }
.ts-cta h2 { color: #ffffff !important; margin-bottom: 12px; }
.ts-cta p { color: rgba(255,255,255,0.85) !important; max-width: 560px; margin: 0 auto 24px; text-align: center !important; }
.ts-cta h2 { text-align: center !important; }
.ts-cta-actions { position: relative; z-index: 1; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.ts-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  border-top: 1px solid var(--royal);
}
.ts-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ts-footer h5 {
  color: #ffffff !important;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.ts-footer ul { list-style: none; padding: 0; margin: 0; }
.ts-footer ul li { padding: 4px 0; }
.ts-footer ul a { color: rgba(255,255,255,0.75) !important; font-size: 14px; }
.ts-footer ul a:hover { color: #ffffff !important; }
.ts-footer-brand p { font-size: 14px !important; margin: 12px 0 !important; color: rgba(255,255,255,0.75) !important; max-width: 300px; }
.ts-footer-brand .ts-brand { color: #ffffff !important; }
.ts-footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.ts-footer-bottom a { color: rgba(255,255,255,0.75) !important; margin-left: 16px; }

.reveal-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-fade.in { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .ts-hero-grid { grid-template-columns: 1fr; }
  .ts-mockup-stack { min-height: 380px; margin-top: 32px; }
  .ts-nav-links { display: none; }
  .ts-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .ts-nav-cta { display: none; }
  .ts-nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px var(--pad-x);
    gap: 0;
  }
  .ts-nav-links.open a { padding: 14px 12px; border-radius: 8px; }
  .ts-editorial { grid-template-columns: 1fr; }
  .ts-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ts-steps::before { display: none; }
}
@media (max-width: 560px) {
  .ts-footer-grid { grid-template-columns: 1fr; }
  .ts-hero-actions { flex-direction: column; align-items: stretch; }
  .ts-btn { justify-content: center; }
}
