/* ═══════════════════════════════════════════════════════════════════
   TeamGroup marketing site — Direction A Revised
   Deep ink navy + warm copper. Inter (sans) + Instrument Serif (display).
   ═══════════════════════════════════════════════════════════════════ */

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

:root {
  /* Deep ink navy — NOT pure black, has warmth */
  --bg: #0a0e1a;
  --bg-elevated: #0f1425;
  --bg-subtle: #141a2e;
  /* Warm off-white text — NOT pure #fff */
  --text: #e8e4df;
  --text-secondary: #9a9791;
  --text-tertiary: #6e6c66;
  /* Warm copper/amber accent */
  --accent: #c8854a;
  --accent-soft: rgba(200, 133, 74, 0.10);
  --accent-glow: rgba(200, 133, 74, 0.18);
  --accent-hover: #d4935a;
  /* Secondary cool accent for contrast moments */
  --cool: #5a8f9a;
  --border: rgba(232, 228, 223, 0.06);
  --border-hover: rgba(232, 228, 223, 0.10);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  /* Account colors for the phone mockup */
  --acct-blue: #4a90d9;
  --acct-green: #43b581;
  --acct-orange: #e8915a;
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--bg);
  padding: 10px 18px; font-size: 13px; font-weight: 600;
  border-radius: 0 0 8px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ═══ NAV ═══ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 0 24px;
  background: rgba(10, 14, 26, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-weight: 600; font-size: 15px; letter-spacing: -0.02em;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--accent), #b5763f);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 14px; height: 14px; color: var(--bg); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; color: var(--text-secondary);
  text-decoration: none; transition: color 0.2s;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 13px; font-weight: 500;
  background: var(--accent); color: var(--bg);
  border: none; border-radius: 8px;
  padding: 7px 16px !important; cursor: pointer;
  transition: background 0.2s;
  font-family: var(--sans);
  text-decoration: none;
}
.nav-links a.nav-cta { color: var(--bg); }
.nav-cta:hover { background: var(--accent-hover); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border-hover);
  border-radius: 8px; padding: 8px 10px; cursor: pointer;
  color: var(--text);
  min-width: 44px; min-height: 44px;
}
.nav-toggle svg { display: block; width: 18px; height: 18px; }

/* ═══ BUTTONS ═══ */
.btn-primary, .btn-light, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  border-radius: 10px;
  padding: 12px 24px; cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  min-height: 44px;
}
.btn-primary { background: var(--accent); color: var(--bg); border: none; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 30px var(--accent-glow); background: var(--accent-hover); }
.btn-light { background: var(--text); color: var(--bg); border: none; }
.btn-light:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-hover); }
.btn-secondary:hover { border-color: var(--text-tertiary); color: var(--text); }

