/* Hackrforce static site styles */
:root {
  --hf-primary: #060097;
  --hf-accent: #c10fff;
  --hf-text: #1e293b;
  --hf-muted: #475569;
  --hf-surface: #f9f6fe;
  --hf-gray: #f2f5f7;
  --hf-white: #ffffff;
  --hf-gradient: linear-gradient(35deg, rgb(6,0,151) 0%, rgb(130,4,255) 73%, rgb(193,15,255) 100%);
  --hf-max: 1200px;
  --hf-radius: 12px;
  --hf-shadow: 0 12px 40px rgba(6, 0, 151, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  color: var(--hf-text);
  background: var(--hf-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hf-primary); text-decoration: none; }
a:hover { color: var(--hf-accent); }
h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
p { margin: 0 0 1rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.75rem 1rem; background: var(--hf-primary); color: #fff;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(103,118,142,0.15);
}
.site-header__inner {
  max-width: var(--hf-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 1.25rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; color: var(--hf-text); }
.brand:hover { color: var(--hf-text); }
.brand__logo { height: 40px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1.15rem; }
.brand__tag { font-size: 0.72rem; color: var(--hf-muted); letter-spacing: 0.04em; text-transform: uppercase; }

.nav-toggle {
  display: none; border: 0; background: transparent; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  display: block; width: 22px; height: 2px; background: var(--hf-text); margin: 5px 0;
}
.nav { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.nav a { color: var(--hf-text); font-size: 0.95rem; font-weight: 500; }
.nav a:hover { color: var(--hf-accent); }
.nav__cta {
  background: var(--hf-gradient); color: #fff !important;
  padding: 0.55rem 1rem; border-radius: 999px; font-weight: 600;
}
.nav__cta:hover { opacity: 0.92; color: #fff !important; }

.hero {
  background: var(--hf-gradient); color: #fff; min-height: 720px;
  display: grid; align-items: center; padding: 4rem 1.25rem;
}
.hero__inner {
  max-width: var(--hf-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
}
.hero__eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; opacity: 0.9; margin-bottom: 0.75rem; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.25rem); color: #fff; margin-bottom: 1rem; }
.hero__lede { font-size: 1.05rem; max-width: 38rem; opacity: 0.95; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.35rem; border-radius: 999px; font-weight: 600; border: 2px solid transparent;
}
.btn-primary { background: #fff; color: var(--hf-primary); }
.btn-primary:hover { background: var(--hf-surface); color: var(--hf-primary); }
.btn-ghost { border-color: rgba(255,255,255,0.65); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.hero__visual img { width: min(100%, 520px); margin-inline: auto; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.25)); }

.section { padding: 5rem 1.25rem; }
.section--surface { background: var(--hf-surface); }
.section--gray { background: var(--hf-gray); }
.section__inner { max-width: var(--hf-max); margin: 0 auto; }
.section__head { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; }
.section__head h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
.section__head p { color: var(--hf-muted); }

.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.card {
  background: #fff; border-radius: var(--hf-radius); padding: 1.5rem;
  box-shadow: var(--hf-shadow); text-align: center;
}
.card img { width: 56px; height: 56px; margin: 0 auto 1rem; object-fit: contain; }
.card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card p { color: var(--hf-muted); font-size: 0.95rem; margin: 0; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service {
  background: #fff; border-radius: var(--hf-radius); overflow: hidden;
  box-shadow: var(--hf-shadow);
}
.service img { width: 100%; height: 180px; object-fit: cover; }
.service__body { padding: 1.35rem; }
.service h3 { font-size: 1.15rem; }
.service p { color: var(--hf-muted); font-size: 0.95rem; margin: 0; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.split img { border-radius: var(--hf-radius); box-shadow: var(--hf-shadow); }
.prose p { color: var(--hf-muted); }

.quote {
  background: #fff; border-radius: var(--hf-radius); padding: 2rem;
  box-shadow: var(--hf-shadow); border-left: 4px solid var(--hf-accent);
}
.quote p { font-size: 1.05rem; color: var(--hf-text); font-style: italic; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; font-weight: 600; color: var(--hf-muted); }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.why { text-align: center; padding: 1.5rem; }
.why img { width: 64px; height: 64px; margin: 0 auto 1rem; }

.cta-band {
  background: var(--hf-gradient); color: #fff; text-align: center;
  padding: 6.5rem 1.25rem;
}
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
.cta-band .btn-primary { font-size: 1rem; }

.contact-block { max-width: 36rem; margin: 1.5rem auto 0; color: rgba(255,255,255,0.92); }
.contact-block a { color: #fff; text-decoration: underline; }

.legal-links {
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid rgba(103,118,142,0.15);
  background: var(--hf-gray);
}
.legal-links__inner {
  max-width: var(--hf-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: baseline;
  justify-content: space-between;
}
.legal-links h2 { font-size: 1.125rem; margin: 0; }
.legal-links p {
  margin: 0.35rem 0 0;
  color: var(--hf-muted);
  font-size: 0.95rem;
  max-width: 36rem;
}
.legal-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.legal-links nav a {
  font-weight: 600;
  color: var(--hf-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.legal-links nav a:hover { color: var(--hf-accent); }

.site-footer {
  background: #111827; color: rgba(255,255,255,0.82); padding: 2.5rem 1.25rem 1.25rem;
}
.site-footer__inner {
  max-width: var(--hf-max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.site-footer__fine {
  max-width: var(--hf-max); margin: 1.5rem auto 0; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; color: rgba(255,255,255,0.55);
}

.page-hero {
  background: var(--hf-gradient); color: #fff; padding: 4rem 1.25rem 3rem;
}
.page-hero__inner { max-width: var(--hf-max); margin: 0 auto; }
.page-hero h1 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.page-hero .lede { opacity: 0.92; max-width: 40rem; }
.page-body { padding: 3rem 1.25rem 4rem; }
.page-body__inner { max-width: 48rem; margin: 0 auto; }

@media (max-width: 960px) {
  .hero__inner, .split, .services-grid, .why-grid { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}

a:focus-visible, button:focus-visible, .btn:focus-visible, .nav a:focus-visible, .skip-link:focus-visible {
  outline: 3px solid var(--hf-accent);
  outline-offset: 3px;
}
.site-header { position: sticky; }
.site-header__inner { position: relative; }
.nav-toggle { border-radius: 6px; }
.nav-toggle:focus-visible { outline: 3px solid var(--hf-accent); outline-offset: 3px; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.about-panel {
  width: 100%; min-height: 280px; border-radius: var(--hf-radius);
  background: var(--hf-gradient); box-shadow: var(--hf-shadow);
  display: grid; place-items: center; color: #fff; text-align: center; padding: 2rem;
}
.about-panel strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(103,118,142,0.15);
  }
  .nav.is-open { display: flex; }
  .cards-4 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 3rem; padding-bottom: 3rem; }
}
