/* ============================================================
   Job Machine — design system
   ============================================================ */
:root {
  --bg:          #000000;
  --bg-elev-1:   #0B0B12;
  --bg-elev-2:   #14141E;
  --border:      rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.20);
  --text:        #F2F2F7;
  --text-dim:    #9AA0B4;
  --text-faint:  #6B7080;
  --accent:      #8B5CF6;
  --accent-2:    #7C3AED;
  --accent-soft: rgba(139, 92, 246, 0.14);
  --accent-glow: #A78BFA;
  --warn:        #FBBF24;
  --danger:      #F87171;
  --link:        #C4B5FD;
  --success:     #34D399;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 1px 2px rgba(0,0,0,0.4);
  --shadow-2: 0 30px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.3);

  --container: 1200px;
  --container-wide: 1320px;
}

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(139,92,246,0.18), transparent 60%),
    radial-gradient(900px 500px at 5% 15%, rgba(167,139,250,0.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

/* Typography */
h1, h2, h3, h4 { margin: 0 0 .5rem; letter-spacing: -0.02em; line-height: 1.1; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); letter-spacing: -0.03em; font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
p  { margin: 0 0 1rem; color: var(--text-dim); }
strong { color: var(--text); font-weight: 600; }
small { color: var(--text-faint); font-size: .85rem; }
.eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: inline-block; margin-bottom: .75rem; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); }
section { padding: clamp(56px, 8vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.stack-lg > * + * { margin-top: 1.25rem; }
.center { text-align: center; }
.muted { color: var(--text-dim); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
       padding: .85rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
       border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
       white-space: nowrap; font-family: inherit; line-height: 1; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #FFFFFF; box-shadow: 0 8px 24px rgba(139,92,246,0.35); }
.btn-primary:hover { background: var(--accent-2); color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(139,92,246,0.45); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.04); color: var(--text); border-color: rgba(255,255,255,0.3); }
.btn-link { color: var(--text); font-weight: 500; padding: .4rem 0; }
.btn-link:hover { color: var(--accent); }
.btn-link::after { content: " →"; transition: transform .2s; display: inline-block; }
.btn-link:hover::after { transform: translateX(3px); }

/* Header / nav */
.site-header { position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 14, 26, 0.7);
  border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--container-wide); margin: 0 auto; gap: 16px; }
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand img { height: 24px; width: auto; display: block; }
.brand-footer img { height: 28px; }
@media (min-width: 760px) { .brand img { height: 26px; } }
.nav-links { display: none; gap: 6px; align-items: center; }
.nav-links a { padding: 8px 12px; border-radius: 8px; color: var(--text-dim); font-weight: 500; font-size: .92rem; transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-cta .btn { padding: .55rem 1rem; font-size: .9rem; }
@media (min-width: 900px) { .nav-links { display: inline-flex; } }

/* Solutions dropdown */
.has-menu { position: relative; }
.has-menu > .menu-trigger { padding: 8px 12px; border-radius: 8px; color: var(--text-dim); font-weight: 500; font-size: .92rem; cursor: pointer; background: none; border: 0; font-family: inherit; }
.has-menu > .menu-trigger:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.menu-panel { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--bg-elev-2); border: 1px solid var(--border-strong); border-radius: 14px;
  padding: 8px; min-width: 240px; box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transition: all .15s; }
.has-menu:hover .menu-panel, .has-menu:focus-within .menu-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.menu-panel a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--text); font-size: .92rem; }
.menu-panel a:hover { background: rgba(52,211,153,0.10); color: var(--accent); }