/* ═══ HERO ═══ */
.hero {
  max-width: 1100px; margin: 0 auto;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.35; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(200, 133, 74, 0.18);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) {
  .hero-badge .dot { animation: none; }
  html { scroll-behavior: auto; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 24px auto 0;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 40px;
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-proof {
  margin-top: 48px;
  display: flex; gap: 32px; justify-content: center;
  font-size: 12px; color: var(--text-tertiary);
  flex-wrap: wrap;
  list-style: none;
}
.hero-proof li { display: flex; align-items: center; gap: 6px; }
.hero-proof svg { opacity: 0.6; }

/* ═══ PHONE MOCKUP (product visual) ═══ */
.product-frame {
  max-width: 940px; margin: 0 auto;
  padding: 0 24px 90px;
  position: relative;
  display: flex; justify-content: center;
}
.phone-wrap { position: relative; }
.phone {
  width: 300px;
  background: #10162a;
  border-radius: 36px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px 8px;
  font-size: 11px; font-weight: 600;
  color: rgba(232, 228, 223, 0.5);
}
.app-header {
  padding: 8px 16px 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.app-title { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.app-accounts { display: flex; }
.acct-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid #10162a;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: #fff;
  margin-left: -6px;
}
.acct-dot:first-child { margin-left: 0; }
.filter-row { padding: 0 16px 10px; display: flex; gap: 6px; overflow: hidden; }
.filter-pill {
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  white-space: nowrap;
  border: 1px solid rgba(232, 228, 223, 0.08);
  color: rgba(232, 228, 223, 0.45);
}
.filter-pill.active {
  background: rgba(200, 133, 74, 0.15);
  border-color: rgba(200, 133, 74, 0.3);
  color: var(--accent);
}
.chat-list { padding: 0 0 24px; }
.chat-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 16px; }
.chat-item.unread .chat-name { color: var(--text); font-weight: 600; }
.chat-item.unread .chat-preview { color: rgba(232, 228, 223, 0.7); }
.chat-avatar {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #fff;
  flex-shrink: 0; position: relative;
}
.chat-acct-indicator {
  position: absolute; bottom: -2px; right: -2px;
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid #10162a;
}
.chat-body { flex: 1; min-width: 0; }
.chat-top { display: flex; justify-content: space-between; align-items: center; }
.chat-name {
  font-size: 12px; font-weight: 500; color: rgba(232, 228, 223, 0.75);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.chat-time { font-size: 10px; color: rgba(232, 228, 223, 0.25); flex-shrink: 0; margin-left: 8px; }
.chat-time.unread { color: var(--accent); font-weight: 600; }
.chat-preview {
  font-size: 11px; color: rgba(232, 228, 223, 0.3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  margin-top: 2px;
}
.chat-org { font-size: 9px; margin-top: 1px; opacity: 0.65; }
.chat-badge {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 6px;
}
.notif-toast {
  position: absolute;
  background: #1a2140;
  border: 1px solid rgba(232, 228, 223, 0.1);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; gap: 10px; align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 220px;
}
.notif-toast.toast-tr { top: -16px; right: -110px; }
.notif-toast.toast-bl { bottom: 56px; left: -110px; width: 210px; }
.notif-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.notif-title { font-size: 10px; font-weight: 600; color: rgba(232, 228, 223, 0.85); }
.notif-text { font-size: 9px; color: rgba(232, 228, 223, 0.4); margin-top: 1px; }
.notif-tag {
  font-size: 8px; font-weight: 600; margin-top: 3px;
  border-radius: 3px; padding: 1px 5px; display: inline-block;
}

/* ═══ SECTIONS ═══ */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 560px;
}
.section-desc {
  font-size: 15px; color: var(--text-secondary);
  max-width: 500px; margin-top: 16px; line-height: 1.7;
}
.centered-header { text-align: center; margin-bottom: 60px; }
.centered-header .section-title { max-width: 100%; margin: 0 auto; }
.centered-header .section-desc { margin-left: auto; margin-right: auto; }

/* ═══ PROBLEM ═══ */
.problem { border-top: 1px solid var(--border); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.problem-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border-radius: 16px; overflow: hidden;
}
.stat-card { background: var(--bg-elevated); padding: 32px 24px; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 36px; color: var(--text); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-tertiary); margin-top: 8px; line-height: 1.4; }

/* ═══ FEATURES / PERSONAS ═══ */
.features, .personas, .how-it-works, .security-section, .pricing, .faq { border-top: 1px solid var(--border); }
.features-grid, .personas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: 16px; overflow: hidden;
}
.feature-item, .persona-item {
  background: var(--bg); padding: 40px 32px;
  transition: background 0.3s;
}
.feature-item:hover, .persona-item:hover { background: var(--bg-elevated); }
.feature-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent);
}
.feature-item h3, .persona-item h3 {
  font-size: 15px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.feature-item p, .persona-item p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.65;
}
.persona-item { padding: 36px 28px; }
.persona-tag {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cool); margin-bottom: 14px;
}
.personas-header { margin-bottom: 48px; }

