/* ════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --primary:        #009b7d;
  --primary-dark:   #007d64;
  --primary-light:  #d1fae5;
  --indigo:         #6366f1;
  --dark:           #0f172a;
  --body:           #475569;
  --muted:          #94a3b8;
  --border:         #e2e8f0;
  --bg:             #f8fafc;
  --white:          #ffffff;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md:      0 4px 6px rgba(0,0,0,.05), 0 10px 28px rgba(0,0,0,.08);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.12);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --header-h:       68px;
  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
  border: none; outline: none;
  text-decoration: none;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; background: none; }
a { color: inherit; }

.ts-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.ts-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-weight: 600;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.ts-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,155,125,0.3);
}
.ts-btn--primary:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(0,155,125,0.4); }
.ts-btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.ts-btn--outline:hover { background: var(--primary); color: #fff; }
.ts-btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.ts-btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.ts-btn--dark { background: var(--dark); color: #fff; }
.ts-btn--dark:hover { background: #1e293b; }
.ts-btn--cta-white { background: #fff; color: var(--primary-dark); font-weight: 700; }
.ts-btn--cta-white:hover { background: #f0fdf4; }
.ts-btn--cta-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.ts-btn--cta-outline:hover { background: rgba(255,255,255,0.12); }
.ts-btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }
.ts-btn--full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
.ts-section { padding: 5rem 0; }
.ts-section--alt { background: var(--bg); }

.ts-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.ts-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}
.ts-section-sub {
  color: var(--body);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.75;
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.ts-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 500;
}
.ts-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ts-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}
.ts-header__logo img { width: 30px; height: 30px; object-fit: contain; }
.ts-header__logo span { color: var(--primary); }

.ts-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ts-nav__link {
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body);
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  position: relative;
}
.ts-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.75rem; right: 0.75rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.ts-nav__link:hover { color: var(--primary); }
.ts-nav__link:hover::after { transform: scaleX(1); }

.ts-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.ts-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
}
.ts-header__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.ts-mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 499;
  overflow: hidden;
}
.ts-mobile-menu .ts-nav__link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.ts-mobile-menu .ts-nav__link:last-child { border-bottom: none; }
.ts-mobile-menu__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ts-mobile-menu__actions .ts-btn { flex: 1; justify-content: center; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.ts-hero {
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 5rem;
  overflow: hidden;
}
.ts-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.ts-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ts-hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.ts-hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.ts-hero__title span { color: var(--primary); }
.ts-hero__sub {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
}
.ts-hero__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

.ts-hero__img { position: relative; }
.ts-hero__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.ts-hero__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ts-hero__badge {
  position: absolute;
  bottom: -1rem; left: -1rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border: 1px solid var(--border);
}
.ts-hero__badge-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ts-hero__badge-text strong {
  display: block;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--dark);
}
.ts-hero__badge-text span { font-size: 0.775rem; color: var(--muted); }

/* ════════════════════════════════════════
   STATS
════════════════════════════════════════ */
.ts-stats {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.ts-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.ts-stats__num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ts-stats__label {
  font-size: 0.825rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   FEATURE CARDS
════════════════════════════════════════ */
.ts-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.ts-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
}
.ts-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.ts-feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.ts-feature-card__icon--green  { background: #d1fae5; color: #059669; }
.ts-feature-card__icon--orange { background: #fef3c7; color: #d97706; }
.ts-feature-card__icon--purple { background: #ede9fe; color: #7c3aed; }
.ts-feature-card__icon--blue   { background: #dbeafe; color: #2563eb; }
.ts-feature-card__icon--red    { background: #ffe4e6; color: #e11d48; }

.ts-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.ts-feature-card p { font-size: 0.85rem; color: var(--body); line-height: 1.65; }

/* ════════════════════════════════════════
   SPLIT SECTIONS
════════════════════════════════════════ */
.ts-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ts-split--reverse { direction: rtl; }
.ts-split--reverse > * { direction: ltr; }

.ts-split__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ts-split__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ts-split__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.ts-split__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--body);
}
.ts-split__check {
  width: 20px; height: 20px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
  font-size: 0.65rem;
}

/* ════════════════════════════════════════
   STRATEGY CARDS
════════════════════════════════════════ */
.ts-strategies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.ts-strategy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
}
.ts-strategy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ts-strategy-card__img { width: 100%; height: 200px; object-fit: cover; }
.ts-strategy-card__body { padding: 1.5rem; }
.ts-strategy-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.ts-strategy-card__meta span { color: var(--primary); font-weight: 600; }
.ts-strategy-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.625rem;
}
.ts-strategy-card p { font-size: 0.875rem; color: var(--body); line-height: 1.7; }
.ts-strategy-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}
.ts-strategy-card__link:hover { gap: 0.55rem; }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.ts-cta {
  background: linear-gradient(135deg, #007d64 0%, #009b7d 50%, #00c4a0 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ts-cta::before {
  content: '';
  position: absolute;
  top: -60%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.ts-cta::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.ts-cta__inner { position: relative; z-index: 1; }
.ts-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.ts-cta p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 500px; margin: 0 auto 2rem; }
.ts-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.ts-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.ts-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.ts-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.875rem;
}
.ts-footer__brand img { width: 28px; }
.ts-footer__brand span { color: var(--primary); }
.ts-footer__desc { font-size: 0.875rem; line-height: 1.75; }
.ts-footer__col h4 {
  color: #fff;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}
.ts-footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 2.3;
  transition: color 0.2s;
}
.ts-footer__col a:hover { color: var(--primary); }
.ts-footer__newsletter { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.ts-footer__newsletter input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
}
.ts-footer__newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.ts-footer__newsletter button {
  padding: 0.6rem 1.1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ts-footer__newsletter button:hover { background: var(--primary-dark); }
.ts-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.ts-footer__bottom a { color: var(--primary); }
.ts-footer__bottom a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   AUTH PAGES
════════════════════════════════════════ */
.ts-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ts-auth__left {
  background: linear-gradient(135deg, #007d64 0%, #009b7d 60%, #00c4a0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.ts-auth__left::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.ts-auth__left::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.ts-auth__left-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ts-auth__left-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 3rem;
}
.ts-auth__left-logo img { width: 32px; }
.ts-auth__illustration {
  width: min(280px, 80%);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}
.ts-auth__left h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.ts-auth__left p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }

.ts-auth__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--bg);
}
.ts-auth__form-wrap { width: 100%; max-width: 400px; }
.ts-auth__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--body);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.ts-auth__back:hover { color: var(--primary); }
.ts-auth__heading { margin-bottom: 2rem; }
.ts-auth__heading h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.ts-auth__heading p { color: var(--body); font-size: 0.925rem; }
.ts-auth__form { display: flex; flex-direction: column; gap: 1rem; }
.ts-form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.ts-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  color: var(--dark);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ts-form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,155,125,0.12);
}
.ts-form-input::placeholder { color: var(--muted); }
.ts-auth__footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--body);
}
.ts-auth__footer a { color: var(--primary); font-weight: 600; }
.ts-auth__footer a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ts-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .ts-hero__img { order: -1; }
  .ts-hero__img-wrap { max-width: 560px; margin-inline: auto; }
  .ts-hero__badge { left: 0; }
  .ts-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .ts-split--reverse { direction: ltr; }
  .ts-footer__grid { grid-template-columns: 1fr 1fr; }
  .ts-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ts-auth { grid-template-columns: 1fr; }
  .ts-auth__left { display: none; }
  .ts-auth__right { padding: 2rem 1.5rem; min-height: 100vh; }
}
@media (max-width: 768px) {
  .ts-nav { display: none; }
  .ts-header__actions { display: none; }
  .ts-header__burger { display: flex; }
  .ts-section { padding: 3.5rem 0; }
  .ts-hero { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 3rem; }
  .ts-hero__title { font-size: 2.1rem; }
  .ts-hero__actions { flex-direction: column; }
  .ts-hero__actions .ts-btn { width: 100%; justify-content: center; }
  .ts-strategies__grid { grid-template-columns: 1fr; }
  .ts-footer__grid { grid-template-columns: 1fr; }
  .ts-footer__bottom { flex-direction: column; text-align: center; }
  .ts-cta__actions { flex-direction: column; align-items: center; }
  .ts-cta__actions .ts-btn { width: 100%; max-width: 280px; justify-content: center; }
}
@media (max-width: 480px) {
  .ts-stats__grid { grid-template-columns: 1fr 1fr; }
  .ts-features__grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   CSS ANIMATIONS (replaces framer-motion)
════════════════════════════════════════ */
@keyframes ts-fade-down {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ts-fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ts-fade-right {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes ts-fade-left {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes ts-scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.ts-anim-fade-down  { animation: ts-fade-down  0.6s cubic-bezier(0.22,1,0.36,1) both; }
.ts-anim-fade-up    { animation: ts-fade-up    0.65s cubic-bezier(0.22,1,0.36,1) both; }
.ts-anim-fade-right { animation: ts-fade-right 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.ts-anim-fade-left  { animation: ts-fade-left  0.7s cubic-bezier(0.22,1,0.36,1) both; }
.ts-anim-scale-in   { animation: ts-scale-in   0.8s cubic-bezier(0.22,1,0.36,1) both; }

/* Stagger delays for grid children */
.ts-anim-delay-1 { animation-delay: 0.08s; }
.ts-anim-delay-2 { animation-delay: 0.16s; }
.ts-anim-delay-3 { animation-delay: 0.24s; }
.ts-anim-delay-4 { animation-delay: 0.32s; }
.ts-anim-delay-5 { animation-delay: 0.40s; }

/* Mobile menu CSS transition */
.ts-mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
}
.ts-mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}
