/* ==========================================================================
   Components — reusable UI blocks (nav, logo, cards, values, contact)
   ========================================================================== */

/* Navigation */
.nav-hide { transform: translateY(-100%); }
.nav-show { transform: translateY(0); }

nav {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Brand logo */
.logo {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-footer {
  font-size: 22px;
}

.logo b { font-weight: 900; }
.logo span { font-weight: 400; }

/* Vision half-cards */
.hcbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hcbg.on { opacity: 1; }

.hcov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(18, 18, 18, 0.9) 0%,
    rgba(18, 18, 18, 0.78) 45%,
    rgba(18, 18, 18, 0.93) 100%
  );
}

/* Values list */
.val {
  border-left: 1px solid #D4D4D4;
  padding-left: 24px;
  transition: border-color 0.4s ease;
}

.val:hover {
  border-left-color: #D4A849;
}

/* Contact links */
.clink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.clink:hover { color: #D4A849; }
.clink .iconify { font-size: 17px; opacity: 0.5; }

/* Network teaser */
.network-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.04);
}

.network-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 8, 0.82) 0%,
    rgba(7, 7, 8, 0.55) 45%,
    rgba(7, 7, 8, 0.88) 100%
  );
}

.network-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.network-cta:hover {
  color: #D4A849;
  border-color: rgba(212, 168, 73, 0.55);
  background: rgba(212, 168, 73, 0.08);
}

/* Team intake CTA (Contact) */
.intake-block {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.intake-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.intake-lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 28rem;
  margin: 0 auto 22px;
}

.llm-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.llm-btn {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
}

.llm-btn:hover {
  color: #D4A849;
  border-color: rgba(212, 168, 73, 0.55);
  background: rgba(212, 168, 73, 0.08);
  transform: translateY(-1px);
}

.llm-btn:focus-visible {
  outline: 2px solid rgba(212, 168, 73, 0.7);
  outline-offset: 2px;
}

.llm-svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1A1A1A;
  color: #F8F8F6;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  z-index: 100;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}
