/* ═══════════════════════════════════════════════════════════
   BEC Agency — Global Stylesheet
   Root: becshare.com/styles.css
   All sub-pages (bectask/, becshare/, etc.) link to ../styles.css
   ═══════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── DESIGN TOKENS ── */
:root {
  /* Backgrounds */
  --bg:        #0c0e11;
  --bg2:       #131619;
  --bg3:       #1c2026;
  --bg4:       #232830;

  /* Brand green (agency default / BEC Share accent) */
  --green:     #3ecf6a;
  --green-h:   #2db857;
  --green-dim: rgba(62,207,106,0.12);
  --green-bdr: rgba(62,207,106,0.22);

  /* Text */
  --text-h:    #eceef2;
  --text-b:    #c8cdd6;
  --text-m:    #6b7585;
  --text-d:    #3d4452;

  /* Utility */
  --border:    rgba(255,255,255,0.06);
  --border-hi: rgba(255,255,255,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Accent palette — each product can override locally */
  --accent:        var(--green);
  --accent-h:      var(--green-h);
  --accent-dim:    var(--green-dim);
  --accent-bdr:    var(--green-bdr);

  /* Per-product accent (set inline on <html> or <body>) */
  --task-accent:   #4f8ef7;
  --task-dim:      rgba(79,142,247,0.12);
  --task-bdr:      rgba(79,142,247,0.22);
  --share-accent:  #3ecf6a;
  --share-dim:     rgba(62,207,106,0.12);
  --share-bdr:     rgba(62,207,106,0.22);
}
    
/* ── TYPOGRAPHY ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,400;0,500;1,400&family=Segoe UI:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-b);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 48px;
  height: 60px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12,14,17,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 200;
}

/* Logo mark */
.nav-logo {
  display: flex;
  align-items: stretch;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  text-decoration: none;
}
.nav-logo-letter {
  width: 30px; height: 30px;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px; font-weight: 500;
  color: var(--accent);
  transition: background 0.2s;
}
.nav-logo-bar {
  width: 5px; height: 30px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-h) 100%);
}

.nav-brand {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-h);
  letter-spacing: -0.2px;
  flex: 1;
}

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--text-m);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text-h); }

.nav-back {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-m);
  transition: color 0.15s;
}
.nav-back:hover { color: var(--text-h); }
.nav-back svg { flex-shrink: 0; }

.nav-cta {
  padding: 7px 18px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent-h); }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 90px 24px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 300px at 50% 0%, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  border-radius: 40px;
  padding: 5px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-h);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero h1 .sub-line {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--text-m);
  margin-top: 6px;
}

.hero p {
  font-size: 17px; line-height: 1.65;
  color: var(--text-m);
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative; z-index: 1;
}

.hero-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--accent-h); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--text-b);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: var(--accent-bdr); background: var(--accent-dim); color: var(--text-h); }

/* ── SECTION CHROME ── */
.section-wrap { padding: 80px 24px; }
.section-wrap.alt { background: var(--bg2); }
.section-wrap.bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-h {
  text-align: center;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-h);
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-m);
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

.inner { max-width: 1100px; margin: 0 auto; }
.inner-sm { max-width: 760px; margin: 0 auto; }

/* ── FEATURE GRID ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.feat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent, var(--accent)), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.feat-card:hover { border-color: var(--accent-bdr); transform: translateY(-2px); }
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
}

.feat-title {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-h);
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 13px; line-height: 1.65;
  color: var(--text-m);
}

.feat-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.pill {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 3px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-m);
}

/* ── STEPS ── */
.steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 680px; margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 28px; font-weight: 500;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 3px;
}
.step-body h3 {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text-h);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 13px; line-height: 1.7;
  color: var(--text-m);
}

/* ── PRIVACY STRIP ── */
.privacy-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.privacy-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.priv-item { display: flex; flex-direction: column; gap: 4px; }
.priv-title {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--text-h);
}
.priv-desc { font-size: 12px; color: var(--text-m); line-height: 1.5; }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 250px at 50% 100%, var(--accent-dim), transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-h);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cta-section p {
  font-size: 15px; color: var(--text-m);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-section .btn-primary { margin: 0 auto; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  margin-right: auto;
}
.footer-brand span {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text-h);
}
footer p { font-size: 12px; color: var(--text-d); }
footer a { font-size: 12px; color: var(--text-m); transition: color 0.15s; }
footer a:hover { color: var(--text-h); }

/* ── PRIVACY PAGE ── */
.page-header {
  padding: 70px 24px 52px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 220px at 50% 0%, var(--accent-dim), transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  border-radius: 40px; padding: 5px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.page-header h1 {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; letter-spacing: -1.5px;
  color: var(--text-h);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.page-header p {
  font-size: 13px; color: var(--text-m);
  font-family: 'DM Mono', monospace;
  position: relative; z-index: 1;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 860px; margin: 0 auto;
  padding: 36px 24px;
}
.hl-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.2s;
}
.hl-card:hover { border-color: var(--accent-bdr); }
.hl-icon { font-size: 18px; }
.hl-label {     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 12px; font-weight: 700; color: var(--text-h); }
.hl-val { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent); }

