/* ================================================
   RECRUITING PLUG — MAIN STYLESHEET
   ================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #09090d;
  --bg-2:         #0d0d12;
  --surface:      #111118;
  --card:         #161620;
  --card-hover:   #1c1c28;

  --purple:       #7c6dfa;
  --purple-soft:  #5a4ecc;
  --purple-glow:  rgba(124, 109, 250, 0.12);
  --purple-border:rgba(124, 109, 250, 0.3);

  --gold:         #d4a843;
  --gold-soft:    #a07828;
  --gold-glow:    rgba(212, 168, 67, 0.12);
  --gold-border:  rgba(212, 168, 67, 0.3);

  --text:         #eeeef5;
  --muted:        #6e6e88;
  --muted-light:  #9898b0;

  --border:       #1f1f2e;
  --border-light: #2a2a3e;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

/* ================================================
   UTILITIES
   ================================================ */

.accent-purple { color: var(--purple); }
.accent-gold   { color: var(--gold); }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-glow);
  border: 1px solid var(--purple-border);
  padding: 0.28rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.gold-label {
  color: var(--gold);
  background: var(--gold-glow);
  border-color: var(--gold-border);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted-light);
  max-width: 540px;
  line-height: 1.75;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-soft);
  border-color: var(--purple-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(124, 109, 250, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #0a080a;
  border-color: var(--gold);
  font-weight: 800;
}
.btn-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 168, 67, 0.3);
}

/* ================================================
   NAVIGATION
   ================================================ */

.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(9, 9, 13, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  gap: 1.5rem;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-accent { color: var(--purple); }


.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover {
  color: var(--purple);
  background: var(--surface);
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ================================================
   HERO
   ================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 3.5rem;
  padding: 8rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: 0.38rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted-light);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* How It Works */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hiw-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hiw-card:hover {
  background: var(--card-hover);
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.35);
}

.hiw-step {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 1rem;
}

.hiw-title {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}

.hiw-body {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.72;
}

.purple-icon { color: var(--purple); }
.gold-icon   { color: var(--gold); }

/* ================================================
   WHY SECTION
   ================================================ */

.why-section { background: var(--bg-2); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  background: var(--card-hover);
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.35);
}

.feature-card.gold-border {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, var(--card) 0%, rgba(212,168,67,0.04) 100%);
}

.feature-card.gold-border:hover {
  border-color: rgba(212,168,67,0.55);
  box-shadow: 0 22px 55px rgba(212,168,67,0.08);
}

.card-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}

.feature-card p {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.72;
}

/* ================================================
   SPLIT SECTION
   ================================================ */

.split-section { padding: 7rem 0; }

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.split-side {
  padding: 4rem 3.5rem;
}

.split-talent {
  background: linear-gradient(145deg, var(--surface) 0%, #14142a 100%);
  border-right: 1px solid var(--border);
}

.split-employers {
  background: linear-gradient(145deg, #13100a 0%, #1c1605 100%);
}

.split-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-glow);
  border: 1px solid var(--purple-border);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.gold-tag {
  color: var(--gold);
  background: var(--gold-glow);
  border-color: var(--gold-border);
}

.split-side h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.split-side > p {
  font-size: 1.02rem;
  color: var(--muted-light);
  line-height: 1.78;
  margin-bottom: 1.75rem;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--muted-light);
  line-height: 1.55;
}

.split-list li::before {
  content: '→';
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.split-list.gold-list li::before {
  color: var(--gold);
}

/* ================================================
   SPECIALTY SECTION
   ================================================ */

.specialty-section { background: var(--bg-2); }

.specialty-inner {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.specialty-left { flex: 1; }

.specialty-left p {
  font-size: 1.02rem;
  color: var(--muted-light);
  line-height: 1.82;
  margin-bottom: 1.25rem;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.specialty-tags span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  cursor: default;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.specialty-tags span:hover {
  background: rgba(212,168,67,0.2);
  border-color: rgba(212,168,67,0.55);
}

.specialty-note {
  font-size: 0.95rem !important;
  font-style: italic;
  margin-bottom: 2rem !important;
}

.specialty-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbital Visual */
.specialty-visual {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

.sv-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed;
  transform: translate(-50%, -50%);
}

.sv-ring-1 {
  width: 240px; height: 240px;
  border-color: rgba(212,168,67,0.25);
  animation: orbit-spin 22s linear infinite;
}

.sv-ring-2 {
  width: 360px; height: 360px;
  border-color: rgba(212,168,67,0.12);
  animation: orbit-spin 35s linear infinite reverse;
}

@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.sv-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, rgba(212,168,67,0.03) 100%);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  z-index: 5;
  overflow: visible;
  box-shadow: 0 0 40px rgba(212,168,67,0.12);
}

.sv-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.sv-text {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-align: center;
  line-height: 1.3;
}

.sv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
  object-fit: contain;
}

.sv-satellite {
  position: absolute;
  z-index: 4;
}

.sv-satellite span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* 5 satellites evenly spaced at 72° intervals, starting from top */
.sv-s1 { top:  5%;  left: 50%;   transform: translate(-50%, -50%); } /* 0°   — top        */
.sv-s2 { top: 36%;  left: 93%;   transform: translate(-50%, -50%); } /* 72°  — top-right  */
.sv-s3 { top: 86%;  left: 76%;   transform: translate(-50%, -50%); } /* 144° — bot-right  */
.sv-s4 { top: 86%;  left: 24%;   transform: translate(-50%, -50%); } /* 216° — bot-left   */
.sv-s5 { top: 36%;  left: 7%;    transform: translate(-50%, -50%); } /* 288° — top-left   */

/* ================================================
   PHOTO PLACEHOLDER SECTION
   ================================================ */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.photo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-card:hover {
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.45);
}

