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

html,
body {
  height: 100%;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.02em;
  line-height: 23px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.panel-open {
  overflow: hidden;
}

.page-reveal {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.5s ease calc(var(--d, 0ms)),
    transform 0.5s ease calc(var(--d, 0ms));
}

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

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 115px 0;
}

.time {
  font-size: 14px;
  color: #000000;
  transition: opacity 0.4s ease;
}

.socials {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-link {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.social-link:hover {
  color: #444444;
}

.nav-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: #000000;
  cursor: pointer;
}

.availability {
  display: flex;
  align-items: center;
  gap: 6px;
}

.availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

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

.availability-text {
  font-size: 11px;
  color: #888888;
  font-weight: 400;
  letter-spacing: 0;
}

.main-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 44px 115px 32px;
  min-height: calc(100vh - 88px - 40px);
  font-weight: 400;
  gap: 40px;
}

.col-left {
  width: 602px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.noform-logo {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: 50px;
}

.content {
  width: 100%;
}

.para {
  font-size: 14px;
  color: #000000;
  margin-bottom: 14px;
  overflow-wrap: break-word;
}

.signature {
  width: auto;
  height: auto;
  margin-top: 12px;
  display: block;
}

.principal {
  font-size: 12px;
  color: #000000;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}

.lagos-trigger {
  border-bottom: 1px dashed #cccccc;
  transition: border-color 0.2s ease;
}

.lagos-trigger:hover {
  border-color: #888888;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.price {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

.initiate {
  width: 131px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.initiate::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 80%
  );
  transition: left 0s;
}

.initiate:hover::after {
  left: 160%;
  transition: left 0.5s ease;
}

.initiate:hover {
  opacity: 0.9;
}

.col-right {
  width: 200px;
  flex-shrink: 0;
  padding-top: 2px;
}

.clients-label {
  font-size: 11px;
  color: #aaaaaa;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.clients-list {
  list-style: none;
}

.client-item {
  font-size: 14px;
  color: #343434;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease, padding-left 0.2s ease;
  position: relative;
}

.client-item:first-child {
  border-top: 1px solid #f0f0f0;
}

.client-item:hover {
  color: #888888;
  padding-left: 4px;
}

.page-footer {
  padding: 0 115px 32px;
  display: flex;
  align-items: center;
}

.footer-mark {
  font-size: 11px;
  color: #cccccc;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ── Tooltips ─────────────────────────────────────────────── */
.client-tooltip,
.lagos-tooltip,
.sig-tooltip {
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  will-change: opacity, transform, filter;
}

.client-tooltip {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px 14px;
  min-width: 130px;
  background: rgba(129, 129, 129, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 7px;
  box-shadow:
    0 2px 6px  rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.10);
  transform: translateY(4px) scale(0.97);
  filter: blur(3px);
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.client-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.tooltip-year {
  font-size: 11px;
  font-weight: 400;
  color: #676767;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.tooltip-codes {
  font-size: 12px;
  font-weight: 500;
  color: #676767;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.lagos-tooltip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 14px;
  min-width: 120px;
  background: rgba(129, 129, 129, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 7px;
  box-shadow:
    0 2px 6px  rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.10);
  transform: translateY(4px) scale(0.97);
  filter: blur(3px);
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.lagos-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.lagos-city {
  font-size: 12px;
  font-weight: 500;
  color: #676767;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.lagos-country {
  font-size: 11px;
  font-weight: 400;
  color: #676767;
  letter-spacing: 0.01em;
  line-height: 1.3;
  opacity: 0.7;
}

.lagos-coords {
  font-size: 10px;
  font-weight: 400;
  color: #676767;
  letter-spacing: 0.02em;
  line-height: 1.3;
  opacity: 0.5;
  margin-top: 4px;
}

.sig-tooltip {
  padding: 8px 12px;
  background: rgba(129, 129, 129, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 7px;
  box-shadow:
    0 2px 6px  rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.10);
  font-size: 11px;
  font-weight: 400;
  color: #676767;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform: translateY(4px) scale(0.97);
  filter: blur(3px);
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.sig-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* ── Services backdrop ────────────────────────────────────── */
.services-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 200;
  transition: background 0.32s ease;
}

.services-backdrop.is-open {
  background: rgba(0, 0, 0, 0.08);
}

/* ── Services panel ───────────────────────────────────────── */
.services-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
  max-width: 100vw;
  background: #ffffff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 0 0 #f0f0f0, -12px 0 40px rgba(0, 0, 0, 0.06);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.services-panel.is-open {
  transform: translateX(0);
}

.services-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* ── Panel header ─────────────────────────────────────────── */
.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.services-title {
  font-size: 11px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.services-close:hover {
  color: #000000;
}

/* ── Services list ────────────────────────────────────────── */
.services-list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.services-list::-webkit-scrollbar {
  display: none;
}

/* ── Service accordion item ───────────────────────────────── */
.service-item {
  border-bottom: 1px solid #f4f4f4;
}

.service-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: inherit;
  text-align: left;
  transition: background 0.15s ease;
}

.service-trigger:hover {
  background: #fafafa;
}

.service-item.is-open .service-trigger {
  background: #fafafa;
}

.service-index {
  font-size: 10px;
  font-weight: 400;
  color: #cccccc;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 20px;
}

.service-name {
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  flex: 1;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-chevron {
  flex-shrink: 0;
  color: #cccccc;
  display: flex;
  align-items: center;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), color 0.15s ease;
}

.service-item.is-open .service-chevron {
  transform: rotate(180deg);
  color: #888888;
}

.service-trigger:hover .service-chevron {
  color: #888888;
}

/* ── Service body ─────────────────────────────────────────── */
.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-desc {
  font-size: 12px;
  color: #888888;
  font-weight: 400;
  line-height: 1.6;
  padding: 0 32px 14px 68px;
}

.service-deliverables {
  list-style: none;
  padding: 0 32px 20px 68px;
  display: flex;
  font-weight: 400;
  flex-direction: column;
  gap: 0;
}

.service-deliverables li {
  font-size: 12px;
  color: #444444;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 1px solid #f8f8f8;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-deliverables li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d0d0d0;
  flex-shrink: 0;
}

.service-deliverables li:last-child {
  border-bottom: none;
}

/* ── Panel footer ─────────────────────────────────────────── */
.services-footer {
  padding: 20px 32px 28px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.services-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 80%
  );
  transition: left 0s;
}

.services-cta:hover::after {
  left: 160%;
  transition: left 0.5s ease;
}

.services-cta:hover {
  opacity: 0.88;
}

/* ── Tablet ───────────────────────────────────────────────── */
@media (max-width: 980px) {
  .main-wrap {
    flex-direction: column;
  }

  .col-left {
    width: 100%;
  }

  .col-right {
    width: 100%;
    max-width: 320px;
    padding-top: 0;
    margin-top: 8px;
  }

  .client-tooltip,
  .lagos-tooltip,
  .sig-tooltip {
    display: none;
  }

  .services-panel {
    width: 100vw;
  }
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  .time {
    pointer-events: none;
    display: none;
  }

  .nav-btn.social-link {
    display: block;
  }

  .top-bar {
    padding: 44px 23px 0;
    color: #000000;
    -webkit-text-fill-color: #000000;
  }

  .time {
    color: #000000;
    -webkit-text-fill-color: #000000;
  }

  .main-wrap {
    padding: 44px 23px 32px;
  }

  .page-footer {
    padding: 0 23px 32px;
  }

  .service-trigger {
    padding: 16px 20px;
  }

  .service-desc,
  .service-deliverables {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-header {
    padding: 24px 20px 16px;
  }

  .services-footer {
    padding: 16px 20px 24px;
  }
}
