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

/* ────────────────────────────────────────────────────
   Tokens — Impeccable-adapted warm-paper palette
   Primary text = deep ink (not pure black)
   Background  = warm off-white paper (not pure white)
   One decisive "voice": typographic contrast + weight
──────────────────────────────────────────────────── */
:root {
  /* White base — neutral surfaces, warm accent/text */
  --bg:          #FFFFFF;
  --surface:     #F5F5F5;
  --bg-card:     #EBEBEB;
  --bg-hover:    #E0E0E0;
  --border:      #E4E4E7;
  --text:        #2E2A1F;
  --text-muted:  #8C7B5E;
  --text-subtle: #ADA08A;
  --accent:      #736B45;

  /* Nav — frosted pill (matches near-white bg, clearly translucent) */
  --nav-bg:             rgba(255, 255, 255, 0.60);
  --nav-bg-scrolled:    rgba(255, 255, 255, 0.88);
  --nav-border:         rgba(180, 170, 150, 0.45);
  --nav-border-scrolled:rgba(160, 150, 130, 0.5);
  --nav-shadow-scrolled:0 4px 28px rgba(0,0,0,0.08),
                        0 1px 3px  rgba(0,0,0,0.04),
                        inset 0 1px 0 rgba(255,255,255,0.8);

  /* Fonts — Inter throughout */
  --font-display: 'Inter', system-ui, sans-serif;
  --font:         'Inter', system-ui, sans-serif;

  /* Impeccable spacing scale — 8/16/24/32/48/80/120 */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  32px;
  --sp-xl:  48px;
  --sp-2xl: 80px;
  --sp-3xl: 120px;

  /* Elevation: flat at rest, lift on state */
  --shadow-hover: 0 4px 24px -4px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lift:  0 12px 32px rgba(0,0,0,0.08);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Dark theme ── */
[data-theme="dark"] {
  --bg:          #0a0a0a;
  --surface:     #111111;
  --bg-card:     #1c1c1c;
  --bg-hover:    #252525;
  --border:      #2e2e2e;
  --text:        #f2f2f2;
  --text-muted:  #888888;
  --text-subtle: #555555;
  --accent:      #D4AF37;
  --nav-bg:             rgba(10, 10, 10, 0.75);
  --nav-bg-scrolled:    rgba(10, 10, 10, 0.88);
  --nav-border-scrolled:rgba(255, 255, 255, 0.08);
  --nav-shadow-scrolled:0 4px 28px rgba(0,0,0,0.5),
                        0 1px 3px  rgba(0,0,0,0.3),
                        inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ── Base ── */
html { font-size: 16px; text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;              /* Impeccable: 1.6 is load-bearing */
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Buttons — sharp editorial (Impeccable: border-radius 0 on primary) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 99px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s var(--ease), color 0.15s var(--ease),
              transform 0.15s var(--ease), border-color 0.15s var(--ease),
              box-shadow 0.15s var(--ease);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  padding: 13px 28px;
  background: #CEAA3C;
  color: #1A1200;
  border-color: #CEAA3C;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0.9;
}

.btn-ghost {
  padding: 12px 24px;
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--text-subtle);
  transform: translateY(-1px);
}

.btn-lg { font-size: 15px; padding: 15px 32px; }

/* ── NAV — frosted glass, collapses to pill on scroll ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 24px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
  transition:
    top 0.4s var(--ease),
    left 0.4s var(--ease),
    right 0.4s var(--ease),
    border-radius 0.4s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease),
    backdrop-filter 0.35s var(--ease);
}
.nav--scrolled {
  top: 12px;
  left: 12%;
  right: 12%;
  border-radius: 99px;
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid var(--nav-border-scrolled);
  box-shadow: var(--nav-shadow-scrolled);
  padding: 0 8px 0 20px;
}
/* btn already pill-shaped; no override needed */

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.12s;
}
.logo:hover { opacity: 0.6; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.logo-en {
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
  padding-left: 0.3em;
}
.logo-zh {
  font-family: 'Songti SC', 'Songti', serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--text-subtle);
  line-height: 1;
  text-align: center;
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.12s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-active {
  color: var(--text);
  font-weight: 600;
  background: var(--bg-card);
  border-radius: 6px;
}

/* ── Nav actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ── Language dropdown ── */
.lang-dropdown { position: relative; flex-shrink: 0; }
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 6px;
  transition: color 0.12s, background 0.12s;
  white-space: nowrap;
  line-height: 1;
}
.lang-dropdown-btn:hover { color: var(--text); background: var(--bg-card); }
.lang-caret { font-size: 9px; opacity: 0.5; }
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  padding: 4px;
  min-width: 90px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease);
}
[data-theme="dark"] .lang-dropdown-menu {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.lang-item {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  border-radius: 6px;
  transition: background 0.1s, color 0.1s;
}
.lang-item:hover { background: var(--bg-card); color: var(--text); }
.lang-item--active { color: var(--text); font-weight: 500; }

/* Drawer language links (simple, no box) */
.lang-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.lang-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.12s, background 0.12s;
}
.lang-link:hover { color: var(--text); background: var(--bg-card); }
.lang-link--active { color: var(--text); font-weight: 600; }
.lang-sep { color: var(--text-subtle); font-size: 12px; }

