/* CutterKomben 2026 mockup implementation — landing page */
:root {
  --v4-bg: #f8f7fd;
  --v4-panel: rgba(255, 255, 255, 0.88);
  --v4-panel-solid: #ffffff;
  --v4-text: #111127;
  --v4-muted: #59586b;
  --v4-line: rgba(48, 35, 105, 0.13);
  --v4-violet: #6334df;
  --v4-violet-2: #8b49f2;
  --v4-violet-soft: #eee9ff;
  --v4-navy: #0e092f;
  --v4-radius: 14px;
  --v4-shadow: 0 18px 52px rgba(59, 36, 128, 0.08);
}

html[data-theme="dark"] {
  --v4-bg: #0d0c19;
  --v4-panel: rgba(24, 22, 42, 0.9);
  --v4-panel-solid: #171529;
  --v4-text: #f7f5ff;
  --v4-muted: #b7b2c9;
  --v4-line: rgba(203, 190, 255, 0.15);
  --v4-violet-soft: #282042;
  --v4-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
}

.v4-home {
  margin: 0;
  background:
    radial-gradient(circle at 76% -8%, rgba(132, 92, 245, 0.12), transparent 36rem),
    var(--v4-bg);
  color: var(--v4-text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.v4-home *, .v4-home *::before, .v4-home *::after { box-sizing: border-box; }
.v4-home a { color: inherit; text-decoration: none; }
.v4-home button, .v4-home a { -webkit-tap-highlight-color: transparent; }
.v4-home svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.v4-sprite { position: absolute; width: 0 !important; height: 0 !important; overflow: hidden; }
.v4-site { min-height: 100vh; overflow: hidden; }
.v4-wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.v4-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--v4-bg) 86%, transparent);
  backdrop-filter: blur(16px);
}

.v4-header-inner {
  display: grid;
  width: min(1320px, calc(100% - 40px));
  min-height: 76px;
  align-items: center;
  grid-template-columns: minmax(190px, 1fr) auto minmax(250px, 1fr);
  gap: 22px;
  margin-inline: auto;
}

.v4-brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.v4-brand > svg { width: 38px; height: 38px; color: var(--v4-violet); stroke: none; }
.v4-brand > span { display: flex; flex-direction: column; line-height: .96; letter-spacing: .055em; }
.v4-brand strong { font-size: 14px; font-weight: 900; }
.v4-brand small { margin-top: 4px; color: var(--v4-violet); font-size: 9px; font-weight: 900; }

