:root {
  --bg: #fafaf9; --bg-card: #ffffff; --bg-section: #f4f4f3; --bg-dark: #0a0a0a;
  --ink: #0a0a0a; --ink-soft: #1f1f1f; --text: #404040; --text-mute: #737373; --text-faint: #a3a3a3;
  --border: #e5e5e5; --border-strong: #d4d4d4;
  --accent: #14532d; --accent-light: #dcfce7; --accent-dark: #052e16; --accent-bright: #86efac;
  --display: 'Schibsted Grotesk', system-ui, sans-serif;
  --body: 'Geist', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--bg); color: var(--ink-soft); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav#mainNav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 32px; display: flex; justify-content: space-between; align-items: center; background: rgba(250,250,249,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
nav#mainNav.scrolled { background: rgba(255,255,255,0.96); border-bottom-color: var(--border); }
.logo-block { display: flex; align-items: center; gap: 16px; }
.logo-square { width: 72px; height: 72px; background: var(--bg-dark); border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03); transition: transform 0.3s ease; flex-shrink: 0; }
.logo-square:hover { transform: scale(1.04); }
.logo-square img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1.05; letter-spacing: -0.025em; }
.logo-text small { display: block; font-family: var(--body); font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-mute); margin-top: 4px; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 14px; font-weight: 500; transition: color 0.2s ease; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: center; transition: transform 0.25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { padding: 11px 22px; background: var(--ink); color: var(--bg); border: none; cursor: pointer; font-size: 13px; font-weight: 500; border-radius: 100px; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-cta::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 0 rgba(74,222,128,0.6); animation: navpulse 2s infinite; }
@keyframes navpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); } 50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); } }
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle svg { width: 28px; height: 28px; color: var(--ink); }

/* BTN */
.btn { padding: 14px 22px; border-radius: 100px; border: none; font-family: var(--body); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; line-height: 1; white-space: nowrap; text-decoration: none; }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-light { background: var(--bg-card); color: var(--ink); border: 1px solid var(--border-strong); }
.btn-light:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(20,83,45,0.25); }
.btn-disabled { background: var(--bg-section); color: var(--text-faint); cursor: not-allowed; pointer-events: none; }
.btn::after { content: '→'; transition: transform 0.2s ease; }
.btn:hover::after { transform: translateX(2px); }
.btn.no-arrow::after { display: none; }

/* FOOTER */
footer { background: var(--bg-dark); color: #d4d4d4; padding: 64px 32px 32px; margin-top: 80px; }
.footer-grid { max-width: 1400px; margin: 0 auto 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo-block { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo-square { width: 64px; height: 64px; background: white; border-radius: 14px; padding: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-square img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand h4 { font-family: var(--display); font-size: 22px; color: white; font-weight: 700; letter-spacing: -0.02em; }
.footer-brand p { color: #a3a3a3; font-size: 14px; max-width: 360px; line-height: 1.6; margin-top: 14px; }
.footer-col h5 { font-family: var(--display); font-size: 14px; color: white; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.01em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #a3a3a3; font-size: 13px; transition: color 0.2s ease; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 28px; border-top: 1px solid #262626; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: #737373; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 16px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  nav#mainNav { padding: 10px 18px; }
  .logo-square { width: 56px; height: 56px; }
  .logo-text { font-size: 18px; }
  .logo-text small { font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
