/* Pitchify — Light, professional landing page
   No build tools needed. Works on Netlify (Drag & Drop). */

:root{
  --bg: #ffffff;
  --bg2: #f6f8fc;
  --text: #0b1220;
  --muted: #5b6577;
  --border: rgba(11,18,32,.10);
  --shadow: 0 10px 30px rgba(11,18,32,.10);
  --shadow2: 0 18px 50px rgba(11,18,32,.12);

  --brand: #2b5bff;
  --brand2:#22c1c3;
  --brand3:#6d5efc;
  --ring: rgba(43, 91, 255, .25);

  --radius: 18px;
  --radius2: 24px;
  --container: 1120px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -20%, rgba(43,91,255,.10), transparent 60%),
              radial-gradient(1000px 500px at 10% 10%, rgba(34,193,195,.10), transparent 60%),
              var(--bg);
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
.container{ width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.skip-link{
  position:absolute; left:-999px; top: 10px;
  background: var(--text); color: white; padding: 10px 12px; border-radius: 12px;
}
.skip-link:focus{ left: 12px; z-index: 9999; }

.site-header{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content: space-between;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark{
  width: 38px; height: 38px; border-radius: 12px;
  display:grid; place-items:center;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand3));
  box-shadow: 0 10px 30px rgba(43,91,255,.25);
}
.brand-mark.small{ width: 28px; height: 28px; border-radius: 10px; }
.brand-name{ font-size: 16px; }

.nav{ display:flex; align-items:center; gap: 14px; }
.nav-links{ display:flex; align-items:center; gap: 14px; }
.nav-link{
  font-size: 14px; color: var(--muted);
  padding: 10px 10px; border-radius: 12px;
}
.nav-link:hover{ color: var(--text); background: rgba(11,18,32,.04); }
.nav-link-cta{
  color: white; background: linear-gradient(135deg, var(--brand), var(--brand3));
  box-shadow: 0 10px 25px rgba(43,91,255,.18);
}
.nav-link-cta:hover{ background: linear-gradient(135deg, var(--brand), var(--brand3)); color:white; }

