@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/_vinext_fonts/manrope-76eca2803f7f/manrope-76dcfc73.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/_vinext_fonts/newsreader-94c054835b7e/newsreader-a239d8f4.woff2") format("woff2");
}

:root {
  --v3-ink: #153b3e;
  --v3-ink-deep: #0c2d30;
  --v3-paper: #f5f0e6;
  --v3-paper-soft: #fbf8f1;
  --v3-white: #ffffff;
  --v3-copper: #b8734f;
  --v3-copper-dark: #98593b;
  --v3-line: rgba(21, 59, 62, 0.16);
  --v3-muted: #5f6967;
  --v3-shadow: 0 28px 70px rgba(17, 45, 47, 0.14);
}

html { scroll-behavior: smooth; }

body.site-v3 {
  margin: 0;
  color: var(--v3-ink-deep);
  background: var(--v3-paper-soft);
  font-family: "Manrope", system-ui, sans-serif;
}

.site-v3 h1,
.site-v3 h2,
.site-v3 .v3-serif {
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: -0.035em;
}

.site-v3 main { overflow: clip; }

.site-v3 .header {
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-v3 .desktop-nav a { white-space: nowrap; }

.v3-section {
  padding: clamp(76px, 8vw, 132px) clamp(24px, 6vw, 96px);
}

.v3-inner {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.v3-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--v3-copper-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v3-section h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.v3-lead {
  max-width: 1080px;
  margin: 28px 0 0;
  color: var(--v3-muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.62;
}

.v3-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: clamp(70px, 7vw, 118px) clamp(24px, 6vw, 96px) clamp(76px, 8vw, 128px);
  background:
    radial-gradient(circle at 8% 10%, rgba(184, 115, 79, 0.12), transparent 32%),
    var(--v3-paper-soft);
}

.v3-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: center;
  width: min(1680px, 100%);
  margin: 0 auto;
}

.v3-hero-layout {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.v3-hero .v3-hero-heading h1 {
  max-width: 1540px;
}

.v3-hero-lower {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(620px, 1.32fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
  margin-top: clamp(44px, 6vw, 76px);
}

.v3-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(58px, 6.8vw, 104px);
  font-weight: 500;
  line-height: 0.91;
}

.v3-hero-copy > p {
  max-width: 690px;
  margin: 30px 0 0;
  color: #475453;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.58;
}

.v3-hero-copy > p strong { color: var(--v3-ink-deep); }

.v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.v3-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--v3-ink);
  border-radius: 999px;
  color: var(--v3-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.v3-button:hover { transform: translateY(-2px); }

.v3-button-primary {
  border-color: var(--v3-copper);
  color: #fff;
  background: var(--v3-copper);
}

.v3-button-primary:hover { background: var(--v3-copper-dark); }

/* Motion is progressive enhancement: content stays visible if JavaScript is unavailable. */
html.v3-motion-enabled .v3-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .54s cubic-bezier(.2, .72, .24, 1),
    transform .54s cubic-bezier(.2, .72, .24, 1);
  transition-delay: var(--v3-motion-delay, 0ms);
}

html.v3-motion-enabled .v3-reveal[data-v3-motion="object"] {
  transform: translate3d(0, 14px, 0) scale(.992);
  transition-duration: .6s;
}

html.v3-motion-enabled .v3-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes v3ResultIn {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: none; }
}

html.v3-motion-enabled .v3-result.is-visible {
  animation: v3ResultIn .48s cubic-bezier(.2, .72, .24, 1) both;
}

.v3-product-frame {
  position: relative;
  margin: 0;
}

.v3-product-frame::before {
  position: absolute;
  inset: -28px -34px 30% 28%;
  z-index: 0;
  border-radius: 38px;
  background: var(--v3-ink);
  content: "";
}

.v3-product-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border: 1px solid rgba(21, 59, 62, .12);
  border-radius: 20px;
  box-shadow: var(--v3-shadow);
}

.v3-product-frame figcaption {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: #6f7573;
  font-size: 12px;
  line-height: 1.5;
}

.v3-recognition { background: var(--v3-paper); }

.v3-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid var(--v3-line);
  background: var(--v3-line);
}

.v3-signal {
  min-height: 190px;
  padding: 34px;
  background: var(--v3-paper-soft);
}

.v3-signal b {
  display: block;
  margin-bottom: 24px;
  color: var(--v3-copper-dark);
  font-size: 12px;
  letter-spacing: .15em;
}