/* Hero */
.hero { padding: clamp(72px, 12vw, 160px) 0 clamp(48px, 8vw, 96px); position: relative; overflow: hidden; }
.hero-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.hero h1 { background: linear-gradient(180deg, #ffffff 0%, #b9c3d8 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-dim); max-width: 680px; margin: 1.25rem auto 2rem; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
  border-radius: 999px; background: var(--accent-soft); color: var(--accent-glow);
  font-size: .8rem; font-weight: 600; border: 1px solid rgba(139,92,246,0.3); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-glow); box-shadow: 0 0 10px var(--accent); }

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  overflow: hidden; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 28px 24px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.stat:nth-child(-n+2) { border-top: 0; }
@media (min-width: 760px) { .stat:nth-child(-n+4) { border-top: 0; } }
.stat:nth-child(2n+1) { border-left: 0; }
@media (min-width: 760px) { .stat:nth-child(2n+1) { border-left: 1px solid var(--border); } .stat:first-child { border-left: 0; } }
.stat-value { font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.stat-value .unit { font-size: .55em; color: var(--accent); margin-left: 4px; font-weight: 600; }
.stat-label { font-size: .85rem; color: var(--text-dim); margin-top: 8px; line-height: 1.45; }

/* Logo strip */
.logos { padding: 32px 0; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 36px 56px; opacity: .85; }
.logo-row .logo-item { font-weight: 600; letter-spacing: 0.04em; color: var(--text-faint); font-size: .95rem; }

/* Section heading */
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head h2 { letter-spacing: -0.025em; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; margin-top: 1rem; }

/* Feature cards */
.feature-card {
  position: relative; padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.feature-card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-glow);
  border: 1px solid rgba(139,92,246,0.25); }
.feature-card h3 { font-size: 1.1rem; margin: 0; color: var(--text); }
.feature-card p { font-size: .95rem; margin: 0; color: var(--text-dim); }
.feature-card ul { margin: 0; padding: 0; list-style: none; }
.feature-card li { display: flex; gap: 8px; padding: 4px 0; color: var(--text-dim); font-size: .92rem; }
.feature-card li::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* Bento (mixed-size grid) */
.bento { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 800px) { .bento { grid-template-columns: repeat(6, 1fr); } }
.bento .feature-card.span-3 { grid-column: span 1; }
.bento .feature-card.span-2 { grid-column: span 1; }
@media (min-width: 800px) {
  .bento .feature-card.span-3 { grid-column: span 3; }
  .bento .feature-card.span-2 { grid-column: span 2; }
}

/* Split section (image / text alternating) */
.split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } .split.reverse > :first-child { order: 2; } }
.split-visual {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg-elev-1), var(--bg-elev-2));
  padding: 28px; box-shadow: var(--shadow-2); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
}

/* Product visuals (CSS-only mock screens) */
.mock { width: 100%; background: var(--bg); border: 1px solid var(--border-strong); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-2); font-size: 12px; }
.mock-bar { display: flex; gap: 6px; padding: 10px 12px; background: rgba(0,0,0,0.3); border-bottom: 1px solid var(--border); }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock-body { padding: 16px; }
.mock-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 10px; border-radius: 8px; }
.mock-row + .mock-row { margin-top: 4px; }
.mock-row.head { color: var(--text-faint); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; padding-bottom: 4px; }
.mock-row.alt { background: rgba(255,255,255,0.03); }
.mock-name { color: var(--text); font-weight: 500; }
.mock-tag { padding: 3px 8px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.tag-green { background: rgba(52,211,153,0.15); color: var(--success); }
.tag-amber { background: rgba(251,191,36,0.15); color: var(--warn); }
.tag-blue  { background: rgba(147,197,253,0.15); color: var(--link); }
.bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 8px; }
.bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), #C4B5FD); }

/* Quote */
.quote { max-width: 820px; margin: 0 auto; text-align: center; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)); }
.quote q { display: block; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45; color: var(--text); margin-bottom: 18px; font-style: italic; quotes: '"' '"'; }
.quote q::before { content: open-quote; color: var(--accent); }
.quote q::after  { content: close-quote; color: var(--accent); }
.quote cite { color: var(--text-dim); font-style: normal; font-size: .9rem; }

