:root {
  --bg-0: #0b0b0d;
  --bg-1: #101012;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #e9ecf1;
  --muted: #9aa5b3;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #f0764e;
  --accent-soft: rgba(240, 118, 78, 0.2);
  --success: #61c89e;
  --mono: "IBM Plex Mono", monospace;
  --display: "Space Grotesk", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
}

/* ── Beta / Dev Banner ── */
.beta-banner {
  background: linear-gradient(90deg, rgba(240, 118, 78, 0.12), rgba(240, 118, 78, 0.06));
  border-bottom: 1px solid rgba(240, 118, 78, 0.18);
  text-align: center;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 11;
  position: relative;
}

.beta-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  animation: betaPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes betaPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.beta-banner-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 118, 78, 0.85);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
}

html {
  background: #101012;
}

body {
  font-family: var(--body);
  color: var(--text);
  background-color: #101012;
  background:
    radial-gradient(1200px 680px at 85% -20%, rgba(240, 118, 78, 0.18), transparent 65%),
    radial-gradient(900px 520px at -20% 40%, rgba(240, 118, 78, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: -1;
}

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(240, 118, 78, 0.24), transparent 70%);
  transform: translate(-50%, -50%);
  left: var(--mx, 50%);
  top: var(--my, 40%);
  pointer-events: none;
  z-index: -1;
  transition: left 0.25s ease, top 0.25s ease;
  filter: blur(24px);
}

.shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1), transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(12, 15, 20, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  height: 80px;
  width: auto;
}

.brand-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 38px;
}

.menu-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  cursor: pointer;
}

.nav a {
  font-family: var(--display);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.ghost-btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  cursor: pointer;
}

