/* ============================================================
   MasterByte.ca — site styles
   Light, professional, trustworthy. Palette driven by CSS vars
   set from the Tweaks island (direction / accent / corners).
   ============================================================ */

:root {
  /* These are set live by the Tweaks island; values here are the
     "Clear Sky" defaults so the page looks right before JS runs. */
  --bg: #ffffff;
  --surface: #f5f8fc;
  --surface-2: #eaf0f8;
  --ink: #0e1b2e;
  --ink-2: #213650;
  --muted: #5b6c82;
  --border: #e3e9f2;
  --accent: #2f6bed;

  /* Derived */
  --accent-strong: color-mix(in oklab, var(--accent), black 16%);
  --accent-soft: color-mix(in oklab, var(--accent), white 86%);
  --accent-line: color-mix(in oklab, var(--accent), white 60%);
  --accent-ink: #ffffff;
  --ring: color-mix(in oklab, var(--accent), white 64%);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1180px;
  --shadow-sm: 0 1px 2px rgba(16, 27, 46, 0.04), 0 2px 8px rgba(16, 27, 46, 0.04);
  --shadow-md: 0 4px 14px rgba(16, 27, 46, 0.07), 0 18px 48px rgba(16, 27, 46, 0.07);
  --shadow-lg: 0 10px 30px rgba(16, 27, 46, 0.10), 0 30px 80px rgba(16, 27, 46, 0.10);
}

:root[data-corners="soft"]  { --radius: 12px; --radius-sm: 8px;  --radius-lg: 16px; }
:root[data-corners="sharp"] { --radius: 3px;  --radius-sm: 3px;  --radius-lg: 4px; }

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* Optional background dot pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  background-image: radial-gradient(color-mix(in oklab, var(--ink), transparent 92%) 1px, transparent 1px);
  background-size: 26px 26px;
}
:root[data-pattern="on"] body::before { opacity: 1; }

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

/* ── Shared type helpers ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 18px; }
h2.title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
}

section { position: relative; z-index: 1; }
.section-pad { padding: 96px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--bg); color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ── NAV ── */
nav.bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--bg), transparent 18%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid color-mix(in oklab, var(--border), transparent 30%);
}
nav.bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 18px; }

/* ── Logo / wordmark ── */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo .mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.5px;
  padding: 7px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
:root[data-corners="sharp"] .logo .mark { border-radius: 3px; }
.logo .mark i { border-radius: 1.5px; background: color-mix(in oklab, var(--accent-ink), transparent 78%); }
.logo .mark i.on { background: var(--accent); }
.logo .word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.logo .word b { font-weight: 600; color: var(--accent); }
.logo .word span { color: var(--muted); font-weight: 500; }

