/* ============================================
   ANCHORI INTEL — Shared Styles
   Apple clarity · Aston Martin sophistication · Santa Cruz attitude
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;1,14..32,300&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

/* ---- Tokens ---- */
:root {
  --bg:         #090909;
  --surface:    #0F0F0F;
  --card:       #151515;
  --card-hover: #1A1A1A;
  --border:     rgba(255,255,255,0.07);
  --border-mid: rgba(255,255,255,0.12);

  --text:       #F0F0F0;
  --text-2:     #6A6A6A;
  --text-3:     #2E2E2E;

  --irecall:    #5DD6C8;
  --irecall-bg: rgba(93,214,200,0.08);

  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
}

/* ---- Base ---- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- Nav ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  background: linear-gradient(to bottom, rgba(9,9,9,0.9) 0%, transparent 100%);
}

.nav-logo {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ---- Section Label ---- */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 48px;
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-2); }

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  border: none;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: #CCCCCC;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-mid);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}

.badge-irecall {
  background: var(--irecall-bg);
  color: var(--irecall);
}

.badge-irecall::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--irecall);
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  footer { padding: 40px 24px; flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { justify-content: center; }
}
