/* IkiHub Marketing — base styles for Astro pages */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:          #0a0a12;
  --fg:          #ffffff;
  --fg-70:       rgba(255,255,255,0.70);
  --fg-50:       rgba(255,255,255,0.50);
  --fg-30:       rgba(255,255,255,0.30);
  --violet:      #a78bfa;
  --violet-dark: #7c3aed;
  --border:      rgba(255,255,255,0.10);
  --nav-h:       64px;
  --font-body:   'Inter', sans-serif;
  --font-display:'Sora', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--violet); text-decoration: underline; }
a:hover { color: #c4b5fd; }

/* ─── Nav ─────────────────────────────────────────────── */
.iki-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,18,0.80);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  justify-content: space-between;
  gap: 1rem;
}

.iki-nav__logo img { height: 40px; width: auto; display: block; }

.iki-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.iki-nav__link {
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-70);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.iki-nav__link:hover { color: var(--fg); background: rgba(255,255,255,0.06); }

.iki-nav__cta {
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--violet-dark);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.iki-nav__cta:hover { background: #6d28d9; color: #fff; }

/* ─── Page content ────────────────────────────────────── */
.iki-page {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 1.25rem 4rem;
}

.iki-content {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.iki-content h1 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.iki-content .meta {
  color: var(--fg-50);
  font-size: 0.875rem;
}

.iki-section { display: flex; flex-direction: column; gap: 0.75rem; color: var(--fg-70); font-size: 0.875rem; line-height: 1.65; }
.iki-section h2 { font-size: 1rem; font-weight: 600; color: var(--fg); }

.iki-section ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.iki-section strong { color: rgba(255,255,255,0.85); }

/* footer */
.iki-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--fg-30);
  font-size: 0.75rem;
}