.v3-signal p {
  max-width: 490px;
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.v3-statement {
  max-width: 1280px;
  margin: 54px 0 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}

.v3-how { background: #fff; }

.v3-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.v3-step {
  padding: 30px;
  border: 1px solid var(--v3-line);
  border-radius: 20px;
  background: #fff;
}

.v3-step b {
  color: var(--v3-copper-dark);
  font-size: 12px;
  letter-spacing: .16em;
}

.v3-step h3 {
  margin: 42px 0 12px;
  color: var(--v3-ink);
  font-size: 22px;
}

.v3-step p {
  margin: 0;
  color: var(--v3-muted);
  font-size: 15px;
  line-height: 1.65;
}

.v3-proof {
  color: #f8f5ee;
  background: var(--v3-ink-deep);
}

.v3-proof .v3-kicker { color: #d9a182; }
.v3-proof h2 { color: #fff; }
.v3-proof .v3-about-copy p { color: #c9ceca; }

.v3-proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.v3-proof-list {
  display: grid;
  gap: 24px;
}

.v3-proof-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.v3-proof-item:last-child { border-bottom: 0; }

.v3-proof-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
}

.v3-proof-item p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.6;
}

.v3-situations { background: var(--v3-paper-soft); }

.v3-situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.v3-situation {
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--v3-line);
  border-radius: 24px;
  background: var(--v3-paper);
}

.v3-situation span {
  color: var(--v3-copper-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.v3-situation h3 {
  margin: 62px 0 16px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 500;
  line-height: 1.02;
}

.v3-situation p {
  margin: 0;
  color: var(--v3-muted);
  line-height: 1.65;
}

.v3-entry { background: #fff; }

.v3-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.v3-entry-card {
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid var(--v3-line);
  border-radius: 28px;
  background: var(--v3-paper-soft);
}

.v3-entry-card h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.v3-entry-card p {
  margin: 24px 0 0;
  color: var(--v3-muted);
  font-size: 18px;
  line-height: 1.65;
}

.v3-entry-card strong { color: var(--v3-ink); }

.v3-quiz { background: var(--v3-paper); }

.v3-quiz-form {
  display: grid;
  gap: 28px;
  margin-top: 54px;
}

.v3-question {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--v3-line);
  border-radius: 20px;
  background: var(--v3-paper-soft);
}

.v3-question legend {
  max-width: 800px;
  padding: 0 8px 0 0;
  color: var(--v3-ink-deep);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.45;
}

.v3-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.v3-options label {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid var(--v3-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.v3-options input { margin-right: 10px; accent-color: var(--v3-copper-dark); }

.v3-options label:has(input:checked) {
  border-color: rgba(152, 89, 59, .56);
  background: #fff9f3;
  box-shadow: 0 0 0 3px rgba(184, 115, 79, .08);
}

.v3-quiz-status {
  min-height: 24px;
  color: var(--v3-muted);
  font-size: 14px;
}

.v3-result {
  display: none;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 24px;
  color: #fff;
  background: var(--v3-ink-deep);
}

.v3-result.is-visible { display: block; }

.v3-result h3 {
  margin: 0 0 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.v3-result p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.65;
}

.v3-email-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 24px;
}

.v3-email-form input[type="email"] {
  min-width: 0;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
}

.v3-email-form input::placeholder { color: rgba(255,255,255,.55); }

.v3-email-form button {
  border: 0;
  cursor: pointer;
}

.v3-human { background: var(--v3-paper-soft); }

.v3-human-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
}

.v3-human-copy p {
  margin: 20px 0 0;
  color: var(--v3-muted);
  font-size: 18px;
  line-height: 1.65;
}

.v3-final {
  color: #fff;
  background: var(--v3-copper-dark);
}

.v3-final .v3-kicker { color: rgba(255,255,255,.68); }
.v3-final h2 { color: #fff; }
.v3-final .v3-lead { color: rgba(255,255,255,.78); }
.v3-final .v3-button { border-color: #fff; color: var(--v3-copper-dark); background: #fff; }

.v3-viktor-hero {
  padding: clamp(70px, 8vw, 124px) clamp(24px, 6vw, 96px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(112, 87, 210, .22), transparent 34%),
    var(--v3-ink-deep);
}

.v3-viktor-hero .v3-hero-grid { align-items: center; }
.v3-viktor-hero .v3-hero-heading h1 { max-width: 1600px; }
.v3-viktor-hero h1 { color: #fff; font-size: clamp(54px, 5vw, 76px); line-height: .95; }
.v3-viktor-hero p { color: rgba(255,255,255,.72); }
.v3-viktor-hero .v3-kicker { color: #d9a182; }
.v3-viktor-hero .v3-product-frame::before { background: rgba(255,255,255,.08); }

.v3-showcase { background: #fff; }

.v3-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr);
  gap: 28px;
  align-items: end;
  margin-top: 56px;
}

.v3-showcase-grid figure { margin: 0; }
.v3-showcase-grid img { display: block; width: 100%; border: 1px solid var(--v3-line); border-radius: 20px; box-shadow: var(--v3-shadow); }
.v3-showcase-grid figcaption { margin-top: 12px; color: var(--v3-muted); font-size: 12px; }

.v3-output-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.v3-output-list li {
  padding: 20px 22px;
  border: 1px solid var(--v3-line);
  border-radius: 14px;
  list-style: none;
  background: #fff;
}

.v3-boundaries { background: var(--v3-paper); }

.v3-page-hero {
  padding: clamp(86px, 9vw, 150px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 10% 10%, rgba(184, 115, 79, .11), transparent 32%),
    var(--v3-paper-soft);
}

.v3-page-hero h1 {
  max-width: 1540px;
  margin: 0;
  font-size: clamp(58px, 6.5vw, 102px);
  font-weight: 500;
  line-height: .92;
  text-wrap: balance;
}

.v3-page-intro {
  max-width: 1080px;
  margin: 36px 0 0;
  color: var(--v3-muted);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.58;
}

.v3-page-hero-dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 115, 79, .18), transparent 28%),
    var(--v3-ink-deep);
}

.v3-page-hero-dark h1 { color: #fff; }
.v3-page-hero-dark .v3-kicker { color: #d9a182; }
.v3-page-hero-dark .v3-page-intro { color: rgba(255,255,255,.72); }

.v3-case-list {
  margin-top: 58px;
  border-top: 1px solid var(--v3-line);
}

.v3-case {
  display: grid;
  grid-template-columns: 70px minmax(300px, .8fr) minmax(420px, 1.2fr);
  gap: clamp(24px, 4vw, 64px);
  padding: 42px 0;
  border-bottom: 1px solid var(--v3-line);
}

.v3-case > b {
  color: var(--v3-copper-dark);
  font-size: 12px;
  letter-spacing: .16em;
}

.v3-case h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.v3-case-copy { display: grid; gap: 18px; }

.v3-case-copy p {
  margin: 0;
  color: var(--v3-muted);
  font-size: 17px;
  line-height: 1.65;
}

.v3-case-copy strong { color: var(--v3-ink-deep); }

.v3-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .52fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.v3-about-portrait { margin: 0; }

.v3-about-portrait img {
  display: block;
  width: 100%;
  max-height: 640px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  object-fit: cover;
  object-position: center 22%;
  box-shadow: 0 32px 80px rgba(0,0,0,.24);
}

.v3-about-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: start;
}

.v3-about-copy p {
  margin: 0 0 22px;
  color: var(--v3-muted);
  font-size: 19px;
  line-height: 1.68;
}

.v3-about-copy p:last-child { margin-bottom: 0; }
.v3-about-copy strong { color: var(--v3-ink-deep); }

.v3-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.v3-fit-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--v3-line);
  border-radius: 24px;
  background: var(--v3-paper-soft);
}

.v3-fit-card h3 {
  margin: 0 0 28px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 500;
}

.v3-fit-card ul { display: grid; gap: 16px; margin: 0; padding: 0; }

.v3-fit-card li {
  position: relative;
  padding-left: 26px;
  color: var(--v3-muted);
  line-height: 1.58;
  list-style: none;
}

.v3-fit-card li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v3-copper);
  content: "";
}

.v3-fit-card-negative { background: #fff; }
.v3-fit-card-negative li::before { background: var(--v3-muted); }

.v3-contact-page { background: #fff; }

.v3-contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(540px, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.v3-direct-contact h2 {
  font-size: clamp(44px, 4.7vw, 68px);
}

.v3-direct-contact > p {
  margin: 26px 0 0;
  color: var(--v3-muted);
  font-size: 18px;
  line-height: 1.65;
}

.v3-direct-links {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--v3-line);
}

.v3-direct-links a {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--v3-line);
  color: var(--v3-ink-deep);
  text-decoration: none;
}

.v3-direct-links small {
  color: var(--v3-copper-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.v3-direct-links strong { font-size: clamp(19px, 2vw, 25px); }

.v3-contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--v3-line);
  border-radius: 28px;
  background: var(--v3-paper-soft);
}

.v3-form-field { display: grid; gap: 9px; }

.v3-form-field > span,
.v3-form-field > label {
  color: var(--v3-ink-deep);
  font-size: 14px;
  font-weight: 750;
}

.v3-form-field input,
.v3-form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--v3-line);
  border-radius: 12px;
  color: var(--v3-ink-deep);
  background: #fff;
  font: inherit;
}

