/* JobsAlley by McRaaN — standalone marketing site (no app dependency). */
:root {
  /* JobsAlley brand: navy + blue with an orange accent (matches the logo). */
  --brand: #2563eb; --brand-d: #1e40af; --brand-l: #eff6ff; --accent: #f97316;
  --ink: #172554; --bg: #f6f7fb; --surface: #fff; --border: #e5e7eb;
  --txt: #1f2937; --txt2: #4b5563; --txt3: #9ca3af; --radius: 10px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--txt); background: var(--surface); line-height: 1.55; }
a { color: var(--brand); text-decoration: none; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border);
  background: var(--surface); color: var(--txt); border-radius: var(--radius); padding: 10px 18px;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: filter .15s, background .15s, box-shadow .15s; }
.btn:hover { filter: brightness(0.99); }
.btn.primary { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 6px 18px rgba(37,99,235,.25); }
.btn.primary:hover { background: var(--brand-d); }
.btn.ghost { background: var(--surface); }
.btn.sm { padding: 8px 13px; font-size: 13px; }
.btn.lg { padding: 13px 26px; font-size: 15px; }

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand .mark { display: block; }
.brand .wm { display: flex; flex-direction: column; line-height: 1; }
.brand .wm .name { font-weight: 800; font-size: 20px; letter-spacing: -.4px; color: var(--ink); white-space: nowrap; }
.brand .wm b { color: var(--accent); font-weight: 800; } /* "Alley" in orange */
.brand .wm small { font-size: 10px; font-weight: 600; letter-spacing: .04em; color: var(--txt3); text-transform: uppercase; margin-top: 3px; }

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 7vw;
  position: sticky; top: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); z-index: 20; }
.nav nav { display: flex; align-items: center; gap: 20px; }
.nav nav a { color: var(--txt2); font-size: 14px; font-weight: 500; }
.nav nav a:hover, .nav nav a.active { color: var(--brand); }
@media (max-width: 760px) { .nav nav a:not(.btn) { display: none; } }

/* Hero */
.hero { text-align: center; padding: 64px 7vw 64px;
  background: radial-gradient(1100px 420px at 50% -10%, var(--brand-l) 0%, transparent 70%); }
.hero-logo { display: block; width: 100%; max-width: 380px; height: auto; margin: 0 auto 20px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-l); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(32px, 5.2vw, 54px); font-weight: 800; line-height: 1.08; letter-spacing: -1.2px; max-width: 920px; margin: 0 auto 18px; }
.hero p { font-size: 18px; color: var(--txt2); max-width: 680px; margin: 0 auto 28px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.note { margin-top: 18px; font-size: 13px; color: var(--txt3); }

/* Generic sections */
.section { padding: 64px 7vw; max-width: 1180px; margin: 0 auto; }
.section.tight { padding-top: 32px; }
.section > h2 { text-align: center; font-size: clamp(26px,3.4vw,34px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 10px; }
.sub { text-align: center; color: var(--txt2); max-width: 620px; margin: 0 auto 36px; }
.muted { color: var(--txt3); font-size: 13px; }
.center { text-align: center; }

/* Feature / value grids */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.card .ic { font-size: 26px; }
.card h3 { font-size: 16px; margin: 12px 0 6px; }
.card p { color: var(--txt2); font-size: 14px; margin: 0; }

/* Alternating product rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 40px 0; border-top: 1px solid var(--border); }
.split:first-of-type { border-top: none; }
.split .vis { background: linear-gradient(135deg, var(--brand-l), #fff); border: 1px solid var(--border);
  border-radius: 16px; min-height: 220px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.split h3 { font-size: 22px; letter-spacing: -.4px; }
.split p { color: var(--txt2); margin: 10px 0 0; }
.split ul { margin: 14px 0 0; padding-left: 18px; color: var(--txt2); }
.split ul li { margin: 6px 0; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 18px; } .split .vis { order: -1; min-height: 150px; } }

/* Pricing */
.pricing { background: var(--bg); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; max-width: 1060px; margin: 0 auto; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 420px; } }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; }
.plan.featured { border: 2px solid var(--brand); box-shadow: 0 14px 44px rgba(37,99,235,.16); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.plan-name { font-weight: 700; font-size: 18px; }
.plan-price { font-size: 34px; font-weight: 800; margin: 8px 0 18px; letter-spacing: -1px; color: var(--ink); }
.plan-price span { font-size: 14px; font-weight: 500; color: var(--txt3); margin-left: 4px; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 0; }
.plan li { font-size: 13.5px; color: var(--txt2); padding: 8px 0 8px 24px; position: relative; border-bottom: 1px solid var(--border); }
.plan li:before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* CTA band */
.cta-band { text-align: center; background: linear-gradient(135deg, var(--brand), var(--brand-d)); color: #fff; padding: 56px 7vw; }
.cta-band h2 { color: #fff; font-size: 30px; letter-spacing: -.5px; }
.cta-band p { color: #dbeafe; max-width: 560px; margin: 10px auto 24px; }
.cta-band .btn.primary { background: #fff; color: var(--brand-d); border-color: #fff; box-shadow: none; }

/* Forms (contact, sign-in) */
.form-wrap { max-width: 520px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; }
.field { margin-bottom: 14px; text-align: left; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--txt2); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 11px 13px; font-size: 14px; font-family: inherit; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.workspace-row { display: flex; align-items: stretch; }
.workspace-row input { border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.workspace-row .suffix { display: flex; align-items: center; padding: 0 12px; background: var(--bg);
  border: 1px solid var(--border); border-left: none; border-radius: 0 var(--radius) var(--radius) 0; color: var(--txt3); font-size: 14px; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 48px 7vw 32px; background: var(--bg); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; max-width: 1180px; margin: 0 auto; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 22px; } }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--txt3); margin-bottom: 12px; }
.footer .foot-grid a { display: block; color: var(--txt2); font-size: 14px; margin: 7px 0; }
.footer .foot-grid a:hover { color: var(--brand); }
.footer .copy { text-align: center; font-size: 12px; color: var(--txt3); margin-top: 32px; border-top: 1px solid var(--border); padding-top: 20px; }
