/* Kriyasya Utility — SEO Landing Page Styles */
:root{
  --bg:#0f172a;--surface:#1e293b;--surface2:#334155;
  --ink:#f1f5f9;--ink2:#cbd5e1;--ink3:#94a3b8;--ink4:#64748b;
  --accent:#10b981;--accent2:#34d399;--accent-dim:rgba(16,185,129,.12);
  --radius:16px;--radius-sm:10px;
  --tool-accent:#10b981;
  --font:'Inter',system-ui,-apple-system,sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
body.lv-landing-body{
  font-family:var(--font);color:var(--ink);background:var(--bg);
  min-height:100vh;-webkit-font-smoothing:antialiased;
}

/* Nav */
.lv-landing-nav{
  display:flex;align-items:center;justify-content:space-between;
  max-width:1100px;margin:0 auto;padding:16px 20px;
}
.lv-landing-logo{
  display:flex;align-items:center;gap:8px;
  text-decoration:none;color:var(--ink);font-weight:700;font-size:1rem;
}
.lv-landing-logo-icon{font-size:1.3rem;}
.lv-lang-toggle{
  background:var(--accent-dim);border:1px solid rgba(16,185,129,.3);
  color:var(--accent2);border-radius:20px;padding:6px 12px;
  font-size:.75rem;font-weight:600;cursor:pointer;
}

/* Hero */
.lv-landing-hero{
  max-width:1100px;margin:0 auto;padding:48px 20px 56px;
}
.lv-landing-hero-in{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;
}
@media(max-width:768px){
  .lv-landing-hero-in{grid-template-columns:1fr;gap:32px;}
  .lv-landing-hero-visual{order:-1;}
}
.lv-landing-badge{
  display:inline-block;background:var(--accent-dim);
  border:1px solid rgba(16,185,129,.3);border-radius:20px;
  padding:5px 14px;font-size:.72rem;font-weight:600;color:var(--accent2);
  margin-bottom:14px;text-transform:uppercase;letter-spacing:1px;
}
.lv-landing-h1{
  font-size:2.2rem;font-weight:800;line-height:1.2;margin-bottom:14px;
  display:flex;align-items:center;gap:12px;flex-wrap:wrap;
}
.lv-landing-h1-icon{font-size:2rem;}
@media(max-width:500px){.lv-landing-h1{font-size:1.6rem;}}
.lv-landing-desc{font-size:1.05rem;color:var(--ink2);line-height:1.6;margin-bottom:20px;}
.lv-landing-bullets{list-style:none;margin-bottom:24px;}
.lv-landing-bullets li{
  padding:8px 0 8px 28px;position:relative;color:var(--ink2);font-size:.92rem;
}
.lv-landing-bullets li::before{
  content:'✓';position:absolute;left:4px;color:var(--accent);font-weight:700;
}
.lv-landing-ctas{display:flex;flex-wrap:wrap;gap:12px;}

/* Hero visual */
.lv-landing-hero-visual{display:flex;justify-content:center;}
.lv-landing-img{
  width:100%;max-width:420px;border-radius:var(--radius);
  box-shadow:0 20px 60px rgba(0,0,0,.4);border:1px solid rgba(255,255,255,.08);
}
.lv-landing-img-fallback{
  width:100%;max-width:380px;aspect-ratio:16/10;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;
  background:linear-gradient(145deg,var(--surface),rgba(15,23,42,.9));
  border:1px solid rgba(16,185,129,.2);border-radius:var(--radius);
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}
.lv-fallback-icon{font-size:3.5rem;}
.lv-fallback-name{font-size:.9rem;color:var(--ink3);font-weight:600;text-align:center;padding:0 16px;}

/* Sections */
.lv-landing-section{
  max-width:800px;margin:0 auto;padding:40px 20px;
}
.lv-landing-h2{
  font-size:1.4rem;font-weight:700;margin-bottom:20px;color:var(--ink);
}

/* Steps */
.lv-landing-steps{
  list-style:none;counter-reset:step;
}
.lv-landing-steps li{
  display:flex;align-items:flex-start;gap:14px;
  padding:14px 0;border-bottom:1px solid rgba(255,255,255,.05);
  font-size:.92rem;color:var(--ink2);line-height:1.6;
}
.lv-step-num{
  flex-shrink:0;width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  background:var(--accent-dim);border:1px solid rgba(16,185,129,.3);
  border-radius:50%;font-size:.75rem;font-weight:700;color:var(--accent2);
}

/* FAQ */
.lv-faq-list{display:flex;flex-direction:column;gap:8px;}
.lv-faq-item{
  background:var(--surface);border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius-sm);overflow:hidden;
}
.lv-faq-item summary{
  padding:16px 18px;cursor:pointer;font-weight:600;font-size:.9rem;
  color:var(--ink);list-style:none;display:flex;align-items:center;gap:10px;
}
.lv-faq-item summary::before{content:'＋';color:var(--accent);font-weight:700;font-size:1.1rem;}
.lv-faq-item[open] summary::before{content:'−';}
.lv-faq-item p{
  padding:0 18px 16px;font-size:.88rem;color:var(--ink3);line-height:1.7;
}

