/* ═══════════════════════════════════════════
   Linkyro — Visual-first redesign
   ═══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#e2e8f0;background:#09090b;line-height:1.5;-webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
button{font:inherit;border:0;cursor:pointer}
ul{list-style:none}

:root{
  --ink:#f8fafc;
  --muted:#a1afc4;
  --glass:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.08);
  --indigo:#6366f1;
  --violet:#8b5cf6;
}

/* ── NAV ── */
.nav{
  position:sticky;top:0;z-index:50;display:flex;align-items:center;justify-content:space-between;
  gap:24px;padding:14px clamp(20px,4vw,64px);
  background:rgba(9,9,11,.85);backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
}
.brand{display:flex;align-items:center;gap:10px;font-weight:900;font-size:1.1rem;color:#fff}
.brand-mark{
  width:32px;height:32px;border-radius:10px;display:grid;place-items:center;color:#fff;
  background:linear-gradient(135deg,var(--indigo),var(--violet));
}
.nav-links{display:flex;gap:28px;color:#94a3b8;font-size:.9rem;font-weight:600}
.nav-links a:hover{color:#fff}
.nav-actions{display:flex;align-items:center;gap:14px;color:#94a3b8;font-weight:700}
.nav-cta,.btn{
  display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 22px;
  border-radius:8px;font-weight:800;font-size:.9rem;transition:all .15s;
}
.nav-cta,.btn-primary{
  color:#fff;background:linear-gradient(135deg,var(--indigo),var(--violet));
  box-shadow:0 0 28px rgba(99,102,241,.25);
}
.btn-primary:hover{box-shadow:0 0 40px rgba(99,102,241,.4);transform:translateY(-1px)}
.btn-secondary{color:#e2e8f0;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12)}
.btn-secondary:hover{background:rgba(255,255,255,.1)}
.btn-lg{min-height:52px;padding:0 32px;font-size:1rem;border-radius:10px}

/* ── HERO ── */
.hero{
  text-align:center;padding:80px clamp(20px,5vw,72px) 0;
  background:
    radial-gradient(ellipse at 50% 0%,rgba(99,102,241,.18),transparent 60%),
    radial-gradient(ellipse at 80% 20%,rgba(139,92,246,.12),transparent 40%);
}
.hero h1{
  font-size:clamp(2.6rem,6vw,5.2rem);font-weight:900;letter-spacing:-.04em;line-height:1.05;
  color:#fff;max-width:820px;margin:0 auto 28px;
}
.hero-eyebrow{
  display:inline-block;color:#818cf8;font-size:.82rem;font-weight:800;
  letter-spacing:.14em;text-transform:uppercase;margin-bottom:14px;
}
.hero-actions{display:flex;gap:14px;justify-content:center;margin-bottom:20px}
.trust-bar{
  display:flex;gap:24px;justify-content:center;flex-wrap:wrap;margin-bottom:48px;
}
.trust-bar span{
  display:inline-flex;align-items:center;gap:6px;color:#94a3b8;font-size:.82rem;font-weight:700;
}
.trust-bar span::before{
  content:"\2713";display:inline-flex;align-items:center;justify-content:center;
  width:18px;height:18px;border-radius:50%;background:rgba(34,197,94,.12);color:#22c55e;
  font-size:.65rem;font-weight:900;
}
.pricing-hero-clean{padding-bottom:48px}
.pricing-lede{
  max-width:760px;margin:0 auto 28px;color:#94a3b8;font-size:1.12rem;line-height:1.75;
}

/* Browser frame mockup */
.hero-visual{
  max-width:1200px;margin:0 auto;padding:0 clamp(0px,2vw,24px);
}
.browser-frame{
  border-radius:14px;overflow:hidden;
  background:#111113;border:1px solid rgba(255,255,255,.1);
  box-shadow:0 40px 100px rgba(0,0,0,.5),0 0 60px rgba(99,102,241,.12);
}
.browser-dots{
  display:flex;gap:7px;padding:14px 18px;background:#1a1a1e;border-bottom:1px solid rgba(255,255,255,.06);
}
.browser-dots i{width:11px;height:11px;border-radius:50%;background:rgba(255,255,255,.12)}
.browser-dots i:first-child{background:#ff5f57}
.browser-dots i:nth-child(2){background:#febc2e}
.browser-dots i:nth-child(3){background:#28c840}
.browser-content{
  display:grid;grid-template-columns:1fr 340px;min-height:480px;
}

/* Mock LinkedIn feed */
.mock-feed{padding:24px;display:grid;gap:16px;align-content:start}
.mock-post{
  padding:20px;border-radius:10px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);
}
.mock-post--dim{opacity:.5}
.mock-author{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.avatar{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,#3b82f6,#8b5cf6);flex-shrink:0}
.av2{background:linear-gradient(135deg,#f472b6,#fb923c)}
.mock-author strong{display:block;color:#fff;font-size:.9rem}
.mock-author small{color:#94a3b8;font-size:.78rem}
.mock-lines{display:grid;gap:7px;margin-bottom:14px}
.mock-lines span{height:8px;border-radius:99px;background:rgba(255,255,255,.06)}
.mock-actions{display:flex;gap:24px;padding:10px 0;border-top:1px solid rgba(255,255,255,.06);margin-bottom:10px}
.mock-actions span{color:#94a3b8;font-size:.78rem;font-weight:700}
.mock-copilot-bar{
  display:flex;align-items:center;gap:8px;padding:6px 12px;border-radius:99px;
  background:linear-gradient(90deg,rgba(244,114,182,.5),rgba(196,181,253,.45),rgba(103,232,249,.5));
  font-size:.75rem;font-weight:800;color:#1e293b;
}
.mock-copilot-bar em{font-style:normal;background:rgba(255,255,255,.5);padding:3px 8px;border-radius:99px}
.mock-copilot-bar strong{margin-left:auto;opacity:.7}
.bar-low{background:linear-gradient(90deg,rgba(148,163,184,.25),rgba(148,163,184,.18))}
.bar-low b,.bar-low em{color:#94a3b8}

/* Mock Linkyro dialog */
.mock-dialog{
  padding:20px;background:#111113;border-left:1px solid rgba(255,255,255,.06);
  display:flex;flex-direction:column;gap:14px;
}
.md-head{display:flex;align-items:center;justify-content:space-between}
.md-head strong{color:#fff;font-size:1.05rem}
.md-streak{font-size:.72rem;color:#f59e0b;font-weight:800;padding:4px 10px;border-radius:99px;background:rgba(245,158,11,.1)}
.md-score-row{
  display:flex;align-items:center;gap:14px;padding:14px;border-radius:10px;
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);
}
.md-ring{
  width:54px;height:54px;border-radius:50%;display:grid;place-items:center;flex-shrink:0;
  background:conic-gradient(var(--indigo) 0 75%,rgba(255,255,255,.08) 75%);
  box-shadow:inset 0 0 0 9px #111113;
  color:#fff;font-weight:900;font-size:.85rem;
}
.md-score-row strong{color:#fff;font-size:.85rem;display:block}
.md-score-row small{color:#94a3b8;font-size:.75rem}
.md-controls{display:flex;gap:8px;flex-wrap:wrap}
.md-pill-row{
  display:flex;gap:4px;padding:4px;border-radius:99px;background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.md-pill-row span{
  padding:5px 12px;border-radius:99px;font-size:.72rem;font-weight:800;color:#94a3b8;
  transition:all .15s;cursor:default;
}
.md-pill-row .active{background:var(--indigo);color:#fff;box-shadow:0 0 14px rgba(99,102,241,.3)}
.md-draft{
  padding:14px;border-radius:8px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);
  color:#e2e8f0;font-size:.88rem;line-height:1.7;font-weight:500;flex:1;
}
.md-tones{display:flex;gap:20px;justify-content:center}
.md-tones span{color:#94a3b8;font-size:.75rem;font-weight:800;cursor:default}
.md-tones .active{color:var(--indigo)}
.md-action-row{display:grid;grid-template-columns:1fr 1.5fr;gap:8px}
.md-action-row button{
  min-height:38px;border-radius:99px;font-weight:800;font-size:.8rem;
  background:rgba(255,255,255,.06);color:#94a3b8;
}
.md-action-row .insert{
  background:linear-gradient(135deg,var(--indigo),var(--violet));color:#fff;
  box-shadow:0 0 20px rgba(99,102,241,.3);
}

/* ── STATS STRIP ── */
.stats-strip{
  display:flex;justify-content:center;gap:64px;padding:48px 20px;
  border-bottom:1px solid var(--border);
}
.stats-strip div{text-align:center}
.stats-strip strong{display:block;font-size:2.8rem;font-weight:900;color:#fff;letter-spacing:-.04em}
.stats-strip span{color:#94a3b8;font-size:.85rem;font-weight:700}

/* ── FEATURES ── */
.section{padding:80px clamp(20px,5vw,72px)}

.feature-row{
  display:grid;grid-template-columns:1.4fr .6fr;gap:40px;align-items:center;
  max-width:1200px;margin:0 auto 64px;
}
.feature-row--reverse{grid-template-columns:.6fr 1.4fr}
.feature-row--reverse .feature-visual{order:2}

.feature-label{padding:8px 0}
.fl-num{
  display:inline-block;color:#818cf8;font-size:.75rem;font-weight:900;
  letter-spacing:.14em;margin-bottom:10px;
}
.feature-label h2{
  font-size:clamp(2rem,3.5vw,3.6rem);font-weight:900;letter-spacing:-.04em;line-height:1.05;color:#fff;
}

.feature-visual{position:relative}
.fv-card{
  padding:28px;border-radius:14px;
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 60px rgba(0,0,0,.3),0 0 40px rgba(99,102,241,.06);
}

/* Relevance feature */
.bar-hero{margin-bottom:22px}
.fv-relevance{
  display:flex;align-items:center;gap:22px;padding:22px;border-radius:10px;
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);
}
.fv-ring{
  width:80px;height:80px;border-radius:50%;display:grid;place-items:center;flex-shrink:0;
  background:conic-gradient(#22c55e 0 92%,rgba(255,255,255,.06) 92%);
  box-shadow:inset 0 0 0 12px #111113,0 0 20px rgba(34,197,94,.15);
  color:#fff;font-weight:900;font-size:1.1rem;
}
.fv-relevance strong{color:#fff;font-size:1rem;display:block}
.fv-relevance small{color:#94a3b8;font-size:.85rem;display:block;margin-top:4px}

/* Intent feature */
.fv-intent-demo,.fv-length-demo,.fv-tone-demo{display:grid;gap:16px}
.fv-comment-swap{position:relative}
.fv-comment{
  padding:16px;border-radius:8px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);
  color:#e2e8f0;font-size:.92rem;line-height:1.7;font-weight:500;
}
.fv-comment--alt{border-color:rgba(99,102,241,.2);background:rgba(99,102,241,.04)}
.fv-divider{height:1px;background:rgba(255,255,255,.06);margin:4px 0}
.pill-lg span{padding:7px 16px;font-size:.8rem}

/* Tone feature */
.fv-tone-pair{display:grid;gap:8px}
.tone-tag{
  display:inline-flex;width:fit-content;padding:4px 14px;border-radius:99px;
  font-size:.72rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}
.tone-pro{background:rgba(99,102,241,.15);color:#818cf8}
.tone-human{background:rgba(251,191,36,.12);color:#fbbf24}

/* ── AI COMPARISON ── */
.ai-compare{
  display:grid;grid-template-columns:1fr auto 1fr;gap:24px;align-items:center;
  max-width:1000px;margin:0 auto 0;
}
.ai-compare-card{
  padding:24px;border-radius:14px;
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);
}
.ai-compare-card.bad{border-color:rgba(239,68,68,.2);background:rgba(239,68,68,.03)}
.ai-compare-card.good{border-color:rgba(34,197,94,.2);background:rgba(34,197,94,.03)}
.ai-compare-card p{color:#cbd5e1;font-size:.95rem;line-height:1.7;font-weight:500}
.ai-compare-vs{
  color:#94a3b8;font-size:.8rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase;
}
.compare-tag{
  display:inline-block;padding:4px 12px;border-radius:99px;font-size:.72rem;font-weight:800;
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:12px;
}
.compare-bad{background:rgba(239,68,68,.12);color:#f87171}
.compare-good{background:rgba(34,197,94,.12);color:#4ade80}

/* ── SAFETY CALLOUT ── */
.safety-callout{
  padding:32px clamp(20px,5vw,72px);
}
.safety-inner{
  display:flex;align-items:center;gap:18px;max-width:720px;margin:0 auto;
  padding:22px 28px;border-radius:12px;
  background:rgba(34,197,94,.04);border:1px solid rgba(34,197,94,.12);
}
.safety-icon{flex-shrink:0}
.safety-inner strong{color:#fff;font-size:.95rem;display:block;margin-bottom:2px}
.safety-inner span{color:#94a3b8;font-size:.88rem}

/* ── HOW IT WORKS ── */
.steps-section{
  background:rgba(255,255,255,.02);border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  padding-block:60px;
}
.steps-visual{
  display:flex;align-items:center;justify-content:center;gap:40px;max-width:700px;margin:0 auto;
}
.step-v{text-align:center}
.step-icon{
  width:80px;height:80px;border-radius:20px;display:grid;place-items:center;
  background:rgba(99,102,241,.08);border:1px solid rgba(99,102,241,.15);margin:0 auto 12px;
}
.step-v h3{color:#fff;font-size:1rem;font-weight:800}
.step-arrow{color:#334155;font-size:1.8rem;font-weight:300}

/* ── PRICING ── */
.pricing-section{text-align:center}
.pricing-grid{display:grid;grid-template-columns:repeat(2,minmax(0,380px));gap:20px;justify-content:center}
.price-card{
  padding:36px;border-radius:14px;background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);text-align:left;
}
.price-card.featured{
  border-color:var(--indigo);background:rgba(99,102,241,.04);
  box-shadow:0 0 40px rgba(99,102,241,.12);
}
.price-card>span{color:#818cf8;font-weight:900;font-size:.8rem;letter-spacing:.1em;text-transform:uppercase}
.price-card h3{font-size:2.4rem;font-weight:900;color:#fff;margin:8px 0 18px;letter-spacing:-.03em}
.price-card small{font-size:.9rem;color:#94a3b8;font-weight:600}
.plan-note{color:#94a3b8;font-size:.95rem;line-height:1.65;margin:-4px 0 20px}
.price-card ul{display:grid;gap:10px;margin-bottom:24px}
.price-card li{color:#94a3b8;font-size:.92rem;font-weight:600}
.price-card li::before{content:"\2713 ";color:#818cf8;font-weight:900}
.price-card .btn{width:100%}

/* ── FAQ ── */
.faq-section{max-width:720px;margin:0 auto}
.faq-section h2{color:#fff;font-size:clamp(2rem,3vw,3rem);font-weight:900;letter-spacing:-.04em;text-align:center;margin-bottom:32px}
.faq-grid{display:grid;gap:8px}
details{
  padding:18px 22px;border-radius:10px;background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
details[open]{background:rgba(99,102,241,.04);border-color:rgba(99,102,241,.15)}
summary{
  color:#fff;font-weight:800;font-size:.95rem;cursor:pointer;list-style:none;
  display:flex;justify-content:space-between;align-items:center;
}
summary::after{content:"+";color:#94a3b8;font-size:1.2rem;font-weight:400}
details[open] summary::after{content:"-"}
details p{color:#94a3b8;margin-top:10px;font-size:.9rem;line-height:1.7}

/* ── FINAL CTA ── */
.final-cta{
  text-align:center;padding:100px 20px;
  background:
    radial-gradient(ellipse at 50% 50%,rgba(99,102,241,.15),transparent 60%);
}
.final-cta h2{color:#fff;font-size:clamp(2.4rem,5vw,4.4rem);font-weight:900;letter-spacing:-.04em;margin-bottom:28px}

/* ── FOOTER ── */
.footer{
  display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
  padding:28px clamp(20px,5vw,72px);border-top:1px solid var(--border);
}
.footer-left{display:flex;flex-direction:column;gap:6px}
.footer .brand{color:#fff}
.footer-byline{color:#94a3b8;font-size:.78rem;font-weight:600}
.footer div{display:flex;gap:18px;color:#94a3b8;font-weight:700;font-size:.85rem}
.footer div a:hover{color:#94a3b8}

/* ── RESPONSIVE ── */
@media(max-width:1050px){
  .browser-content{grid-template-columns:1fr}
  .mock-dialog{border-left:0;border-top:1px solid rgba(255,255,255,.06)}
  .feature-row,.feature-row--reverse{grid-template-columns:1fr}
  .feature-row--reverse .feature-visual{order:0}
  .feature-label{text-align:center}
}
@media(max-width:760px){
  .nav-links{display:none}
  .nav-actions a:first-child{display:none}
  .hero{padding-top:48px}
  .hero h1{font-size:2.2rem}
  .hero-actions{flex-direction:column;align-items:center}
  .trust-bar{flex-direction:column;gap:10px;align-items:center}
  .ai-compare{grid-template-columns:1fr;gap:12px}
  .ai-compare-vs{text-align:center}
  .safety-inner{flex-direction:column;text-align:center}
  .stats-strip{flex-direction:column;gap:28px}
  .stats-strip strong{font-size:2rem}
  .pricing-grid{grid-template-columns:1fr}
  .steps-visual{flex-direction:column;gap:20px}
  .step-arrow{transform:rotate(90deg)}
  .md-controls{flex-direction:column}
  .mock-copilot-bar strong{display:none}
  .footer{flex-direction:column;align-items:flex-start}
}