/* ── Theme segmented toggle (ux-components style) ── */
.theme-seg {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.theme-seg-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), box-shadow 0.15s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.theme-seg-btn.seg-icon {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-seg-btn.seg-icon svg { display: block; }
.theme-seg-btn:hover { color: var(--text); }
.theme-seg-btn.seg-active {
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
[data-theme="dark"] .theme-seg-btn.seg-active {
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Hero brand lockup ── */
.hero-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: var(--sp-lg);
}
.hero-brand-en {
  font-family: var(--font);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.34em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
  padding-left: 0.34em;
}
.hero-brand-rule {
  width: 40px;
  height: 1px;
  background: var(--text);
  opacity: 0.15;
  margin: 0 auto 10px;
}
.hero-brand-zh {
  font-family: 'Songti SC', 'Songti', serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.44em;
  color: var(--text-subtle);
  line-height: 1;
  padding-left: 0.44em;
}

/* ────────────────────────────────────────────────────
   LANDING PAGE
──────────────────────────────────────────────────── */
.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 0;
}

/* ── HERO ── */
.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1024px;
  padding: 140px 0 44px;
}

.landing-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: var(--sp-md);
}
.landing-title span {
  font-weight: 700;
  background: linear-gradient(120deg, #C9A84C 0%, #A07828 60%, #C9961A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="dark"] .landing-title span {
  background: linear-gradient(120deg, #F0CC60 0%, #D4AF37 60%, #B8930A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-tagline {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}
[data-theme="dark"] .landing-tagline {
  color: rgba(255, 255, 255, 0.45);
}

.landing-tagline-em {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-lg);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-proof {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* ── SECTION DIVIDER ── */
.section-rule {
  width: 100%;
  max-width: 860px;
  height: 1px;
  background: var(--border);
  margin: 0 auto var(--sp-2xl);
}

/* ── CAPABILITIES (Sales stack) ── */
.capabilities {
  width: 100%;
  max-width: 860px;
  margin-bottom: var(--sp-2xl);
}

.capabilities-header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.cap-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  white-space: nowrap;
}

.cap-intro {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.cap-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-lg);
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--border);
  transition: background 0.15s var(--ease);
}
.cap-row:last-child { border-bottom: 1px solid var(--border); }

.cap-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;

  color: var(--text-subtle);
  letter-spacing: 0.04em;
  padding-top: 3px;
}

.cap-body { display: flex; flex-direction: column; gap: var(--sp-sm); }

.cap-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}

.cap-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

.cap-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--sp-xs);
}
.cap-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  white-space: nowrap;
  transition: color 0.12s, border-color 0.12s;
}
.cap-row:hover .cap-pill { border-color: var(--text-subtle); color: var(--text); }

/* ── UPSELL STRIP (Marketing + Ops) ── */
.upsell-strip {
  width: 100%;
  max-width: 860px;
  border: 1px solid var(--border);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-2xl);
  transition: border-color 0.15s var(--ease);
}
.upsell-strip:hover { border-color: var(--text-subtle); }

.upsell-left {}