.content-wrap { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.section-block { padding: 36px 0; border-bottom: 1px solid var(--border); }
.section-block:last-child { border-bottom: none; }
.section-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  color: var(--accent); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 8px;
}
.section-block h2 {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 19px; font-weight: 800;
  color: var(--text-h); letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-block p { font-size: 14px; line-height: 1.75; color: var(--text-m); }
.section-block p + p { margin-top: 12px; }

.inline-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-size: 11px; padding: 1px 7px; border-radius: 5px;
  white-space: nowrap;
}

.perm-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.perm-row {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
}
.perm-name {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: var(--accent);
  min-width: 110px; flex-shrink: 0;
  padding-top: 1px;
}
.perm-desc { font-size: 13px; color: var(--text-m); line-height: 1.6; }

.contact-card {
  margin-top: 16px;
  background: var(--bg2);
  border: 1px solid var(--accent-bdr);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.contact-icon { font-size: 24px; flex-shrink: 0; }
.contact-card h3 {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text-h); margin-bottom: 4px;
}
.contact-card a {
  color: var(--accent); font-size: 13px;
  font-family: 'DM Mono', monospace;
}

/* ── BROWSER MOCKUP (BECTask hero) ── */
.hero-visual {
  margin-top: 60px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.browser-frame {
  background: var(--bg3);
  border: 1px solid var(--border-hi);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--bg4);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.url-bar {
  flex: 1; background: var(--bg3);
  border-radius: 5px; padding: 4px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: var(--text-m);
  margin: 0 8px;
}
.browser-body { display: flex; height: 280px; }
.page-area {
  flex: 1; padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.page-line {
  height: 10px; border-radius: 4px;
  background: var(--bg4);
}
.page-line.w80 { width: 80%; }
.page-line.w60 { width: 60%; }
.page-line.w45 { width: 45%; }
.page-line.w70 { width: 70%; }
.page-line.tall { height: 48px; border-radius: 6px; }

.sidebar-panel {
  width: 200px; flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding: 12px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg2);
}
.sp-head {
  display: flex; align-items: center; gap: 8px;
}
.sp-logo {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--accent);
}
.sp-title {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--text-h); flex: 1;
}
.sp-badge {
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  color: var(--accent);
  border-radius: 40px;
  padding: 1px 6px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
}
.sp-stats {
  display: flex; gap: 6px;
}
.sp-stat {
  flex: 1; background: var(--bg3);
  border-radius: 6px; padding: 6px 4px;
  text-align: center;
}
.sp-stat-n {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--text-h);
}
.sp-stat-l { font-size: 8px; color: var(--text-m); }
.sp-tasks { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sp-task {
  display: flex; align-items: flex-start; gap: 7px;
  background: var(--bg3);
  border-radius: 6px; padding: 7px 8px;
}
.task-check {
  width: 12px; height: 12px;
  border-radius: 3px;
  border: 1px solid var(--border-hi);
  flex-shrink: 0; margin-top: 1px;
}
.task-check.done {
  background: var(--accent);
  border-color: var(--accent);
}
.task-title {
  font-size: 9px; color: var(--text-b);
  line-height: 1.3; margin-bottom: 3px;
}
.task-meta { display: flex; gap: 4px; flex-wrap: wrap; }
.task-tag {
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 3px; padding: 1px 4px;
  font-size: 7px;
}
.task-tag.blue { background: rgba(79,142,247,0.12); color: #4f8ef7; }
.task-tag.red  { background: rgba(245,101,101,0.12); color: #f56565; }
.task-meta span { font-size: 7px; color: var(--text-m); }
.sp-capture-btn {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  background: var(--accent);
  border-radius: 5px; padding: 6px;
  font-size: 9px; font-weight: 600; color: #fff;
  cursor: pointer;
}
.wa-chip {
  position: absolute; bottom: -14px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border-hi);
  border-radius: 40px; padding: 8px 16px;
  font-size: 12px; color: var(--text-b);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.wa-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}

/* ── PRODUCT CARD (agency page) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse 250px 120px at 50% 0%, var(--card-glow, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover { border-color: var(--card-bdr, var(--border-hi)); transform: translateY(-3px); }
.product-card:hover::after { opacity: 1; }

.product-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 40px; padding: 4px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-logo {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 22px; font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.product-logo::after {
  content: '';
  position: absolute; right: -2px; bottom: -2px;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--bg2);
}

.product-card h3 {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--text-h);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 13px; line-height: 1.65;
  color: var(--text-m);
  margin-bottom: 20px;
}
.product-feats {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 24px;
}
.product-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-m);
}
.product-feat-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.product-link {
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.15s;
}
.product-link:hover { gap: 7px; }
.product-link svg { transition: transform 0.15s; }
.product-link:hover svg { transform: translateX(2px); }

/* coming soon */
.coming-soon-card {
  background: var(--bg2);
  border: 1px dashed var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 12px;
  min-height: 280px;
}
.coming-soon-card span {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: var(--text-d);
  letter-spacing: 1px; text-transform: uppercase;
}
.coming-soon-card p {
  font-size: 13px; color: var(--text-m);
  max-width: 220px; line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 50px; }
  .section-wrap { padding: 60px 20px; }
  .browser-body { height: 200px; }
  .sidebar-panel { width: 160px; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-brand { margin-right: 0; }
}
@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1px; }
  .product-grid { grid-template-columns: 1fr; }
}
