:root {
  --bg: #070b12;
  --bg-soft: #0f1726;
  --panel: #111d2e;
  --panel-strong: #16243c;
  --primary: #1f6fff;
  --primary-dark: #134cb8;
  --secondary: #f5c84c;
  --secondary-soft: #ffe69b;
  --text: #eaf2ff;
  --muted: #b8c7db;
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 20px 60px rgba(12, 18, 30, 0.45);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #09131d 100%);
  color: var(--text);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.small-heading {
  margin: 0 0 1rem;
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin-bottom: 1.25rem;
}

h1 span {
  color: var(--secondary);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--muted);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #09131d 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 18, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 78px;
  gap: 1rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-right: 0.5rem;
}

.logo span,
.footer-logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 0.5rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  transition: color 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  background: var(--panel-strong);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  padding-top: 5.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #3d8bff 100%);
  color: white;
  box-shadow: 0 18px 35px rgba(31, 111, 255, 0.35);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-points div {
  display: flex;
  flex-direction: column;
  min-width: 130px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.hero-points strong {
  color: var(--secondary);
  font-size: 1.2rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 110px;
  background: rgba(11, 19, 30, 0.7);
  border: 1px solid rgba(143, 211, 255, 0.16);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}

.proof-item strong {
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-item span {
  color: var(--text);
  font-weight: 600;
}

.feature-highlight-section {
  padding-top: 0;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: -1rem;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(12, 20, 32, 0.96), rgba(9, 14, 22, 0.9));
  border: 1px solid rgba(143, 211, 255, 0.14);
  border-radius: 22px;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(245, 200, 76, 0.12);
  border: 1px solid rgba(245, 200, 76, 0.28);
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.future-circle {
  position: relative;
  width: min(26rem, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1d6fff 0%, #153b7d 40%, rgba(12, 19, 29, 0.92) 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.future-circle::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(245, 200, 76, 0.45);
}

.future-circle span {
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  color: var(--secondary);
}

.floating-card {
  position: absolute;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  background: rgba(16, 26, 39, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(8px);
}

.card-one {
  top: 18%;
  left: 4%;
  animation: float 6s ease-in-out infinite;
}

.card-two {
  right: 5%;
  top: 24%;
  animation: float 7.5s ease-in-out infinite 1s;
}

.card-three {
  bottom: 10%;
  left: 18%;
  animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.auth-button-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  padding-left: 1rem;
}

.account-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(143, 211, 255, 0.35);
  background: linear-gradient(135deg, rgba(19, 76, 184, 0.95) 0%, rgba(15, 23, 38, 0.98) 100%);
  color: #edf6ff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(13, 38, 77, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  white-space: nowrap;
  margin-left: 0;
}

.account-button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.account-button:hover,
.account-button:focus-visible {
  transform: translateY(-1px) translateX(2px);
  box-shadow: 0 16px 34px rgba(31, 111, 255, 0.3);
  border-color: rgba(245, 200, 76, 0.5);
}

/* Hide Netlify deployment badge / corner widget when present */
a[href*="netlify.com"],
img[alt*="Netlify"],
[class*="netlify"],
[id*="netlify"] {
  display: none !important;
}

.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 14, 0.8);
  display: none;
  place-items: center;
  z-index: 1800;
  padding: 1rem;
  overflow-y: auto;
}

.auth-modal.show {
  display: grid;
}

.auth-card {
  width: min(480px, 100%);
  max-height: min(90vh, 760px);
  background: rgba(11, 19, 30, 0.98);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.auth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.auth-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.auth-tab {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  cursor: pointer;
}

.auth-tab.active {
  background: rgba(31, 111, 255, 0.15);
  border-color: rgba(31, 111, 255, 0.45);
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-form.hidden,
.hidden {
  display: none !important;
}

.auth-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.auth-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(7,11,18,0.7);
  color: var(--text);
}

.resource-grid,
.tut-course-grid,
.job-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.subject-card,
.tut-course-card,
.job-card {
  background: rgba(17, 29, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.subject-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.subject-card-link:hover,
.subject-card-link:focus-visible {
  color: inherit;
}

.subject-card h3,
.tut-course-card h3,
.job-card h3 {
  margin: 0.45rem 0 0.7rem;
}

.subject-topline,
.tut-course-tag,
.job-type {
  display: inline-block;
  border-radius: 999px;
  background: rgba(31, 111, 255, 0.12);
  border: 1px solid rgba(31, 111, 255, 0.25);
  color: var(--secondary);
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.subject-card p,
.tut-course-card p,
.job-card p {
  color: var(--muted);
}

.subject-meta {
  display: grid;
  gap: 0.3rem;
  margin: 0.8rem 0;
  color: var(--text);
}

.subject-card ul,
.tut-course-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: var(--text);
}

.subject-card-link-label {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--secondary);
  font-weight: 700;
}

.subject-button-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.subject-button {
  appearance: none;
  border: 1px solid rgba(143, 211, 255, 0.2);
  background: rgba(31, 111, 255, 0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.subject-button:hover,
.subject-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 111, 255, 0.5);
  background: rgba(31, 111, 255, 0.16);
}

.subject-detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.subject-detail-panel {
  background: rgba(17, 29, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  scroll-margin-top: 90px;
}

.subject-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.material-column {
  background: rgba(9, 17, 25, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem;
}

.material-column h4 {
  margin: 0 0 0.75rem;
  color: var(--secondary);
}

.material-column ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.material-column li + li {
  margin-top: 0.4rem;
}

@media (max-width: 640px) {
  .subject-button-list {
    gap: 0.5rem;
  }

  .subject-button {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
    font-size: 0.8rem;
    padding: 0.7rem 0.8rem;
  }

  .subject-material-grid {
    grid-template-columns: 1fr;
  }
}

.job-filter-panel {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.job-filter-panel select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,11,18,0.7);
  color: var(--text);
}

.job-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.job-distance {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.8rem;
}

.job-card a {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--secondary);
  font-weight: 700;
}

.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrap input {
  padding-right: 4.4rem;
}

.password-toggle {
  position: absolute;
  right: 0.6rem;
  border: none;
  background: transparent;
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
}

.auth-message {
  min-height: 20px;
  margin-bottom: 0.75rem;
}

.text-button {
  background: transparent;
  border: none;
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.dashboard-card {
  background: rgba(17, 29, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.user-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.user-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.unlock-box {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(31, 111, 255, 0.08);
  border: 1px solid rgba(31, 111, 255, 0.2);
}

.unlock-box.muted {
  background: rgba(255,255,255,0.02);
}

.unlock-box p {
  margin: 0 0 0.8rem;
  color: var(--text);
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-list-wrap {
  margin-top: 1.5rem;
}

.admin-user-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.admin-user-list li {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr;
  gap: 0.75rem;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.admin-user-list strong,
.admin-user-list span,
.admin-user-list small {
  display: block;
}

.admin-user-list span,
.admin-user-list small {
  color: var(--muted);
}

.mask-password {
  color: var(--secondary);
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(18px);
  background: rgba(10, 15, 21, 0.96);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2200;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.feature-grid,
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card,
.opportunity-card,
.help-form,
.employer-form,
.whatsapp-box {
  background: rgba(17, 29, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.opportunity-card {
  padding: 1.8rem 1.4rem;
}

.feature-icon,
.opportunity-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(31, 111, 255, 0.12);
  border: 1px solid rgba(31, 111, 255, 0.25);
  font-size: 1.8rem;
}

.feature-card a,
.opportunity-card a {
  color: var(--secondary);
  font-weight: 700;
}

.tool-section,
.info-section {
  background: rgba(10, 18, 29, 0.8);
}

.alt-tool {
  background: rgba(16, 24, 36, 0.9);
}

.tool-layout {
  display: grid;
  gap: 1.5rem;
}

.tool-panel,
.small-panel {
  background: rgba(17, 29, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.mini-form {
  display: grid;
  gap: 1rem;
}

.aps-subject-rows {
  display: grid;
  gap: 1rem;
}

.aps-subject-row {
  display: block;
}

.aps-row-grid {
  grid-template-columns: 1.5fr 1fr 0.8fr auto;
  align-items: end;
}

.input-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 1rem;
}

.remove-aps-subject {
  width: 100%;
  padding: 0.85rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  cursor: pointer;
}

.aps-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  align-items: center;
}

.mini-form label,
.tool-panel label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.mini-form input,
.mini-form select,
.tool-panel input,
.tool-panel select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,11,18,0.7);
  color: var(--text);
}

.result-box {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(31, 111, 255, 0.08);
  border: 1px solid rgba(31, 111, 255, 0.2);
  color: var(--text);
  font-weight: 600;
}

.opportunities-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(31,111,255,0.04));
}

.about-layout,
.contact-layout,
.employer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-copy {
  padding-right: 1rem;
}

.about-section strong {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.founder-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(17, 29, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cofounder-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(245, 200, 76, 0.06);
  border: 1px solid rgba(245, 200, 76, 0.18);
  border-radius: 18px;
}

.founder-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.founder-photo-placeholder,
.company-logo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 180px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.founder-photo-placeholder img,
.company-logo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.company-logo-placeholder {
  min-height: 90px;
  padding: 0.5rem;
  overflow: hidden;
}

.company-logo-placeholder img {
  object-fit: contain;
}

.founder-content h3 {
  margin-bottom: 0.75rem;
}

.founder-content blockquote {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--secondary);
  background: rgba(245, 200, 76, 0.08);
  border-radius: 0 12px 12px 0;
  color: var(--text);
  font-weight: 700;
}

.employer-form,
.help-form {
  padding: 1.5rem;
}

.employer-form label,
.help-form label {
  display: block;
  margin: 1rem 0 0.6rem;
  font-weight: 600;
  color: var(--text);
}

.employer-form input,
.help-form input,
.help-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,11,18,0.7);
  color: var(--text);
}

.employer-form input::placeholder,
.help-form input::placeholder,
.help-form textarea::placeholder {
  color: #8fa3be;
}

.employer-form button,
.help-form button {
  margin-top: 1.2rem;
  border: none;
  cursor: pointer;
}

.whatsapp-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
}

.assistant-widget {
  position: fixed;
  left: 1.2rem;
  right: auto;
  bottom: 1.2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  user-select: none;
  touch-action: none;
  pointer-events: auto;
}

.assistant-toggle {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(143, 211, 255, 0.35);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 111, 255, 0.98) 0%, rgba(9, 18, 30, 0.98) 100%);
  color: #edf6ff;
  font-size: 1.7rem;
  cursor: grab;
  box-shadow: 0 16px 32px rgba(31, 111, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
  position: relative;
  z-index: 2100;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.assistant-toggle:hover,
.assistant-toggle:focus-visible {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 35px rgba(31, 111, 255, 0.38);
}

.assistant-panel {
  width: min(320px, calc(100vw - 2rem));
  background: linear-gradient(180deg, rgba(10, 18, 29, 0.99) 0%, rgba(14, 24, 38, 0.98) 100%);
  border: 1px solid rgba(143, 211, 255, 0.26);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(9, 20, 38, 0.5);
  display: none;
}

.assistant-panel.open {
  display: block;
}

.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: rgba(31, 111, 255, 0.12);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  cursor: grab;
  touch-action: none;
}

.assistant-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.assistant-messages {
  max-height: 280px;
  overflow-y: auto;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.message {
  max-width: 85%;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.message.bot {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-self: flex-start;
}

.message.user {
  background: rgba(31, 111, 255, 0.2);
  color: var(--text);
  align-self: flex-end;
}

.assistant-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0.9rem 1rem;
  border-top: 1px solid var(--line);
}

.assistant-form input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,11,18,0.7);
  color: var(--text);
}

.assistant-form button {
  border: none;
  border-radius: 999px;
  min-width: 76px;
  padding: 0.8rem 0.95rem;
  background: linear-gradient(135deg, rgba(31, 111, 255, 0.98) 0%, rgba(13, 25, 40, 0.98) 100%);
  color: #edf6ff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(31, 111, 255, 0.2);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.social-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 0.8rem 0;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 111, 255, 0.15) 0%, rgba(9, 18, 30, 0.95) 100%);
  border: 1px solid rgba(143, 211, 255, 0.25);
  box-shadow: 0 10px 18px rgba(16, 26, 39, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 24px rgba(31, 111, 255, 0.24);
  border-color: rgba(143, 211, 255, 0.5);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #edf6ff;
}

.social-icon:nth-child(1) svg { fill: #1877F2; }
.social-icon:nth-child(2) svg { fill: #E1306C; }
.social-icon:nth-child(3) svg { fill: #25D366; }

.social-contact-card {
  background: rgba(17, 29, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.social-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-contact-details a {
  color: var(--muted);
  font-weight: 600;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

@media (max-width: 900px) {
  .hero-layout,
  .about-layout,
  .contact-layout,
  .employer-layout,
  .feature-grid,
  .opportunity-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: relative;
    gap: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: rgba(9, 15, 22, 0.98);
    border: 1px solid var(--line);
    margin-left: 0;
    width: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .auth-button-group {
    margin-left: 0;
  }

  .account-button {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 0;
  }

  .user-card-grid,
  .admin-user-list li {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .feature-grid,
  .opportunity-grid,
  .about-layout,
  .contact-layout,
  .employer-layout,
  .input-grid,
  .highlight-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 5rem 0;
  }

  .hero-proof {
    gap: 0.6rem;
  }

  .proof-item {
    flex: 1 1 calc(33.333% - 0.4rem);
  }

  .whatsapp-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icon-row {
    gap: 0.7rem;
  }

  .social-icon {
    width: 52px;
    height: 52px;
  }
}