.upsell-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 8px;
}

.upsell-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.upsell-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 440px;
}

.upsell-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--sp-sm);
}
.upsell-pill {
  font-size: 11.5px;
  color: var(--text-subtle);
  border: 1px solid var(--border);
  padding: 3px 10px;
}

/* ── RESULTS ── */
.results-section {
  width: 100%;
  max-width: 1024px;
  margin-bottom: var(--sp-2xl);
}

.results-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--sp-lg);
  text-align: center;
}

.results-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.result-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.result-stat {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;

  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.result-title { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.result-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-top: 6px; }

/* ── DASHBOARD / DASHBOARD CALL-OUT ── */
.dashboard-text {
  width: 100%;
  max-width: 1024px;
  text-align: center;
  padding: var(--sp-2xl) 0;
  margin-bottom: var(--sp-xl);
}

.dashboard-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--sp-sm);
}

.dashboard-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}

.dashboard-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto var(--sp-lg);
}

.dashboard-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ────────────────────────────────────────────────────
   Card component — composable, soft (ux-components style)
──────────────────────────────────────────────────── */

.landing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1024px;
  width: 100%;
  margin-bottom: var(--sp-2xl);
}

/* Base card */
.landing-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

/* Card sub-regions */
.card-header {
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-content {
  padding: 0 24px 24px;
}
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icon */
.card-icon {
  color: var(--text-subtle);
  margin-bottom: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

/* Typography */
.card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}

/* Pills */
.card-agents { display: flex; flex-wrap: wrap; gap: 6px; }
.agent-pill {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 11px;
  white-space: nowrap;
  transition: border-color 0.12s, color 0.12s;
}

/* Interactive variant — hover lift */
.card--interactive {
  cursor: default;
}
.card--interactive:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--text-subtle);
  transform: translateY(-2px);
}
.card--interactive:hover .agent-pill {
  border-color: var(--text-subtle);
  color: var(--text);
}

/* Selected state */
.card--selected {
  border-color: var(--text);
  box-shadow: 0 0 0 2px var(--text), 0 4px 16px rgba(0,0,0,0.06);
}

/* Loading skeleton */
.card--skeleton {
  pointer-events: none;
}
.card--skeleton .card-header,
.card--skeleton .card-content { opacity: 1; }
.skeleton-line {
  height: 13px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  margin-bottom: 10px;
}
.skeleton-line--icon  { width: 32px; height: 32px; border-radius: var(--radius-md); margin-bottom: 14px; }
.skeleton-line--title { width: 55%; height: 14px; }
.skeleton-line--p1    { width: 100%; }
.skeleton-line--p2    { width: 80%; }
.skeleton-line--p3    { width: 60%; margin-bottom: 0; }
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-hamburger:hover { background: var(--bg-card); }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease), width 0.22s var(--ease);
  transform-origin: center;
}
body.drawer-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.drawer-open .nav-hamburger span:nth-child(2) { opacity: 0; width: 0; }
body.drawer-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── DRAWER ── */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 12, 0.3);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
body.drawer-open .nav-drawer-overlay { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 260px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.25s var(--ease);
}
body.drawer-open .nav-drawer { transform: translateX(0); }

.nav-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 58px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.nav-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.12s;
}
.nav-drawer-close:hover { color: var(--text); }

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-sm) 12px;
  flex: 1;
}
.nav-drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  transition: background 0.12s, color 0.12s;
}
.nav-drawer-links a svg { flex-shrink: 0; color: var(--text-subtle); transition: color 0.12s; }
.nav-drawer-links a:hover,
.nav-drawer-links a.nav-active { background: var(--bg-card); color: var(--text); }
.nav-drawer-links a:hover svg,
.nav-drawer-links a.nav-active svg { color: var(--text); }

.nav-drawer-cta {
  padding: 16px 12px 28px;
  border-top: 1px solid var(--border);
}
.nav-drawer-cta .btn { width: 100%; justify-content: center; }

/* ── Utilities ── */
.br-lg { display: inline; }

