:root {
  --bg: #07090e;
  --surface: #10141d;
  --surface-2: #151a24;
  --warm: #f4f1ea;
  --warm-2: #e7e0d4;
  --text: #f6f4ef;
  --ink: #14161a;
  --muted: #a8afbc;
  --soft: #767d8b;
  --line: rgba(246, 244, 239, 0.14);
  --line-dark: rgba(20, 22, 26, 0.16);
  --blue: #168dff;
  --violet: #713bff;
  --danger: #ff6b7c;
  --radius: 8px;
  color-scheme: dark;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

body.menu-open { overflow: hidden; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 8%, rgba(113, 59, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 10% 22%, rgba(22, 141, 255, 0.08), transparent 18rem),
    linear-gradient(180deg, #07090e, #090c12 46%, #07090e);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 40;
  padding: 10px 14px;
  transform: translateY(-140%);
  background: #fff;
  color: #05060d;
  border-radius: var(--radius);
}

.skip-link:focus { transform: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 9, 14, 0.78);
  border-bottom: 1px solid rgba(246, 244, 239, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: 350px;
  height: 62px;
  display: block;
  overflow: hidden;
}

.brand img {
  width: 350px;
  height: 62px;
  max-width: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.site-nav a,
.language-switch a,
.button,
.menu-toggle {
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-switch a:hover,
.language-switch a:focus-visible {
  color: #fff;
}

.nav-cta,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 244, 239, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

.button {
  min-width: 190px;
  padding: 0 24px;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 14px 42px rgba(22, 141, 255, 0.18);
}

.button.secondary {
  color: var(--text);
  background: rgba(246, 244, 239, 0.06);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(246, 244, 239, 0.44);
}

.language-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(246, 244, 239, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 9, 14, 0.64);
}

.language-switch a {
  min-width: 38px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.language-switch a.is-active {
  color: #fff;
  background: rgba(246, 244, 239, 0.12);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 20, 29, 0.92);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  padding-top: 50px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead,
.section-heading > p:not(.eyebrow),
.scope-note,
.faq p,
.site-footer p,
.team-band p,
.case-asymmetric p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  margin-left: 10px;
  color: var(--blue);
}

.trust-line {
  max-width: 640px;
  margin: 22px 0 0;
  color: #d7d4ce;
  font-size: 15px;
  line-height: 1.55;
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 58% 50%;
}

.editorial-light {
  background: var(--warm);
  color: var(--ink);
}

.editorial-light .section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.editorial-light .eyebrow {
  color: var(--violet);
}

.audience-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  border-top: 1px solid var(--line-dark);
}

.audience-lines article {
  padding-top: 26px;
}

.audience-lines article + article {
  border-left: 1px solid var(--line-dark);
  padding-left: 32px;
}

.audience-lines p {
  max-width: 32rem;
  color: #4b505a;
  line-height: 1.65;
}

.section-heading {
  margin-bottom: 38px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.board-visual,
.case-feature-image,
.case-asymmetric figure,
.material-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.board-visual img,
.case-feature-image img,
.case-asymmetric img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.board-visual img {
  aspect-ratio: 3 / 2;
  object-position: 50% 50%;
}

.editorial-list {
  counter-reset: item;
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.editorial-list li {
  position: relative;
  padding-left: 46px;
  color: #dcd8d0;
  line-height: 1.6;
}

.editorial-list li::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.scope-note {
  max-width: 900px;
  margin: 24px 0 0;
  font-size: 15px;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.case-feature-image img {
  aspect-ratio: 3 / 2;
  object-position: 50% 50%;
}

.concept-label {
  display: inline-flex;
  margin: 20px 0 22px;
  padding: 8px 11px;
  border: 1px solid rgba(246, 244, 239, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(246, 244, 239, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-notes {
  display: grid;
  gap: 18px;
  margin: 0;
}

.case-notes div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.case-notes dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-notes dd {
  margin: 0;
  color: #ddd8cf;
  line-height: 1.58;
}

.material-strip {
  width: min(1320px, calc(100% - 36px));
  margin: 20px auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--warm);
  color: var(--ink);
}

.material-strip figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 50% 38%;
}

.material-strip .eyebrow {
  color: var(--violet);
}

.secondary-cases {
  display: grid;
  gap: 54px;
}

.case-asymmetric {
  display: grid;
  align-items: end;
  gap: clamp(24px, 4vw, 54px);
}

.case-large {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.55fr);
}

.case-offset {
  width: min(960px, 100%);
  margin-left: auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr);
}

.case-asymmetric img {
  aspect-ratio: 3 / 2;
}

.case-asymmetric h2 {
  margin-bottom: 14px;
}

.process-price {
  width: min(1180px, calc(100% - 36px));
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 28px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-line li {
  position: relative;
  padding: 24px 24px 0 0;
}

.process-line li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.process-line span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.process-line strong {
  display: block;
  margin-top: 10px;
}

.process-line p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-card {
  margin-top: 46px;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(16, 20, 29, 0.98), rgba(9, 12, 18, 0.98));
}

.price-card h2 {
  font-size: clamp(30px, 3.3vw, 48px);
}

.price-card strong {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(54px, 7vw, 86px);
  line-height: 1;
}

.price-card small,
.price-card li {
  color: var(--muted);
}

.price-card ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.price-lists {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 26px;
}

.terms-list {
  padding-top: 18px !important;
  border-top: 1px solid var(--line);
}

.price-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.price-actions p {
  flex: 1 1 280px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.additional-services {
  width: min(1180px, calc(100% - 36px));
  border-top: 1px solid var(--line);
}

.additional-services .section-heading {
  max-width: 900px;
}

.service-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px clamp(34px, 6vw, 82px);
}

.service-ledger section {
  border-top: 1px solid var(--line);
}

.service-ledger h3 {
  margin: 0;
  padding: 22px 0;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
}

.service-ledger article {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
  gap: 18px 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(246, 244, 239, 0.09);
}

.service-ledger strong {
  color: #fff;
  line-height: 1.35;
}

.service-ledger p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.service-ledger small {
  grid-column: 2;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-cta {
  margin-top: 48px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 244, 239, 0.045);
}

.service-cta h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
}

.team-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-band p {
  max-width: 680px;
}

.team-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.team-band span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 68px;
  padding: 22px 0;
  cursor: pointer;
  color: #fff;
  font-weight: 850;
}

.faq p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 24px;
  font-size: 16px;
}

.lead-section {
  padding-bottom: 70px;
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.lead-form .wide {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(246, 244, 239, 0.22);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(7, 9, 14, 0.84);
  color: #fff;
}

textarea {
  min-height: 136px;
  padding-top: 14px;
  resize: vertical;
}

.lead-form input.is-invalid,
.lead-form textarea.is-invalid,
.lead-form select.is-invalid {
  border-color: rgba(255, 107, 124, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 107, 124, 0.12);
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
}

.service-price-note {
  min-height: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(22, 141, 255, 0.7);
  outline-offset: 3px;
}

.consent {
  grid-template-columns: 24px 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 600 !important;
  line-height: 1.5;
}

.consent input {
  min-height: auto;
  margin-top: 4px;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: #9de8c8;
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.site-footer nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer small {
  grid-column: 1 / -1;
  color: var(--soft);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .language-switch {
    order: 2;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 9, 14, 0.98);
  }

  .site-nav.is-open {
    display: flex;
    max-height: calc(100svh - 100px);
    overflow: auto;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .hero,
  .split-section,
  .case-feature,
  .material-strip,
  .case-large,
  .case-offset,
  .price-card,
  .price-lists,
  .service-ledger,
  .team-band {
    grid-template-columns: 1fr;
  }

  .case-offset {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .price-card .button {
    justify-self: start;
  }

  .service-ledger article {
    grid-template-columns: 1fr;
  }

  .service-ledger small {
    grid-column: auto;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-band div {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
    gap: 10px;
  }

  .language-switch a {
    min-width: 34px;
    min-height: 32px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 60px 0;
  }

  .hero {
    padding-top: 34px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-lead,
  .section-heading > p:not(.eyebrow),
  .team-band p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    object-position: 58% 50%;
  }

  .audience-lines {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .audience-lines article + article {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
  }

  .audience-lines article {
    padding: 24px 0;
  }

  .case-notes div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .material-strip {
    width: min(100% - 28px, 1180px);
    padding: 20px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .process-line li {
    padding: 0 0 28px 24px;
  }

  .process-line li::before {
    top: 4px;
    left: -5px;
  }

  .lead-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .price-actions {
    align-items: stretch;
  }

  .site-footer nav,
  .site-footer small {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 10px;
    gap: 6px;
  }

  .language-switch {
    padding: 3px;
  }

  .language-switch a {
    min-width: 29px;
    min-height: 30px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

















/* VELKA final comics layer */
[id] {
  scroll-margin-top: 104px;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  text-wrap: balance;
}

p,
li,
dd,
summary {
  overflow-wrap: anywhere;
}

.language-switch a,
.menu-toggle,
.text-link {
  min-width: 44px;
  min-height: 44px;
}

.text-link {
  display: inline-flex;
  align-items: center;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.consent a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.form-note {
  margin: -8px 0 2px;
  color: var(--soft);
  font-size: 13px;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ai-trust {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ai-trust p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
}

.brand {
  width: auto;
  height: auto;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  overflow: visible;
  line-height: 1;
}

.brand img {
  display: block;
  width: min(182px, 42vw);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.service-ledger details {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 22px 0;
}

.service-ledger summary {
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.service-ledger summary::-webkit-details-marker {
  display: none;
}

.service-ledger summary h3 {
  display: inline;
}

.service-ledger article a {
  color: #fff;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.comics-page {
  background: #020309;
}

.comics-page::before {
  background:
    radial-gradient(circle at 91% 74%, rgba(156, 35, 255, .18), transparent 16rem),
    radial-gradient(circle at 2% 23%, rgba(0, 177, 255, .13), transparent 18rem),
    linear-gradient(180deg, #020309, #050710 42%, #020309);
}

.comics-page .site-header {
  min-height: 92px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding-inline: clamp(24px, 4.2vw, 56px);
  background: rgba(2, 3, 9, .82);
}

.comics-page .site-nav {
  gap: clamp(16px, 2.5vw, 42px);
}

.comics-page .site-nav a {
  position: relative;
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.comics-page .site-nav a[href*="comics"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: linear-gradient(90deg, #9a20ff, #1aa8ff);
}

.comics-page .nav-cta {
  display: none !important;
}

.comics-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 244, 239, .08);
}

.comics-stage-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 9, .98) 0%, rgba(2, 3, 9, .9) 32%, rgba(2, 3, 9, .45) 63%, rgba(2, 3, 9, .7) 100%),
    url("/assets/comics/hero-clean.jpg") right 34% / min(60vw, 720px) auto no-repeat,
    radial-gradient(circle at 88% 30%, rgba(130, 35, 255, .2), transparent 18rem);
  opacity: .92;
}

.comics-stage-inner {
  position: relative;
  padding-top: 78px;
  padding-bottom: 42px;
}

.comics-hero-copy {
  max-width: 640px;
}

.comics-hero-copy .eyebrow {
  color: #b323ff;
}

.comics-hero-copy h1 {
  max-width: 660px;
  font-size: clamp(32px, 3.25vw, 48px);
  line-height: 1.13;
  letter-spacing: 0;
  text-transform: none;
}

.comics-hero-copy h1::first-line {
  color: #fff;
}

.comics-hero-copy .hero-lead {
  max-width: 470px;
  font-size: 16px;
}

.comics-hero-copy .hero-actions {
  margin-top: 24px;
}

.comics-traits {
  max-width: 920px;
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.comics-traits article {
  min-height: 118px;
  padding: 0 26px 0 0;
  border-right: 1px solid rgba(172, 66, 255, .26);
}

.comics-traits article + article {
  padding-left: 26px;
}

.comics-traits article:last-child {
  border-right: 0;
}

.trait-icon,
.comics-feature-strip article > span,
.comics-newsletter span {
  display: block;
  margin-bottom: 18px;
  color: #a321ff;
  font-size: 34px;
  line-height: 1;
}

.comics-traits h3,
.comics-feature-strip h3 {
  font-size: 14px;
  text-transform: uppercase;
}

.comics-traits p,
.comics-feature-strip p,
.series-card p,
.comics-newsletter p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.comics-series {
  padding-top: 34px;
  padding-bottom: 22px;
}

.comics-row-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 12px;
}

.comics-row-title h2 {
  font-size: 18px;
  text-transform: uppercase;
}

.comics-row-title span {
  display: block;
  width: 78px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, #a020ff, #168dff);
}

.comics-row-title a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #9b6cff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.series-card {
  position: relative;
  min-height: 316px;
  overflow: hidden;
  border: 1px solid rgba(157, 75, 255, .22);
  border-radius: var(--radius);
  background: #070912;
}

.series-card img {
  width: 100%;
  height: 100%;
  min-height: 316px;
  object-fit: cover;
  object-position: center 30%;
  opacity: .78;
  filter: saturate(.95) contrast(1.05);
}

.series-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(2, 3, 9, .2) 48%, rgba(2, 3, 9, .94) 100%);
}

.series-card div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.series-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  text-transform: uppercase;
}

.series-card strong {
  display: block;
  margin-top: 2px;
  color: #a321ff;
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

.series-card:nth-child(2) strong {
  color: #ff334a;
}

.series-card:nth-child(3) strong {
  color: #169dff;
}

.series-card:nth-child(4) strong {
  color: #f3b13b;
}

.series-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.series-card footer span {
  padding: 5px 8px;
  border: 1px solid rgba(155, 95, 255, .75);
  border-radius: 5px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.comics-feature-strip {
  margin-top: 0;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  border: 1px solid rgba(157, 75, 255, .18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12, 16, 29, .96), rgba(5, 7, 13, .96));
}

.comics-feature-strip article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
}

.comics-feature-strip article + article {
  border-left: 1px solid rgba(157, 75, 255, .22);
  padding-left: 22px;
}

.comics-feature-strip article > span {
  margin: 0;
  font-size: 40px;
}

.comics-newsletter {
  margin-top: 20px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, .95fr);
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(157, 75, 255, .18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(18, 15, 42, .86), rgba(5, 7, 13, .96));
}

.comics-newsletter > div,
.comics-newsletter form {
  display: flex;
  align-items: center;
  gap: 22px;
}

.comics-newsletter h2 {
  font-size: clamp(22px, 2.3vw, 28px);
  color: #9d37ff;
  text-transform: uppercase;
}

.comics-newsletter p {
  margin: 8px 0 0;
}

.comics-newsletter input {
  min-width: 0;
}

.comics-page .split-copy,
.comics-page .process-price,
.comics-page .comics-price,
.comics-page .faq,
.comics-page .final-cta {
  padding-top: 64px;
  padding-bottom: 64px;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
  gap: 48px;
}

.story-process {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.comics-price p {
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: grid;
  gap: 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta .button {
  margin: 0 auto;
}

@media (max-width: 1180px) {
  .comics-page .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .comics-page .site-nav {
    gap: 14px;
  }

  .series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comics-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comics-feature-strip article:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  [id] {
    scroll-margin-top: 90px;
  }

  .brand {
    min-width: 132px;
  }

  .comics-page .site-nav a::before,
  .comics-page .site-nav a[href*="comics"]::after {
    display: none;
  }

  .comics-stage-bg {
    background:
      linear-gradient(180deg, rgba(2, 3, 9, .74) 0%, rgba(2, 3, 9, .98) 72%),
      url("/assets/comics/hero-clean.jpg") center top / cover no-repeat;
    opacity: .72;
  }

  .comics-traits,
  .series-grid,
  .comics-feature-strip,
  .comics-newsletter,
  .split-copy {
    grid-template-columns: 1fr;
  }

  .comics-traits article,
  .comics-traits article + article,
  .comics-feature-strip article + article {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(157, 75, 255, .22);
    padding-top: 18px;
  }

  .comics-traits article:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .story-process {
    grid-template-columns: 1fr;
  }

  .service-ledger {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-ledger details {
    padding: 18px;
  }

  .comics-newsletter > div,
  .comics-newsletter form {
    align-items: stretch;
    flex-direction: column;
  }

  .ai-trust,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .comics-page .site-header {
    padding-inline: 12px;
  }

  .brand {
    min-width: 116px;
  }

  .language-switch a,
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .series-card,
  .series-card img {
    min-height: 360px;
  }

  .comics-hero-copy h1 {
    font-size: clamp(30px, 10vw, 38px);
    line-height: 1.12;
  }
}