.photo-inner {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  display: block;
  background: #09090d;
}

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Per-image crop tuning so the subject stays in frame on every device */
.photo-founder  .photo-img { object-position: center 20%; }   /* keep her face, not the necklace */
.photo-industry .photo-img { object-position: 65% center; }   /* keep both faces and the handshake */

/* The Career Accelerator card holds a typographic graphic, not a photo.
   Use 'contain' so the words never get cropped, with a matching black
   background to blend the letterbox space into the card seamlessly. */
.photo-success .photo-img {
  object-fit: contain;
  background: #000;
  padding: 0.5rem;
}

.photo-founder  { background: linear-gradient(145deg, #1a1035 0%, #100d22 100%); }
.photo-success  { background: linear-gradient(145deg, #0e1e10 0%, #09120a 100%); }
.photo-industry { background: linear-gradient(145deg, #1e1500 0%, #13100a 100%); }

.photo-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.pg-purple   { width:220px; height:220px; background: radial-gradient(circle, rgba(124,109,250,0.35) 0%, transparent 70%); top:-30px; right:-30px; }
.pg-purple-2 { width:150px; height:150px; background: radial-gradient(circle, rgba(124,109,250,0.2) 0%, transparent 70%); bottom:0; left:10px; }

.pg-green    { width:220px; height:220px; background: radial-gradient(circle, rgba(72,200,100,0.3) 0%, transparent 70%); top:-20px; left:-20px; }
.pg-green-2  { width:130px; height:130px; background: radial-gradient(circle, rgba(72,200,100,0.18) 0%, transparent 70%); bottom:5px; right:20px; }

.pg-gold     { width:200px; height:200px; background: radial-gradient(circle, rgba(212,168,67,0.35) 0%, transparent 70%); top:-20px; right:10px; }
.pg-gold-2   { width:130px; height:130px; background: radial-gradient(circle, rgba(212,168,67,0.2) 0%, transparent 70%); bottom:-10px; left:-10px; }

.photo-center-mark {
  font-size: 4rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  opacity: 0.35;
}

.purple-mark { color: var(--purple); }
.green-mark  { color: #48c864; }
.gold-mark   { color: var(--gold); }

.photo-label {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pl-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pl-sub {
  font-size: 1rem;
  color: var(--muted);
}

/* ================================================
   SIGNUP SECTION
   ================================================ */

.signup-section { background: var(--bg-2); }

.signup-inner {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.signup-left {
  flex: 1;
  padding-top: 0.5rem;
}

.signup-left p {
  font-size: 1.02rem;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.signup-trust {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--muted-light);
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--purple-glow);
  border: 1px solid var(--purple-border);
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--purple);
  flex-shrink: 0;
  font-weight: 700;
}

.signup-right { flex: 1; }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
  color: #4ade80;
  font-size: 0.95rem;
}

.form-success-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-error {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  color: #f87171;
  font-size: 0.95rem;
}

.signup-form {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 0.97rem;
  font-family: inherit;
  outline: none;
  resize: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.radio-group {
  display: flex;
  gap: 1.25rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

.radio-option input[type="radio"] { display: none; }

.radio-custom {
  width: 18px; height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}

.radio-custom::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--purple);
  background: var(--purple-glow);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  opacity: 1;
}

/* ================================================
   FINAL CTA
   ================================================ */

.final-cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,109,250,0.11) 0%, transparent 70%);
  top: 50%; left: 25%;
  transform: translate(-50%, -50%);
}

.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  top: 50%; right: 10%;
  transform: translateY(-50%);
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.cta-sub {
  font-size: 1.08rem;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}


.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 1rem;
  color: var(--muted-light);
  max-width: 340px;
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 1rem;
  color: var(--muted-light);
  transition: color 0.15s ease;
}

.footer-nav a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 1rem;
  color: var(--muted-light);
}

.footer-tagline {
  font-style: italic;
}

/* ================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================ */

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialty-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .specialty-visual {
    width: 300px;
    height: 300px;
  }

  .sv-ring-2 { width: 300px; height: 300px; }
  .sv-ring-1 { width: 200px; height: 200px; }
  .sv-core   { width: 105px; height: 105px; }
}

/* ================================================
   RESPONSIVE — LARGE MOBILE (≤900px)
   ================================================ */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 7rem 2rem 4rem;
    gap: 3rem;
    text-align: center;
  }

  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-badge { align-self: center; }

  .split-inner {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

  .split-talent   { border-right: none; border-bottom: 1px solid var(--border); }
  .split-side     { padding: 3rem 2.5rem; }

  .signup-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-nav { justify-content: flex-start; }

}

/* ================================================
   RESPONSIVE — MOBILE (≤640px)
   ================================================ */

@media (max-width: 640px) {
  .nav-links { display: none; }

  .nav {
    padding: 0.85rem 1.25rem;
  }

  .hero {
    padding: 6rem 1.25rem 3rem;
    gap: 2.5rem;
  }

  .how-it-works { grid-template-columns: 1fr; }

  .section-container { padding: 0 1.25rem; }

  .section {
    padding: 5rem 0;
  }

  .split-section { padding: 5rem 0; }
  .final-cta     { padding: 5rem 0; }

  .split-side { padding: 2.5rem 1.5rem; }

  .cards-grid { grid-template-columns: 1fr; }

  .signup-form { padding: 2rem 1.5rem; }

  .specialty-visual {
    width: 280px;
    height: 280px;
  }

  .sv-ring-2 { width: 280px; height: 280px; }
  .sv-ring-1 { width: 185px; height: 185px; }
  .sv-core   { width: 95px; height: 95px; }

  .cta-title { line-height: 1.1; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

}