.nav-toggle{
  display:none;
  border: 1px solid var(--border);
  background: white;
  width: 42px; height: 42px;
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle:focus{ outline: 3px solid var(--ring); outline-offset: 2px; }
.nav-toggle-lines{
  width: 18px; height: 12px; display:block; margin: 0 auto;
  background:
    linear-gradient(var(--text), var(--text)) 0 0/100% 2px,
    linear-gradient(var(--text), var(--text)) 0 50%/100% 2px,
    linear-gradient(var(--text), var(--text)) 0 100%/100% 2px;
  background-repeat:no-repeat;
  opacity:.85;
}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.hero{
  position: relative;
  padding: 70px 0 56px;
}
.hero-bg{
  position:absolute; inset: -120px 0 auto 0; height: 420px;
  background: radial-gradient(700px 300px at 70% 30%, rgba(109,94,252,.18), transparent 60%),
              radial-gradient(700px 300px at 30% 40%, rgba(34,193,195,.16), transparent 60%);
  pointer-events:none;
}
.hero-grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 36px;
  align-items: center;
}
.eyebrow{
  display:inline-flex; align-items:center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: rgba(43,91,255,.85);
}
.hero h1{
  margin: 12px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
.subhead{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}

.slogan{
  font-size: 18px;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 14px;
  color: var(--muted);
}

.hero-actions{
  display:flex; gap: 12px; flex-wrap: wrap;
  margin: 18px 0 18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  color:white;
  background: linear-gradient(135deg, var(--brand), var(--brand3));
  box-shadow: 0 16px 40px rgba(43,91,255,.22);
}
.btn-primary:hover{ box-shadow: 0 18px 55px rgba(43,91,255,.28); }
.btn-ghost{
  background: rgba(255,255,255,.75);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ background: white; }

.btn-block{ width: 100%; }

.trust-row{ display:flex; gap: 10px; flex-wrap: wrap; }
.trust-pill{
  font-size: 13px;
  color: var(--muted);
  background: rgba(11,18,32,.03);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 999px;
}
.pill-dot{
  width: 8px; height: 8px; border-radius: 999px;
  display:inline-block;
  background: linear-gradient(135deg, var(--brand2), var(--brand3));
  margin-right: 8px;
}

.hero-card{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.card-top{
  display:flex; align-items:center; justify-content: space-between;
  padding: 16px 16px 10px;
}
.mini-badge{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(11,18,32,.70);
}
.spark{
  width: 40px; height: 14px;
  background: linear-gradient(90deg, rgba(43,91,255,.0), rgba(43,91,255,.7), rgba(34,193,195,.7), rgba(109,94,252,.0));
  border-radius: 999px;
  filter: blur(.2px);
}
.card-body{ padding: 0 16px 16px; }
.metric{
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.metric-label{ font-size: 12px; color: var(--muted); }
.metric-value{ font-size: 14px; font-weight: 800; letter-spacing: -0.01em; margin-top: 2px; }

.mini-table{
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow:hidden;
  background: white;
}
.row{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.row.header{
  border-top: none;
  background: rgba(11,18,32,.03);
  font-weight: 700;
}
.chip{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: rgba(11,18,32,.78);
  border: 1px solid var(--border);
  background: rgba(11,18,32,.03);
}
.chip-blue{ background: rgba(43,91,255,.10); border-color: rgba(43,91,255,.18); color: rgba(43,91,255,.95); }
.chip-purple{ background: rgba(109,94,252,.10); border-color: rgba(109,94,252,.18); color: rgba(109,94,252,.95); }
.chip-green{ background: rgba(20,184,166,.10); border-color: rgba(20,184,166,.18); color: rgba(20,184,166,.95); }

.card-note{
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.section{ padding: 72px 0; }
.section-muted{ background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head{ max-width: 820px; }
.section-head h2{
  margin: 12px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-sub{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid{
  margin-top: 28px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.feature h3{ margin: 10px 0 6px; letter-spacing: -0.02em; }
.feature p{ margin: 0; color: var(--muted); line-height: 1.6; }
.icon{
  width: 44px; height: 44px; border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(43,91,255,.10), rgba(109,94,252,.10));
  border: 1px solid rgba(43,91,255,.14);
  color: rgba(43,91,255,.95);
}
.icon svg{ width: 24px; height: 24px; }

.steps{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.step-top{
  display:flex; align-items:center; justify-content: space-between;
}
.step-num{
  width: 34px; height: 34px; border-radius: 12px;
  display:grid; place-items:center;
  font-weight: 800;
  color: rgba(43,91,255,.95);
  background: rgba(43,91,255,.10);
  border: 1px solid rgba(43,91,255,.18);
}
.step-icon{
  width: 44px; height: 44px; border-radius: 16px;
  display:grid; place-items:center;
  color: rgba(109,94,252,.95);
  background: rgba(109,94,252,.10);
  border: 1px solid rgba(109,94,252,.18);
}
.step-icon svg{ width: 24px; height: 24px; }
.step h3{ margin: 12px 0 6px; letter-spacing: -0.02em; }
.step p{ margin: 0; color: var(--muted); line-height: 1.6; }

.inline-cta{
  margin-top: 18px;
  display:flex; gap: 14px;
  align-items:center; justify-content: space-between;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
}
.inline-cta-title{ font-weight: 800; letter-spacing: -0.02em; }
.inline-cta-sub{ color: var(--muted); margin-top: 2px; font-size: 14px; }

.cards{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{ margin: 0 0 8px; letter-spacing: -0.02em; }
.card p{ margin: 0; color: var(--muted); line-height: 1.6; }

.who{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.70);
}
.who h3{ margin: 10px 0 6px; letter-spacing: -0.02em; }
.muted{ color: var(--muted); }
.fit{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  color: var(--muted);
}
.check{
  width: 22px; height: 22px; border-radius: 999px;
  display:grid; place-items:center;
  color: rgba(20,184,166,.95);
  background: rgba(20,184,166,.10);
  border: 1px solid rgba(20,184,166,.18);
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}

.faq{
  margin-top: 22px;
  display:grid;
  gap: 10px;
  max-width: 900px;
}
.faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.faq-item summary{
  cursor:pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  outline: none;
}
.faq-item p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta{
  padding: 70px 0;
  background:
    radial-gradient(800px 400px at 70% 20%, rgba(43,91,255,.14), transparent 60%),
    radial-gradient(800px 400px at 20% 50%, rgba(34,193,195,.12), transparent 60%),
    linear-gradient(180deg, var(--bg2), white);
  border-top: 1px solid var(--border);
}
.cta-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: center;
}
.cta h2{ margin: 12px 0 8px; letter-spacing: -0.03em; }
.cta-sub{ margin: 0; color: var(--muted); line-height: 1.6; max-width: 56ch; }
.cta-box{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.label{ display:block; font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 700; }
.input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
}
.input:focus{ border-color: rgba(43,91,255,.40); box-shadow: 0 0 0 4px var(--ring); }
.tiny{ font-size: 12px; margin: 10px 0 0; }

.footer{
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.75);
}
.footer-inner{
  display:flex; align-items:center; justify-content: space-between;
  gap: 14px;
}
.footer-left{ display:flex; align-items:center; gap: 10px; }
.footer-right{ display:flex; gap: 12px; flex-wrap: wrap; }
.footer-link{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.footer-link:hover{ background: rgba(11,18,32,.04); color: var(--text); }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .who{ grid-template-columns: 1fr; }
  .cta-inner{ grid-template-columns: 1fr; }
  .inline-cta{ flex-direction: column; align-items:flex-start; }
}

@media (max-width: 880px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-links{
    position:absolute;
    right: 20px;
    top: 64px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow2);
    padding: 10px;
    display:none;
    flex-direction: column;
    min-width: 240px;
    gap: 6px;
  }
  .nav-links.open{ display:flex; }
  .nav-link{ width: 100%; }
}
