/* TessellAI — Tessell.com design system clone */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --blue-0: #f2f5ff;
  --blue-50: #e5ebff;
  --blue-100: #c7d4ff;
  --blue-500: #3366ff;
  --blue-600: #0040ff;
  --blue-700: #0033cc;
  --blue-800: #002699;
  --blue-900: #001a66;
  --neutral-0: #ffffff;
  --neutral-50: #f7f8fa;
  --neutral-100: #eef0f4;
  --neutral-200: #dde1ea;
  --neutral-400: #a3aac0;
  --neutral-500: #8b93a7;
  --neutral-700: #525a6e;
  --neutral-900: #292e3d;
  --neutral-1000: #14171f;
  --text: #292e3d;
  --font: 'Inter', system-ui, sans-serif;
  --display: 'Outfit', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --max: 1056px;
  --wide: 1200px;
  --page: 1320px;
  --header-h: 56px;
  --radius-sm: 4px;
  --radius-md: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--neutral-0); line-height: 1.5; font-size: 16px; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.te-container { max-width: var(--page); margin: 0 auto; padding: 0 40px; }
.te-container-narrow { max-width: var(--wide); margin: 0 auto; padding: 0 40px; }

/* ---------- Header ---------- */
.te-header {
  position: sticky; top: 0; z-index: 300;
  height: var(--header-h);
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--neutral-100);
}
.te-header-inner {
  max-width: var(--page); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; gap: 8px;
}
.te-logo img { height: 28px; width: auto; }

.te-nav { display: flex; align-items: center; gap: 0; margin-left: 28px; flex: 1; }
.te-nav-item { position: static; }
.te-nav-trigger, .te-nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-size: 14px; font-weight: 500; color: var(--neutral-900);
  background: none; border: none; border-radius: var(--radius-md);
  transition: background .12s;
}
.te-nav-trigger:hover, .te-nav-link:hover { background: var(--neutral-50); }

.te-header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.te-header-right .te-nav-link { font-size: 14px; }

.te-dropdown {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--neutral-0);
  border-top: 1px solid var(--neutral-100);
  box-shadow: 0 20px 40px rgba(20,23,31,.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s, visibility .15s;
}
.te-nav-item:hover .te-dropdown { opacity: 1; visibility: visible; pointer-events: auto; }

.te-dropdown-panel { max-width: var(--page); margin: 0 auto; padding: 32px 40px; }
.te-dropdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 32px; }
.te-dropdown-grid h5 {
  grid-column: 1 / -1; font-family: var(--mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em; color: var(--neutral-500); margin: 12px 0 4px;
}
.te-dropdown-grid h5:first-child { margin-top: 0; }
.te-dropdown-grid a {
  display: block; padding: 8px 0; font-size: 14px; font-weight: 500; color: var(--neutral-900);
}
.te-dropdown-grid a:hover { color: var(--blue-600); }

.te-mega { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.te-mega-side { border-right: 1px solid var(--neutral-100); padding-right: 24px; }
.te-mega-tab {
  display: block; width: 100%; text-align: left; padding: 10px 12px; margin-bottom: 2px;
  font-size: 14px; font-weight: 600; color: var(--neutral-700); background: none; border: none; border-radius: var(--radius-sm);
}
.te-mega-tab.active, .te-mega-tab:hover { background: var(--blue-0); color: var(--blue-800); }
.te-mega-side-links { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--neutral-100); }
.te-mega-side-links a { display: block; font-size: 13px; font-weight: 500; color: var(--blue-800); padding: 6px 0; }
.te-mega-main { min-width: 0; }
.te-mega-panel { display: none; }
.te-mega-panel.active { display: block; }
.te-mega-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 24px; }
.te-mega-links h5 { grid-column: 1 / -1; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--neutral-500); margin: 8px 0; }
.te-mega-links a { font-size: 14px; font-weight: 500; padding: 8px 0; color: var(--neutral-900); }
.te-mega-links a:hover { color: var(--blue-600); }

.te-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 16px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius-md); border: 1px solid transparent; white-space: nowrap;
  transition: background .12s, border-color .12s, color .12s;
}
.te-btn-primary { background: var(--blue-600); color: #fff; }
.te-btn-primary:hover { background: var(--blue-700); }
.te-btn-secondary { background: #fff; border-color: var(--neutral-200); color: var(--neutral-900); }
.te-btn-secondary:hover { background: var(--blue-0); border-color: var(--blue-500); }
.te-btn-white { background: #fff; color: var(--neutral-1000); }
.te-btn-white:hover { background: var(--blue-0); }

.te-link-arrow { color: var(--blue-800); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.te-link-arrow:hover { color: var(--blue-600); }

.te-menu-btn {
  display: none; width: 40px; height: 40px; border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md); background: #fff; font-size: 18px;
}

/* ---------- Section label (Tessell light pill) ---------- */
.te-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); color: var(--blue-800);
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px 6px 8px; border-radius: var(--radius-sm); margin-bottom: 20px;
}
.te-eyebrow::before { content: ''; width: 3px; height: 14px; background: var(--blue-600); border-radius: 1px; }
.te-eyebrow-dark {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.92);
}
.te-eyebrow-dark::before { background: rgba(255,255,255,.85); }

