/* JobSign — jobsign.app
   A site that feels like a firm handshake, not a pitch deck. */

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --warm-white: #F9F8F6;
  --cream: #F2F0EC;
  --green: #00A67E;
  --green-bright: #00D4A1;
  --green-dim: #008F6D;
  --green-glow: rgba(0, 166, 126, 0.15);
  --ink: #1A1A1A;
  --muted: #5C5C5C;
  --faint: #999999;
  --line: #E5E3DF;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
strong { font-weight: 700; }

/* ═══════════════════════════════════════ HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  background: rgba(249, 248, 246, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px; color: var(--ink);
}
.header-logo img { width: 32px; height: 32px; border-radius: 8px; }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.header-nav a:hover { color: var(--ink); }
.header-cta {
  padding: 10px 22px; border-radius: 100px;
  background: var(--green); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.2px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--green-glow); }

/* ═══════════════════════════════════════ HERO */
.hero {
  background: var(--warm-white);
  padding: 160px 32px 120px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -2px; color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  margin-top: 28px; font-size: 18px; line-height: 1.7;
  color: var(--muted); max-width: 480px;
}
.hero-sub strong { color: var(--ink); }
.hero-ctas {
  margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 100px;
  background: var(--green); color: var(--white);
  font-size: 15px; font-weight: 700;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--green-glow); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--ink);
  font-size: 15px; font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--green); background: var(--green-glow); }
.hero-proof {
  margin-top: 48px; display: flex; align-items: center; gap: 16px;
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--warm-white); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.hero-proof-avatars span:first-child { margin-left: 0; }
.hero-proof-text { font-size: 13px; color: var(--faint); }
.hero-proof-text strong { color: var(--ink); }

