@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/oswald-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/oswald-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #111111;
  --bg-deep: #0a0a0a;
  --surface: #161616;
  --paper: #f3f3f3;
  --fg: #f5f5f5;
  --ink: #141414;
  --muted: #9a9a9a;
  --muted-ink: #5c5c5c;
  --line: #2a2a2a;
  --accent: #0030ff;
  --on-accent: #ffffff;
  --card: #141414;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
}

button:not(:disabled),
[role="button"]:not(:disabled) { cursor: pointer; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  text-wrap: balance;
  font-family: var(--display);
  margin: 0;
}

p { text-wrap: pretty; margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: #fff; }

.wrap {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.i-out {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='black' stroke-width='1.6' stroke-linecap='square' d='M4 12L12 4M7 4h5v5'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='black' stroke-width='1.6' stroke-linecap='square' d='M4 12L12 4M7 4h5v5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.kicker,
.kicker-ink {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.5;
}
.kicker { color: var(--muted); }
.kicker-ink { color: var(--muted-ink); }
.kicker-accent { color: var(--accent); }
.section-title + .kicker,
.section-title + .kicker-ink { margin-top: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: inherit;
}
.btn:active { transform: none; }
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn-accent:hover { background: #1a48ff; box-shadow: 0 10px 28px rgb(0 48 255 / 0.38); }
.btn-sm { padding: 8px 16px; font-size: 12px; letter-spacing: 0.12em; }
.btn-ghost {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.12em;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-text { line-height: 0.92; }
.logo-name,
.logo-sub {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-sub {
  color: var(--accent);
}

/* Header — only after leaving hero */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-bottom: 1px solid rgb(42 42 42 / 0.7);
  background: rgb(17 17 17 / 0.92);
  color: var(--fg);
  backdrop-filter: blur(12px);
  transform: translateY(-120%);
  pointer-events: none;
}
.site-header.is-scrolled,
.site-header.is-menu {
  transform: none;
  pointer-events: auto;
}
.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-desk {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-desk a { color: var(--muted); }
.nav-desk a:hover { color: var(--fg); }
.header-cta { display: none; align-items: center; gap: 16px; }
.header-phone { font-size: 14px; font-weight: 500; letter-spacing: 0.04em; color: inherit; }
.logo-name { color: inherit; }
.menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
}
.menu-btn span {
  display: flex;
  width: 20px;
  flex-direction: column;
  gap: 6px;
}
.menu-btn i {
  display: block;
  height: 1px;
  background: currentColor;
}
.menu-btn.is-open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open i:nth-child(2) { opacity: 0; }
.menu-btn.is-open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  flex-direction: column;
  padding: 92px 20px 32px;
  background: rgb(8 8 8 / 0.96);
}
.nav-overlay.is-open { display: flex; }
.nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.nav-overlay .header-phone { margin-top: 40px; font-size: 18px; }
.close-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--fg);
}

/* Hero — glow hugs the card as one light, no columns */
.hero {
  --card-h: min(900px, calc(100svh - 72px));
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100svh;
  padding: 0 20px;
  background: var(--bg);
  overflow: visible;
}
.hero-glow {
  position: relative;
  isolation: isolate;
  width: min(1040px, 100%);
  height: var(--card-h);
  transform: none;
}
.hero-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow:
    -220px -8px 160px 30px rgb(0 48 255 / 0.55),
    220px -8px 160px 30px rgb(0 48 255 / 0.55),
    -70px 0 70px 8px rgb(0 48 255 / 0.75),
    70px 0 70px 8px rgb(0 48 255 / 0.75),
    0 28px 80px 6px rgb(0 48 255 / 0.4);
}
.hero-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding: 28px 24px 48px;
}
.watermark {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.8;
  color: rgb(20 20 20 / 0.055);
  user-select: none;
  pointer-events: none;
}
.watermark-light { color: rgb(255 255 255 / 0.03); }
.hero-mark {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 160%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  font-size: clamp(3.4rem, 10vw, 8.6rem);
}
.hero-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 68px;
}
.hero-nav {
  display: none;
  gap: 28px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.hero-nav a:hover { color: var(--ink); }
.hero-menu { color: var(--ink); }
.hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}
.hero-agency {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero-since {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.hero-main {
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.hero-over {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.hero h1 {
  margin-top: 16px;
  font-size: clamp(4rem, 13vw, 9.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.84;
  letter-spacing: -0.035em;
}
.hero-lead {
  margin-top: 36px;
  max-width: 46rem;
  font-size: 24px;
  line-height: 38px;
  color: var(--muted-ink);
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.hero-actions .btn {
  font-size: 16px;
  padding: 18px 32px;
}
.hero-actions .btn-ghost {
  padding: 0;
}

/* Bundle */
.section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.bg-bg { background: var(--bg); }
#bundle { background: transparent; }
#details { background: transparent; }
.sub-block { margin-top: 80px; }
.prose-wide {
  width: 100%;
  max-width: none;
}
.prose-wide p {
  margin: 0;
  max-width: none;
  font-size: 18px;
  line-height: 32px;
  color: var(--ink);
}
.prose-wide p + p { margin-top: 20px; }
.section-title + .prose-wide { margin-top: 40px; }
.bg-deep { background: var(--bg-deep); }
.bg-paper { background: var(--paper); color: var(--ink); }
#included { background: #fff; }
.mark-abs {
  position: absolute;
  pointer-events: none;
  display: none;
  font-size: 9rem;
}
.section-title {
  margin-top: 12px;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.95;
}
.accent { color: var(--accent); }
.lead {
  margin-top: 24px;
  max-width: 42rem;
  font-size: 16px;
  line-height: 28px;
  color: var(--muted);
}
.lead-ink { color: var(--muted-ink); }

.bundle-grid {
  margin-top: 48px;
  display: grid;
  gap: 20px;
}

.thin-card {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--ink);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.thin-card h3 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
.thin-card > h3:first-child { margin-top: 0; }
.thin-card .card-lead {
  margin-top: 20px;
  font-size: 15px;
  line-height: 28px;
  color: var(--muted-ink);
}
.what-in {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.item-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.item-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 24px;
  color: var(--muted-ink);
}
.dot {
  width: 4px;
  height: 4px;
  margin-top: 10px;
  flex-shrink: 0;
  background: var(--accent);
}
.card-note {
  margin-top: 32px;
  font-size: 14px;
  line-height: 24px;
}
.card-note + .card-note { margin-top: 16px; }
.card-link {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Included */
.included-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.included-grid {
  margin-top: 48px;
  display: grid;
  gap: 40px;
}
.inc-list { border-top: 1px solid rgb(20 20 20 / 0.15); }
.inc-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(20 20 20 / 0.15);
}
.inc-num { font-size: 13px; color: var(--muted-ink); }
.inc-list h3 {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.inc-list p { margin-top: 4px; font-size: 14px; color: var(--muted-ink); }
.inc-list .i-out { margin-top: 8px; }
.cta-bar {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid var(--accent);
  padding: 28px;
}
.cta-bar h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.cta-bar p { margin-top: 4px; font-size: 14px; color: var(--muted-ink); }

.adv-grid {
  margin-top: 48px;
  display: grid;
  gap: 40px 28px;
}
.adv-card { text-align: center; }
.adv-ico {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.adv-ico svg { width: 64px; height: 64px; }
.adv-card h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
.adv-card p {
  margin: 12px auto 0;
  max-width: 22rem;
  font-size: 15px;
  line-height: 26px;
  color: var(--muted);
}

.review-form-wrap { margin-top: 64px; }
.review-form-title {
  margin-bottom: 28px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.review-form { max-width: 720px; margin: 0 auto; }
.review-grid { display: grid; gap: 20px; }
.review-form .btn { align-self: center; }

.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgb(10 10 10 / 0.88);
}
.popup.is-open { display: flex; }
.popup-card {
  position: relative;
  width: min(420px, 100%);
  padding: 36px 28px 32px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--accent);
  text-align: center;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
}
.popup-ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.popup-ico-err { display: none; color: #e10600; }
.popup.is-error .popup-ico-ok { display: none; }
.popup.is-error .popup-ico-err { display: block; }
.popup-card h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}
.popup-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted-ink);
}

.nav-overlay .btn {
  margin-top: 24px;
  align-self: flex-start;
}

/* Portfolio */
.tabs {
  margin-top: 32px;
  display: flex;
  gap: 8px;
}
.tab {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
}
.tab.is-on {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.work-grid {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}
.work-grid[hidden] { display: none; }
.work-card {
  border: 1px solid var(--accent);
  background: var(--card);
  color: var(--fg);
  text-align: left;
  font-family: inherit;
  padding: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.work-card:hover {
  background: var(--paper);
  color: var(--ink);
}
.work-card:hover .work-slug { color: var(--muted-ink); }
.work-thumb {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--surface);
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.work-card:hover img { transform: none; }
.work-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}
.work-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
}
.work-slug { margin-top: 4px; font-size: 12px; color: var(--muted); }
.work-meta .i-out { color: var(--accent); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  background: rgb(10 10 10 / 0.9);
  padding: 16px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 100%; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--fg);
}

/* Reviews */
.reviews-grid {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.review {
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.08);
}
.review h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.review .role { margin-top: 4px; font-size: 12px; line-height: 16px; color: var(--muted-ink); }
.review .text { margin-top: 16px; font-size: 14px; line-height: 24px; }
.review .date { margin-top: 24px; text-align: right; font-size: 11px; color: var(--muted-ink); }

/* FAQ */
.faq-grid {
  display: grid;
  gap: 48px;
}
.faq-list { border-top: 1px solid rgb(20 20 20 / 0.15); border-bottom: 1px solid rgb(20 20 20 / 0.15); }
.faq-item { border-bottom: 1px solid rgb(20 20 20 / 0.15); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink);
}
.faq-toggle { color: var(--accent); margin-top: 4px; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
}
.faq-a p {
  overflow: hidden;
  padding-bottom: 0;
  font-size: 15px;
  line-height: 28px;
  color: var(--muted-ink);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a p { padding-bottom: 20px; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.talk-card {
  border: 1px solid rgb(255 255 255 / 0.1);
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
}
.talk-card h2 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.88;
}
.talk-card h2 + .kicker-ink { margin-top: 24px; }
.form { display: flex; flex-direction: column; gap: 20px; }
.form label { display: block; }
.form .lbl { font-size: 12px; color: var(--muted); }
.field {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--accent);
  border-radius: 0;
  color: var(--fg);
  width: 100%;
  padding: 0.55rem 0;
  outline: none;
  font: inherit;
}
.field-area { min-height: 96px; resize: vertical; }
.radios {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  border: 0;
  margin: 0;
  padding: 0;
  min-inline-size: 0;
}
.radios .lbl, .radios legend {
  width: 100%;
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--muted);
}
.radios label { display: inline-flex; align-items: center; gap: 8px; }
.radios input { accent-color: var(--accent); }
.form-msg { font-size: 14px; }
.form-msg.ok { color: #7ea0ff; }
.form-msg.err { color: #ff6b6b; }
.contact-meta { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--muted); }
.contact-meta a { color: var(--fg); }
.socials {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.socials a:hover { color: var(--accent); }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 56px 0 32px;
}
.footer-grid {
  position: relative;
  display: grid;
  gap: 40px;
}
.footer-copy { margin-top: 16px; max-width: 220px; font-size: 13px; line-height: 20px; color: var(--muted); }
.footer-legal { margin-top: 8px; max-width: 220px; font-size: 13px; line-height: 20px; }
.footer-legal a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-list a:hover { color: var(--accent); }
.copyright {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  margin: 48px auto 0;
  font-size: 12px;
  color: var(--muted);
}
.mark-footer {
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  font-size: 8rem;
}

@media (max-width: 767px) {
  .hero {
    --card-h: min(760px, calc(100svh - 48px));
    padding: 0 20px;
  }
  .hero-card { padding: 0 0 36px; }
  .hero-top,
  .hero-main { padding-inline: 18px; }
  .hero-bar { min-height: 68px; padding-inline: 0; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.8rem); }
  .hero-over { font-size: 18px; letter-spacing: 0.14em; }
  .hero-lead { font-size: 19px; line-height: 32px; }
  .hero-since { font-size: 15px; }
  .hero-actions {
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 14px;
  }
  .hero-actions .btn {
    font-size: 13px;
    padding: 12px 16px;
  }
  .hero-actions .btn-ghost {
    padding: 0;
    flex-shrink: 0;
  }
  .hero-glow::before {
    box-shadow:
      -40px 0 50px 8px rgb(0 48 255 / 0.7),
      40px 0 50px 8px rgb(0 48 255 / 0.7),
      0 20px 50px 4px rgb(0 48 255 / 0.35);
  }
}

@media (min-width: 640px) {
  .header-cta { display: flex; }
  .header-cta .btn { display: inline-flex; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero-card { padding: 32px 48px 56px; }
  .hero-nav { display: flex; }
  .hero-menu { display: none; }
  .hero-bar { min-height: 40px; }
  .hero-top,
  .hero-main { padding-inline: 0; }
  .hero-over { font-size: 24px; }
  .section { padding: 112px 0; }
  .thin-card { padding: 36px; }
  .included-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .cta-bar { flex-direction: row; align-items: center; justify-content: space-between; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .talk-card { padding: 48px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .mark-abs { display: block; }
  .mark-footer { font-size: 11rem; }
}

@media (min-width: 1024px) {
  .nav-desk { display: flex; }
  .site-header .menu-btn { display: none; }
  .hero-card { padding: 36px 64px 64px; }
  .bundle-grid { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr 1fr; }
  .faq-grid { grid-template-columns: 0.9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 1280px) {
  .reviews-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

body.is-locked { overflow: hidden; }

/* Light theme: page white, header/footer/hero stay dark */
html, body {
  background: #fff;
  color: var(--ink);
}
.site-header,
.nav-overlay,
.site-footer {
  color: var(--fg);
}
.bg-bg,
.bg-deep {
  background: #fff;
  color: var(--ink);
}
.bg-bg .lead,
.bg-deep .lead,
.bg-bg .kicker,
.bg-deep .kicker,
.bg-bg .adv-card p,
.bg-bg .form .lbl,
.bg-deep .form .lbl,
.bg-bg .radios .lbl,
.bg-deep .radios .lbl,
.bg-bg .radios legend,
.bg-deep .radios legend {
  color: var(--muted-ink);
}
.bg-bg .field,
.bg-deep .field {
  color: var(--ink);
}
.bg-bg .watermark-light,
.bg-deep .watermark-light {
  color: rgb(20 20 20 / 0.06);
}
.tab {
  color: var(--muted-ink);
  border-color: rgb(20 20 20 / 0.18);
}

/* Article page */
.hero-article h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 7.2vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.hero-blog h1 {
  font-size: clamp(12rem, 39vw, 28.2rem);
  line-height: 0.78;
  width: max-content;
  white-space: nowrap;
  text-wrap: nowrap;
  text-align: center;
  letter-spacing: -0.04em;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#article { background: #fff; }
.article-cover {
  width: 100%;
  margin: 0 0 48px;
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-body .article-h2 { margin-top: 72px; }
.article-cover + .article-h2 { margin-top: 0; }
.article-prose {
  margin-top: 24px;
  max-width: 46rem;
  font-size: 16px;
  line-height: 28px;
  color: var(--muted-ink);
}
.article-prose + .article-prose { margin-top: 16px; }
.article-prose a { text-decoration: underline; text-underline-offset: 3px; }

#posts { background: #fff; }
.blog-grid {
  display: grid;
  gap: 20px;
}
.section-title + .blog-grid { margin-top: 40px; }
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--ink);
}
.blog-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  flex: 1;
}
.blog-card h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
}
.blog-card p {
  font-size: 14px;
  line-height: 24px;
  color: var(--muted-ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .i-out {
  margin-top: auto;
  color: var(--accent);
}

#jivo-iframe-container,
body > jdiv {
  z-index: 2147483646 !important;
  pointer-events: auto !important;
  max-width: none !important;
  max-height: none !important;
}
#jivo-iframe-container iframe {
  max-width: none !important;
  max-height: none !important;
  pointer-events: auto !important;
}
jdiv, jdiv * {
  box-sizing: content-box !important;
}
jdiv img {
  max-width: none !important;
  display: inline-block !important;
}
@media (max-width: 880px) {
  #jivo-iframe-container,
  body > jdiv {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483646 !important;
  }
}
