:root {
  --bg: #070914;
  --bg2: #0b1023;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.65);
  --brand: #2f8f90;
  --brand2: #63d4d6;
  --brand3: #a78bfa;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --text-grad: linear-gradient(135deg, var(--brand2), var(--brand), var(--brand3));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, rgba(47, 143, 144, 0.35), transparent 55%),
    radial-gradient(900px 700px at 80% 10%, rgba(99, 212, 214, 0.25), transparent 55%),
    radial-gradient(900px 700px at 40% 90%, rgba(47, 143, 144, 0.2), transparent 60%), linear-gradient(var(--bg), var(--bg2));
  min-height: 100vh;
}

@supports (-webkit-background-clip: text) {
  .brand-title strong {
    --shine-from: 100%;
    --shine-to: 0%;
    background-image: linear-gradient(
      110deg,
      var(--brand2) 0%,
      var(--brand) 25%,
      rgba(255, 255, 255, 0.95) 45%,
      var(--brand) 60%,
      var(--brand2) 100%
    );
    background-size: 280% 100%;
    background-position: var(--shine-from) 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(99, 212, 214, 0.22);
    animation: cp-brand-shine 2.8s linear infinite;
  }

  [dir="rtl"] .brand-title strong {
    --shine-from: 0%;
    --shine-to: 100%;
  }

  .hero h1 {
    --shine-from: 100%;
    --shine-to: 0%;
    background-image: linear-gradient(
      110deg,
      var(--brand2) 0%,
      var(--brand) 25%,
      rgba(255, 255, 255, 0.95) 45%,
      var(--brand) 60%,
      var(--brand2) 100%
    );
    background-size: 280% 100%;
    background-position: var(--shine-from) 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 28px rgba(99, 212, 214, 0.18), 0 0 18px rgba(167, 139, 250, 0.12);
    animation: cp-brand-shine 3.1s linear infinite;
  }

  [dir="rtl"] .hero h1 {
    --shine-from: 0%;
    --shine-to: 100%;
  }

  .section-title h2 {
    background: var(--text-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 28px rgba(99, 212, 214, 0.18), 0 0 18px rgba(167, 139, 250, 0.12);
  }
}

@keyframes cp-brand-shine {
  0% {
    background-position: var(--shine-from) 50%;
  }
  100% {
    background-position: var(--shine-to) 50%;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 20, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: url("/assets/hala-01-1.png") center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.brand-title {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-title strong {
  font-size: 14px;
  letter-spacing: 0.35px;
}

.brand-title span {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 160ms ease;
}

.nav a:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav a.active {
  background: rgba(47, 143, 144, 0.14);
  border-color: rgba(47, 143, 144, 0.35);
  color: rgba(255, 255, 255, 0.95);
}

.menu-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 10px 12px;
}

.hero {
  padding: 80px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-grid--single {
  grid-template-columns: 1fr;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.35px;
}

.kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: 0.5px;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 13px;
  transition: all 160ms ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 40px rgba(47, 143, 144, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(47, 143, 144, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-inner {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 48px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.section-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.65;
  max-width: 560px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.25px;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

.work-split {
  display: flex;
  gap: 14px;
  align-items: center;
}

.work-split__media {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-split__media img {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.work-split__body {
  flex: 1 1 50%;
  min-width: 0;
}

.work-split__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.pill i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

@media (max-width: 720px) {
  .work-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-split__media {
    width: 100%;
    justify-content: flex-start;
  }

  .work-split__media img {
    max-width: 110px;
  }
}

.cta {
  padding: 34px 0 64px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(47, 143, 144, 0.22), rgba(99, 212, 214, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.cta-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.7;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-item {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item strong {
  font-size: 13px;
  letter-spacing: 0.25px;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .menu-btn {
    display: inline-flex;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 62px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10, 14, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }
}
