/* Vaughn Staffing — minimal layout */
:root {
  --bg-deep: #0d0216;
  --bg-elevated: #14081f;
  --border-subtle: rgba(160, 32, 240, 0.18);
  --text: #f4f0fb;
  --text-muted: #9a8aad;
  --accent-purple: #a020f0;
  --accent-teal: #40e0d0;
  --accent-orange: #ff8c42;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Syne", var(--font-sans);
  --radius: 10px;
  --radius-lg: 16px;
  --header-h: 104px;
  --max-read: 38rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.65rem 1rem;
  background: var(--accent-teal);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 2, 22, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 280px;
  max-width: calc(100vw - 150px);
  max-height: 90px;
  object-fit: contain;
  object-position: left center;
}

.header-cta {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-deep);
  background: var(--accent-teal);
  border-radius: 999px;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.header-cta:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
}

/* Hero — fills first screen; industries & contact sit below scroll */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) 1.25rem 1.25rem;
  overflow: hidden;
}

.hero--screen {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
}

.hero--screen .hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@supports not (height: 100dvh) {
  .hero--screen {
    min-height: calc(100vh - var(--header-h));
  }
}

.hero-bg {
  position: absolute;
  inset: -30% 0 auto;
  height: 70%;
  max-height: 420px;
  background: radial-gradient(
    ellipse 55% 50% at 50% 0%,
    rgba(160, 32, 240, 0.14),
    transparent 72%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max-read);
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.gradient-text {
  background: linear-gradient(
    100deg,
    var(--accent-teal) 0%,
    var(--accent-purple) 50%,
    var(--accent-orange) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  color: var(--text-muted);
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.hero-foot {
  margin: 1.5rem 0 0;
  font-size: 0.9375rem;
}

.hero-foot a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.hero-foot a:hover,
.hero-foot a:focus-visible {
  color: var(--accent-teal);
}

.hero-scroll {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: auto;
  padding: 0.75rem 0.75rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: var(--accent-teal);
}

.hero-scroll:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.hero-scroll-icon {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.85;
}

/* Industries */
.industries {
  padding: clamp(2rem, 5vw, 2.75rem) 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.industries-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.industries-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.industry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.industry-list li {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: rgba(22, 10, 34, 0.45);
}

/* What makes us different */
.different {
  padding: clamp(2rem, 6vw, 3rem) 1.25rem;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(
    180deg,
    rgba(22, 10, 34, 0.35) 0%,
    transparent 100%
  );
}

.different-inner {
  max-width: 34rem;
  margin: 0 auto;
}

.different-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 1.5rem;
}

.different-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.different-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(13, 2, 22, 0.35);
}

.different-item-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.different-item-text {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.65rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-purple) 0%,
    #6a1b9a 55%,
    var(--accent-teal) 100%
  );
  background-size: 180% 100%;
  color: #fff;
  box-shadow: 0 0 28px rgba(160, 32, 240, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

/* Contact */
.contact-section {
  padding: clamp(2rem, 6vw, 3.5rem) 1.25rem 4rem;
}

.contact-inner {
  max-width: 420px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 1.75rem;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.contact-dek {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-form {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.form-row:last-of-type {
  margin-bottom: 0;
}

.form-row label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.req {
  color: var(--accent-teal);
}

.optional {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: lowercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: rgba(13, 2, 22, 0.5);
  color: var(--text);
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: none;
  border-color: rgba(64, 224, 208, 0.45);
  box-shadow: 0 0 0 2px rgba(64, 224, 208, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
  line-height: 1.45;
}

.form-note a {
  color: var(--accent-teal);
  font-weight: 600;
  text-decoration: none;
}

.form-note a:hover,
.form-note a:focus-visible {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.75rem 1.25rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-phone {
  margin: 0 0 0.35rem;
}

.footer-phone a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-phone a:hover,
.footer-phone a:focus-visible {
  color: var(--accent-teal);
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.85;
}