/* CTA block */
.cta-block { padding: clamp(40px, 6vw, 72px); border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(139,92,246,0.28), transparent),
    radial-gradient(600px 300px at 100% 100%, rgba(196,181,253,0.18), transparent),
    linear-gradient(180deg, var(--bg-elev-1), var(--bg-elev-2));
  border: 1px solid var(--border-strong); text-align: center; }
.cta-block h2 { max-width: 720px; margin: 0 auto .75rem; }
.cta-block p { max-width: 600px; margin: 0 auto 1.5rem; color: var(--text-dim); }

/* Steps (numbered list) */
.steps { display: grid; gap: 16px; counter-reset: stepcount; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { counter-increment: stepcount; position: relative; padding: 24px;
  border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,0.02); }
.step::before { content: counter(stepcount, decimal-leading-zero);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  display: block; font-size: .85rem; color: var(--accent); font-weight: 700; margin-bottom: 8px; letter-spacing: 0.05em; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .9rem; margin: 0; }

/* Solution cards (segment grid) */
.solution-cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .solution-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solution-cards { grid-template-columns: repeat(4, 1fr); } }
.solution-card { display: block; padding: 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  transition: border-color .2s, transform .2s, box-shadow .2s, color .2s; height: 100%; position: relative; overflow: hidden; }
.solution-card::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  background: radial-gradient(400px 100px at var(--mx, 50%) 0%, rgba(139,92,246,0.18), transparent 60%);
  opacity: 0; transition: opacity .25s;
}
.solution-card:hover { border-color: rgba(139,92,246,0.5); transform: translateY(-2px); color: var(--text); }
.solution-card:hover::after { opacity: 1; }
.solution-card h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--text); }
.solution-card p { font-size: .9rem; margin-bottom: 1rem; color: var(--text-dim); }
.solution-card .more { color: var(--accent); font-size: .85rem; font-weight: 600; }

/* Footer */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--border); margin-top: 80px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid h5 { color: var(--text); font-size: .85rem; font-weight: 600; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 8px 0; }
.footer-grid a { color: var(--text-dim); font-size: .92rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand p { color: var(--text-dim); font-size: .92rem; max-width: 320px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--border); margin-top: 48px; padding-top: 24px; font-size: .85rem; color: var(--text-faint); }
.footer-bottom a { color: var(--text-faint); }

/* Team cards */
.team { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .team { grid-template-columns: 1fr 1fr; } }
.team-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)); }
.team-card h3 { font-size: 1.25rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-size: .9rem; font-weight: 600; margin-bottom: 12px; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #C4B5FD); display: grid; place-items: center; font-weight: 700; color: #FFFFFF; font-size: 1.4rem; margin-bottom: 16px; }

/* Article cards (resources) */
.article-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .article-grid { grid-template-columns: repeat(3, 1fr); } }
.article-card { border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02); padding: 24px; transition: all .2s;
  display: flex; flex-direction: column; gap: 10px; }