/* Phone */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone-device {
  width: 300px; border-radius: 48px;
  border: 6px solid var(--ink); background: var(--ink);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.12),
    0 16px 40px rgba(0,0,0,0.08);
  overflow: hidden; position: relative;
}
.phone-device img { width: 100%; display: block; }
.phone-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════ LOGOS / SOCIAL PROOF BAR */
.proof-bar {
  padding: 56px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.proof-bar-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.proof-stat { }
.proof-stat h3 {
  font-size: 36px; font-weight: 900; color: var(--ink);
  letter-spacing: -1px;
}
.proof-stat p { font-size: 13px; color: var(--faint); margin-top: 4px; font-weight: 500; }

/* ═══════════════════════════════════════ VALUE PROP */
.value {
  padding: 120px 32px;
  background: var(--white);
}
.value-inner { max-width: 1100px; margin: 0 auto; }
.value-header {
  max-width: 600px; margin-bottom: 72px;
}
.value-header h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900;
  letter-spacing: -1px; line-height: 1.1;
}
.value-header p { margin-top: 16px; font-size: 17px; color: var(--muted); line-height: 1.7; }
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--line); border-radius: 20px; overflow: hidden;
}
.value-card {
  background: var(--white); padding: 40px 32px;
  position: relative;
  transition: background 0.2s;
}
.value-card:hover { background: var(--warm-white); }
.value-num {
  font-size: 64px; font-weight: 900;
  color: var(--cream); line-height: 1;
  position: absolute; top: 20px; right: 24px;
  pointer-events: none;
}
.value-card h3 {
  font-size: 18px; font-weight: 800; color: var(--ink);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════ THE PITCH */
.pitch {
  padding: 100px 32px;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pitch-inner { max-width: 680px; margin: 0 auto; }
.pitch blockquote {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700; line-height: 1.4;
  letter-spacing: -0.5px; color: var(--ink);
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--green);
}
.pitch-attribution {
  margin-top: 24px; padding-left: 28px;
  font-size: 14px; color: var(--faint);
}
.pitch-attribution strong { color: var(--muted); }

/* ═══════════════════════════════════════ FEATURES */
.features {
  padding: 120px 32px;
  background: var(--white);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { max-width: 550px; margin-bottom: 64px; }
.features-header h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900;
  letter-spacing: -1px; line-height: 1.1;
}
.features-header p { margin-top: 16px; font-size: 17px; color: var(--muted); line-height: 1.7; }
.features-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.feature-item {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  align-items: start;
}
.feature-item:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
.feature-dot {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-glow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-dot svg { width: 22px; height: 22px; color: var(--green); }
.feature-item h3 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════ PRICING */
.pricing {
  padding: 120px 32px;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
}
.pricing-inner { max-width: 860px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 {
  font-size: clamp(32px, 4vw, 44px); font-weight: 900;
  letter-spacing: -1px;
}
.pricing-header p { margin-top: 12px; font-size: 17px; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan {
  border-radius: 20px; padding: 40px;
  position: relative;
}
.plan-free { background: var(--white); border: 1px solid var(--line); }
.plan-pro {
  background: var(--black); color: var(--white);
  box-shadow: 0 32px 64px rgba(0,0,0,0.15);
}
.plan-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 20px;
}
.plan-free .plan-label { color: var(--faint); }
.plan-pro .plan-label { color: var(--green-bright); }
.plan-price {
  font-size: 48px; font-weight: 900; letter-spacing: -2px;
}
.plan-price span { font-size: 16px; font-weight: 500; letter-spacing: 0; }
.plan-free .plan-price span { color: var(--faint); }
.plan-pro .plan-price span { color: rgba(255,255,255,0.4); }
.plan-desc {
  font-size: 14px; margin: 8px 0 28px; line-height: 1.6;
}
.plan-free .plan-desc { color: var(--muted); }
.plan-pro .plan-desc { color: rgba(255,255,255,0.5); }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; padding: 8px 0; font-weight: 500;
}
.plan-free .plan-features li { color: var(--ink); }
.plan-pro .plan-features li { color: rgba(255,255,255,0.8); }
.plan-features li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; flex-shrink: 0;
}
.plan-free .plan-features li::before { background: var(--green); }
.plan-pro .plan-features li::before { background: var(--green-bright); }
.plan-btn {
  display: block; width: 100%; text-align: center;
  padding: 16px; border-radius: 100px;
  font-size: 14px; font-weight: 700;
  transition: transform 0.15s;
  cursor: pointer;
}
.plan-btn:hover { transform: scale(1.02); }
.plan-btn-outline { border: 2px solid var(--line); color: var(--ink); background: transparent; }
.plan-btn-green { border: none; background: var(--green); color: var(--white); }

/* ═══════════════════════════════════════ FAQ */
.faq {
  padding: 100px 32px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-header { margin-bottom: 48px; }
.faq-header h2 { font-size: 32px; font-weight: 900; letter-spacing: -0.5px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item h3 {
  font-size: 16px; font-weight: 700; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
}
.faq-item h3::after {
  content: '+'; font-size: 20px; font-weight: 400; color: var(--faint);
  transition: transform 0.2s;
}
.faq-item.open h3::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  margin-top: 12px; display: none;
}
.faq-item.open p { display: block; }

/* ═══════════════════════════════════════ CTA */
.cta {
  padding: 120px 32px;
  background: var(--black);
  text-align: center; position: relative;
  overflow: hidden;
}
.cta::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, var(--green-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta h2 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900;
  color: var(--white); letter-spacing: -1.5px; line-height: 1.05;
}
.cta p { margin-top: 20px; font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.cta-buttons { margin-top: 40px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* Store buttons in CTA */
.store-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 100px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); transition: background 0.2s, border-color 0.2s;
}
.store-pill:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.store-pill svg { width: 22px; height: 22px; }
.store-pill-text { text-align: left; }
.store-pill-text small { font-size: 10px; opacity: 0.5; display: block; }
.store-pill-text span { font-size: 14px; font-weight: 700; }

/* ═══════════════════════════════════════ FOOTER */
.footer {
  padding: 48px 32px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-left {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.4);
}
.footer-left img { width: 24px; height: 24px; border-radius: 6px; opacity: 0.7; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════ RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 140px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-phone { order: -1; }
  .phone-device { width: 240px; }
  .value-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .feature-item:nth-child(even) { padding-left: 0; border-left: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
}
@media (max-width: 600px) {
  .hero h1 { letter-spacing: -1px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .plan { padding: 28px; }
}