/* ═══ HOW IT WORKS ═══ */
.how-inner { max-width: 800px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; list-style: none; }
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--accent); color: var(--bg);
  font-family: var(--serif); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ═══ SECURITY ═══ */
.security-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border-radius: 16px; overflow: hidden;
  margin-top: 48px;
}
.security-item { background: var(--bg); padding: 32px 28px; transition: background 0.3s; }
.security-item:hover { background: var(--bg-elevated); }
.security-item h3 {
  font-size: 14px; font-weight: 600; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
  color: var(--text);
}
.security-item h3 svg { color: var(--accent); flex-shrink: 0; }
.security-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.security-footnote {
  margin-top: 24px; font-size: 12px; color: var(--text-tertiary);
  text-align: center;
}
.security-footnote a { color: var(--text-secondary); }

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border-radius: 16px; overflow: hidden;
  max-width: 720px; margin: 0 auto;
}
.price-card { background: var(--bg); padding: 40px 36px; }
.price-card.featured { background: var(--bg-elevated); }
.price-label { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.price-sub { font-size: 13px; color: var(--text-secondary); }
.price-amount { font-family: var(--serif); font-size: 48px; margin: 24px 0 4px; line-height: 1; }
.price-period { font-size: 13px; color: var(--text-tertiary); }
.price-features { list-style: none; margin: 28px 0; }
.price-features li {
  font-size: 13px; color: var(--text-secondary);
  padding: 6px 0;
  display: flex; align-items: center; gap: 8px;
}
.price-features li::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 50%; background: var(--accent);
  flex-shrink: 0;
}
.price-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; text-align: center;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  padding: 10px; border-radius: 8px;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none;
  min-height: 44px;
}
.price-btn-outline {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border-hover);
}
.price-btn-outline:hover { border-color: var(--text-tertiary); color: var(--text); }
.price-btn-fill { background: var(--accent); color: var(--bg); border: none; }
.price-btn-fill:hover { background: var(--accent-hover); }
.pricing-note {
  text-align: center; margin-top: 24px;
  font-size: 12px; color: var(--text-tertiary);
  max-width: 720px; margin-left: auto; margin-right: auto;
}

/* ═══ FAQ ═══ */
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list {
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  overflow: hidden;
}
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: none; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { background: var(--bg-elevated); }
.faq-list summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 22px; line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .faq-answer {
  padding: 0 24px 20px;
  font-size: 13px; color: var(--text-secondary); line-height: 1.7;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 100px 24px;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.25; pointer-events: none;
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: relative;
}
.final-cta h2 em { color: var(--accent); font-style: italic; }
.final-cta p {
  color: var(--text-secondary); font-size: 15px;
  margin: 20px auto 0; max-width: 420px;
  position: relative;
}
.final-cta .hero-actions { margin-top: 32px; position: relative; }
.final-cta .cta-web {
  margin-top: 24px; font-size: 13px; color: var(--text-tertiary);
  position: relative;
}
.final-cta .cta-web a { color: var(--accent); text-decoration: none; }
.final-cta .cta-web a:hover { text-decoration: underline; }

/* ═══ FOOTER ═══ */
.site-footer { border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-tertiary); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; color: var(--text-tertiary);
  text-decoration: none; transition: color 0.2s;
  padding: 4px 0;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-disclaimer {
  max-width: 1100px; margin: 16px auto 0;
  font-size: 11px; color: var(--text-tertiary);
  line-height: 1.6;
}

