:root {
  --ink: #0C1A26;
  --ink-soft: #21333F;
  --paper: #F4F2EC;
  --paper-2: #ECE9E1;
  --white: #FFFFFF;
  --accent: #0A66C2;
  --accent-ink: #084E95;
  --muted: #56656F;
  --line: rgba(12, 26, 38, 0.14);
  --line-soft: rgba(12, 26, 38, 0.08);

  --c-navy: #0C1A26;
  --c-ink: #0C1A26;
  --c-ocean: #0A66C2;
  --c-ocean-700: #084E95;
  --c-ocean-600: #0A66C2;
  --c-cyan: #0A66C2;
  --c-aqua: #0A66C2;
  --c-aqua-200: #8FB6DC;
  --c-aqua-50: #ECE9E1;
  --c-mist: #ECE9E1;
  --c-mist-2: #F4F2EC;
  --c-white: #FFFFFF;
  --c-slate: #56656F;
  --c-muted: #56656F;
  --c-line: rgba(12, 26, 38, 0.14);
  --c-line-soft: rgba(12, 26, 38, 0.08);

  --grad-ocean: #0A66C2;
  --grad-deep: #0C1A26;
  --grad-mist: #FFFFFF;
  --grad-text: #0A66C2;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  --r-sm: 4px;
  --r: 6px;
  --r-lg: 8px;
  --r-xl: 10px;
  --r-pill: 6px;

  --shadow-xs: none;
  --shadow-sm: 0 1px 0 rgba(12,26,38,0.04);
  --shadow-md: 0 10px 30px rgba(12, 26, 38, 0.07);
  --shadow-lg: 0 24px 60px rgba(12, 26, 38, 0.10);
  --shadow-glow: none;

  --maxw: 1200px;
  --gut: 22px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-navy);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.section { padding: 72px 0; position: relative; }
.section-lg { padding: 96px 0; }
.bg-mist { background: var(--white); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.bg-mist-soft { background: var(--paper-2); }
.bg-deep { background: var(--ink); color: #C7D2DA; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}
.bg-deep .eyebrow { color: #6FA8DC; background: none; border: none; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 0; background: var(--accent); }
.bg-deep .eyebrow .dot { background: #6FA8DC; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 5.6vw, 3.2rem);
  margin: 16px 0 16px;
}
.section-head p { color: var(--c-muted); font-size: 1.08rem; max-width: 60ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.bg-deep .section-head h2 { color: #fff; }
.bg-deep .section-head p { color: #A9B9C4; }

.grad-text {
  color: var(--accent);
  -webkit-text-fill-color: currentColor;
  background: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: var(--r);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--accent); color: #fff; }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 242, 236, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--c-navy); letter-spacing: -0.02em; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand b { color: var(--c-ocean); }

.nav-links { display: none; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

.nav-cta { display: none; align-items: center; gap: 12px; }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
}
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 0; transition: transform 0.3s, opacity 0.2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 380px);
  background: var(--paper);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow-y: auto;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.mobile-close { width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); }
.mobile-links { display: flex; flex-direction: column; margin-bottom: 18px; border-top: 1px solid var(--line); }
.mobile-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-links a:hover, .mobile-links a.active { color: var(--accent); padding-left: 8px; }
.mobile-links a span { color: var(--accent); font-family: var(--font-mono); font-size: 1rem; }
.mobile-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 18px; }
.mobile-meta { margin-top: 14px; font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted); }
.mobile-meta a { color: var(--accent); }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 26, 38, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.backdrop.show { opacity: 1; visibility: visible; }
body.lock { overflow: hidden; }

.hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    linear-gradient(transparent 0 calc(100% - 1px), var(--line-soft) calc(100% - 1px)) 0 0 / 100% 56px,
    linear-gradient(90deg, transparent 0 calc(100% - 1px), var(--line-soft) calc(100% - 1px)) 0 0 / 56px 100%,
    var(--paper);
  overflow: hidden;
}
.hero-grid { display: grid; gap: 40px; align-items: center; }
.hero-badge { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.6rem, 9vw, 5rem);
  line-height: 0.98;
  margin-bottom: 24px;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.hero p.lead { font-size: 1.16rem; color: var(--c-ink); max-width: 540px; margin-bottom: 30px; opacity: 0.82; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span {
  width: 40px; height: 40px; border-radius: 0;
  border: 1px solid var(--paper); margin-left: -10px;
  background: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; color: #fff; font-size: 0.72rem;
}
.avatars span:first-child { margin-left: 0; }
.hero-trust .stars { color: var(--accent); font-size: 0.95rem; letter-spacing: 2px; }
.hero-trust small { color: var(--muted); font-size: 0.88rem; display: block; font-family: var(--font-mono); }
.hero-trust strong { color: var(--ink); font-family: var(--font-display); }
.hero-note { font-family: var(--font-mono); font-size: 0.84rem; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0.01em; }
.hero-note::before { content: ""; width: 22px; height: 1px; background: var(--accent); flex: none; }

.hero-visual { position: relative; }
.hero-blob { display: none; }
.float-chip { display: none; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
  z-index: 2;
}
.hero-card .browserbar { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.hero-card .browserbar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); display: block; }
.hero-card .browserbar .url { margin-left: 8px; flex: 1; height: 24px; border-radius: var(--r-sm); background: var(--paper); display:flex; align-items:center; padding:0 10px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }
.mini-metric { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.mini-metric .m { background: var(--paper); border-radius: var(--r-sm); padding: 14px; border: 1px solid var(--line-soft); }
.mini-metric .m span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }
.mini-metric .m b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); margin-top: 4px; }
.mini-metric .m b.up { color: var(--accent); }
.spark { height: 70px; margin-top: 14px; border-radius: var(--r-sm); background: var(--paper); border: 1px solid var(--line-soft); position: relative; overflow: hidden; }