/* ────────────────────────────────────────────────────
   Responsive
──────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .theme-toggle { display: none; }

  .landing-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .br-lg { display: none; }

  .capabilities-header { flex-direction: column; gap: 8px; }
  .cap-row { grid-template-columns: 36px 1fr; gap: var(--sp-md); padding: var(--sp-lg) 0; }

  .upsell-strip { flex-direction: column; padding: var(--sp-lg); }

  .results-cards { grid-template-columns: 1fr; gap: 1px; }
  .result-card { padding: var(--sp-lg) var(--sp-md); }

  .landing-cards { grid-template-columns: 1fr; max-width: 480px; gap: 12px; }

  .dashboard-cta-row { flex-direction: column; align-items: center; }
}

/* ────────────────────────────────────────────────────
   Landing page — new components
──────────────────────────────────────────────────── */

/* ── Eyebrow ── */
.lp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 0 0 24px;
}

/* ── Hero ── */
.lp-hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 140px 48px 100px;
  animation: lp-hero-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes lp-hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.lp-h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 28px;
}
.lp-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 40px;
}

/* ── Stats strip ── */
.lp-stats {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}
.lp-stat {
  flex: 1;
  padding: 44px 0;
  padding-right: 32px;
  border-right: 1px solid var(--border);
}
.lp-stat:last-child { border-right: none; padding-right: 0; }
.lp-stat-n {
  display: block;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.lp-stat-l {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Feature rows ── */
.lp-feature {
  max-width: 960px;
  margin: 0 auto;
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.lp-feature-n {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 24px;
}
.lp-feature-h {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 24px;
}
.lp-feature-p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0;
}

/* ── Partnership (inverted) ── */
.lp-partnership {
  background: var(--accent);
  padding: 100px 48px;
}
.lp-partnership-eye {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 24px;
}
.lp-partnership-h {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--bg);
  margin: 0 0 24px;
  max-width: 800px;
}
.lp-partnership-p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 0 40px;
}
[data-theme="dark"] .lp-partnership { background: #ffffff; }
[data-theme="dark"] .lp-partnership-eye { color: rgba(0,0,0,0.35); }
[data-theme="dark"] .lp-partnership-p { color: rgba(0,0,0,0.55); }
[data-theme="dark"] .lp-proof-pill { border-color: rgba(0,0,0,0.18); color: rgba(0,0,0,0.6); }

.lp-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-proof-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* ── Final CTA ── */
.lp-cta {
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 48px;
}
.lp-cta-h {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 20px;
}
.lp-cta-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 0 36px;
}

/* ────────────────────────────────────────────────────
   Scroll reveal animations
──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s;    }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s;  }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s;  }

/* ══════════════════════════════════════════════════════
   GOLD CTA — full-bleed molten gold (goldmetal2, TRS style)
══════════════════════════════════════════════════════ */
.gold-cta {
  position: relative;
  width: 100%;
  padding: 130px 24px 150px;
  background: url('../goldmetal2.png') center center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
/* Dark scrim for text legibility — keeps the gold richness visible */
.gold-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
  pointer-events: none;
}
.gold-cta-wrap {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.gold-cta-h {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #ffffff;
  margin: 0 0 20px;
}
.gold-cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 245, 210, 0.80);
  max-width: 460px;
  margin: 0 auto 44px;
}
/* Cream pill — TRS-style light button on dark bg */
.gold-cta-btn {
  background: rgba(248, 240, 210, 0.92);
  color: #1A1200;
  border-color: transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.gold-cta-btn:hover {
  background: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.30);
}
@media (max-width: 640px) {
  .gold-cta { padding: 90px 24px 110px; }
}

/* ── Landing footer ── */
.lp-footer {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-subtle);
}
.lp-footer a { color: inherit; text-decoration: none; }
.lp-footer a:hover { color: var(--text-muted); }