/* ---------- Hero ---------- */
.te-hero {
  background: linear-gradient(180deg, var(--blue-0) 0%, #fff 72%);
  padding: 56px 0 0;
  overflow: hidden;
}
.te-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  min-height: 480px;
}
.te-hero-copy { padding: 24px 0 48px; max-width: 560px; }
.te-hero h1 {
  font-family: var(--display); font-size: 48px; font-weight: 500;
  line-height: 56px; letter-spacing: -.02em; color: var(--neutral-900); margin-bottom: 16px;
}
.te-hero h1 em { font-style: normal; color: var(--blue-600); }
.te-hero-sub { font-size: 18px; line-height: 28px; color: var(--neutral-700); margin-bottom: 28px; max-width: 480px; }
.te-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.te-hero-visual { display: flex; align-items: center; justify-content: center; padding: 20px 0; }
.te-hero-visual img {
  width: min(100%, 560px); border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-100); box-shadow: 0 24px 64px rgba(0,64,255,.08);
  object-fit: cover; aspect-ratio: 4/3;
}

.te-hero-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 32px 0 48px; border-top: 1px solid var(--neutral-100);
}
.te-hero-feat h4 { font-size: 14px; font-weight: 600; color: var(--neutral-900); margin-bottom: 6px; }
.te-hero-feat p { font-size: 14px; line-height: 22px; color: var(--neutral-700); }

/* ---------- Facts strip ---------- */
.te-facts {
  padding: 28px 0; background: #fff; border-bottom: 1px solid var(--neutral-100);
}
.te-facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.te-fact {
  border: 1px solid var(--neutral-100); border-radius: var(--radius-sm);
  padding: 16px 20px; background: var(--neutral-50);
}
.te-fact strong {
  display: block; font-family: var(--mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em; color: var(--neutral-500); margin-bottom: 6px;
}
.te-fact span { font-size: 14px; font-weight: 500; color: var(--neutral-900); }
.te-fact a { color: var(--blue-800); }
.te-fact a:hover { color: var(--blue-600); }

/* ---------- Pillars ---------- */
.te-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.te-pillar {
  border: 1px solid var(--neutral-100); border-radius: var(--radius-sm);
  padding: 28px; background: #fff;
}
.te-pillar-num {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .08em;
  color: var(--blue-600); margin-bottom: 16px;
}
.te-pillar h3 {
  font-family: var(--display); font-size: 22px; font-weight: 600; margin-bottom: 12px;
}
.te-pillar p { font-size: 15px; line-height: 24px; color: var(--neutral-700); margin-bottom: 20px; }

.te-checklist {
  margin: 20px 0 0; padding-left: 20px; list-style: disc;
}
.te-checklist li {
  font-size: 15px; line-height: 24px; color: var(--neutral-700); margin-bottom: 8px;
}

.te-caps-6 { grid-template-columns: repeat(3, 1fr); }

.te-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.te-contact-card {
  border: 1px solid var(--neutral-100); border-radius: var(--radius-sm);
  padding: 28px; background: #fff;
}
.te-contact-card p { font-size: 15px; line-height: 24px; color: var(--neutral-700); margin-bottom: 10px; }
.te-contact-card a { color: var(--blue-800); font-weight: 500; }
.te-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.te-footer-meta {
  margin-bottom: 24px; font-size: 13px; line-height: 22px; color: rgba(255,255,255,.55);
}
.te-footer-meta a { color: rgba(255,255,255,.75); }
.te-footer-meta a:hover { color: #fff; }

/* ---------- Sections ---------- */
.te-section { padding: 80px 0; }
.te-section-gray { background: var(--neutral-50); }
.te-section-dark { background: var(--blue-900); color: #fff; }
.te-section-head { max-width: 720px; margin-bottom: 48px; }
.te-section-head h2 {
  font-family: var(--display); font-size: 40px; font-weight: 500;
  line-height: 48px; letter-spacing: -.02em; color: var(--neutral-900);
}
.te-section-dark .te-section-head h2 { color: #fff; }
.te-section-head p { margin-top: 16px; font-size: 18px; line-height: 28px; color: var(--neutral-700); }
.te-section-dark .te-section-head p { color: rgba(255,255,255,.72); }

/* Path cards */
.te-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.te-path {
  display: block; border: 1px solid var(--neutral-100); border-radius: var(--radius-sm);
  overflow: hidden; background: #fff; transition: border-color .15s, box-shadow .15s;
}
.te-path:hover { border-color: var(--blue-100); box-shadow: 0 8px 32px rgba(0,64,255,.06); }
.te-path-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.te-path-body { padding: 28px; }
.te-path-tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-800); margin-bottom: 12px; }
.te-path h3 { font-family: var(--display); font-size: 22px; font-weight: 600; line-height: 30px; margin-bottom: 12px; }
.te-path p { font-size: 15px; line-height: 24px; color: var(--neutral-700); margin-bottom: 16px; }
.te-path-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.te-path-links span { font-size: 13px; font-weight: 500; color: var(--blue-800); padding: 4px 10px; background: var(--blue-0); border-radius: 999px; }

/* Tabs */
.te-tabs { border-bottom: 1px solid var(--neutral-100); display: flex; gap: 0; margin-bottom: 40px; }
.te-tab {
  padding: 12px 20px; font-size: 15px; font-weight: 600; color: var(--neutral-500);
  background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.te-tab.active { color: var(--blue-600); border-bottom-color: var(--blue-600); }
.te-tab-panel { display: none; }
.te-tab-panel.active { display: block; }
.te-tab-img {
  width: 100%; max-height: 360px; object-fit: cover; border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-100); margin: 24px 0;
}

.te-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 32px;
}
.te-split-reverse { direction: rtl; }
.te-split-reverse > * { direction: ltr; }
.te-split img {
  width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-100);
}
.te-banner-img {
  width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-100); margin-bottom: 32px;
}
.te-value-img {
  width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin: -28px -28px 20px; width: calc(100% + 56px);
}
.te-value.has-img { padding-top: 0; overflow: hidden; }
.te-value.has-img h3, .te-value.has-img p, .te-value.has-img .te-value-foot { padding-left: 0; padding-right: 0; }
.te-value.has-img .te-value-foot { margin-left: 0; margin-right: 0; }