.stats-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.14); }
.stat { text-align: left; padding: 26px 8px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.stat b { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 7vw, 3.2rem); color: var(--ink); display: block; letter-spacing: -0.04em; }
.stat .grad-text { display: inline-block; }
.stat span { color: var(--muted); font-size: 0.85rem; font-family: var(--font-mono); letter-spacing: 0.02em; }
.bg-deep .stat b { color: #fff; }
.bg-deep .stat span { color: #93A6B2; }

.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 34px; opacity: 0.7; }
.logos .lg { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); display: flex; align-items: center; gap: 8px; letter-spacing: -0.02em; }
.logos .lg svg { width: 20px; height: 20px; color: var(--accent); }

.cards { display: grid; gap: 0; border-top: 1px solid var(--line); }
.card {
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 32px 28px 32px 0;
  transition: background 0.25s var(--ease), padding 0.25s var(--ease);
  position: relative;
}
.card:hover { background: var(--white); padding-left: 20px; padding-right: 20px; }
.card .ico {
  width: auto; height: auto; border-radius: 0;
  display: block; color: var(--accent); margin-bottom: 20px;
  background: none; box-shadow: none;
}
.card .ico svg { width: 30px; height: 30px; stroke-width: 1.6; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.card p { color: var(--c-muted); font-size: 1rem; max-width: 46ch; }
.card .more { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.card .more svg { width: 15px; height: 15px; transition: transform 0.25s; }
.card:hover .more svg { transform: translateX(4px); }
.card .num { position: absolute; top: 32px; right: 4px; font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem; color: var(--muted); }

.feature-row { display: grid; gap: 44px; align-items: center; }
.feature-list { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.feature-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-item .tick { width: 26px; height: 26px; border-radius: 0; background: none; color: var(--accent); display: grid; place-items: center; flex: none; border: 1px solid var(--accent); }
.feature-item .tick svg { width: 14px; height: 14px; }
.feature-item h4 { font-size: 1.08rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.feature-item p { color: var(--c-muted); font-size: 0.96rem; }

.media-card {
  border-radius: var(--r-lg);
  background: var(--ink);
  padding: 32px;
  color: #fff;
  border: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.media-card::after { display: none; }
.media-card .panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r); padding: 18px; position: relative; z-index: 1; }
.media-card .panel + .panel { margin-top: 12px; }
.media-card .bar { height: 6px; border-radius: 0; background: rgba(255,255,255,0.14); overflow: hidden; margin-top: 12px; }
.media-card .bar i { display: block; height: 100%; border-radius: 0; background: var(--accent); }

.process { display: grid; gap: 0; counter-reset: step; border-top: 1px solid var(--line); }
.step {
  background: transparent; border-bottom: 1px solid var(--line); border-radius: 0;
  padding: 30px 24px 30px 0; position: relative; transition: background 0.25s var(--ease), padding 0.25s;
}
.step:hover { background: var(--white); padding-left: 18px; }
.step .n { font-family: var(--font-mono); font-weight: 700; font-size: 0.76rem; color: var(--accent); letter-spacing: 0.12em; }
.step h3 { font-size: 1.3rem; margin: 14px 0 9px; letter-spacing: -0.02em; }
.step p { color: var(--c-muted); font-size: 0.97rem; }
.step .stepico { position: absolute; top: 30px; right: 6px; width: auto; height: auto; background: none; color: var(--line); display: block; }
.step .stepico svg { width: 24px; height: 24px; }

.work-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.work-card {
  border-radius: 0;
  overflow: hidden;
  background: var(--paper);
  border: none;
  transition: background 0.25s;
}
.work-card:hover { background: var(--white); }
.work-thumb { height: 190px; position: relative; overflow: hidden; display: grid; place-items: center; }
.work-thumb .tag { position: absolute; top: 14px; left: 14px; background: var(--ink); color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 0.68rem; padding: 5px 11px; border-radius: 0; letter-spacing: 0.08em; text-transform: uppercase; }
.work-thumb .glass { display: none; }
.work-body { padding: 24px; }
.work-body h3 { font-size: 1.25rem; margin-bottom: 6px; letter-spacing: -0.02em; }
.work-body .ind { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.work-result { display: flex; gap: 26px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.work-result div b { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); display: block; line-height: 1; letter-spacing: -0.03em; }
.work-result div span { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); }

.testi-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.testi {
  background: var(--white); border: none; border-radius: 0;
  padding: 32px; position: relative;
}
.testi .stars { color: var(--accent); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 14px; }
.testi p { color: var(--c-ink); font-size: 1.04rem; line-height: 1.6; }
.testi .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi .who .av { width: 44px; height: 44px; border-radius: 0; background: var(--ink); display: grid; place-items: center; color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem; }
.testi .who b { font-family: var(--font-display); color: var(--ink); font-size: 0.98rem; display: block; }
.testi .who span { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); }
.testi .qm { display: none; }

.cta-band {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 64px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after { display: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 6vw, 3.2rem); margin-bottom: 16px; letter-spacing: -0.03em; }
.cta-band p { color: #A9B9C4; max-width: 560px; margin: 0 auto 30px; font-size: 1.06rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.site-footer { background: var(--ink); color: #93A6B2; padding: 72px 0 30px; }
.footer-grid { display: grid; gap: 36px; }
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand p { font-size: 0.96rem; color: #8597A2; max-width: 340px; }
.footer-social { display: flex; gap: 8px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; color: #C7D2DA; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; padding: 7px 0; font-size: 0.96rem; color: #93A6B2; transition: color 0.2s, padding-left 0.2s; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; gap: 12px; font-family: var(--font-mono); font-size: 0.8rem; color: #6E818D; }
.footer-bottom a { color: #93A6B2; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }

.page-hero {
  background: var(--paper);
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.page-hero h1 { font-size: clamp(2.4rem, 8vw, 4rem); margin: 18px 0 18px; letter-spacing: -0.04em; }
.page-hero p { color: var(--c-muted); font-size: 1.1rem; max-width: 640px; }
.crumb { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.crumb a { color: var(--accent); }

.split { display: grid; gap: 44px; align-items: center; }
.prose h2 { font-size: clamp(1.9rem, 5vw, 2.7rem); margin-bottom: 18px; letter-spacing: -0.03em; }
.prose h3 { font-size: 1.3rem; margin: 24px 0 10px; }
.prose p { color: var(--c-muted); margin-bottom: 15px; font-size: 1.04rem; }
.prose p strong { color: var(--c-ink); }

.value-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value {
  background: var(--white); border: none; border-radius: 0; padding: 32px;
  transition: background 0.25s;
}
.value:hover { background: var(--paper); }
.value .ico { width: auto; height: auto; border-radius: 0; background: none; color: var(--accent); margin-bottom: 18px; }
.value .ico svg { width: 26px; height: 26px; stroke-width: 1.6; }
.value h3 { font-size: 1.18rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.value p { color: var(--c-muted); font-size: 0.96rem; }

.team-grid { display: grid; gap: 22px; }
.member { text-align: left; }
.member .ph {
  width: 100%; aspect-ratio: 1; border-radius: var(--r-lg); margin-bottom: 16px;
  background: var(--ink); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: rgba(255,255,255,0.9);
  position: relative; overflow: hidden;
}
.member h3 { font-size: 1.1rem; margin-bottom: 2px; }
.member span { color: var(--accent); font-family: var(--font-mono); font-size: 0.82rem; }
.member p { color: var(--c-muted); font-size: 0.9rem; margin-top: 8px; }

.price-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.price {
  background: var(--white); border: none; border-radius: 0; padding: 34px;
  position: relative; transition: background 0.25s;
}
.price:hover { background: var(--paper); }
.price.featured { background: var(--ink); color: #C7D2DA; }
.price.featured h3, .price.featured .amt { color: #fff; }
.price.featured .desc { color: #A9B9C4; }
.price.featured li { color: #C7D2DA; }
.price .ribbon { position: absolute; top: 22px; right: 22px; background: var(--accent); color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 0.66rem; padding: 5px 11px; border-radius: 0; letter-spacing: 0.06em; text-transform: uppercase; }
.price h3 { font-size: 1.3rem; letter-spacing: -0.02em; }
.price .desc { color: var(--c-muted); font-size: 0.94rem; margin: 8px 0 20px; }
.price .amt { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--ink); letter-spacing: -0.04em; }
.price .amt small { font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.price ul { margin: 22px 0 28px; display: grid; gap: 13px; }
.price li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: var(--c-ink); }
.price li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }

.faq { display: grid; gap: 0; max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { background: transparent; border-bottom: 1px solid var(--line); border-radius: 0; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); letter-spacing: -0.02em; }
.faq-q .pm { width: 26px; height: 26px; border-radius: 0; background: none; border: 1px solid var(--line); color: var(--accent); display: grid; place-items: center; flex: none; transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s; }
.faq-item.active .pm { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--c-muted); font-size: 1rem; max-width: 70ch; }

.contact-grid { display: grid; gap: 32px; }
.contact-info { display: grid; gap: 0; border-top: 1px solid var(--line); }
.cinfo { display: flex; gap: 16px; align-items: flex-start; background: transparent; border: none; border-bottom: 1px solid var(--line); border-radius: 0; padding: 22px 0; }
.cinfo .ico { width: auto; height: auto; border-radius: 0; background: none; color: var(--accent); flex: none; }
.cinfo .ico svg { width: 22px; height: 22px; stroke-width: 1.7; }
.cinfo h4 { font-size: 1.05rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.cinfo p, .cinfo a { color: var(--c-muted); font-size: 0.96rem; }
.cinfo a:hover { color: var(--accent); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 15px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--paper); color: var(--c-ink);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); background: #fff; box-shadow: 0 0 0 3px rgba(10,102,194,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field.row2 { display: grid; gap: 18px; }
.field .err { color: #C2362B; font-size: 0.82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #D98A82; background: #FCF3F2; }
.field.invalid .err { display: block; }
.form-note { font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; background: var(--ink); border: 1px solid var(--ink); color: #fff; border-radius: var(--r); padding: 16px 18px; font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

.who { text-align: center; }
.who-lead { color: var(--c-muted); max-width: 660px; margin: 0 auto 24px; font-size: 1.05rem; }
.pillset { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill { background: transparent; border: 1px solid var(--line); color: var(--ink); font-family: var(--font-mono); font-weight: 400; font-size: 0.84rem; padding: 9px 16px; border-radius: 0; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.pill:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.note-band { text-align: left; max-width: 900px; margin: 0 auto; }
.note { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 4.2vw, 2.6rem); line-height: 1.24; color: #fff; margin: 22px 0 22px; letter-spacing: -0.025em; }
.note-sign { font-family: var(--font-mono); color: #6FA8DC; font-size: 0.86rem; letter-spacing: 0.04em; text-transform: uppercase; }

.brand-logo { height: 38px; width: auto; display: block; }
.mobile-top .brand-logo { height: 34px; }
.footer-brand-mark { display: flex; align-items: center; gap: 12px; }
.footer-brand-mark .brand-chip { width: 42px; height: 42px; border-radius: var(--r-sm); background: #fff; display: grid; place-items: center; flex: none; }
.footer-brand-mark .brand-chip img { width: 30px; height: 30px; display: block; }
.footer-brand-mark .brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; letter-spacing: -0.02em; }

.photo-frame { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: none; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo { position: relative; z-index: 2; aspect-ratio: 1 / 1; }
.approach-photo { aspect-ratio: 4 / 3; }
.about-photo { aspect-ratio: 4 / 3; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.07s; }
.reveal.d2 { transition-delay: 0.14s; }
.reveal.d3 { transition-delay: 0.21s; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0; z-index: 300; font-weight: 700; }
.skip-link:focus { left: 0; }

@media (min-width: 600px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
  .stat { border-right: 1px solid rgba(255,255,255,0.14); }
  .field.row2 { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 900px) {
  :root { --gut: 32px; }
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .burger { display: none; }
  .section { padding: 96px 0; }
  .section-lg { padding: 128px 0; }
  .hero { padding: 80px 0 100px; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  .hero h1 { font-size: clamp(3.4rem, 5.4vw, 5.2rem); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards.two { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.flip .media-card { order: -1; }
  .split { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: repeat(4, 1fr); }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid.two { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .cta-band { padding: 84px 56px; }
  .page-hero { padding: 92px 0 80px; }
}