/* Related */
.lv-related-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:12px;
}
.lv-related-card{
  display:flex;flex-direction:column;align-items:center;gap:8px;
  padding:20px 12px;background:var(--surface);border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius-sm);text-decoration:none;transition:all .2s;
}
.lv-related-card:hover{border-color:rgba(16,185,129,.3);transform:translateY(-2px);}
.lv-related-icon{font-size:1.5rem;}
.lv-related-name{font-size:.78rem;color:var(--ink2);text-align:center;font-weight:500;}

/* CTA Section */
.lv-landing-cta-section{
  max-width:700px;margin:40px auto;padding:0 20px;
}
.lv-landing-cta-box{
  text-align:center;padding:40px 24px;
  background:linear-gradient(135deg,rgba(16,185,129,.08),rgba(15,23,42,.9));
  border:1px solid rgba(16,185,129,.2);border-radius:var(--radius);
}
.lv-landing-cta-box h2{font-size:1.3rem;margin-bottom:8px;}
.lv-landing-cta-box p{color:var(--ink3);font-size:.9rem;margin-bottom:20px;}

/* Shared button (same as tool.css) */
.lv-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 24px;border:none;border-radius:50px;
  font-size:.88rem;font-weight:700;cursor:pointer;text-decoration:none;
  transition:all .2s;
}
.lv-btn-primary{
  background:linear-gradient(135deg,#34d399,#10b981);
  color:#022c22;box-shadow:0 4px 16px rgba(16,185,129,.25);
}
.lv-btn-primary:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(16,185,129,.35);}

/* ── Two-shot hero preview — browser-framed (Option B) ────────────────────── */
.lv-landing-duo{width:100%;max-width:560px}
.lv-duo-label{display:inline-flex;align-items:center;gap:7px;font:700 .66rem/1 Inter,system-ui,sans-serif;
  letter-spacing:.14em;text-transform:uppercase;color:#34d399;margin:0 0 12px}
.lv-duo-label::before{content:"";width:7px;height:7px;border-radius:50%;background:#34d399;
  box-shadow:0 0 0 3px rgba(52,211,153,.25)}
.lv-duo-shots{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
.lv-shot{margin:0;flex:1 1 230px;min-width:210px;display:flex;flex-direction:column}
/* mock browser window — FIXED height so tall screenshots can't distort the hero. The image area is a
   uniform window; the shot is pinned to the top (real "scrolled-to-top" look) and any overflow is
   clipped by the frame. Every tool's pair renders the same size regardless of source dimensions. */
.lv-shot-frame{border-radius:13px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:#0b1220;
  box-shadow:0 20px 50px rgba(0,0,0,.5);transition:transform .18s ease,box-shadow .18s ease;
  height:330px;display:flex;flex-direction:column}
.lv-shot-frame:hover{transform:translateY(-3px);box-shadow:0 26px 60px rgba(0,0,0,.6)}
.lv-shot-bar{display:flex;align-items:center;gap:6px;padding:9px 12px;background:#111a2e;flex:none;
  border-bottom:1px solid rgba(255,255,255,.08)}
.lv-shot-bar .d{width:9px;height:9px;border-radius:50%;flex:none}
.lv-shot-bar .d.r{background:#ff5f57}.lv-shot-bar .d.y{background:#febc2e}.lv-shot-bar .d.g{background:#28c840}
.lv-shot-url{margin-left:8px;flex:1;height:15px;border-radius:6px;background:#0b1220;border:1px solid rgba(255,255,255,.10)}
.lv-shot-view{flex:1;overflow:hidden;background:#0b1220}
.lv-shot img{width:100%;height:auto;display:block;background:#0b1220}
.lv-shot figcaption{margin-top:11px;text-align:center;font:600 .74rem/1.2 Inter,system-ui,sans-serif;
  letter-spacing:.02em;color:#94a3b8}
@media(max-width:560px){.lv-duo-shots{gap:12px}.lv-shot{flex:1 1 46%;min-width:0}
  .lv-shot-frame{height:280px}.lv-shot figcaption{font-size:.68rem}}

/* Single framed shot (single-view / tabbed tools where input==result) — one centred frame */
.lv-duo-solo{max-width:360px}
.lv-duo-solo .lv-shot{flex:1 1 100%;min-width:0}
@media(max-width:560px){.lv-duo-solo .lv-shot{flex:1 1 100%}}