main {
  padding-top: 32px;
  padding-bottom: 68px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 34px;
  min-height: calc(100dvh - 78px);
  padding: 120px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.eyebrow::after {
  content: "";
  width: 52px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.9vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 .muted {
  color: #8f8f95;
  display: block;
  font-weight: 600;
}

.hero p {
  color: #c7c7cb;
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 28px;
}

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

.hero-actions .primary-btn,
.hero-actions .ghost-btn {
  min-height: 46px;
}

.primary-btn {
  border: none;
  background: linear-gradient(110deg, #f0764e, #e35f35);
  color: #101012;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(240, 118, 78, 0.28);
}

.hero-right {
  min-height: 320px;
  display: flex;
  align-items: center;
}

.pattern-lines-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.lines-column {
  flex-grow: 1;
  width: 100%;
}

.line-container {
  width: 100%;
  height: 8px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  margin: 16px 0;
}

.dashed-line {
  position: absolute;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right,
      #e87052 20px,
      transparent 20px 30px,
      #e87052 30px 40px,
      transparent 40px 60px,
      #e87052 60px 75px,
      transparent 75px 100px,
      #e87052 100px 160px,
      transparent 160px 180px);
  background-size: 200px 100%;
}

@keyframes moveLine {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.moving-line {
  animation: moveLine 25s linear infinite;
}

.moving-line-reverse {
  animation: moveLine 25s linear infinite reverse;
}

.moving-line-2 {
  animation-duration: 35s;
}

.moving-line-reverse-2 {
  animation-duration: 35s;
}

.moving-line-3 {
  animation-duration: 40s;
}

.moving-line-reverse-3 {
  animation-duration: 40s;
}

.moving-line-4 {
  animation-duration: 50s;
}

.moving-line-reverse-4 {
  animation-duration: 50s;
}

.section {
  margin-top: 104px;
}

.clients-section {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.clients-section .section-head {
  margin-bottom: 18px;
  align-items: flex-start;
}

.clients-section .section-title {
  color: #ffffff;
}

.clients-section .section-sub {
  color: rgba(233, 236, 241, 0.74);
  max-width: 58ch;
}

.clients-section .eyebrow {
  color: #ffffff;
}

.clients-section .eyebrow::after {
  background: #ffffff;
}

.clients-panel {
  background: #ffffff;
  border: 1px solid rgba(15, 15, 18, 0.08);
  border-radius: 999px;
  padding: 8px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.clients-grid {
  display: none;
}

.clients-marquee {
  display: block;
  overflow: hidden;
}

.clients-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 36px;
  animation: clientMarquee 30s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-card {
  min-height: 90px;
  width: 170px;
  flex: 0 0 170px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.client-card:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: none;
}

.client-card img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.client-caption {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 236, 241, 0.62);
}

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

.section-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  max-width: 64ch;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-card {
  border: 1px solid transparent;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(240, 118, 78, 0.45);
  transform: translateX(3px);
}

.service-card.active {
  border-color: var(--accent);
  background: linear-gradient(120deg, rgba(240, 118, 78, 0.14), rgba(255, 255, 255, 0.05));
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

.service-id {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.service-name {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-detail {
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.service-detail h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.service-detail p {
  color: #c7c7cb;
  max-width: 56ch;
  line-height: 1.7;
}

.tag-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 100px;
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #cdcdcf;
  text-transform: uppercase;
}

.timeline {
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 45px;
  right: 45px;
  top: 58px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-right: 8px;
}

.step-dot {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #121214;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  color: #c8c8cc;
  margin-bottom: 14px;
  transition: border-color 0.24s ease, color 0.24s ease;
}

.step:hover .step-dot {
  border-color: var(--accent);
  color: var(--accent);
}

.step h4 {
  font-family: var(--display);
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.step p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.cta {
  margin-top: 72px;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 42px;
  background:
    radial-gradient(380px 220px at 90% 0%, rgba(240, 118, 78, 0.17), transparent 70%),
    rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.cta h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta p {
  color: #c7c7cb;
  max-width: 52ch;
}

.mail {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 12px;
  display: inline-block;
  text-decoration: none;
}

.mail:hover {
  text-decoration: underline;
}

.cta-form {
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  border-radius: 14px;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.26);
  color: var(--text);
  padding: 11px 12px;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 118, 78, 0.18);
}

textarea.field {
  min-height: 110px;
  resize: vertical;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.whatsapp-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn:hover {
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-2px);
}

.helper-text {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  background: #25d366;
  color: #04140b;
  text-decoration: none;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsappPulse 2.1s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
}

.floating-whatsapp::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0b0b0d;
  opacity: 0.75;
}

.modal-overlay.hidden {
  display: none !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-card {
  width: min(640px, 100%);
  border-radius: 16px;
  background: #131315;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 22px;
  animation: modalIn 0.22s ease;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.modal-title {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.modal-sub {
  color: var(--muted);
  font-size: 0.94rem;
}

.modal-close {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-copy {
  color: #b0b0b4;
  font-size: 0.9rem;
}

.footer-link {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.footer-link:hover {
  text-decoration: underline;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 76px);
    padding: 16px 0 42px;
  }

  .hero-right {
    min-height: 240px;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

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

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: grid;
    width: 100%;
    grid-column: 1 / -1;
    gap: 10px;
    padding-top: 8px;
  }

  .nav.open a,
  .nav.open .ghost-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav.open .ghost-btn {
    justify-content: center;
    width: 100%;
  }

  .hero {
    min-height: calc(100svh - 70px);
    padding: 12px 0 34px;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 8.2vw, 2.45rem);
  }

  .hero p {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .primary-btn,
  .hero-actions .ghost-btn {
    width: 100%;
    justify-content: center;
  }

  .timeline {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .clients-section {
    margin-top: 72px;
  }

  .clients-panel {
    border-radius: 28px;
    padding: 0px 20px;
    overflow: hidden;
  }

  .clients-grid {
    display: none;
  }

  .clients-marquee {
    display: block;
    overflow: hidden;
  }

  .clients-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 14px;
    animation: clientMarquee 18s linear infinite;
  }

  .clients-track:hover {
    animation-play-state: paused;
  }

  .client-card {
    min-height: 72px;
    width: 150px;
    flex: 0 0 150px;
    padding: 8px 12px;
  }

  .client-card img {
    height: 100px;
    width: 100%;
  }

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

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .modal-card {
    padding: 16px;
  }

  .modal-title {
    font-size: 1.15rem;
  }

  .section {
    margin-top: 68px;
  }

  .service-card,
  .service-detail {
    padding: 16px;
  }

  .page-glow {
    display: none;
  }

  .footer {
    padding-bottom: 70px;
  }
}