/* ── HERO ── */
.hero { padding: 84px 0 72px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1f9d57;
  box-shadow: 0 0 0 3px color-mix(in oklab, #1f9d57, transparent 78%);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead {
  margin-top: 24px;
  font-size: 1.15rem;
  line-height: 1.62;
  color: var(--muted);
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 44px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-trust .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .stat .n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.hero-trust .stat .n em { font-style: normal; color: var(--accent); }
.hero-trust .stat .l {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.hero-trust .div { width: 1px; background: var(--border); align-self: stretch; }

/* Hero visual — abstract "byte" board */
.hero-visual { position: relative; }
.board {
  position: relative;
  background:
    linear-gradient(160deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.board::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in oklab, var(--ink), transparent 94%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklab, var(--ink), transparent 94%) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 80%);
  pointer-events: none;
}
.board-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
}
.board-head .lights { display: flex; gap: 6px; }
.board-head .lights i { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.board-head .lights i:first-child { background: color-mix(in oklab, var(--accent), white 30%); }
.board-head .tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.board-rows { position: relative; display: flex; flex-direction: column; gap: 12px; }
.brow {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  box-shadow: var(--shadow-sm);
}
.brow .ico {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}
.brow .ico svg { width: 19px; height: 19px; }
.brow .meta { flex: 1; min-width: 0; }
.brow .meta .t { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.brow .meta .s { font-size: 0.76rem; color: var(--muted); }
.brow .state {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f9d57;
  background: color-mix(in oklab, #1f9d57, transparent 88%);
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.board-foot {
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.board-foot .uptime { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }
.board-foot .uptime b { color: var(--ink); }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 26px; }
.bars i { width: 6px; border-radius: 2px; background: var(--accent-line); }
.bars i.hi { background: var(--accent); }

.board-badge {
  position: absolute;
  right: -14px; bottom: 28px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 3;
}
.board-badge svg { width: 22px; height: 22px; color: color-mix(in oklab, var(--accent), white 22%); }
.board-badge .bb-n { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1; }
.board-badge .bb-l { font-size: 0.68rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }

/* ── TOOLS / credentials strip ── */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.strip .wrap { padding-top: 30px; padding-bottom: 30px; }
.strip-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
}
.strip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
}
.strip-row .tool {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  opacity: 0.85;
}
.strip-row .tool svg { width: 18px; height: 18px; color: var(--accent); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-sm);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ring); }
.svc .ico {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.svc .ico svg { width: 25px; height: 25px; }
.svc h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
.svc .price {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc .price b { color: var(--accent); font-weight: 700; }

/* ── WHY ── */
#why { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 4px; }
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-item .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  padding-top: 3px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

.cred-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 92px;
}
.cred-card .eyebrow { margin-bottom: 22px; }
.cred-list { display: flex; flex-direction: column; gap: 12px; }
.cred {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.cred .ico {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
}
.cred .ico svg { width: 17px; height: 17px; }
.cred .ct { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--ink); line-height: 1.25; }
.cred .cs { font-size: 0.78rem; color: var(--muted); margin-top: 3px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  position: relative;
}
.plan .badge {
  position: absolute;
  top: -12px; left: 28px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 5px 12px;
  border-radius: 999px;
}
.plan .pname { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.02em; color: var(--ink); }
.plan .pdesc { color: var(--muted); font-size: 0.9rem; line-height: 1.55; margin-top: 8px; min-height: 42px; }
.plan .pamt { display: flex; align-items: baseline; gap: 6px; margin-top: 24px; }
.plan .pamt .amt { font-family: var(--font-display); font-weight: 600; font-size: 2.7rem; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.plan .pamt .per { font-size: 0.82rem; color: var(--muted); }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 26px 0 28px; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-2); }
.plan ul li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.plan .btn { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 30px; font-size: 0.9rem; color: var(--muted); }

/* ── FAQ ── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--accent);
  transition: transform .25s ease, background .2s ease;
}
.faq summary .pm svg { width: 15px; height: 15px; }
.faq[open] summary .pm { transform: rotate(45deg); background: var(--accent-soft); }
.faq .answer { padding: 0 24px 22px; color: var(--muted); font-size: 0.96rem; line-height: 1.65; max-width: 680px; }

/* ── CONTACT ── */
#contact { background: var(--surface); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-left h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -0.025em; line-height: 1.08; color: var(--ink); }
.contact-left p { color: var(--muted); margin-top: 16px; font-size: 1.02rem; line-height: 1.62; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.cc {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
}
.cc .ico { width: 38px; height: 38px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.cc .ico svg { width: 19px; height: 19px; }
.cc .l { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.cc .v { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.sla {
  margin-top: 16px;
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--accent-soft);
  border: 1px solid var(--ring);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.sla svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in oklab, var(--muted), transparent 25%); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--ring);
}
.form-card form .btn { margin-top: 6px; }
.form-note { margin-top: 14px; font-size: 0.8rem; color: var(--muted); text-align: center; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
}
.form-card.sent form { display: none; }
.form-card.sent .form-success { display: flex; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.form-success p { color: var(--muted); max-width: 360px; }

/* ── PRIVACY ── */
#privacy .wrap { max-width: 820px; }
.privacy-body { color: var(--muted); font-size: 0.96rem; line-height: 1.72; }
.privacy-body p { margin-bottom: 16px; }
.privacy-body strong { color: var(--ink); font-weight: 600; }
.privacy-body a { color: var(--accent); font-weight: 500; }

/* ── FOOTER ── */
footer.site {
  background: var(--ink);
  color: color-mix(in oklab, #ffffff, transparent 30%);
  padding: 56px 0 36px;
}
footer.site .f-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
footer.site .logo .word { color: #fff; }
footer.site .logo .word b { color: color-mix(in oklab, var(--accent), white 18%); }
footer.site .logo .word span { color: rgba(255,255,255,0.5); }
footer.site .logo .mark { background: rgba(255,255,255,0.1); }
footer.site .f-blurb { margin-top: 18px; font-size: 0.92rem; line-height: 1.6; max-width: 320px; color: rgba(255,255,255,0.55); }
footer.site .f-col h5 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
footer.site .f-col a, footer.site .f-col .line { display: block; font-size: 0.94rem; color: rgba(255,255,255,0.72); margin-bottom: 11px; transition: color .18s ease; }
footer.site .f-col a:hover { color: #fff; }
footer.site .f-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
footer.site .f-bottom .copy { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.03em; line-height: 1.6; }
footer.site .f-bottom .made { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── mobile nav toggle (hidden on desktop) ── */
.nav-toggle { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .cred-card { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  footer.site .f-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  .section-pad { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 8px 22px 18px;
  }
  .nav-links.open a { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--ink); cursor: pointer; }
  .nav-toggle svg { width: 20px; height: 20px; }
  .nav-right .btn-primary { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 24px; }
  .hero-trust .div { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .board-badge { right: 12px; }
  footer.site .f-top { grid-template-columns: 1fr; gap: 28px; }
}
