/* Polar Vision Marketing — cool/clean palette */

:root {
  --ink:        #0d1b2a;
  --ink-soft:   #40576d;
  --ink-muted:  #6b8199;
  --line:       #dbe6f0;
  --line-soft:  #edf3f8;
  --bg:         #ffffff;
  --bg-tint:    #f4f9fd;
  --accent:     #0b6fb8;
  --accent-dk:  #095e9c;
  --accent-ink: #054d80;
  --max:        1080px;
  --radius:     10px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 700; }
h3 { font-size: 1.08rem; font-weight: 700; }

p { margin: 0 0 1rem; }

a { color: var(--accent); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---- header ---- */
.site-head {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 14px; padding-bottom: 14px;
}
.wordmark {
  font-family: Outfit, sans-serif; font-weight: 800; font-size: 1.05rem;
  letter-spacing: -0.02em; color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
}
.wordmark svg { flex: none; }
.wordmark span { white-space: nowrap; }

/* ---- buttons ---- */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: var(--radius);
  background: var(--accent); color: #fff; font-weight: 600; font-size: .95rem;
  text-decoration: none; border: 1px solid var(--accent);
  transition: background .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.btn-ghost {
  background: transparent; color: var(--accent); border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-tint); border-color: var(--accent); color: var(--accent-ink); }
.btn-sm { padding: 9px 16px; font-size: .88rem; }

/* ---- hero ---- */
.hero { padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 72px); }
.hero p.lead {
  font-size: clamp(1.02rem, 2.1vw, 1.18rem);
  color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.loc { color: var(--ink-muted); font-size: .92rem; margin-top: 1.4rem; }

/* ---- sections ---- */
section { padding: clamp(40px, 6vw, 68px) 0; }
.tint { background: var(--bg-tint); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sec-intro { color: var(--ink-soft); max-width: 54ch; margin-bottom: 2rem; }

/* ---- grid of cards ---- */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---- steps ---- */
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 18px; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start; }
.steps li::before {
  content: counter(s);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: #fff;
  font-family: Outfit, sans-serif; font-weight: 700; font-size: .92rem;
}
.steps h3 { margin: 4px 0 .25em; }
.steps p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* ---- stats ---- */
.stats { display: flex; flex-wrap: wrap; gap: 14px 56px; align-items: flex-start; }
.stat .n {
  font-family: Outfit, sans-serif; font-weight: 800; color: var(--accent-ink);
  font-size: clamp(1.8rem, 4.4vw, 2.5rem); line-height: 1.1; display: block;
}
.stat .l { color: var(--ink-soft); font-size: .95rem; }
.stat-note { color: var(--ink-muted); font-size: .88rem; margin-top: 1.4rem; max-width: 52ch; }

/* ---- fit ---- */
.fit p { max-width: 58ch; color: var(--ink-soft); }
.fit strong { color: var(--ink); font-weight: 600; }

/* ---- contact ---- */
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4rem; }

/* ---- footer ---- */
.site-foot {
  border-top: 1px solid var(--line); padding: 28px 0 36px;
  color: var(--ink-muted); font-size: .9rem;
}
.foot-in { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
.site-foot a { color: var(--ink-muted); }
.site-foot a:hover { color: var(--accent); }

/* ---- legal pages ---- */
.legal { padding: clamp(40px, 6vw, 72px) 0; max-width: 72ch; }
.legal h2 { margin-top: 2rem; font-size: 1.25rem; }
.legal p, .legal li { color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
