/* ============================================================
   akeembuilds.com — shared design system
   ============================================================ */

:root {
  /* surfaces */
  --bg:            #0d0d14;  /* near-black, blue undertone */
  --surface:       #13131f;  /* card backgrounds */
  --surface-2:     #15151f;
  --border:        #2a2a3e;  /* card borders */
  --divider:       #1e1e2e;

  /* accents */
  --teal:          #2dd4bf;
  --teal-dim:      #25b3a1;
  --blue:          #60a5e8;
  --purple:        #a78bfa;
  --amber:         #e6b250;
  --coral:         #f87171;

  /* text */
  --text:          #e8e8f0;
  --muted:         #8888a8;
  --faint:         #555570;

  /* radii */
  --r-card:        10px;
  --r-meta:        8px;
  --r-pill:        999px;

  /* type */
  --f-head: 'Syne', system-ui, sans-serif;
  --f-body: 'DM Sans', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 960px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(45,212,191,0.25); color: #fff; }

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

img { max-width: 100%; display: block; }

/* ---------- shell ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--bg) 60%, rgba(13,13,20,0));
}
.wordmark {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.wordmark .dot { color: var(--teal); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 0;
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.btn--teal {
  background: var(--teal);
  color: #08221e;
  box-shadow: 0 0 0 0 rgba(45,212,191,0);
}
.btn--teal:hover {
  background: var(--teal-dim);
  box-shadow: 0 8px 26px -10px rgba(45,212,191,0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 0.5px solid var(--border);
}
.btn--ghost:hover { border-color: #3a3a52; background: rgba(255,255,255,0.02); }
.btn--lg { font-size: 15.5px; padding: 14px 26px; }

/* ---------- pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.01em;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
  border: 0.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  white-space: nowrap;
}
.pill--teal   { color: #7fe6d8; border-color: rgba(45,212,191,0.32);  background: rgba(45,212,191,0.07); }
.pill--blue   { color: #9cc8f3; border-color: rgba(96,165,232,0.32);  background: rgba(96,165,232,0.07); }
.pill--purple { color: #c4b1fb; border-color: rgba(167,139,250,0.32); background: rgba(167,139,250,0.08); }
.pill--amber  { color: #eecb8a; border-color: rgba(230,178,80,0.32);  background: rgba(230,178,80,0.08); }

/* ---------- section label ---------- */
.label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--faint);
}

/* ---------- divider ---------- */
.divider { height: 0; border-top: 0.5px solid var(--divider); margin: 0; }

/* ---------- fade-in ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- footer cta ---------- */
.footer-cta {
  text-align: center;
  padding: 96px 0 110px;
}
.footer-cta h2 {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--teal);
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}
.footer-cta .fine {
  margin-top: 22px;
  color: var(--faint);
  font-size: 13.5px;
}

/* image placeholder slot */
.imgslot {
  position: relative;
  border-radius: var(--r-card);
  border: 0.5px solid var(--border);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0 10px, rgba(255,255,255,0.04) 10px 20px),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}
.imgslot span {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--faint);
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  background: rgba(13,13,20,0.6);
}

.footnote {
  font-size: 12.5px;
  color: var(--faint);
  line-height: 1.7;
  border: 0.5px solid var(--divider);
  border-radius: var(--r-meta);
  padding: 16px 18px;
}