.article-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.article-card .tag { font-size: .75rem; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.article-card h3 { font-size: 1.05rem; color: var(--text); margin: 0; }
.article-card p  { font-size: .9rem; color: var(--text-dim); margin: 0; flex-grow: 1; }
.article-card .meta { font-size: .8rem; color: var(--text-faint); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Mobile nav toggle */
.nav-toggle { display: inline-flex; background: transparent; border: 1px solid var(--border-strong);
  color: var(--text); border-radius: 8px; padding: 6px 10px; cursor: pointer; font-family: inherit; font-size: .85rem; }
@media (min-width: 900px) { .nav-toggle { display: none; } }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 16px; border-top: 1px solid var(--border); background: var(--bg-elev-1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 12px; border-radius: 8px; color: var(--text); font-weight: 500; font-size: .95rem; }
.mobile-menu a:hover { background: rgba(255,255,255,0.04); color: var(--accent); }
.mobile-menu .group-label { font-size: .75rem; color: var(--text-faint); padding: 8px 12px 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Misc */
hr.divider { border: 0; border-top: 1px solid var(--border); margin: 64px 0; }
.kbd { font-family: 'JetBrains Mono', ui-monospace, monospace; background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; font-size: .85em; border: 1px solid var(--border); }
::selection { background: rgba(139,92,246,0.45); color: #fff; }

/* Section background tint */
.tint { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent); }

/* Sub-hero (for non-home pages) */
.subhero { padding: clamp(80px, 10vw, 130px) 0 clamp(32px, 6vw, 64px); text-align: center; }
.subhero h1 { font-size: clamp(2rem, 4vw, 3.2rem); background: linear-gradient(180deg, #ffffff, #b9c3d8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subhero p { max-width: 680px; margin: 1.25rem auto 0; color: var(--text-dim); font-size: 1.05rem; }


/* ============================================================
   v2 polish — additions
   ============================================================ */

/* Very subtle noise grain for depth (above content, click-through) */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Drifting hero gradient */
@keyframes drift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-30px, 20px) rotate(8deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.hero { isolation: isolate; }
.hero::after {
  content: ""; position: absolute; inset: -10%; z-index: -1;
  background:
    radial-gradient(600px 400px at 30% 30%, rgba(139,92,246,0.28), transparent 60%),
    radial-gradient(500px 300px at 75% 60%, rgba(196,181,253,0.20), transparent 60%);
  filter: blur(30px); animation: drift 20s ease-in-out infinite;
}

/* Cards: violet glow on hover */
.feature-card { transition: border-color .25s, transform .25s, box-shadow .25s, background .25s; }
.feature-card:hover {
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(139,92,246,0.25), 0 0 40px rgba(139,92,246,0.15);
  background: linear-gradient(180deg, rgba(139,92,246,0.06), rgba(255,255,255,0.01));
}
.solution-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(139,92,246,0.35), 0 0 30px rgba(139,92,246,0.15);
}


/* Customer wordmark "logos" — stylized so each looks distinct */
.brand-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 56px; align-items: center; justify-items: center; opacity: 0.7; }
@media (min-width: 720px) { .brand-strip { grid-template-columns: repeat(6, 1fr); } }
.wordmark { font-family: 'Futura', 'Jost', sans-serif; color: var(--text-dim); letter-spacing: 0.05em; font-size: 1rem; transition: color .2s; white-space: nowrap; }
.brand-strip:hover .wordmark { color: var(--text-faint); }
.wordmark:hover { color: var(--text) !important; }
.wm-bold { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.wm-serif { font-family: 'Georgia', serif; font-weight: 600; font-style: italic; }
.wm-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 500; }
.wm-lower { text-transform: lowercase; font-weight: 600; letter-spacing: -0.02em; }
.wm-dot::after { content: "."; color: var(--accent-glow); }

/* Mini chart bars */
.minichart { display: flex; align-items: flex-end; gap: 3px; height: 32px; padding-top: 8px; }
.minichart > i { display: block; width: 6px; background: linear-gradient(180deg, var(--accent-glow), var(--accent)); border-radius: 2px; opacity: 0.85; }

/* Testimonial grid */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 800px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.tcard {
  padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  display: flex; flex-direction: column; gap: 16px; transition: all .25s;
}
.tcard:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-2px); }
.tcard p { color: var(--text); font-size: 1rem; line-height: 1.55; margin: 0; }
.tcard p::before { content: "“"; color: var(--accent-glow); font-size: 2.4rem; line-height: 0; margin-right: 4px; vertical-align: -0.4em; }
.tperson { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tavatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-glow)); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.tperson .tname { color: var(--text); font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.tperson .trole { color: var(--text-faint); font-size: 0.8rem; line-height: 1.2; margin-top: 2px; }


/* Compare section (with vs. without) */
.compare { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 800px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }
.compare-col.without { opacity: 0.85; }
.compare-col.with { border-color: rgba(139,92,246,0.4); background: linear-gradient(180deg, rgba(139,92,246,0.08), rgba(255,255,255,0.01)); box-shadow: 0 20px 60px rgba(139,92,246,0.10); }
.compare-col h3 { font-size: 1.15rem; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.compare-col .label { font-size: 0.72rem; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--text-dim); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.compare-col.with .label { background: var(--accent-soft); color: var(--accent-glow); border: 1px solid rgba(139,92,246,0.3); }
.compare-col ul { list-style: none; padding: 0; margin: 16px 0 0; }
.compare-col li { padding: 10px 0; color: var(--text-dim); display: flex; gap: 10px; align-items: flex-start; border-top: 1px solid var(--border); font-size: 0.94rem; }
.compare-col li:first-child { border-top: 0; }
.compare-col.without li::before { content: "✕"; color: #6B7080; font-weight: 700; }
.compare-col.with li::before { content: "✓"; color: var(--accent-glow); font-weight: 700; }

/* Newsletter form (footer) */
.signup { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(139,92,246,0.10), rgba(255,255,255,0.01)); }
.signup-inner { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; }
@media (min-width: 760px) { .signup-inner { grid-template-columns: 1.4fr 1fr; gap: 32px; } }
.signup h5 { color: var(--text); font-size: 1rem; margin: 0 0 4px; text-transform: none; letter-spacing: 0; }
.signup p { color: var(--text-dim); font-size: 0.88rem; margin: 0; }
.signup form { display: flex; gap: 8px; flex-wrap: wrap; }
.signup input[type=email] { flex: 1; min-width: 180px; padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: rgba(0,0,0,0.4); color: var(--text);
  font-family: inherit; font-size: 0.92rem; outline: none; transition: border-color .2s, box-shadow .2s; }
.signup input[type=email]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(139,92,246,0.18); }
.signup .btn { padding: 0.55rem 1rem; font-size: 0.88rem; }

/* Focus-visible (accessibility) */
:where(a, button, input, .btn):focus-visible { outline: 2px solid var(--accent-glow); outline-offset: 3px; border-radius: 6px; }

/* Better section bottom rhythm */
section + section { padding-top: clamp(40px, 6vw, 80px); }


/* Hero product preview frame */
.hero-preview {
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(139,92,246,0.18), rgba(139,92,246,0.04));
  border: 1px solid rgba(139,92,246,0.25);
  box-shadow:
    0 40px 120px rgba(139,92,246,0.18),
    0 20px 60px rgba(0,0,0,0.55);
}
.hero-preview .mock { border-radius: 14px; }
.hero-preview .mock-row { font-size: 12px; }