/* ═══ LEGAL PAGES (privacy / terms) ═══ */
.legal-main { max-width: 760px; margin: 0 auto; padding: 72px 24px 96px; }
.legal-main h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.legal-meta { margin-top: 12px; font-size: 13px; color: var(--text-secondary); }
.legal-meta strong { color: var(--text); }
.legal-note { margin-top: 12px; font-size: 12px; color: var(--text-tertiary); font-style: italic; }
.legal-body { margin-top: 48px; }
.legal-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 40px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 20px; }
.legal-body li { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 8px; }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body a { color: var(--accent); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body .statutory { font-size: 12px; font-style: italic; color: var(--text-tertiary); }

/* ═══ 404 ═══ */
.notfound-main {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 96px 24px;
  position: relative;
}
.notfound-main::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.3; pointer-events: none;
}
.notfound-main p.notfound-code {
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 9rem);
  line-height: 1;
  color: var(--accent);
  position: relative;
}
.notfound-main h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-top: 16px;
  position: relative;
}
.notfound-main p {
  color: var(--text-secondary); font-size: 15px;
  margin-top: 16px; max-width: 400px;
  position: relative;
}
.notfound-main .hero-actions { margin-top: 32px; position: relative; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .notif-toast.toast-tr { right: -24px; top: -12px; width: 190px; }
  .notif-toast.toast-bl { left: -24px; bottom: 40px; width: 185px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute; top: 56px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-hover);
    padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; font-size: 15px; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.nav-cta {
    margin-top: 12px; text-align: center;
    border-radius: 10px; padding: 12px !important;
  }

  .hero { padding: 72px 24px 56px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .personas-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { flex-direction: column; text-align: center; justify-content: center; }
  .footer-links { justify-content: center; }
  .footer-disclaimer { text-align: center; }
  .hero-proof { gap: 20px; }
  .product-frame { padding-bottom: 64px; }
  .notif-toast.toast-tr { right: -8px; }
  .notif-toast.toast-bl { left: -8px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid, .personas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Articles (blog, compare, IT admins) — extends the legal-page layout ── */
.article-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.article-cta {
  margin-top: 48px; padding: 24px; border-radius: 14px;
  border: 1px solid var(--border-hover); background: var(--bg-elevated);
}
.article-cta h2 { margin: 0 0 8px; padding: 0; border: none; font-size: 17px; }
.article-cta p { margin-bottom: 16px; }
.article-table-wrap { overflow-x: auto; margin: 20px 0 28px; border: 1px solid var(--border-hover); border-radius: 12px; }
.article-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
.article-table th {
  text-align: left; padding: 12px 16px; color: var(--text);
  font-weight: 600; border-bottom: 1px solid var(--border-hover); background: var(--bg-elevated);
}
.article-table th:nth-child(n+2), .article-table td:nth-child(n+2) { text-align: center; }
.article-table th.tg-col { color: var(--accent); }
.article-table td { padding: 12px 16px; color: var(--text-secondary); border-bottom: 1px solid var(--border); line-height: 1.5; }
.article-table tr:last-child td { border-bottom: none; }
.article-table td.win { color: var(--text); font-weight: 500; background: rgba(200, 133, 74, 0.06); }
.article-table .yes { color: var(--acct-green, #43b581); font-weight: 600; }
.article-table .no { color: var(--text-tertiary); }
.post-list { margin-top: 48px; display: grid; gap: 20px; }
.post-card {
  display: block; padding: 24px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--bg-elevated);
  text-decoration: none; transition: border-color 0.15s ease, transform 0.15s ease;
}
.post-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.post-card h2 { font-size: 18px; color: var(--text); margin: 0 0 8px; line-height: 1.4; }
.post-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0 0 10px; }
.post-card .post-date { font-size: 12px; color: var(--text-tertiary); }

/* ── Coming-soon store buttons (pre-launch) ── */
.btn-soon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px; font-size: 14px; font-weight: 600;
  background: var(--bg-elevated); color: var(--text-tertiary);
  border: 1px solid var(--border); cursor: default;
}
.btn-soon .soon-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: rgba(200, 133, 74, 0.12);
  border: 1px solid rgba(200, 133, 74, 0.3); border-radius: 99px; padding: 2px 8px;
}
