/* ---- Minimal, readable, no frameworks ---- */
:root {
  --bg: #0b0c10;
  --card: #111218;
  --muted: #b8c1cc;
  --text: #eaf2ff;
  --accent: #d5137b;
  /* your brand pink */
  --accent-2: #00c2a8;
  /* secondary for chips */
  --ring: rgba(213, 19, 123, .25);
  --radius: 14px;
  --maxw: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100%, var(--maxw));
  margin-inline: auto;
  padding: 24px;
}

.row {
  display: grid;
  gap: 20px;
}

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

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

@media (max-width: 880px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
/* ===== Header Base ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 16, 22, 0.8509803922);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #1b1d28;
}

.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #eaf2ff;
}
.brand .logo {
  object-fit: cover;
  padding: 0;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--ring);
}

/* Desktop nav */
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 10px;
  color: #cfd8e4;
  border: 1px solid transparent;
}

.nav-desktop a:hover {
  color: #fff;
  border-color: #26293a;
  background: #131422;
}

/* Header right */
.hdr-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn.small {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
}

/* Hamburger */
.hamb {
  width: 42px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #26293a;
  background: #151727;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hamb span {
  display: block;
  width: 18px;
  height: 2px;
  background: #eaf2ff;
}

.hamb.close {
  width: 38px;
  height: 34px;
  background: #17192a;
}

.hamb.close span:nth-child(1) {
  transform: translateY(1px) rotate(45deg);
  width: 16px;
}

.hamb.close span:nth-child(2) {
  transform: translateY(-1px) rotate(-45deg);
  width: 16px;
}

/* Hide desktop nav on small screens */
@media (max-width: 920px) {
  .nav-desktop {
    display: none;
  }
}
/* ===== Mobile Menu ===== */
.mobile-wrap {
  position: fixed;
  inset: 0;
  display: none;
  grid-template-columns: 1fr;
}
.mobile-wrap.open {
  z-index: 100;
}

.mobile-scrim {
  grid-area: 1/1;
  background: rgba(0, 0, 0, 0.5333333333);
  border: none;
  display: none;
}

.mobile-panel {
  grid-area: 1/1;
  margin-left: auto;
  width: min(90vw, 420px);
  height: 100dvh;
  background: #0c0d14;
  border-left: 1px solid #1b1d28;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  transform: translateX(100%);
  transition: transform 0.28s ease-in-out;
}

.mobile-wrap.open {
  display: grid;
}
.mobile-wrap.open .mobile-panel {
  transform: translateX(0);
}
.mobile-wrap.open .mobile-scrim {
  display: block;
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.nav-mobile a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px;
  color: #eaf2ff;
}

.nav-mobile a .pill {
  margin-left: auto;
}

.mobile-contact h4 {
  margin: 10px 0 6px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.contact-list a {
  color: #cfd8e4;
}

.btn.full {
  width: 100%;
  text-align: center;
}

@media (min-width: 921px) {
  .hamb {
    display: none;
  }
}
header.notice {
  background: #0f1016;
  border-bottom: 1px solid #1b1d28;
  font-size: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #12131a;
  color: var(--muted);
  border: 1px solid #1b1d28;
}

.hero {
  padding: 56px 0 28px;
}

.h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

.sub {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
}

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

.btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #2b2e3d;
  background: #161823;
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 0 6px var(--ring);
}

.btn.secondary {
  background: #151727;
}

.proof {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof .chip {
  border-color: #212435;
}

section {
  padding: 36px 0;
}

.band {
  background: linear-gradient(180deg, #0c0d14, #0b0c10);
  border-top: 1px solid #161827;
  border-bottom: 1px solid #161827;
}

.card {
  background: var(--card);
  border: 1px solid #1a1b25;
  border-radius: var(--radius);
  padding: 18px;
}

.card h3 {
  margin: 6px 0 8px;
  font-size: 20px;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #12131a;
  border: 1px solid #232532;
  color: #aeb7c1;
}

.logo-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0.85;
}

.logo {
  padding: 10px 0;
  color: #9aa5b1;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.stat {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed #242638;
}

.stat .num {
  font-size: 32px;
  font-weight: 800;
}

.work-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.work-card .metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.faq dt {
  font-weight: 700;
  margin: 12px 0 6px;
}

.faq dd {
  margin: 0 0 12px;
  color: var(--muted);
}

footer {
  padding: 28px 0 50px;
  color: var(--muted);
  border-top: 1px solid #161827;
}

/* ---- scroll animations ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- small details ---- */
.kpi {
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.divider {
  height: 1px;
  background: #161827;
  margin: 10px 0 18px;
}

.cta-band {
  text-align: center;
  background: #10121b;
  border: 1px solid #1a1b26;
  border-radius: 16px;
  padding: 26px;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0;
  border-radius: 12px;
  border: 1px solid #26293c;
  background: #0f1120;
  color: var(--text);
}

form button {
  width: 100%;
  margin-top: 8px;
}

.small {
  font-size: 12px;
  color: #9eabb7;
}