.v4-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 30px); }
.v4-nav a { position: relative; padding-block: 27px; font-size: 12px; font-weight: 760; white-space: nowrap; }
.v4-nav a::after { position: absolute; right: 0; bottom: 19px; left: 0; height: 2px; transform: scaleX(0); border-radius: 2px; background: var(--v4-violet); content: ""; transition: transform 180ms ease; }
.v4-nav a:hover::after, .v4-nav a:focus-visible::after { transform: scaleX(1); }
.v4-nav a span { margin-left: 4px; font-size: 12px; }
.v4-header-tools { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.v4-theme, .v4-menu { display: grid; width: 40px; min-width: 40px; height: 40px; place-items: center; border: 1px solid var(--v4-line); border-radius: 10px; background: var(--v4-panel); color: var(--v4-violet); cursor: pointer; }
.v4-theme span { font-size: 18px; line-height: 1; }
.v4-project, .v4-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 8px;
  padding: 11px 20px;
  background: linear-gradient(135deg, #6c3be3, #4d20d5);
  box-shadow: 0 10px 24px rgba(87, 46, 213, 0.24);
  color: #fff !important;
  font-size: 12px;
  font-weight: 820;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.v4-project:hover, .v4-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(87, 46, 213, 0.3); }
.v4-project svg, .v4-button svg { width: 15px; height: 15px; }
.v4-menu { display: none; }

.v4-hero { position: relative; min-height: 440px; overflow: hidden; }
.v4-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.v4-hero-fade { position: absolute; inset: 0; background: linear-gradient(90deg, var(--v4-bg) 0%, var(--v4-bg) 27%, color-mix(in srgb, var(--v4-bg) 86%, transparent) 41%, transparent 65%), linear-gradient(0deg, color-mix(in srgb, var(--v4-bg) 16%, transparent), transparent 35%); }
.v4-hero-content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 32px; }
.v4-eyebrow, .v4-section-title span, .v4-campaign > div > span, .v4-showreel-copy > span, .v4-discord-copy small { color: var(--v4-violet); font-size: 10px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.v4-hero h1 { max-width: 610px; margin: 14px 0 16px; color: var(--v4-text); font-size: clamp(42px, 4.1vw, 64px); font-weight: 900; letter-spacing: -.047em; line-height: .98; }
.v4-hero h1 em { color: var(--v4-violet); font-style: normal; }
.v4-hero-content > p { margin: 0 0 20px; color: var(--v4-muted); font-size: 13px; line-height: 1.55; }
.v4-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.v4-button-ghost { border: 1px solid var(--v4-line); background: var(--v4-panel); box-shadow: none; color: var(--v4-text) !important; }
.v4-button-ghost:hover { border-color: rgba(99, 52, 223, .42); box-shadow: 0 10px 25px rgba(67, 43, 139, .08); }
.v4-benefits { display: flex; flex-wrap: wrap; gap: 0; margin-top: 26px; }
.v4-benefits > span { display: flex; min-width: 125px; align-items: center; gap: 9px; border-right: 1px solid var(--v4-line); padding: 0 18px; color: var(--v4-text); font-size: 10px; font-weight: 700; line-height: 1.25; }
.v4-benefits > span:first-child { padding-left: 0; }
.v4-benefits > span:last-child { border-right: 0; }
.v4-benefits b { display: grid; width: 29px; height: 29px; flex: 0 0 29px; place-items: center; border: 1px solid rgba(99,52,223,.24); border-radius: 50%; color: var(--v4-violet); }
.v4-benefits svg { width: 15px; height: 15px; }

.v4-showreel { position: relative; min-height: 230px; margin-top: 10px; overflow: hidden; border: 1px solid rgba(123, 88, 240, .32); border-radius: var(--v4-radius); background: #0d0828; box-shadow: var(--v4-shadow); color: white; }
.v4-showreel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v4-showreel::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,7,33,.96), rgba(10,7,33,.38) 39%, rgba(10,7,33,.08) 68%, rgba(10,7,33,.25)); content: ""; }
.v4-showreel-copy { position: relative; z-index: 2; width: 350px; padding: 35px 30px; }
.v4-showreel-copy h2 { margin: 8px 0 9px; font-size: 29px; line-height: 1.05; }
.v4-showreel-copy p { margin: 0 0 15px; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.5; }
.v4-showreel-copy a, .v4-campaign a { display: inline-flex; align-items: center; gap: 12px; border-radius: 7px; padding: 10px 16px; background: #fff; color: #171329; font-size: 11px; font-weight: 850; }
.v4-showreel-copy a svg, .v4-campaign a svg { width: 14px; height: 14px; }
.v4-play { position: absolute; z-index: 3; top: 50%; left: 52%; display: grid; width: 68px; height: 68px; transform: translate(-50%,-56%); place-items: center; border: 2px solid rgba(255,255,255,.9); border-radius: 50%; background: rgba(82, 37, 203, .65); color: #fff !important; backdrop-filter: blur(8px); }
.v4-play svg { width: 30px; height: 30px; margin-left: 3px; fill: currentColor; stroke: none; }
.v4-showreel-tags { position: absolute; z-index: 3; right: 26px; bottom: 20px; display: flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 700; }
.v4-showreel-tags i { width: 3px; height: 3px; border-radius: 50%; background: #fff; }

.v4-campaigns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.v4-campaign { position: relative; min-height: 252px; overflow: hidden; border-radius: var(--v4-radius); background: #130a3d; color: white; }
.v4-campaign > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v4-campaign::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,7,35,.95), rgba(11,7,35,.72) 42%, rgba(11,7,35,.05) 76%); content: ""; }
.v4-campaign > div { position: relative; z-index: 2; width: 58%; padding: 32px 28px; }
.v4-campaign h2 { margin: 8px 0 12px; font-size: 24px; letter-spacing: -.03em; line-height: 1.05; }
.v4-campaign p { margin: 0 0 15px; color: rgba(255,255,255,.78); font-size: 10.5px; line-height: 1.55; }
.v4-campaign a { background: linear-gradient(135deg, #7544ec, #5220d7); color: #fff; }
.v4-campaign ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; margin: 0 0 14px; padding: 0; list-style: none; color: rgba(255,255,255,.85); font-size: 9px; }
.v4-campaign li::before { margin-right: 5px; color: #b39aff; content: "✓"; }

.v4-services { padding-top: 30px; }
.v4-section-title { margin-bottom: 16px; text-align: center; }
.v4-section-title h2 { margin: 6px 0 0; color: var(--v4-text); font-size: 27px; letter-spacing: -.035em; }
.v4-service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.v4-service-grid article { display: flex; min-width: 0; min-height: 250px; flex-direction: column; border: 1px solid var(--v4-line); border-radius: 11px; padding: 10px; background: var(--v4-panel); box-shadow: 0 9px 26px rgba(51,31,110,.05); }
.v4-service-grid img { width: 100%; height: 105px; border-radius: 7px; object-fit: cover; filter: saturate(.9) hue-rotate(32deg); }
.v4-service-grid h3 { margin: 13px 2px 7px; font-size: 13px; }
.v4-service-grid p { margin: 0 2px 12px; color: var(--v4-muted); font-size: 10px; line-height: 1.5; }
.v4-service-grid a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid var(--v4-line); padding: 10px 3px 2px; color: var(--v4-violet); font-size: 10px; font-weight: 850; }
.v4-service-grid a svg { width: 13px; height: 13px; }

.v4-bundles { padding-top: 28px; }
.v4-bundle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.v4-bundle-grid article { position: relative; min-height: 225px; border: 1px solid var(--v4-line); border-radius: 10px; padding: 20px 22px; background: var(--v4-panel); box-shadow: 0 8px 25px rgba(51,31,110,.04); }
.v4-bundle-grid article.is-featured { border-color: #7544ec; box-shadow: 0 12px 30px rgba(96,52,220,.16); }
.v4-bundle-grid article > span { position: absolute; top: 12px; right: 12px; border-radius: 5px; padding: 4px 8px; background: var(--v4-violet-soft); color: var(--v4-violet); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.v4-bundle-grid h3 { margin: 0 0 15px; text-align: center; font-size: 12px; text-transform: uppercase; }
.v4-bundle-grid ul { display: grid; gap: 9px; margin: 0 0 18px; padding: 0; list-style: none; color: var(--v4-text); font-size: 10px; }
.v4-bundle-grid li::before { margin-right: 9px; color: var(--v4-violet); font-weight: 900; content: "✓"; }
.v4-bundle-grid a { display: block; margin-top: auto; border: 1px solid var(--v4-line); border-radius: 6px; padding: 9px; text-align: center; font-size: 10px; font-weight: 850; }
.v4-bundle-grid .is-featured a { border-color: transparent; background: linear-gradient(135deg, #7142e8, #5122d7); color: #fff; }
.v4-bundles > p { margin: 12px 0 0; color: var(--v4-muted); font-size: 9px; text-align: center; }

.v4-process { margin-top: 22px; border: 1px solid var(--v4-line); border-radius: var(--v4-radius); padding: 22px 26px 26px; background: var(--v4-panel); box-shadow: var(--v4-shadow); }
.v4-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.v4-process-grid article { position: relative; min-width: 0; padding: 0 22px; text-align: center; }
.v4-process-grid article:not(:last-child)::after { position: absolute; top: 28px; right: -11px; width: 38px; border-top: 1px dashed rgba(99,52,223,.45); content: ""; }
.v4-process-grid b { position: absolute; top: 15px; left: 4px; color: var(--v4-violet); font-size: 12px; }
.v4-process-grid span { display: grid; width: 46px; height: 46px; margin: 0 auto 12px; place-items: center; border: 1px solid rgba(99,52,223,.25); border-radius: 50%; background: var(--v4-violet-soft); color: var(--v4-violet); }
.v4-process-grid span svg { width: 20px; height: 20px; }
.v4-process-grid h3 { margin: 0 0 7px; font-size: 11px; }
.v4-process-grid p { margin: 0; color: var(--v4-muted); font-size: 9px; line-height: 1.5; }

.v4-about { display: grid; min-height: 300px; grid-template-columns: .9fr 1.1fr; overflow: hidden; margin-top: 18px; border: 1px solid var(--v4-line); border-radius: var(--v4-radius); background: var(--v4-panel); box-shadow: var(--v4-shadow); }
.v4-about-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px 38px; }
.v4-about-copy > span { color: var(--v4-violet); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.v4-about h2 { margin: 9px 0 13px; color: var(--v4-text); font-size: clamp(28px, 3vw, 42px); letter-spacing: -.045em; line-height: 1; }
.v4-about p { max-width: 570px; margin: 0; color: var(--v4-muted); font-size: 11px; line-height: 1.65; }
.v4-about ul { display: grid; gap: 8px; margin: 18px 0 21px; padding: 0; list-style: none; color: var(--v4-text); font-size: 10px; }
.v4-about li { display: flex; align-items: center; gap: 9px; }
.v4-about li svg { width: 15px; height: 15px; flex: 0 0 15px; color: var(--v4-violet); }
.v4-about .v4-button { width: fit-content; min-height: 38px; padding: 9px 16px; font-size: 10px; }
.v4-about-media { position: relative; min-height: 300px; overflow: hidden; }
.v4-about-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--v4-panel), transparent 30%), linear-gradient(0deg, rgba(20,12,55,.72), transparent 42%); content: ""; }
.v4-about-media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; transition: transform 260ms ease; }
.v4-about-media:hover img { transform: scale(1.025); }
.v4-about-media span { position: absolute; z-index: 2; right: 24px; bottom: 20px; color: #fff; font-size: 11px; font-weight: 850; letter-spacing: .02em; }

.v4-discord { display: grid; min-height: 205px; grid-template-columns: .9fr 1.4fr; gap: 28px; align-items: center; margin-top: 18px; border: 1px solid var(--v4-line); border-radius: var(--v4-radius); padding: 22px 24px; background: var(--v4-panel); box-shadow: var(--v4-shadow); }
.v4-discord-copy { display: flex; gap: 20px; align-items: flex-start; }
.v4-discord-icon { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; border-radius: 15px; background: linear-gradient(135deg, #7950ec, #4d22d6); color: white; font-size: 26px; }
.v4-discord h2 { margin: 5px 0 7px; font-size: 25px; }
.v4-discord p { margin: 0 0 13px; color: var(--v4-muted); font-size: 10px; line-height: 1.5; }
.v4-discord .v4-button { min-height: 36px; padding: 8px 15px; font-size: 10px; }
.v4-discord-ui { display: grid; min-height: 160px; grid-template-columns: 135px 1fr 110px; overflow: hidden; border-radius: 10px; background: #191a22; box-shadow: 0 14px 32px rgba(20,15,48,.2); color: #d8d9df; font-size: 8px; }
.v4-discord-ui aside { display: flex; flex-direction: column; gap: 9px; padding: 12px; background: #22232d; }
.v4-discord-ui aside:last-child { background: #1d1e27; }
.v4-discord-ui aside b { color: #9497a5; font-size: 8px; }
.v4-discord-ui section header { border-bottom: 1px solid rgba(255,255,255,.06); padding: 12px; font-weight: 800; }
.v4-discord-ui section div { padding: 20px 16px; }
.v4-discord-ui section b { color: white; font-size: 10px; }
.v4-discord-ui section p { margin: 5px 0; color: #aaaeba; }

.v4-footer { margin-top: 25px; border-top: 1px solid var(--v4-line); padding: 26px 0 34px; }
.v4-footer-grid { display: grid; grid-template-columns: 1.8fr .8fr .8fr 1.1fr 1.1fr; gap: 28px; }
.v4-footer-grid > div > p { margin: 14px 0; color: var(--v4-muted); font-size: 10px; line-height: 1.45; }
.v4-footer-grid > div > small { color: var(--v4-muted); font-size: 8px; }
.v4-footer nav { display: flex; flex-direction: column; gap: 8px; padding-top: 5px; }
.v4-footer nav b { margin-bottom: 3px; font-size: 9px; text-transform: uppercase; }
.v4-footer nav a { color: var(--v4-muted); font-size: 9px; }
.v4-footer nav a:hover { color: var(--v4-violet); }
.v4-socials div { display: flex; gap: 10px; }
.v4-socials div a { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--v4-line); border-radius: 8px; color: var(--v4-text); font-size: 14px; }

html[data-theme="dark"] .v4-hero-fade { background: linear-gradient(90deg, var(--v4-bg) 0%, var(--v4-bg) 28%, rgba(13,12,25,.86) 43%, rgba(13,12,25,.08) 72%), linear-gradient(0deg, rgba(13,12,25,.38), transparent 40%); }
html[data-theme="dark"] .v4-service-grid img { filter: saturate(.9) hue-rotate(32deg) brightness(.86); }

@media (max-width: 1120px) {
  .v4-header-inner { grid-template-columns: auto minmax(0,1fr) auto; }
  .v4-nav { gap: 16px; }
  .v4-nav a { font-size: 10px; }
  .v4-project { display: none; }
  .v4-benefits > span { min-width: 110px; padding-inline: 12px; }
  .v4-service-grid { grid-template-columns: repeat(3, 1fr); }
  .v4-service-grid article { min-height: 230px; }
  .v4-service-grid img { height: 125px; }
}

@media (max-width: 820px) {
  .v4-header-inner { grid-template-columns: 1fr auto; }
  .v4-header-tools { grid-column: 2; }
  .v4-nav { position: absolute; top: 68px; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--v4-line); border-radius: 12px; padding: 9px; background: color-mix(in srgb, var(--v4-panel-solid) 96%, transparent); box-shadow: var(--v4-shadow); }
  .v4-nav.navOpen { display: flex; }
  .v4-nav a { padding: 12px 14px; font-size: 12px; }
  .v4-nav a::after { display: none; }
  .v4-project { display: none; }
  .v4-menu { display: grid; }
  .v4-hero { min-height: 690px; }
  .v4-hero > img { height: 360px; object-position: 68% top; }
  .v4-hero-fade { background: linear-gradient(0deg, var(--v4-bg) 0%, var(--v4-bg) 53%, color-mix(in srgb, var(--v4-bg) 28%, transparent) 77%, transparent); }
  .v4-hero-content { padding-top: 360px; }
  .v4-hero h1 { font-size: clamp(42px, 8vw, 58px); }
  .v4-benefits > span { width: 33.333%; border: 0; padding: 8px 12px; }
  .v4-benefits > span:first-child { padding-left: 12px; }
  .v4-campaigns { grid-template-columns: 1fr; }
  .v4-bundle-grid { grid-template-columns: 1fr 1fr; }
  .v4-process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .v4-process-grid article:not(:last-child)::after { display: none; }
  .v4-process-grid article:last-child { grid-column: 1 / -1; }
  .v4-about { grid-template-columns: 1fr; }
  .v4-about-media { min-height: 300px; grid-row: 1; }
  .v4-about-media::after { background: linear-gradient(0deg, var(--v4-panel), transparent 45%); }
  .v4-discord { grid-template-columns: 1fr; }
  .v4-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 620px) {
  .v4-wrap, .v4-header-inner { width: min(100% - 28px, 1180px); }
  .v4-brand > span { display: none; }
  .v4-header-inner { min-height: 66px; }
  .v4-nav { top: 61px; }
  .v4-hero { min-height: 740px; }
  .v4-hero > img { height: 315px; object-position: 65% top; }
  .v4-hero-content { padding-top: 325px; }
  .v4-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.7vw, 44px);
    overflow-wrap: break-word;
  }
  .v4-hero-content > p br { display: none; }
  .v4-about-copy { padding: 28px 22px; }
  .v4-about-media { min-height: 230px; }
  .v4-actions { flex-direction: column; }
  .v4-button { width: 100%; }
  .v4-benefits > span { width: 50%; min-width: 0; }
  .v4-showreel { min-height: 360px; }
  .v4-showreel > img { object-position: 62% center; }
  .v4-showreel::after { background: linear-gradient(0deg, rgba(10,7,33,.96), rgba(10,7,33,.55) 58%, rgba(10,7,33,.08)); }
  .v4-showreel-copy { position: absolute; bottom: 0; width: 100%; padding: 22px; }
  .v4-play { top: 35%; left: 50%; }
  .v4-showreel-tags { display: none; }
  .v4-campaign { min-height: 365px; }
  .v4-campaign > img { object-position: 64% center; }
  .v4-campaign::after { background: linear-gradient(0deg, rgba(11,7,35,.97), rgba(11,7,35,.56) 66%, rgba(11,7,35,.05)); }
  .v4-campaign > div { position: absolute; bottom: 0; width: 100%; padding: 24px 20px; }
  .v4-service-grid { grid-template-columns: 1fr 1fr; }
  .v4-service-grid article { min-height: 240px; }
  .v4-service-grid img { height: 105px; }
  .v4-bundle-grid, .v4-process-grid { grid-template-columns: 1fr; }
  .v4-process-grid article:last-child { grid-column: auto; }
  .v4-discord { padding: 20px 16px; }
  .v4-discord-copy { flex-direction: column; }
  .v4-discord-ui { grid-template-columns: 100px 1fr; }
  .v4-discord-ui aside:last-child { display: none; }
  .v4-footer-grid { grid-template-columns: 1fr 1fr; }
  .v4-footer-grid > div { grid-column: 1 / -1; }
}

@media (max-width: 400px) {
  .v4-service-grid { grid-template-columns: 1fr; }
  .v4-service-grid img { height: 145px; }
  .v4-footer-grid { grid-template-columns: 1fr; }
}

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