.v3-form-field textarea { min-height: 150px; resize: vertical; }

.v3-form-field input:focus,
.v3-form-field textarea:focus {
  border-color: var(--v3-copper-dark);
  outline: 3px solid rgba(184,115,79,.12);
}

.v3-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--v3-muted);
  font-size: 13px;
  line-height: 1.55;
}

.v3-consent input { margin-top: 3px; accent-color: var(--v3-copper-dark); }
.v3-hidden-field { position: absolute; left: -9999px; }
.v3-contact-form .v3-button { justify-self: start; border: 0; cursor: pointer; }

.v3-systems-hero .v3-actions { margin-top: 38px; }
.v3-systems-hero .v3-button:not(.v3-button-primary) { border-color: rgba(255,255,255,.62); color: #fff; }

.v3-system-foundation { background: #fff; }

.v3-foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.v3-foundation-card {
  display: flex;
  min-height: 340px;
  padding: clamp(30px, 3.2vw, 44px);
  border: 1px solid var(--v3-line);
  border-radius: 24px;
  flex-direction: column;
  background: var(--v3-paper-soft);
}

.v3-foundation-card b,
.v3-system-card > span,
.v3-system-feature > span {
  color: var(--v3-copper-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.v3-foundation-card h3 {
  margin: auto 0 18px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.v3-foundation-card p {
  margin: 0;
  color: var(--v3-muted);
  font-size: 16px;
  line-height: 1.65;
}

.v3-access-note {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--v3-copper);
  color: var(--v3-muted);
  background: var(--v3-paper);
  font-size: 16px;
  line-height: 1.6;
}

.v3-access-note strong { color: var(--v3-ink-deep); }

.v3-featured-systems { background: var(--v3-paper); }

.v3-featured-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.v3-system-feature {
  display: flex;
  min-height: 540px;
  padding: clamp(30px, 3.2vw, 46px);
  border: 1px solid var(--v3-line);
  border-radius: 28px;
  flex-direction: column;
  background: #fff;
}

.v3-system-feature-core { color: #fff; background: var(--v3-ink-deep); }
.v3-system-feature-core > span { color: #d9a182; }

.v3-system-feature h3 {
  margin: 42px 0 18px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(40px, 3.8vw, 58px);
  font-weight: 500;
  line-height: .94;
}

.v3-system-feature > p {
  margin: 0;
  color: var(--v3-muted);
  font-size: 17px;
  line-height: 1.62;
}

.v3-system-feature-core > p { color: rgba(255,255,255,.7); }

.v3-system-points {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 34px 0 0;
}

.v3-system-points li {
  padding: 13px 0;
  border-top: 1px solid var(--v3-line);
  color: var(--v3-muted);
  line-height: 1.45;
}

.v3-system-feature-core .v3-system-points li {
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.76);
}

.v3-pricing {
  color: #fff;
  background: var(--v3-ink-deep);
}

.v3-pricing .v3-kicker,
.v3-price-system-card > span,
.v3-rollout-card span,
.v3-installment-note > span { color: #d9a182; }

.v3-pricing h2 { color: #fff; }

.v3-pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
}

.v3-pricing-heading .v3-lead {
  max-width: 620px;
  margin: 0 0 10px;
  color: rgba(255,255,255,.7);
}

.v3-price-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.v3-price-system-card {
  display: flex;
  min-height: 430px;
  padding: clamp(30px, 3.2vw, 44px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  flex-direction: column;
  color: var(--v3-ink-deep);
  background: var(--v3-paper);
}

.v3-price-system-card-core {
  border-color: rgba(217,161,130,.52);
  background: #fff;
}

.v3-price-system-card > span,
.v3-rollout-card span,
.v3-installment-note > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.v3-price-system-card h3 {
  margin: 36px 0 auto;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 500;
  line-height: .96;
}

.v3-price-system-card dl {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
}

.v3-price-system-card dl > div {
  display: grid;
  grid-template-columns: minmax(100px, .7fr) 1.3fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--v3-line);
}

.v3-price-system-card dt {
  color: var(--v3-muted);
  font-size: 13px;
  font-weight: 700;
}

.v3-price-system-card dd {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 800;
  line-height: 1.2;
}

.v3-price-system-card > p {
  margin: 24px 0 0;
  color: var(--v3-muted);
  font-size: 14px;
  line-height: 1.55;
}

.v3-rollout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.v3-rollout-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: clamp(22px, 3vw, 42px);
  min-height: 330px;
  padding: clamp(30px, 3.2vw, 44px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: rgba(255,255,255,.035);
}

.v3-rollout-card > b {
  color: rgba(255,255,255,.32);
  font-family: "Newsreader", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.v3-rollout-card h3,
.v3-installment-note h3 {
  margin: 30px 0 18px;
  color: #fff;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.02;
}

.v3-rollout-card p,
.v3-installment-note p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

.v3-rollout-card strong {
  display: block;
  margin-top: 22px;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.v3-installment-note {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) 1.58fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  margin-top: 18px;
  padding: clamp(32px, 4vw, 54px);
  border-radius: 26px;
  color: var(--v3-ink-deep);
  background: var(--v3-copper-dark);
}

.v3-installment-note > span { color: #fff; }
.v3-installment-note h3 { margin-top: 0; }
.v3-installment-note p { max-width: 820px; color: rgba(255,255,255,.78); }

.v3-pricing-footer {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
}

.v3-pricing-footer p {
  margin: 0;
  color: rgba(255,255,255,.66);
}

.v3-pricing-footer .v3-button-primary {
  flex: 0 0 auto;
  color: var(--v3-ink-deep);
  background: #fff;
}

.v3-system-catalogue { background: var(--v3-paper-soft); }
.v3-systems-home { background: #fff; }

.v3-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

@media (min-width: 1101px) {
  .v3-system-grid-primary > .v3-system-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

.v3-system-card {
  display: flex;
  min-height: 320px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--v3-line);
  border-radius: 24px;
  flex-direction: column;
  background: var(--v3-paper);
}

.v3-system-card h3 {
  margin: auto 0 16px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  line-height: .98;
}

.v3-system-card p {
  margin: 0;
  color: var(--v3-muted);
  line-height: 1.65;
}

.v3-system-card > a {
  width: fit-content;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  color: var(--v3-copper-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.v3-system-card-custom { color: #fff; background: var(--v3-copper-dark); }
.v3-system-card-custom > span,
.v3-system-card-custom > a { color: #fff; }
.v3-system-card-custom p { color: rgba(255,255,255,.76); }

.v3-more-systems { color: #fff; background: var(--v3-ink-deep); }
.v3-more-systems .v3-kicker { color: #d9a182; }
.v3-more-systems h2 { color: #fff; }

.v3-compact-system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.v3-compact-system-list article {
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 54px);
  padding: 30px 28px 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.v3-compact-system-list article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.16); }
.v3-compact-system-list article:nth-child(even) { padding-left: 28px; }

.v3-compact-system-list h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.v3-compact-system-list p {
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.6;
}

.v3-custom-system { background: #fff; }

@media (hover: hover) and (pointer: fine) {
  .v3-step,
  .v3-situation,
  .v3-entry-card,
  .v3-question,
  .v3-foundation-card,
  .v3-system-feature,
  .v3-system-card {
    transition: border-color .22s ease, box-shadow .22s ease;
  }

  .v3-step:hover,
  .v3-situation:hover,
  .v3-entry-card:hover,
  .v3-question:hover,
  .v3-foundation-card:hover,
  .v3-system-feature:hover,
  .v3-system-card:hover {
    border-color: rgba(21, 59, 62, .28);
    box-shadow: 0 18px 46px rgba(17, 45, 47, .08);
  }

  .v3-options label:hover { border-color: rgba(21, 59, 62, .34); }
}

@media (max-width: 1100px) {
  .site-v3 .desktop-nav { display: none; }
  .v3-hero-grid,
  .v3-hero-lower,
  .v3-proof-grid,
  .v3-entry-grid { grid-template-columns: 1fr; }
  .v3-about-hero-grid,
  .v3-about-copy-grid,
  .v3-contact-grid { grid-template-columns: 1fr; }
  .v3-featured-system-grid,
  .v3-foundation-grid,
  .v3-price-system-grid { grid-template-columns: 1fr; }
  .v3-pricing-heading { grid-template-columns: 1fr; }
  .v3-pricing-heading .v3-lead { margin: 0; }
  .v3-price-system-card { min-height: 380px; }
  .v3-system-feature { min-height: 430px; }
  .v3-foundation-card { min-height: 280px; }
  .v3-system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v3-compact-system-list { grid-template-columns: 1fr; }
  .v3-compact-system-list article,
  .v3-compact-system-list article:nth-child(even) { padding: 28px 0; border-right: 0; }
  .v3-hero { min-height: auto; }
  .v3-product-frame { width: min(850px, 100%); }
  .v3-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v3-about-portrait { width: min(520px, 78%); }
  .v3-case { grid-template-columns: 56px minmax(260px, .72fr) 1.28fr; }
}

@media (max-width: 760px) {
  .v3-section { padding: 68px 20px; }
  .v3-hero,
  .v3-viktor-hero,
  .v3-page-hero { padding: 62px 20px 76px; }
  .v3-hero-grid { gap: 50px; }
  .v3-hero-lower { gap: 42px; margin-top: 40px; }
  .v3-hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .v3-viktor-hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .v3-section h2 { font-size: clamp(38px, 12vw, 58px); }
  .v3-product-frame::before { inset: -14px -12px 34% 22px; border-radius: 24px; }
  .v3-signals,
  .v3-steps,
  .v3-situation-grid,
  .v3-human-grid,
  .v3-output-list { grid-template-columns: 1fr; }
  .v3-signal { min-height: 150px; padding: 26px; }
  .v3-situation { min-height: 260px; }
  .v3-situation h3 { margin-top: 44px; }
  .v3-options { grid-template-columns: 1fr; }
  .v3-question { padding: 22px 18px; }
  .v3-email-form { grid-template-columns: 1fr; }
  .v3-showcase-grid { grid-template-columns: 1fr; }
  .v3-showcase-grid figure:last-child { width: min(310px, 82%); justify-self: center; }
  .v3-page-hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .v3-case { grid-template-columns: 1fr; gap: 18px; padding: 34px 0; }
  .v3-case-copy { gap: 14px; }
  .v3-fit-grid { grid-template-columns: 1fr; }
  .v3-about-portrait { width: min(360px, 88%); }
  .v3-contact-form { padding: 26px 20px; }
  .v3-contact-form .v3-button { width: 100%; }
  .v3-system-grid { grid-template-columns: 1fr; }
  .v3-system-card { min-height: 270px; }
  .v3-compact-system-list article { grid-template-columns: 1fr; gap: 12px; }
  .v3-rollout-grid { grid-template-columns: 1fr; }
  .v3-rollout-card { min-height: 0; }
  .v3-installment-note { grid-template-columns: 1fr; gap: 20px; }
  .v3-pricing-footer { align-items: stretch; flex-direction: column; }
  .v3-pricing-footer .v3-button { width: 100%; }

  html.v3-motion-enabled .v3-reveal {
    transform: translate3d(0, 10px, 0);
    transition-duration: .42s;
  }

  html.v3-motion-enabled .v3-reveal[data-v3-motion="object"] {
    transform: translate3d(0, 9px, 0) scale(.996);
    transition-duration: .46s;
  }
}

@media (max-width: 520px) {
  .site-v3 .identity small { display: none; }
  .site-v3 .language-switcher { display: none; }
  .v3-actions { align-items: stretch; flex-direction: column; }
  .v3-button { width: 100%; }
  .v3-proof-item h3 { font-size: 23px; }
  .v3-price-system-card dl > div { grid-template-columns: 1fr; gap: 6px; }
  .v3-rollout-card { grid-template-columns: 1fr; }
}

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

  html.v3-motion-enabled .v3-reveal,
  html.v3-motion-enabled .v3-reveal[data-v3-motion="object"],
  html.v3-motion-enabled .v3-result.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