/* ── New landing responsive ── */
@media (max-width: 720px) {
  .results-cards { grid-template-columns: 1fr; gap: 12px; }
  .result-card { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════
   FEATURE CARDS — ElevenLabs-style grey aesthetic
══════════════════════════════════════════════════════ */

.feat-section {
  width: 100%;
  max-width: 1056px;
  margin-bottom: var(--sp-2xl);
}
.feat-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-align: center;
  margin-bottom: 40px;
}
.feat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.feat-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

/* Card 1 — lightest warm linen (pops above page bg) */
.feat-card--cream { background: #F0EBE0; border: 1px solid #D8D3C4; }
/* Card 2 — warm mid-tone linen */
.feat-card--gold  { background: #E8E2D2; border: 1px solid #CFC9B8; }
/* Card 3 — true dark */
.feat-card--dark  { background: #111111; border: 1px solid #2A2A2A; }

.feat-mockup {
  padding: 24px 24px 0;
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.feat-body { padding: 20px 24px 28px; }

.feat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feat-card--cream .feat-label { color: #736B45; }
.feat-card--gold  .feat-label { color: #736B45; }
.feat-card--dark  .feat-label { color: #D4AF37; }

.feat-headline {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.feat-card--cream .feat-headline { color: #2E2A1F; }
.feat-card--gold  .feat-headline { color: #2E2A1F; }
.feat-card--dark  .feat-headline { color: #ffffff; }

.feat-copy { font-size: 13.5px; line-height: 1.65; }
.feat-card--cream .feat-copy { color: #8C7B5E; }
.feat-card--gold  .feat-copy { color: #8C7B5E; }
.feat-card--dark  .feat-copy { color: rgba(255,255,255,0.6); }

/* ── Mock: CRM table (Sales — warm linen card) ── */
.mock-crm {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #D8D3C4;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.mock-crm-header {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.4fr;
  padding: 7px 12px;
  background: #F0EBE0;
  border-bottom: 1px solid #D8D3C4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8C7B5E;
}
.mock-crm-row {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.4fr;
  padding: 8px 12px;
  border-bottom: 1px solid #EDE8DC;
  align-items: center;
}
.mock-crm-row:last-child { border-bottom: none; }
.mock-lead-name { font-size: 11.5px; font-weight: 600; color: #2E2A1F; }
.mock-next      { font-size: 10.5px; color: #8C7B5E; }
.mock-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}
.badge--green { background: #D1FAE5; color: #065F46; }
.badge--amber { background: #EDE8D8; color: #736B45; }
.badge--blue  { background: #DBEAFE; color: #1E40AF; }

/* ── Mock: AI Visibility bars (Marketing — warm linen card) ── */
.mock-visibility {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #D8D3C4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.mock-vis-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C7B5E;
  margin-bottom: 14px;
}
.mock-vis-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mock-vis-row:last-of-type { margin-bottom: 14px; }
.mock-vis-src  { font-size: 11px; color: #8C7B5E; width: 72px; flex-shrink: 0; }
.mock-vis-bar  { flex: 1; height: 5px; background: #D8D3C4; border-radius: 99px; overflow: hidden; }
.mock-vis-fill { height: 100%; background: #736B45; border-radius: 99px; }
.mock-vis-pct  { font-size: 11px; font-weight: 700; color: #2E2A1F; width: 22px; text-align: right; }
.mock-vis-note {
  font-size: 11px;
  color: #8C7B5E;
  font-weight: 500;
  border-top: 1px solid #D8D3C4;
  padding-top: 10px;
}

/* ── Mock: Ops task list (Operations — dark card) ── */
.mock-ops { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.mock-ops-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
}
.mock-ops-done {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
}
.mock-ops-done svg   { color: #D4AF37; flex-shrink: 0; }
.mock-ops-running {
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);
  color: #D4AF37;
}
.mock-ops-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: rgba(212,175,55,0.65);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.mock-ops-running .mock-ops-tag { color: #D4AF37; }
.mock-ops-spin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.25);
  border-top-color: #D4AF37;
  animation: kyn-spin 0.85s linear infinite;
  flex-shrink: 0;
}
@keyframes kyn-spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════
   GROWTH PANEL — warm linen (MGM palette)
══════════════════════════════════════════════════════ */
.growth-panel {
  width: 100%;
  max-width: 1056px;
  margin-bottom: var(--sp-2xl);
}
.growth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  align-items: center;
}
.growth-headline {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: #2E2A1F;
  margin-bottom: 16px;
}
.growth-headline em {
  font-style: normal;
  background: linear-gradient(120deg, #C9A84C 0%, #A07828 60%, #C9961A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.growth-body { font-size: 14.5px; color: #8C7B5E; line-height: 1.7; }
.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.growth-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #4A4232;
}
.growth-item svg { color: #736B45; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   SITE FOOTER — minimal Clay-style
══════════════════════════════════════════════════════ */
.site-footer {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 24px 28px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1056px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo .logo-wordmark { flex-direction: row; align-items: baseline; gap: 8px; }
.footer-logo .logo-en { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; color: var(--text); }
.footer-logo .logo-zh { font-size: 10px; letter-spacing: 0.2em; color: var(--text-subtle); padding-left: 0; }
.footer-nav { display: flex; gap: 20px; flex: 1; justify-content: center; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: var(--text-muted); transition: color 0.12s; }
.footer-nav a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-subtle); flex-shrink: 0; white-space: nowrap; }
.footer-copy a { color: inherit; }
.footer-copy a:hover { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════
   TABBED CAPABILITIES
══════════════════════════════════════════════════════ */
.tab-section {
  width: 100%;
  max-width: 960px;
  margin-bottom: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pill track — TRS-style: clean capsule, no border */
.tab-track {
  display: inline-flex;
  background: var(--surface);
  border-radius: 99px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.tab-pill {
  padding: 10px 24px;
  border-radius: 99px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.tab-pill--active {
  background: #CEAA3C;
  color: #1A1200;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(206,170,60,0.28);
}
.tab-pill:not(.tab-pill--active):hover {
  background: var(--bg-card);
  color: var(--text);
}

/* Panels */
.tab-panel { display: none; width: 100%; }
.tab-panel--active {
  display: block;
  animation: tab-in 0.22s var(--ease) both;
}
@keyframes tab-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* Cards grid */
.tab-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

/* Clay-style card: colored visual area on top, text body below */
.tab-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}
.tab-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

/* Colored visual header — three rotating tints */
.tab-card-visual {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #F5F5F5;
  color: var(--accent);
}
.tab-cards .tab-card:nth-child(1) .tab-card-visual {
  background: #F5F5F5;
  color: #736B45;
}
.tab-cards .tab-card:nth-child(2) .tab-card-visual {
  background: #2E2A1F;
  color: rgba(212, 175, 55, 0.85);
}
.tab-cards .tab-card:nth-child(3) .tab-card-visual {
  background: #736B45;
  color: rgba(255, 245, 210, 0.9);
}
.tab-card-visual svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.5;
}

/* Step number visual (Custom tab) */
.tab-card--step .tab-card-visual {
  background: var(--surface);
  color: var(--accent);
}
.tab-card--step .tab-card-step {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: currentColor;
  line-height: 1;
}

/* Card text body */
.tab-card-body {
  padding: 22px 22px 24px;
}
.tab-card-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tab-card-desc {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--text-muted);
}

.tab-custom-cta {
  text-align: center;
  margin-top: 32px;
}

/* ── Custom tab timeline mockups ── */
.tcard-booking { padding: 10px 10px 8px; }
.tcard-booking-title { font-size: 9px; font-weight: 700; color: #18181b; margin-bottom: 8px; }
.tcard-cal-row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.tcard-cal-row span { font-size: 8px; color: #a1a1aa; padding: 3px 4px; border-radius: 4px; }
.tcard-cal-day--sel { background: #D4AF37 !important; color: #1A1200 !important; font-weight: 700; }
.tcard-cal-time { font-size: 8.5px; color: #52525b; margin-bottom: 7px; padding: 4px 6px; background: #f4f4f5; border-radius: 4px; }
.tcard-cal-btn { display: inline-block; background: #2E2A1F; color: #fff; font-size: 8px; font-weight: 600; padding: 3px 8px; border-radius: 4px; }

.tcard-gantt { padding: 9px; }
.tcard-gantt-title { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #a1a1aa; margin-bottom: 8px; }
.tcard-gantt-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.tcard-gantt-label { font-size: 8px; color: #a1a1aa; font-weight: 600; width: 24px; flex-shrink: 0; }
.tcard-gantt-bar { height: 18px; background: #e4e4e7; border-radius: 3px; font-size: 7.5px; font-weight: 600; color: #52525b; display: flex; align-items: center; padding: 0 6px; }
.tcard-gantt-bar--done { background: rgba(115,107,69,0.20); color: #736B45; }

.tcard-delivery { padding: 9px; }
.tcard-delivery-row { display: flex; align-items: center; gap: 7px; font-size: 9px; color: #3f3f46; padding: 4px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.tcard-delivery-row:last-of-type { border-bottom: none; }
.tcard-delivery-row span:nth-child(2) { flex: 1; }
.tcard-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tcard-dot--green { background: #22c55e; }
.tcard-live { font-size: 7px; font-weight: 700; color: #166534; background: #dcfce7; border-radius: 99px; padding: 1px 5px; letter-spacing: 0.04em; }
.tcard-delivery-footer { font-size: 8.5px; font-weight: 600; color: #3f3f46; margin-top: 7px; }

/* ── Mini UI Mockups (Clay-style card illustrations) ── */
.tcard-mock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.tcard-mock svg { width: unset; height: unset; stroke-width: unset; }

.tcard-panel {
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.06);
  font-family: var(--font);
  font-size: 9.5px;
  color: #18181b;
  overflow: hidden;
}

/* Table — Lead Generation */
.tcard-table .tcard-row {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  padding: 5px 8px;
  gap: 4px;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.2;
}
.tcard-table .tcard-row:last-child { border-bottom: none; }
.tcard-table .tcard-row--head {
  background: #f4f4f5;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a1a1aa;
}
.tcard-tag { display: inline-block; padding: 2px 5px; border-radius: 99px; font-size: 7.5px; font-weight: 600; line-height: 1.3; }
.tcard-tag--green { background: #dcfce7; color: #166534; }
.tcard-tag--amber { background: #fef3c7; color: #92400e; }
.tcard-tag--blue  { background: #dbeafe; color: #1e40af; }

/* Kanban — Lead Management */
.tcard-kanban { display: flex; width: 100%; height: 132px; }
.tcard-kanban-col {
  flex: 1;
  padding: 8px 6px;
  border-right: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tcard-kanban-col:last-child { border-right: none; }
.tcard-kanban-hdr {
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a1a1aa;
  margin-bottom: 3px;
}
.tcard-kanban-item {
  background: #f4f4f5;
  border-radius: 4px;
  padding: 4px 5px;
  font-size: 8.5px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tcard-kanban-item--won { background: rgba(115,107,69,0.12); color: #736B45; font-weight: 600; }

/* Email compose — Account Executive */
.tcard-email { padding: 8px; }
.tcard-email-chrome { display: flex; gap: 3px; margin-bottom: 7px; }
.tcard-chrome-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.15); }
.tcard-email-field { font-size: 8.5px; padding: 3px 0; border-bottom: 1px solid rgba(0,0,0,0.07); color: #52525b; line-height: 1.4; }
.tcard-email-field b { color: #18181b; }
.tcard-email-body { font-size: 8.5px; color: #71717a; margin: 5px 0 6px; line-height: 1.5; }
.tcard-email-btn { display: inline-block; background: #2E2A1F; color: #fff; font-size: 8px; font-weight: 600; padding: 3px 8px; border-radius: 4px; }

/* AI search result — GEO Optimiser */
.tcard-search { padding: 8px; }
.tcard-search-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f4f4f5;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 8.5px;
  color: #71717a;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
}
.tcard-ai-badge { font-size: 7.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #1a73e8; margin-bottom: 3px; }
.tcard-ai-text { font-size: 8.5px; line-height: 1.5; color: #3f3f46; }
.tcard-ai-text b { color: #18181b; }

/* Bar chart — Brand Analytics */
.tcard-chart { padding: 10px 10px 8px; height: 132px; display: flex; flex-direction: column; }
.tcard-chart-bars { display: flex; align-items: flex-end; gap: 5px; flex: 1; padding-bottom: 4px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.tcard-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 3px; height: 100%; }
.tcard-bar-wrap > span { font-size: 7.5px; color: #a1a1aa; }
.tcard-bar-wrap--kyn > span { color: #736B45; font-weight: 700; }
.tcard-bar-item { width: 100%; background: #e4e4e7; border-radius: 3px 3px 0 0; }
.tcard-bar-wrap--kyn .tcard-bar-item { background: #D4AF37; }
.tcard-chart-lbl { font-size: 8px; text-align: center; color: #a1a1aa; margin-top: 5px; }

/* Translation — Content Generation */
.tcard-translate { display: flex; width: 100%; height: 132px; }
.tcard-translate-pane { flex: 1; padding: 9px 8px; }
.tcard-translate-pane + .tcard-translate-pane { border-left: 1px solid rgba(0,0,0,0.08); }
.tcard-translate-lang { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #a1a1aa; margin-bottom: 5px; }
.tcard-translate-text { font-size: 8.5px; line-height: 1.55; color: #3f3f46; }

/* Document — Document Automation */
.tcard-doc { padding: 9px; }
.tcard-doc-title { font-size: 9px; font-weight: 700; color: #18181b; border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 5px; margin-bottom: 5px; }
.tcard-doc-field { font-size: 8.5px; color: #71717a; padding: 2px 0; line-height: 1.4; }
.tcard-doc-token { display: inline-block; background: #fef9c3; color: #713f12; border-radius: 3px; padding: 0 3px; font-family: monospace; font-size: 8px; }
.tcard-doc-sent { font-size: 8px; font-weight: 600; color: #166534; background: #dcfce7; border-radius: 4px; padding: 2px 6px; display: inline-block; margin-top: 5px; }

/* Workflow — Approval Automation */
.tcard-workflow { padding: 12px 14px; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.tcard-wf-step { display: flex; align-items: center; gap: 8px; font-size: 9px; color: #a1a1aa; padding: 3px 0; }
.tcard-wf-step--done { color: #3f3f46; }
.tcard-wf-step--active { color: #736B45; font-weight: 600; }
.tcard-wf-node {
  width: 18px; height: 18px; border-radius: 50%;
  background: #f4f4f5; border: 1px solid #e4e4e7;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; flex-shrink: 0; line-height: 1; color: #a1a1aa;
}
.tcard-wf-step--done .tcard-wf-node { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.tcard-wf-step--active .tcard-wf-node { border-color: #736B45; background: rgba(115,107,69,0.1); color: #736B45; }
.tcard-wf-connector { width: 1px; height: 8px; background: #e4e4e7; margin-left: 9px; }

/* Invoice — Expense Automation */
.tcard-invoice { width: 100%; }
.tcard-inv-row {
  display: grid;
  grid-template-columns: 1fr 66px 36px;
  padding: 5px 8px;
  font-size: 8.5px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 4px;
  align-items: center;
}
.tcard-inv-row:last-child { border-bottom: none; }
.tcard-inv-name { font-weight: 500; color: #3f3f46; }
.tcard-inv-cat { font-size: 7.5px; background: #f4f4f5; color: #71717a; border-radius: 3px; padding: 1px 4px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tcard-inv-amt { text-align: right; font-weight: 600; color: #3f3f46; }
.tcard-inv-total { display: flex; justify-content: space-between; padding: 5px 8px; font-size: 9px; font-weight: 700; background: #f4f4f5; color: #18181b; }

/* ── Benefits strip — TRS style ── */
.benefits-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 56px 72px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  gap: 16px;
  border-right: 1px solid var(--border);
}
.benefit-item:last-child { border-right: none; }

.benefit-icon {
  width: 28px;
  height: 28px;
  color: var(--text);
  flex-shrink: 0;
  line-height: 0;
}

.benefit-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.benefit-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 150px;
}

@media (max-width: 960px) {
  .benefits-strip { padding: 40px 32px; }
}
@media (max-width: 700px) {
  .benefits-strip { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 32px; }
  .benefit-item { border-right: none; }
}
@media (max-width: 420px) {
  .benefits-strip { grid-template-columns: 1fr 1fr; padding: 32px 20px; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .feat-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .growth-inner { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .growth-grid { grid-template-columns: 1fr 1fr; }
  .tab-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .tab-track { border-radius: 14px; }
  .tab-pill { padding: 9px 16px; font-size: 13px; }
}
@media (max-width: 540px) {
  .growth-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-nav { justify-content: flex-start; }
}
