/* ============================================
   Signet Employment Hub — Design Tokens
   ============================================ */
:root {
  /* Color — from Signet brand guidelines */
  --charcoal:      #1A1612; /* Obsidian — dark bg */
  --charcoal-soft: #231F18; /* Dark Surface — card bg on dark */
  --charcoal-border:#3A3028; /* Charcoal — borders on dark */
  --grey-700:      #3A3028; /* body text on light bg (Charcoal) */
  --grey-500:      #6B6151; /* secondary text on light bg (derived) */
  --grey-300:      #E4DDC9; /* borders on light bg (derived from Ivory/Linen) */
  --grey-100:      #F8F4ED; /* Ivory — light bg */
  --white:         #FFFFFF;
  --warm-white:    #F5F0E8; /* body text on dark bg */
  --muted-linen:   #C0B090; /* secondary text on dark bg */
  --gold:          #D4A840; /* Brand Gold — primary */
  --gold-deep:     #B8943F; /* Deep Gold — secondary */
  --gold-dark:     #8A6820; /* Antique Gold — accent */
  --gold-light:    #E4C878; /* tint for hover states (derived) */
  --gold-pale:     #F3E7C9; /* pale tint for card hover (derived) */
  --app-blue:      #4F7DF0; /* App CTA / button */
  --app-blue-dark: #3D66D1; /* derived hover shade */

  /* Type — Helvetica per brand guidelines */
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--grey-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--grey-700); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.tagline {
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin: 0 0 18px;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--app-blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--app-blue-dark); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal-soft); transform: translateY(-1px); }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 33, 36, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
}
.logo .mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.logo .sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted-linen);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--muted-linen);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.current { color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  padding: 88px 0 110px;
}
.hero-path {
  position: absolute;
  top: 0; right: -4%;
  width: 56%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}
@media (max-width: 980px) {
  .hero-path { width: 40%; opacity: 0.5; }
}
@media (max-width: 720px) {
  .hero-path { display: none; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p.lead {
  color: var(--warm-white);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.store-badge:hover { border-color: var(--app-blue); background: rgba(79,125,240,0.1); }
.store-badge .icon { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge .txt { line-height: 1.25; }
.store-badge .txt .small { display: block; font-size: 0.65rem; color: var(--muted-linen); text-transform: uppercase; letter-spacing: 0.06em; }
.store-badge .txt .big { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; }

/* ============================================
   Section basics
   ============================================ */
section { padding: 80px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-alt { background: var(--white); }

/* Industries grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--grey-300);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.industry-card {
  background: var(--white);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.18s ease;
  min-height: 150px;
}
.industry-card:hover { background: var(--gold-pale); }
.industry-card .icon {
  width: 30px;
  height: 30px;
  color: var(--gold-dark);
}
.industry-card .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--charcoal);
}

/* Features */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-list .tick svg { width: 13px; height: 13px; }
.feature-list .text strong { display: block; color: var(--charcoal); font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin-bottom: 2px; }
.feature-list .text span { color: var(--grey-700); font-size: 0.93rem; }

.features-art {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.features-art .seal {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
}
.features-art h3 { color: var(--white); text-align: center; font-size: 1.3rem; }
.features-art p { color: var(--warm-white); text-align: center; font-size: 0.92rem; }
.features-art .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; }
.features-art .stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-light); }
.features-art .stat span { font-size: 0.78rem; color: var(--muted-linen); text-transform: uppercase; letter-spacing: 0.05em; }

/* Employers */
.employers {
  background: var(--charcoal);
  color: var(--white);
}
.employers-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.employers h2 { color: var(--white); }
.employers p { color: var(--warm-white); }
.employers-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 12px; }
.employers-list li { display: flex; gap: 10px; align-items: center; color: var(--warm-white); font-size: 0.93rem; }
.employers-list li::before { content: ""; width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; }
.employers-panel {
  background: var(--charcoal-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.employers-panel .row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
.employers-panel .row:last-child { border-bottom: none; }
.employers-panel .row span:first-child { color: var(--muted-linen); }
.employers-panel .row span:last-child { color: var(--gold-light); font-family: var(--font-mono); font-size: 0.82rem; }

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.why-item { text-align: left; }
.why-item .num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.why-item h4 { font-size: 1rem; margin-bottom: 8px; }
.why-item p { font-size: 0.87rem; }

/* Download CTA */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--charcoal);
  text-align: center;
  padding: 74px 0;
}
.cta-band h2 { color: var(--charcoal); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { color: rgba(30,33,36,0.75); max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .store-badges { justify-content: center; margin-top: 26px; }
.cta-band .store-badge { border-color: rgba(26,22,18,0.35); color: var(--charcoal); }
.cta-band .store-badge .txt .small { color: rgba(26,22,18,0.65); }
.cta-band .store-badge:hover { background: rgba(79,125,240,0.12); border-color: var(--app-blue); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--grey-300);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--muted-linen); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid p { color: var(--muted-linen); font-size: 0.88rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  color: var(--muted-linen);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-attribution {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 30px;
}

/* ============================================
   Inner pages (Support / Privacy)
   ============================================ */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page-hero p { color: var(--warm-white); max-width: 560px; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted-linen);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold-light); }

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-card h3 { font-size: 1.1rem; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--grey-100); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon { width: 22px; height: 22px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.contact-row strong { display: block; color: var(--charcoal); font-size: 0.92rem; }
.contact-row span, .contact-row a { color: var(--grey-700); font-size: 0.9rem; }
.contact-row a:hover { color: var(--gold-dark); }

.faq-item {
  border-bottom: 1px solid var(--grey-300);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}
.faq-question .plus {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding-bottom: 20px; margin: 0; font-size: 0.93rem; }

/* Legal / privacy content */
.legal {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.legal h2 {
  font-size: 1.2rem;
  margin-top: 2em;
  padding-top: 0.4em;
  border-top: 1px solid var(--grey-100);
}
.legal h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal ul { color: var(--grey-700); padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal .updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  display: block;
}
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.legal-toc { position: sticky; top: 100px; }
.legal-toc h5 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 14px; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.legal-toc a { font-size: 0.86rem; color: var(--grey-700); }
.legal-toc a:hover { color: var(--gold-dark); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .features-layout { grid-template-columns: 1fr; }
  .features-art { position: static; }
  .employers-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: none; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--charcoal);
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 18px;
  }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding: 56px 0 70px; }
}

@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .store-badges { flex-direction: column; }
  .legal { padding: 28px 20px; }
}

/* ============================================
   Coming Soon Modal
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
body.modal-open { overflow: hidden; }
.modal-card {
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-lg);
  max-width: 380px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  position: relative;
  animation: modal-in 0.2s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: none;
  color: var(--muted-linen);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold-light); }
.modal-seal {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-seal svg { width: 24px; height: 24px; color: var(--gold); }
.modal-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.modal-card p { color: var(--warm-white); font-size: 0.92rem; margin-bottom: 26px; }
.modal-card .btn { width: 100%; }