.te-case { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 8px; }
.te-case-media { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--neutral-100); }
.te-case-media img { width: 100%; height: 320px; object-fit: cover; }
.te-case-label { font-size: 13px; font-weight: 600; color: var(--blue-800); margin-bottom: 8px; }
.te-case h3 { font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 32px; margin-bottom: 16px; }
.te-case-quote { border-left: 3px solid var(--blue-600); padding-left: 16px; font-size: 15px; line-height: 24px; color: var(--neutral-700); font-style: italic; margin-bottom: 24px; }
.te-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.te-stat { background: var(--blue-0); border-radius: var(--radius-sm); padding: 16px; }
.te-stat strong { display: block; font-family: var(--display); font-size: 28px; font-weight: 700; color: var(--blue-600); line-height: 1; }
.te-stat span { font-size: 13px; color: var(--neutral-700); margin-top: 6px; display: block; }

/* Value grid */
.te-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.te-value {
  border: 1px solid var(--neutral-100); border-radius: var(--radius-sm); padding: 28px; background: #fff;
}
.te-value h3 { font-family: var(--display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.te-value p { font-size: 15px; line-height: 24px; color: var(--neutral-700); }
.te-value-foot { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--neutral-100); font-size: 13px; font-weight: 600; color: var(--blue-800); }

/* Metrics */
.te-metrics-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.te-metrics-split > img {
  width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-100);
}
.te-metrics-split .te-metrics { grid-template-columns: repeat(2, 1fr); }
.te-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: left; }
.te-metric strong { display: block; font-family: var(--display); font-size: 48px; font-weight: 500; color: var(--blue-600); line-height: 1; letter-spacing: -.02em; }
.te-metric span { display: block; font-size: 14px; line-height: 22px; color: var(--neutral-700); margin-top: 8px; }
.te-section-dark .te-metric strong { color: #fff; }
.te-section-dark .te-metric span { color: rgba(255,255,255,.65); }

/* Capabilities */
.te-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.te-cap {
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm);
  padding: 24px; background: rgba(255,255,255,.04);
}
.te-cap.has-img { padding-top: 0; overflow: hidden; }
.te-cap-img {
  width: calc(100% + 48px); height: 120px; object-fit: cover; display: block;
  margin: -24px -24px 16px; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.te-cap h3 { font-family: var(--display); font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.te-cap p { font-size: 14px; line-height: 22px; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.te-cap-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.te-cap-tags span {
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 3px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
}

/* Reviews */
.te-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.te-review { border: 1px solid var(--neutral-100); border-radius: var(--radius-sm); padding: 24px; background: #fff; }
.te-review.has-img { padding-top: 0; overflow: hidden; }
.te-review-img {
  width: calc(100% + 48px); height: 120px; object-fit: cover; display: block;
  margin: 0 -24px 16px; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.te-review-top { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 13px; font-weight: 600; color: var(--blue-600); }
.te-review h3 { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.te-review p { font-size: 14px; line-height: 22px; color: var(--neutral-700); margin-bottom: 16px; }
.te-review-meta { font-size: 12px; color: var(--neutral-500); }
.te-review-banner {
  margin-top: 32px; padding: 24px; border: 1px solid var(--neutral-100); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  overflow: hidden; position: relative;
}
.te-review-banner-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12;
}
.te-review-banner > div, .te-review-banner > a { position: relative; z-index: 1; }
.te-review-banner strong { font-size: 32px; font-weight: 700; color: var(--blue-600); }

/* CTA band */
.te-cta {
  position: relative; padding: 96px 0; color: #fff; overflow: hidden;
}
.te-cta-bg { position: absolute; inset: 0; background: url('../images/home-cta.jpg') center/cover; }
.te-cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,26,102,.94), rgba(0,64,255,.82)); }
.te-cta-inner { position: relative; z-index: 1; max-width: 560px; }
.te-cta h2 { font-family: var(--display); font-size: 36px; font-weight: 500; line-height: 44px; margin-bottom: 12px; }
.te-cta p { font-size: 17px; line-height: 26px; opacity: .9; margin-bottom: 24px; }

/* Footer */
.te-footer { background: var(--neutral-1000); color: rgba(255,255,255,.65); padding: 64px 0 32px; font-size: 13px; }
.te-footer-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px 20px; margin-bottom: 40px; }
.te-footer h4 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.te-footer a { display: block; padding: 3px 0; color: rgba(255,255,255,.6); line-height: 1.5; }
.te-footer a:hover { color: #fff; }
.te-footer-certs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.te-cert { padding: 6px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); }
.te-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.te-footer-social a { display: inline; margin-right: 16px; }

/* Inner pages */
.te-page-hero { background: linear-gradient(180deg, var(--blue-0), #fff); padding: 48px 0 40px; border-bottom: 1px solid var(--neutral-100); }
.te-page-hero h1 { font-family: var(--display); font-size: 40px; font-weight: 500; line-height: 48px; letter-spacing: -.02em; max-width: 800px; }
.te-page-hero p { margin-top: 16px; font-size: 18px; line-height: 28px; color: var(--neutral-700); max-width: 720px; }
.te-content { padding: 48px 0 80px; }
.te-content h2 { font-family: var(--display); font-size: 24px; font-weight: 600; margin: 36px 0 12px; }
.te-content h2:first-child { margin-top: 0; }
.te-content p, .te-content li { font-size: 16px; line-height: 26px; color: var(--neutral-700); margin-bottom: 14px; }
.te-content ul { margin: 0 0 20px 20px; list-style: disc; }
.te-hero-img { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 28px; border: 1px solid var(--neutral-100); }
.te-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.te-card { border: 1px solid var(--neutral-100); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .15s; }
.te-card:hover { border-color: var(--blue-500); }
.te-card img { width: 100%; height: 140px; object-fit: cover; }
.te-card-body { padding: 16px; }
.te-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.te-card-body p { font-size: 14px; margin: 0; }
.te-notice { margin-top: 32px; padding: 14px 16px; background: var(--neutral-50); border-radius: var(--radius-sm); font-size: 13px; color: var(--neutral-500); }

/* Drawer */
.te-drawer { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
.te-drawer.open { pointer-events: auto; }
.te-drawer-bg { position: absolute; inset: 0; background: rgba(20,23,31,.4); opacity: 0; transition: .2s; }
.te-drawer.open .te-drawer-bg { opacity: 1; }
.te-drawer-panel { position: absolute; right: 0; top: 0; width: min(360px, 90vw); height: 100%; background: #fff; padding: 20px; overflow-y: auto; transform: translateX(100%); transition: .2s; }
.te-drawer.open .te-drawer-panel { transform: none; }
.te-drawer-close { background: none; border: none; font-size: 28px; margin-bottom: 12px; }
.te-drawer-panel a { display: block; padding: 12px 0; border-bottom: 1px solid var(--neutral-100); font-weight: 500; }

@media (max-width: 1024px) {
  .te-container, .te-container-narrow, .te-header-inner { padding: 0 24px; }
  .te-hero-grid, .te-paths, .te-case, .te-values, .te-caps, .te-caps-6, .te-reviews, .te-card-grid, .te-split, .te-metrics-split, .te-pillars, .te-facts-grid, .te-contact-grid { grid-template-columns: 1fr; }
  .te-hero-features, .te-metrics, .te-badges { grid-template-columns: 1fr; }
  .te-footer-grid { grid-template-columns: repeat(3, 1fr); }
  .te-hero h1 { font-size: 36px; line-height: 44px; }
  .te-nav { display: none; }
  .te-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .te-header-right .te-nav-link { display: none; }
}