/* Make wider rows of the hero-preview legible on mobile */
@media (max-width: 720px) {
  .hero-preview .mock-body { padding: 14px !important; font-size: 11px; }
  .hero-preview .mock-row.head { display: none; }
  .hero-preview .mock-row > span:nth-child(2),
  .hero-preview .mock-row > span:nth-child(4) { display: none; }
}

/* Slightly tighten hero on small screens */
@media (max-width: 640px) {
  .hero { padding-top: 56px; padding-bottom: 32px; }
  .hero h1 { font-size: 2.1rem; }
  .hero .lede { font-size: 1rem; }
}


/* Stat row — stronger emphasis on the values */
.stat-value { font-weight: 700; }
.stat-value .unit { color: var(--accent-glow); font-weight: 500; opacity: 0.95; }

/* Section head — restore margin since we tightened section + section */
.section-head + * { margin-top: 0; }

/* Tcard quote-mark improvement */
.tcard p { font-weight: 400; }

/* Eyebrow on dark sections — slightly brighter */
.eyebrow { color: var(--accent-glow); }

/* Hero CTAs — primary button glow stronger */
.hero-ctas .btn-primary { padding: 1rem 1.6rem; font-size: 1rem; }
.hero-ctas .btn-ghost { padding: 1rem 1.4rem; font-size: 1rem; }

/* CTA block — text contrast bump */
.cta-block h2 { color: var(--text); }
.cta-block p { color: var(--text-dim); }
