/* Hireframe — ATS marketing site */
:root {
  --ink: #11163a;
  --ink-soft: #4a5478;
  --ink-faint: #8089a8;
  --bg: #ffffff;
  --bg-soft: #f6f7fc;
  --bg-deep: #0d1130;
  --brand: #6d5efc;
  --brand-dark: #4b3ce0;
  --teal: #14b8a6;
  --line: #e7e9f3;
  --line-soft: #eef0f7;
  --radius: 16px;
  --shadow: 0 24px 60px -22px rgba(28,32,80,0.35);
  --shadow-soft: 0 10px 30px -16px rgba(28,32,80,0.25);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.025em; margin: 0 0 0.5em; font-weight: 800; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--brand-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700; color: var(--brand); margin: 0 0 1rem; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 60ch; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.98rem; padding: 13px 24px; border-radius: 11px; border: 1px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -10px rgba(109,94,252,0.7); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(109,94,252,0.8); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-light:hover { background: rgba(255,255,255,0.2); }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.02em; }
.brand .mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--brand), var(--teal)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 0.97rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; gap: 12px; align-items: center; }
@media (max-width: 760px) { .nav-links { display: none; } }

/* hero */
.hero { background: radial-gradient(1200px 500px at 50% -10%, #eef0ff 0%, rgba(238,240,255,0) 60%), var(--bg); padding: 70px 0 30px; text-align: center; }
.hero h1 { max-width: 16ch; margin-left: auto; margin-right: auto; }
.hero .lede { margin: 0 auto 1.8rem; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.hero .reassure { font-size: 0.86rem; color: var(--ink-faint); }
.hero-shot { margin: 44px auto 0; max-width: 1000px; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.hero-shot img { width: 100%; }

.gradtext { background: linear-gradient(100deg, var(--brand), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* logo strip */
.logos { padding: 40px 0 10px; }
.logos p { text-align: center; color: var(--ink-faint); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 20px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; align-items: center; opacity: 0.75; }
.logo-row span { font-weight: 800; font-size: 1.15rem; color: var(--ink-faint); letter-spacing: -0.01em; }

/* sections */
section { padding: 70px 0; }
.section-head { max-width: 60ch; margin: 0 auto 48px; text-align: center; }
.section-head .lede { margin: 0 auto; }

/* feature grid */
.features { background: var(--bg-soft); }
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .fgrid { grid-template-columns: 1fr; } }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .12s ease, box-shadow .12s ease; }
.fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.fcard .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; background: #eef0ff; color: var(--brand-dark); }
.fcard h3 { margin-bottom: 8px; }
.fcard p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* showcase alternating */
.showcase { display: grid; grid-template-columns: 1fr 1.25fr; gap: 50px; align-items: center; margin-bottom: 90px; }
.showcase:last-child { margin-bottom: 0; }
.showcase.flip .show-text { order: 2; }
.showcase.flip .show-img { order: 1; }
@media (max-width: 900px) { .showcase, .showcase.flip { grid-template-columns: 1fr; gap: 26px; } .showcase.flip .show-text, .showcase.flip .show-img { order: 0; } }
.show-img { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.show-text .eyebrow { margin-bottom: 0.7rem; }
.show-text h3 { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.5em; }
.show-text p { color: var(--ink-soft); }
.ticks { list-style: none; padding: 0; margin: 18px 0 0; }
.ticks li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink); font-size: 0.98rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; background: var(--teal); width: 19px; height: 19px; border-radius: 50%; font-size: 11px; display: grid; place-items: center; font-weight: 800; margin-top: 3px; }

/* stats band */
.stats { background: var(--bg-deep); color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; } }
.stat-grid .n { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(100deg,#a99dff,#5eead4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-grid .l { color: #aeb6d6; font-size: 0.95rem; margin-top: 4px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.step .num { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; margin-bottom: 14px; }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* quote */
.quote { background: var(--bg-soft); }
.quote blockquote { max-width: 760px; margin: 0 auto; text-align: center; font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.4; color: var(--ink); }
.quote .by { display: block; margin-top: 22px; font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; }

/* pricing */
.ptable { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .ptable { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; background: #fff; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--brand); box-shadow: var(--shadow-soft); position: relative; }
.plan .tag { position: absolute; top: -12px; left: 28px; background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.plan h3 { font-size: 1.2rem; }
.plan .price { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; margin: 6px 0 2px; }
.plan .price small { font-size: 0.95rem; font-weight: 500; color: var(--ink-faint); }
.plan .desc { color: var(--ink-soft); font-size: 0.94rem; min-height: 44px; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 24px; flex: 1; }
.plan ul li { padding: 8px 0 8px 26px; position: relative; font-size: 0.95rem; border-top: 1px solid var(--line-soft); }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.plan .btn { width: 100%; justify-content: center; }

/* CTA band */
.cta { background: linear-gradient(120deg, var(--brand-dark), var(--brand) 55%, var(--teal)); color: #fff; border-radius: 24px; padding: 56px 40px; text-align: center; margin: 0 24px; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto 24px; }
.cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* generic content (about/features intro) */
.prose { max-width: 70ch; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose p { color: var(--ink-soft); }
.faq { max-width: 760px; margin: 0 auto; }
.faq .qa { padding: 22px 0; border-top: 1px solid var(--line); }
.faq .qa h3 { margin-bottom: 6px; }
.faq .qa p { margin: 0; color: var(--ink-soft); }

/* footer */
.footer { background: var(--bg-deep); color: #aeb6d6; padding: 56px 0 30px; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer a { color: #aeb6d6; display: block; margin-bottom: 9px; font-size: 0.92rem; }
.footer a:hover { color: #fff; }
.footer .blurb { font-size: 0.92rem; max-width: 30ch; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; color: #7e87a8; }
