/* Al Beta Innovate Technical Services SPC — Developed by AmalVectors */
@import url("variables.css");
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink-900);
  font: 400 var(--step-0) / 1.6 var(--font);
  background: var(--paper);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.privacy-content { max-width: 850px; }
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: -5rem;
  background: #fff;
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.site-header {
  height: 76px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  line-height: 1;
}
.brand img {
  width: 56px;
  height: 44px;
  object-fit: contain;
}
.brand b {
  display: block;
  letter-spacing: 0.08em;
}
.brand small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}
.site-nav {
  display: none;
  position: absolute;
  inset: 76px 0 auto;
  background: #fff;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
.site-nav.open {
  display: grid;
}
.site-nav a {
  padding: 0.75rem;
  text-decoration: none;
  font-weight: 600;
}
.site-nav a.active {
  color: var(--brand-primary);
}
.nav-cta,
.btn {
  background: var(--brand-primary);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-primary);
  padding: 0.75rem 1.15rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
}
.btn:hover {
  background: #bd1422;
}
.nav-admin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 0.5rem;
  color: var(--ink-900);
  border: 1px solid var(--ink-900);
  border-radius: var(--radius);
}
.nav-admin:hover {
  background: var(--ink-900);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--ink-900) !important;
  border-color: var(--ink-900);
}
.btn-outline:hover {
  background: var(--ink-900);
  color: #fff !important;
}
.nav-toggle {
  border: 0;
  background: none;
  width: 44px;
  padding: 8px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: #111;
  margin: 6px;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: var(--step--1);
}
h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0 0 1rem;
}
h1 {
  font-size: var(--step-3);
  max-width: 17ch;
}
h2 {
  font-size: var(--step-2);
}
h3 {
  font-size: var(--step-1);
}
p {
  margin: 0 0 1rem;
}
.section {
  padding-block: var(--s6);
}
.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: var(--s5);
}
.section-head p {
  max-width: 60ch;
}
.dark {
  background: var(--ink-900);
  color: #fff;
}
.soft {
  background: #f4f4f5;
}
.rule {
  width: 64px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-primary) 70%,
    var(--brand-secondary) 70%
  );
}
.hero {
  height: clamp(620px, calc(100vh - 76px), 850px);
  position: relative;
  background: #111;
  color: #fff;
  overflow: hidden;
}
.slides,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s;
}
.slide.active {
  opacity: 1;
  visibility: visible;
}
.slide-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #101012, #343438);
}
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2));
}
.slide-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(8rem, 19vh, 12rem);
  max-width: 750px;
}
.slide-copy p {
  font-size: var(--step-1);
  max-width: 50ch;
}
.slider-controls {
  position: absolute;
  z-index: 5;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.slider-controls button {
  color: #fff;
  background: #1119;
  border: 1px solid #ffffff66;
  width: 44px;
  height: 44px;
}
.dots {
  display: flex;
  gap: 0.45rem;
}
.dot {
  width: 9px !important;
  height: 9px !important;
  padding: 0;
  border-radius: 50%;
  background: #fff !important;
  opacity: 0.45;
}
.dot.active {
  opacity: 1;
  background: var(--brand-primary) !important;
}
.about-grid,
.why-grid,
.contact-grid,
.career-grid {
  display: grid;
  gap: var(--s5);
}
.lead {
  font-size: var(--step-1);
}
.metrics-preview {
  border-left: 4px solid var(--brand-secondary);
  padding: 1.5rem;
  background: #f4f4f5;
}
.metrics-preview strong {
  font-size: var(--step-2);
  display: block;
}
.card-grid {
  display: grid;
  gap: 1px;
  background: var(--ink-600);
  border: 1px solid var(--ink-600);
}
.service-card {
  background: var(--ink-800);
  padding: 2rem;
  min-height: 250px;
  transition: 0.25s;
}
.service-card:hover {
  background: #2d292a;
  transform: translateY(-3px);
}
.service-card .num {
  color: var(--brand-secondary);
  font-size: 0.85rem;
}
.service-card a {
  color: #fff;
  text-decoration-color: var(--brand-primary);
}
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 0.6rem 0 0.6rem 1.6rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.check-list li:before {
  content: "↯";
  position: absolute;
  left: 0;
  color: var(--brand-secondary);
  font-weight: bold;
}
.sector-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #444;
}
.sector {
  background: var(--ink-800);
  padding: 1.4rem;
  font-weight: 600;
}
.projects {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.project {
  display: grid;
  gap: 0.3rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.project small {
  color: var(--muted);
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat {
  padding: 2rem 1rem;
  border: 1px solid #ffffff20;
}
.stat strong {
  display: block;
  color: var(--brand-secondary);
  font-size: var(--step-2);
}
.cta-band {
  background: var(--brand-primary);
  color: #fff;
  padding: 3rem 0;
}
.cta-flex {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta-band .btn {
  background: #fff;
  color: #111 !important;
  border-color: #fff;
}
.field-grid {
  display: grid;
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.35rem;
}
.field label {
  font-weight: 600;
}
.field .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
  cursor: pointer;
}
.field .checkbox-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.2rem 0 0;
  padding: 0;
  accent-color: var(--brand-primary);
  cursor: pointer;
}
.field .checkbox-label span {
  line-height: 1.45;
}
.consent-field .field-error {
  margin-left: 1.8rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 2px;
  padding: 0.75rem;
  background: #fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid #e91d2e35;
  border-color: var(--brand-primary);
}
.field-error {
  min-height: 1.1em;
  color: #b10f1d;
  font-size: 0.85rem;
}
.form-status {
  padding: 1rem;
  margin-bottom: 1rem;
  display: none;
}
.form-status--after-submit {
  margin: 1rem 0 0;
}
.form-status.show {
  display: block;
}
.form-status.success {
  border-left: 4px solid var(--brand-secondary);
  background: #e9f8eb;
}
.form-status.error {
  border-left: 4px solid var(--brand-primary);
  background: #fff0f1;
}
.hp {
  position: absolute !important;
  left: -10000px !important;
}
.contact-panel {
  background: var(--ink-900);
  color: #fff;
  padding: 2rem;
}
.contact-panel a {
  color: #fff;
}
.map-placeholder {
  aspect-ratio: 16/8;
  border: 1px solid #555;
  margin-top: 2rem;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    45deg,
    #1a1a1d,
    #1a1a1d 10px,
    #202024 10px,
    #202024 20px
  );
}
.page-hero {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--ink-900);
  color: #fff;
}
.values-grid,
.team-grid,
.detail-grid {
  display: grid;
  gap: 1rem;
}
.value,
.team-card,
.detail-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.team-card img {
  aspect-ratio: 1;
  object-fit: cover;
  background: #eee;
  margin-bottom: 1rem;
}
.detail-card ul {
  padding-left: 1.2rem;
}
.detail-card li {
  margin: 0.4rem 0;
}
.table-wrap {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 650px;
}
th,
td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
th {
  background: var(--ink-900);
  color: #fff;
}
.job {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: grid;
  gap: 0.6rem;
  overflow-wrap: anywhere;
}
.job:last-child {
  margin-bottom: 0;
}
.job-info {
  display: grid;
  gap: 0.25rem;
}
.job p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 72ch;
}
.job .check-list {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.job .check-list li {
  padding: 0.2rem 0 0.2rem 1.5rem;
  border-bottom: 0;
}
.job > .btn {
  justify-self: start;
  margin-top: 0.65rem;
}
.job-deadline {
  color: #666;
  font-size: 0.9rem;
}
.site-footer {
  background: var(--ink-900);
  color: #ddd;
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
.footer-grid h2 {
  font-size: 1rem;
  color: #fff;
}
.footer-grid > div > a {
  display: block;
  margin: 0.5rem 0;
}
.brand-light {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #ffffff20;
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.todo {
  color: #bbb;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .why-grid,
  .contact-grid,
  .career-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sector-band {
    grid-template-columns: repeat(3, 1fr);
  }
  .project {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .field-grid.two {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.4fr;
  }
}
@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    display: flex;
    position: static;
    background: none;
    border: 0;
    padding: 0;
    align-items: center;
  }
  .site-nav a {
    padding: 0.6rem 0.9rem;
  }
  .nav-admin {
    margin-block-start: 0;
    margin-inline-start: 0.6rem;
  }
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .container {
    width: min(calc(100% - 4rem), var(--max));
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
