:root {
  --ink: #0b0d10;
  --ink-2: #15181d;
  --ink-3: #23272e;
  --paper: #f4f5f2;
  --surface: #ffffff;
  --line: #d8dcd8;
  --line-dark: #31363d;
  --text: #15181b;
  --muted: #626970;
  --muted-dark: #a8afb7;
  --coral: #ff5f70;
  --coral-dark: #dc3f54;
  --mint: #2ccbb6;
  --yellow: #e7bd4c;
  --violet: #7864d8;
  --container: 1180px;
  --header-height: 68px;
  --radius: 6px;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  line-height: 1.75;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(44, 203, 182, 0.45);
  outline-offset: 3px;
}

.l2d-container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.l2d-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 16, 0.96);
  color: #fff;
  backdrop-filter: blur(12px);
}

.l2d-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.l2d-brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.l2d-brand-copy {
  display: grid;
  line-height: 1.15;
}

.l2d-brand-copy strong {
  font-size: 14px;
  font-weight: 850;
}

.l2d-brand-copy small {
  margin-top: 4px;
  color: var(--muted-dark);
  font-size: 9px;
}

.l2d-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 750;
}

.l2d-nav a {
  color: #d7dade;
}

.l2d-nav a:hover {
  color: #fff;
}

.l2d-header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--coral);
  border-radius: 4px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.l2d-header-cta:hover,
.l2d-btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.l2d-header-cta svg,
.l2d-btn svg,
.l2d-path-grid a svg,
.l2d-scope-note svg,
.l2d-response-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.l2d-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.l2d-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 13, 16, 0.16);
  pointer-events: none;
}

.l2d-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 650px;
  padding-block: 62px;
}

.l2d-hero-copy {
  width: min(650px, 58%);
}

.l2d-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: #dfe5e5;
  font-size: 12px;
  font-weight: 700;
}

.l2d-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(44, 203, 182, 0.12);
}

.l2d-eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
}

.l2d-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.14;
}

.l2d-hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.l2d-hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: #d2d6da;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.l2d-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.l2d-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
  transition: background 160ms, border-color 160ms, color 160ms;
}

.l2d-btn-primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}

.l2d-btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.l2d-btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.l2d-hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 24px;
  color: #fff;
}

.l2d-hero-price span,
.l2d-hero-price small {
  color: var(--muted-dark);
  font-size: 11px;
}

.l2d-hero-price strong {
  font-size: 20px;
}

.l2d-hero-art {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 48%;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-2);
}

.l2d-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 16, 0.18);
  pointer-events: none;
}

.l2d-hero-model {
  position: absolute;
  object-fit: contain;
  object-position: bottom center;
  filter: saturate(0.94) contrast(1.03);
}

.l2d-hero-model-main {
  z-index: 3;
  right: 7%;
  bottom: -54px;
  width: 49%;
  height: 106%;
}

.l2d-hero-model-face {
  z-index: 2;
  top: 0;
  left: -3%;
  width: 54%;
  height: 68%;
  opacity: 0.62;
}

.l2d-hero-model-side {
  z-index: 1;
  right: -10%;
  bottom: -15%;
  width: 46%;
  height: 68%;
  opacity: 0.34;
}

.l2d-proof {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.l2d-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.l2d-proof-grid > div {
  display: grid;
  gap: 2px;
  min-height: 58px;
  align-content: center;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.l2d-proof-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.l2d-proof-grid strong {
  font-size: 19px;
  line-height: 1.2;
}

.l2d-proof-grid span,
.l2d-proof-note {
  color: var(--muted);
  font-size: 10px;
}

.l2d-proof-note {
  margin: 12px auto 0;
  text-align: center;
}

.l2d-section {
  padding: 104px 0;
}

.l2d-section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.l2d-section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  max-width: none;
  align-items: end;
}

.l2d-section-heading h2,
.l2d-active h2,
.l2d-estimate h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.25;
}

.l2d-section-heading > p:not(.l2d-eyebrow),
.l2d-section-heading-split > p,
.l2d-active-inner > div > p:not(.l2d-eyebrow),
.l2d-estimate-copy > p:not(.l2d-eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.l2d-motion {
  background: var(--paper);
}

.l2d-case-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 18px;
}

.l2d-case {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.l2d-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--ink-2);
  cursor: pointer;
}

.l2d-video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms, opacity 220ms;
}

.l2d-video-trigger:hover img {
  transform: scale(1.02);
  opacity: 0.82;
}

.l2d-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(11, 13, 16, 0.78);
  color: #fff;
  transform: translate(-50%, -50%);
}

.l2d-play svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.l2d-case-copy {
  padding: 24px;
}

.l2d-case-label {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 900;
}

.l2d-case h3,
.l2d-path-grid h3,
.l2d-promise h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.l2d-case-copy > p:not(.l2d-case-label),
.l2d-path-grid article p:not(.l2d-case-label),
.l2d-promise article p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.l2d-case-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.l2d-case-copy li {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-size: 9px;
}

.l2d-paths {
  border-block: 1px solid var(--line);
  background: #fff;
}

.l2d-path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.l2d-path-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 38px;
}

.l2d-path-grid article + article {
  border-left: 1px solid var(--line);
}

.l2d-path-number {
  color: var(--coral);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.l2d-path-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
}

.l2d-path-grid a:hover {
  color: var(--coral-dark);
}

.l2d-plans {
  background: var(--paper);
}

.l2d-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.l2d-plan {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.l2d-plan-featured {
  border: 2px solid var(--coral);
  box-shadow: 0 16px 34px rgba(35, 39, 46, 0.12);
}

.l2d-plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 6px 12px;
  background: var(--coral);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.l2d-plan-head > p:first-child {
  margin: 0 0 6px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 900;
}

.l2d-plan-head h3 {
  margin: 0;
  font-size: 24px;
}

.l2d-plan-head > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 18px;
}

.l2d-plan-head strong {
  font-size: 29px;
  line-height: 1.2;
}

.l2d-plan-head span,
.l2d-plan-head > p:last-child {
  color: var(--muted);
  font-size: 10px;
}

.l2d-plan-head > p:last-child {
  margin: 10px 0 0;
}

.l2d-plan ul {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 26px 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.l2d-plan li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #3f464c;
  font-size: 11px;
}

.l2d-plan li svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--mint);
}

.l2d-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--ink-3);
  border-radius: 4px;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.l2d-plan-cta:hover {
  background: var(--ink-2);
  color: #fff;
}

.l2d-plan-cta-primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}

.l2d-scope-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--yellow);
  background: #fff;
}

.l2d-scope-note svg {
  margin-top: 4px;
  color: #b88e1f;
}

.l2d-scope-note p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.l2d-promise {
  border-block: 1px solid var(--line);
  background: #fff;
}

.l2d-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.l2d-promise article {
  padding: 30px 25px;
}

.l2d-promise article + article {
  border-left: 1px solid var(--line);
}

.l2d-promise article > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--coral);
}

.l2d-promise h3 {
  font-size: 16px;
}

.l2d-process {
  background: var(--paper);
}

.l2d-process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  list-style: none;
}

.l2d-process-list li {
  min-width: 0;
  padding: 26px 22px;
}

.l2d-process-list li + li {
  border-left: 1px solid var(--line);
}

.l2d-process-list li > span {
  display: block;
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.l2d-process-list strong {
  font-size: 13px;
}

.l2d-process-list p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.l2d-active {
  overflow: hidden;
  background: var(--ink-2);
  color: #fff;
}

.l2d-active-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

.l2d-active h2 {
  color: #fff;
}

.l2d-active-inner > div > p:not(.l2d-eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: #c4c9ce;
}

.l2d-active .l2d-btn {
  margin-top: 28px;
}

.l2d-active-art {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
}

.l2d-active-art img {
  position: absolute;
  right: 4%;
  bottom: -38%;
  width: 77%;
  height: 135%;
  object-fit: contain;
  object-position: bottom center;
}

.l2d-active-art span {
  position: absolute;
  right: 0;
  bottom: 28px;
  padding: 9px 13px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.l2d-faq {
  background: #fff;
}

.l2d-faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.l2d-faq-layout .l2d-section-heading {
  position: sticky;
  top: 112px;
  margin: 0;
}

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

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

.l2d-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.l2d-faq-list summary::-webkit-details-marker {
  display: none;
}

.l2d-faq-list summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--coral);
  transition: transform 180ms;
}

.l2d-faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.l2d-faq-list details p {
  margin: -3px 34px 24px 0;
  color: var(--muted);
  font-size: 12px;
}

.l2d-estimate {
  padding: 104px 0;
  background: var(--ink);
  color: #fff;
}

.l2d-estimate-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 82px;
  align-items: start;
}

.l2d-estimate h2 {
  color: #fff;
}

.l2d-estimate-copy > p:not(.l2d-eyebrow) {
  margin-top: 22px;
  color: #bcc2c8;
}

.l2d-estimate-copy ul {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.l2d-estimate-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e4e7ea;
  font-size: 12px;
}

.l2d-estimate-copy li svg {
  width: 16px;
  height: 16px;
  color: var(--mint);
}

.l2d-response-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 800;
}

.l2d-form {
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}

.l2d-form-progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: -32px -32px 30px;
  border-bottom: 1px solid var(--line);
}

.l2d-form-progress span {
  padding: 16px;
  color: #93999f;
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.l2d-form-progress span.is-active {
  border-bottom: 3px solid var(--coral);
  color: var(--text);
}

.l2d-form [data-form-step] {
  display: grid;
  gap: 17px;
}

.l2d-form [data-form-step][hidden] {
  display: none;
}

.l2d-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.l2d-form label {
  display: grid;
  gap: 7px;
  color: #3d4349;
  font-size: 11px;
  font-weight: 800;
}

.l2d-form label > span {
  color: var(--coral-dark);
  font-size: 9px;
}

.l2d-form label > small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.l2d-form input,
.l2d-form select,
.l2d-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cdd2d2;
  border-radius: 3px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
}

.l2d-form textarea {
  min-height: 128px;
  resize: vertical;
}

.l2d-form input:focus,
.l2d-form select:focus,
.l2d-form textarea:focus {
  border-color: var(--mint);
  outline: 2px solid rgba(44, 203, 182, 0.15);
}

.l2d-form-next {
  width: 100%;
  margin-top: 6px;
}

.l2d-form .l2d-btn-secondary {
  border-color: var(--line-dark);
  color: var(--text);
}

.l2d-form .l2d-btn-secondary:hover {
  background: #eff1ef;
}

.l2d-form-actions {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 10px;
}

.l2d-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px !important;
  font-weight: 600 !important;
}

.l2d-consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
}

.l2d-consent span {
  color: var(--muted) !important;
  font-size: 10px !important;
}

.l2d-consent a {
  color: var(--violet);
  text-decoration: underline;
}

.l2d-form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.l2d-form-status.is-error {
  color: #b42334;
}

.l2d-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.l2d-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: end;
  padding: 38px max(32px, calc((100% - var(--container)) / 2));
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: #fff;
}

.l2d-footer > div > p {
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-size: 10px;
}

.l2d-footer nav {
  display: flex;
  gap: 24px;
  color: #d8dbdf;
  font-size: 10px;
  font-weight: 750;
}

.l2d-footer > small {
  color: #777f87;
  font-size: 9px;
}

.l2d-mobile-cta {
  display: none;
}

.l2d-video-dialog {
  width: min(980px, calc(100% - 40px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #000;
  color: #fff;
  overflow: visible;
}

.l2d-video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.l2d-dialog-video {
  aspect-ratio: 16 / 9;
}

.l2d-dialog-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.l2d-video-close {
  position: absolute;
  right: -2px;
  bottom: calc(100% + 10px);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.l2d-video-close svg {
  width: 19px;
  height: 19px;
}

@media (max-width: 1100px) {
  .l2d-nav {
    display: none;
  }

  .l2d-header {
    grid-template-columns: 1fr auto;
  }

  .l2d-hero-copy {
    width: 63%;
  }

  .l2d-hero h1 {
    font-size: 49px;
  }

  .l2d-hero-art {
    left: 52%;
  }

  .l2d-case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .l2d-case-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
  }

  .l2d-case-featured .l2d-video-trigger {
    height: 100%;
    min-height: 320px;
  }

  .l2d-plan-head strong {
    font-size: 25px;
  }

  .l2d-process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .l2d-process-list li:nth-child(4),
  .l2d-process-list li:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .l2d-process-list li:nth-child(4) {
    border-left: 0;
  }

  .l2d-estimate-layout {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .l2d-container {
    width: min(100% - 36px, var(--container));
  }

  .l2d-header {
    padding: 0 18px;
  }

  .l2d-header-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .l2d-hero {
    min-height: 700px;
  }

  .l2d-hero-inner {
    min-height: 700px;
    align-items: flex-start;
    padding-top: 54px;
    padding-bottom: 210px;
  }

  .l2d-hero-copy {
    width: 100%;
  }

  .l2d-hero h1 {
    max-width: 560px;
    font-size: 44px;
  }

  .l2d-hero-lead {
    max-width: 540px;
    font-size: 14px;
  }

  .l2d-hero-art {
    z-index: 0;
    inset: 45% 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .l2d-hero-art::after {
    background: rgba(11, 13, 16, 0.1);
  }

  .l2d-hero-model-main {
    right: 8%;
    bottom: -62%;
    width: 44%;
    height: 165%;
  }

  .l2d-hero-model-face {
    top: -25%;
    left: 3%;
    width: 42%;
    height: 95%;
  }

  .l2d-hero-model-side {
    display: none;
  }

  .l2d-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .l2d-proof-grid > div {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }

  .l2d-proof-grid > div:nth-child(3),
  .l2d-proof-grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .l2d-proof-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .l2d-section {
    padding: 78px 0;
  }

  .l2d-section-heading-split {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .l2d-section-heading h2,
  .l2d-active h2,
  .l2d-estimate h2 {
    font-size: 34px;
  }

  .l2d-case-grid,
  .l2d-plan-grid,
  .l2d-promise-grid,
  .l2d-estimate-layout,
  .l2d-faq-layout {
    grid-template-columns: 1fr;
  }

  .l2d-case-featured {
    grid-column: auto;
    display: block;
  }

  .l2d-case-featured .l2d-video-trigger {
    min-height: 0;
  }

  .l2d-path-grid {
    grid-template-columns: 1fr;
  }

  .l2d-path-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .l2d-plan-grid {
    gap: 18px;
  }

  .l2d-plan-featured {
    order: -1;
  }

  .l2d-promise-grid {
    border: 1px solid var(--line);
  }

  .l2d-promise article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .l2d-process-list li:nth-child(3),
  .l2d-process-list li:nth-child(5) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .l2d-process-list li:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .l2d-active-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 74px;
  }

  .l2d-active-art {
    min-height: 350px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .l2d-active-art img {
    right: 10%;
    bottom: -63%;
    width: 55%;
    height: 180%;
  }

  .l2d-faq-layout {
    gap: 36px;
  }

  .l2d-faq-layout .l2d-section-heading {
    position: static;
  }

  .l2d-estimate {
    padding: 78px 0 100px;
  }

  .l2d-estimate-layout {
    gap: 38px;
  }

  .l2d-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .l2d-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .l2d-brand-copy small {
    display: none;
  }

  .l2d-brand-copy strong {
    font-size: 12px;
  }

  .l2d-brand-mark {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .l2d-header-cta span {
    display: none;
  }

  .l2d-header-cta {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .l2d-hero {
    min-height: 716px;
  }

  .l2d-hero-inner {
    min-height: 716px;
    padding-top: 42px;
    padding-bottom: 190px;
  }

  .l2d-status {
    margin-bottom: 18px;
  }

  .l2d-hero h1 {
    font-size: 36px;
    line-height: 1.19;
  }

  .l2d-hero-lead {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.8;
  }

  .l2d-hero-actions {
    display: grid;
    margin-top: 25px;
  }

  .l2d-btn {
    width: 100%;
    min-height: 50px;
  }

  .l2d-hero-price {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .l2d-hero-model-main {
    right: 2%;
    width: 54%;
  }

  .l2d-hero-model-face {
    left: -7%;
    width: 55%;
    opacity: 0.5;
  }

  .l2d-proof {
    padding-top: 12px;
  }

  .l2d-proof-grid > div {
    min-height: 68px;
    padding: 12px 15px;
  }

  .l2d-proof-grid strong {
    font-size: 17px;
  }

  .l2d-proof-note {
    width: calc(100% - 36px);
    text-align: left;
  }

  .l2d-section {
    padding: 64px 0;
  }

  .l2d-section-heading {
    margin-bottom: 30px;
  }

  .l2d-section-heading h2,
  .l2d-active h2,
  .l2d-estimate h2 {
    font-size: 29px;
  }

  .l2d-case-grid {
    gap: 14px;
  }

  .l2d-case-copy {
    padding: 20px;
  }

  .l2d-path-grid article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 24px;
  }

  .l2d-path-number {
    font-size: 26px;
  }

  .l2d-plan {
    padding: 26px 22px;
  }

  .l2d-plan-head strong {
    font-size: 25px;
  }

  .l2d-scope-note {
    padding: 17px;
  }

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

  .l2d-process-list li,
  .l2d-process-list li:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .l2d-process-list li:first-child {
    border-top: 0;
  }

  .l2d-active-inner {
    padding-top: 62px;
  }

  .l2d-active-art {
    min-height: 300px;
  }

  .l2d-active-art img {
    right: 0;
    width: 68%;
  }

  .l2d-faq-list summary {
    min-height: 68px;
    font-size: 12px;
  }

  .l2d-estimate {
    padding: 64px 0 112px;
  }

  .l2d-form {
    padding: 24px 18px;
  }

  .l2d-form-progress {
    margin: -24px -18px 24px;
  }

  .l2d-form-row,
  .l2d-form-actions {
    grid-template-columns: 1fr;
  }

  .l2d-form-actions .l2d-btn-secondary {
    order: 2;
  }

  .l2d-footer {
    padding: 34px 18px 100px;
  }

  .l2d-mobile-cta {
    position: fixed;
    z-index: 120;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    background: var(--coral);
    box-shadow: 0 12px 30px rgba(11, 13, 16, 0.28);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
  }

  .l2d-mobile-cta svg {
    width: 17px;
    height: 17px;
  }

  .l2d-video-dialog {
    width: calc(100% - 24px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Immersive production assets */
.l2d-hero-art {
  background: #080e1e url("assets/immersive/backgrounds/bg-desktop.webp") center / cover no-repeat;
}

.l2d-hero-art-frame {
  z-index: 4;
  pointer-events: none;
}

.l2d-hero-art-disc,
.l2d-hero-art-slash {
  opacity: .16;
}

.l2d-hero-motion {
  position: absolute;
  z-index: 2;
  inset: 10% 8% 7% 12%;
  width: 80%;
  height: 83%;
  object-fit: cover;
  object-position: center;
  background: #080e1e;
  filter: saturate(1.06) contrast(1.03);
}

.l2d-hero-art-caption {
  display: flex;
  align-items: center;
  gap: 7px;
}

.l2d-hero-art-caption span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--anime-black);
  border-radius: 50%;
  background: #ff315d;
  box-shadow: 0 0 0 3px rgba(255, 49, 93, .2);
}

.l2d-video-trigger img {
  object-position: center;
}

.l2d-path-grid article {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  padding: 42px 36px;
}

.l2d-path-grid article > div {
  position: relative;
  z-index: 3;
  max-width: 52%;
  padding-top: 64px;
}

.l2d-path-number {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 36px;
}

.l2d-path-art {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  border-left: 3px solid var(--anime-black);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.l2d-path-grid article:first-child .l2d-path-art {
  object-position: 52% center;
}

.l2d-path-grid article:nth-child(2) .l2d-path-art {
  object-position: 47% center;
}

.l2d-active-art img {
  right: 5%;
  bottom: -9%;
  width: 88%;
  height: 112%;
  object-fit: contain;
  object-position: bottom center;
}

.l2d-dialog-video iframe,
.l2d-dialog-video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

.l2d-dialog-video iframe[hidden],
.l2d-dialog-video video[hidden] {
  display: none;
}

@media (max-width: 820px) {
  .l2d-hero-art {
    background-image: url("assets/immersive/backgrounds/bg-desktop.webp");
  }

  .l2d-hero-art-frame,
  .l2d-hero-motion {
    inset: 5%;
    width: 90%;
    height: 90%;
  }

  .l2d-hero-art-disc,
  .l2d-hero-art-slash {
    display: none;
  }

  .l2d-path-grid article {
    min-height: 340px;
  }

  .l2d-active-art img {
    right: 18%;
    bottom: -8%;
    width: 64%;
    height: 112%;
  }
}

@media (max-width: 560px) {
  .l2d-hero-art {
    background-image: url("assets/immersive/backgrounds/bg-mobile.webp");
  }

  .l2d-hero-motion {
    object-fit: cover;
    object-position: center 32%;
  }

  .l2d-hero-art-caption {
    bottom: 7%;
  }

  .l2d-path-grid article {
    min-height: 510px;
    padding: 28px 22px 198px;
  }

  .l2d-path-grid article > div {
    max-width: none;
    padding-top: 58px;
  }

  .l2d-path-number {
    top: 26px;
    left: 22px;
  }

  .l2d-path-art {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 176px;
    border-top: 3px solid var(--anime-black);
    border-left: 0;
    object-position: center 34%;
  }

  .l2d-active-art img {
    right: 8%;
    bottom: -8%;
    width: 84%;
    height: 112%;
  }

  .l2d-active-art span {
    bottom: 82px;
  }
}

/* Complete VTuber activity package */
.l2d-activity {
  background: var(--anime-black);
  color: #fff;
}

.l2d-activity::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12%;
  width: 46%;
  height: 15px;
  border-bottom: 4px solid var(--anime-black);
  background: var(--anime-cyan);
  transform: skewX(-24deg);
}

.l2d-activity .l2d-section-heading h2 {
  color: #fff;
  font-size: clamp(36px, 3.6vw, 50px);
  line-height: 1.15;
}

.l2d-activity .l2d-section-heading-split {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: 60px;
  max-width: none;
}

.l2d-activity .l2d-section-heading::before {
  -webkit-text-stroke-color: rgba(255, 255, 255, .18);
}

.l2d-body .l2d-activity .l2d-section-heading-split > p {
  color: #c8cbd1;
}

.l2d-activity .l2d-eyebrow {
  background: var(--anime-yellow);
  color: var(--anime-black);
}

.l2d-activity-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(350px, .66fr);
  min-height: 510px;
  border: 3px solid #fff;
  background: #15171c;
  box-shadow: 10px 10px 0 var(--anime-pink);
}

.l2d-activity-feature-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-right: 3px solid #fff;
  background: #352a4a;
}

.l2d-activity-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l2d-activity-feature-media figcaption,
.l2d-activity-visuals figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  border: 2px solid var(--anime-black);
  background: var(--anime-yellow);
  color: var(--anime-black);
  font-family: var(--anime-display);
  font-size: 11px;
  font-weight: 950;
}

.l2d-activity-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 38px 32px;
}

.l2d-activity-feature-copy .l2d-case-label,
.l2d-activity-video-card .l2d-case-label,
.l2d-activity-visuals .l2d-case-label {
  color: var(--anime-pink);
}

.l2d-activity-feature-copy h3,
.l2d-activity-visuals h3 {
  margin: 0;
  font-size: 29px;
  font-weight: 950;
  line-height: 1.28;
}

.l2d-activity-feature-copy > p:not(.l2d-case-label) {
  margin: 16px 0 0;
  color: #c8cbd1;
  font-size: 13px;
}

.l2d-activity-output-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 24px 0 26px;
  padding: 0;
  list-style: none;
}

.l2d-activity-output-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 51px;
  padding: 8px 9px;
  border: 1px solid #555960;
  background: #0f1115;
}

.l2d-activity-output-list svg {
  width: 20px;
  height: 20px;
  color: var(--anime-yellow);
}

.l2d-activity-output-list span,
.l2d-activity-output-list strong {
  display: block;
}

.l2d-activity-output-list span {
  color: #aeb1b8;
  font-size: 9px;
  line-height: 1.45;
}

.l2d-activity-output-list strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 11px;
}

.l2d-activity-feature-copy .l2d-btn {
  width: 100%;
  justify-content: center;
}

.l2d-activity-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.l2d-activity-video-card {
  min-width: 0;
  border: 3px solid #fff;
  background: var(--anime-paper);
  color: var(--anime-black);
  box-shadow: 6px 6px 0 var(--anime-cyan);
}

.l2d-activity-video-card .l2d-video-trigger {
  border-bottom: 3px solid var(--anime-black);
}

.l2d-activity-video-card .l2d-play {
  border: 3px solid var(--anime-black);
  border-radius: 0;
  background: var(--anime-yellow);
  color: var(--anime-black);
  box-shadow: 4px 4px 0 var(--anime-pink);
}

.l2d-activity-video-card > div {
  padding: 22px 20px 24px;
}

.l2d-activity-video-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.35;
}

.l2d-activity-video-card > div > p:not(.l2d-case-label) {
  margin: 10px 0 0;
  color: #4a4a4a;
  font-size: 11px;
}

.l2d-activity-visuals {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, .7fr) minmax(360px, 1.3fr);
  gap: 18px;
  margin-top: 42px;
}

.l2d-activity-visuals figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 3px solid #fff;
  background: #171a20;
}

.l2d-activity-visuals figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.l2d-activity-visuals > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border: 3px solid #fff;
  background: var(--anime-cyan);
  color: var(--anime-black);
  box-shadow: 7px 7px 0 var(--anime-yellow);
}

.l2d-activity-visuals > div > p:not(.l2d-case-label) {
  margin: 14px 0 0;
  color: #172126;
  font-size: 12px;
  font-weight: 700;
}

.l2d-activity-visuals a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
  padding: 15px 16px;
  border: 3px solid var(--anime-black);
  background: var(--anime-black);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--anime-pink);
}

.l2d-activity-visuals a svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .l2d-activity-feature {
    grid-template-columns: 1fr;
  }

  .l2d-activity-feature-media {
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 3px solid #fff;
  }

  .l2d-activity-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l2d-activity-visuals > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .l2d-activity .l2d-section-heading-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .l2d-activity-video-grid {
    grid-template-columns: 1fr;
  }

  .l2d-activity-video-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(240px, .95fr);
  }

  .l2d-activity-video-card .l2d-video-trigger {
    height: 100%;
    border-right: 3px solid var(--anime-black);
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .l2d-activity .l2d-section-heading h2 {
    font-size: 34px;
  }

  .l2d-activity-feature-copy,
  .l2d-activity-visuals > div {
    padding: 26px 22px;
  }

  .l2d-activity-feature-copy h3,
  .l2d-activity-visuals h3 {
    font-size: 24px;
  }

  .l2d-activity-output-list {
    grid-template-columns: 1fr;
  }

  .l2d-activity-video-card {
    display: block;
  }

  .l2d-activity-video-card .l2d-video-trigger {
    height: auto;
    border-right: 0;
    border-bottom: 3px solid var(--anime-black);
  }

  .l2d-activity-visuals {
    grid-template-columns: 1fr;
  }

  .l2d-activity-visuals > div {
    grid-column: auto;
  }
}

@media (min-width: 561px) {
  .l2d-path-grid article > div {
    max-width: 52%;
  }
}

/* 2026-08 immersive anime direction */
:root {
  --anime-black: #090909;
  --anime-paper: #fffef5;
  --anime-yellow: #f4f61c;
  --anime-cyan: #63d4e4;
  --anime-pink: #ff5d7d;
  --anime-blue: #3f80ed;
  --anime-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --anime-shadow: 8px 8px 0 var(--anime-black);
  --container: 1200px;
  --radius: 0;
}

body.l2d-body {
  overflow-x: hidden;
  background: var(--anime-paper);
  color: var(--anime-black);
}

body.l2d-body::selection {
  background: var(--anime-pink);
  color: #fff;
}

.l2d-opening {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0;
  overflow: hidden;
  background: var(--anime-black);
  color: #fff;
  pointer-events: none;
  animation: l2d-opening-away 900ms cubic-bezier(.77, 0, .18, 1) 500ms both;
}

.l2d-opening::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  background: var(--anime-pink);
  animation: l2d-opening-panel 580ms cubic-bezier(.77, 0, .18, 1) 260ms both;
}

.l2d-opening span {
  position: relative;
  z-index: 1;
  font-family: var(--anime-display);
  font-size: clamp(52px, 9vw, 132px);
  line-height: .78;
  text-align: center;
  text-transform: uppercase;
}

.l2d-opening span:last-child {
  color: var(--anime-yellow);
  -webkit-text-stroke: 2px var(--anime-black);
}

@keyframes l2d-opening-panel {
  to { transform: translateX(-110%); }
}

@keyframes l2d-opening-away {
  0% { clip-path: inset(0); }
  100% { clip-path: inset(0 0 100% 0); visibility: hidden; }
}

.l2d-page-progress {
  position: fixed;
  z-index: 210;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: rgba(9, 9, 9, .16);
  pointer-events: none;
}

.l2d-page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--anime-pink);
  transform-origin: left center;
}

.l2d-header {
  position: fixed;
  z-index: 200;
  top: 20px;
  right: 24px;
  left: 24px;
  min-height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--anime-black);
  backdrop-filter: none;
  pointer-events: none;
}

.l2d-header > * {
  pointer-events: auto;
}

.l2d-header .l2d-brand {
  min-height: 56px;
  padding: 7px 14px 7px 7px;
  border: 2px solid var(--anime-black);
  background: #fff;
  box-shadow: 4px 4px 0 var(--anime-black);
}

.l2d-brand-mark {
  width: 40px;
  height: 40px;
  border: 2px solid var(--anime-black);
  border-radius: 0;
  background: var(--anime-pink);
  color: #fff;
  font-family: var(--anime-display);
  font-size: 15px;
  letter-spacing: 0;
}

.l2d-brand-copy strong {
  color: var(--anime-black);
  font-size: 14px;
  font-weight: 900;
}

.l2d-brand-copy small {
  color: #474747;
  font-family: var(--anime-display);
  font-size: 9px;
}

.l2d-nav {
  min-height: 46px;
  gap: 24px;
  padding: 0 24px;
  border: 2px solid var(--anime-black);
  background: var(--anime-black);
  box-shadow: 4px 4px 0 var(--anime-pink);
}

.l2d-nav a,
.l2d-nav a:hover {
  color: #fff;
  font-family: var(--anime-display);
  font-size: 13px;
  text-transform: uppercase;
}

.l2d-nav a:hover {
  color: var(--anime-yellow);
}

.l2d-header-cta {
  width: 76px;
  height: 76px;
  min-height: 76px;
  justify-content: center;
  gap: 4px;
  margin-top: -8px;
  padding: 0;
  border: 3px solid var(--anime-black);
  border-radius: 50%;
  background: var(--anime-yellow);
  box-shadow: 4px 4px 0 var(--anime-black);
  color: var(--anime-black);
  font-family: var(--anime-display);
  font-size: 10px;
  line-height: .9;
  text-align: center;
  transform: rotate(4deg);
  transition: transform 180ms, background 180ms;
}

.l2d-header-cta:hover {
  border-color: var(--anime-black);
  background: var(--anime-pink);
  color: #fff;
  transform: rotate(0deg) scale(1.04);
}

.l2d-header-cta svg {
  width: 17px;
  height: 17px;
}

.l2d-side-index {
  position: fixed;
  z-index: 90;
  bottom: 32px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--anime-black);
  font-family: var(--anime-display);
  font-size: 10px;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.l2d-side-index::before {
  content: "";
  width: 2px;
  height: 54px;
  background: currentColor;
}

.l2d-side-index b {
  color: var(--anime-pink);
}

.l2d-hero {
  min-height: max(760px, calc(100svh - 56px));
  overflow: hidden;
  border-bottom: 4px solid var(--anime-black);
  background: var(--anime-cyan);
  color: var(--anime-black);
  isolation: isolate;
}

.l2d-hero::before {
  z-index: -3;
  inset: 0 62% 0 0;
  background: var(--anime-yellow);
}

.l2d-hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 33%;
  width: 23%;
  background: var(--anime-paper);
  clip-path: polygon(0 0, 100% 0, 36% 100%, 0 100%);
}

.l2d-hero-backtype {
  position: absolute;
  z-index: -1;
  right: -1vw;
  bottom: -3vw;
  color: transparent;
  font-family: var(--anime-display);
  font-size: clamp(170px, 24vw, 360px);
  line-height: .66;
  text-align: right;
  -webkit-text-stroke: 3px rgba(9, 9, 9, .13);
  pointer-events: none;
}

.l2d-hero-inner {
  z-index: 5;
  min-height: max(760px, calc(100svh - 56px));
  align-items: center;
  padding-block: 130px 82px;
}

.l2d-hero-copy {
  width: min(610px, 50%);
}

.l2d-status {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 2px solid var(--anime-black);
  background: #fff;
  color: var(--anime-black);
  box-shadow: 3px 3px 0 var(--anime-black);
  font-size: 11px;
  font-weight: 900;
  transform: rotate(-1deg);
}

.l2d-status span {
  background: var(--anime-pink);
  box-shadow: none;
}

.l2d-eyebrow {
  width: fit-content;
  margin-bottom: 15px;
  padding: 5px 9px;
  background: var(--anime-black);
  color: var(--anime-yellow);
  font-family: var(--anime-display);
  font-size: 13px;
  line-height: 1;
}

.l2d-hero h1 {
  max-width: 640px;
  color: var(--anime-black);
  font-size: 0;
  line-height: 1;
}

.l2d-hero h1 span {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 2px solid var(--anime-black);
  background: #fff;
  box-shadow: 5px 5px 0 var(--anime-black);
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 950;
  line-height: 1.35;
  transform: rotate(-1deg);
}

.l2d-hero h1 em {
  display: block;
  color: var(--anime-black);
  font-family: var(--anime-display), "Yu Gothic", sans-serif;
  font-size: clamp(52px, 5.3vw, 78px);
  font-style: normal;
  font-weight: 950;
  line-height: .98;
  text-shadow: 3px 3px 0 #fff;
}

.l2d-hero-subtitle {
  width: fit-content;
  margin: 22px 0 0;
  padding: 6px 10px;
  background: var(--anime-pink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.l2d-hero-lead {
  max-width: 490px;
  margin-top: 17px;
  padding: 10px 13px 11px;
  border-left: 4px solid var(--anime-black);
  background: rgba(255, 254, 245, .96);
  box-shadow: 4px 4px 0 rgba(255, 93, 125, .72);
  color: var(--anime-black);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
  text-wrap: pretty;
}

.l2d-hero-lead strong {
  display: block;
  margin-top: 2px;
  font-weight: 950;
}

.l2d-hero-actions {
  margin-top: 25px;
}

.l2d-btn {
  min-height: 54px;
  border: 2px solid var(--anime-black);
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  transition: transform 160ms, box-shadow 160ms, background 160ms, color 160ms;
}

.l2d-btn:hover {
  transform: translate(-2px, -2px);
}

.l2d-btn-primary,
.l2d-header-cta + .l2d-btn-primary {
  border-color: var(--anime-black);
  background: var(--anime-black);
  box-shadow: 5px 5px 0 var(--anime-pink);
  color: #fff;
}

.l2d-btn-primary:hover {
  border-color: var(--anime-black);
  background: var(--anime-pink);
  box-shadow: 7px 7px 0 var(--anime-black);
}

.l2d-btn-secondary {
  border-color: var(--anime-black);
  background: #fff;
  box-shadow: 4px 4px 0 var(--anime-black);
  color: var(--anime-black);
}

.l2d-btn-secondary:hover {
  border-color: var(--anime-black);
  background: var(--anime-yellow);
  color: var(--anime-black);
}

.l2d-hero-price {
  width: fit-content;
  margin-top: 24px;
  padding: 8px 12px;
  border: 2px solid var(--anime-black);
  background: #fff;
  color: var(--anime-black);
}

.l2d-hero-price span,
.l2d-hero-price small {
  color: #3d3d3d;
  font-weight: 750;
}

.l2d-hero-price strong {
  color: var(--anime-pink);
  font-family: var(--anime-display);
  font-size: 25px;
}

.l2d-hero-art {
  z-index: 3;
  inset: 0 0 0 52%;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.l2d-hero-art::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 1%;
  bottom: 4%;
  width: 72%;
  aspect-ratio: 1;
  background-image: radial-gradient(var(--anime-black) 1.7px, transparent 1.7px);
  background-size: 15px 15px;
  opacity: .16;
  clip-path: polygon(0 20%, 85% 0, 100% 78%, 24% 100%);
}

.l2d-hero-art::after {
  display: none;
}

.l2d-hero-art-frame {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: 8%;
  bottom: 7%;
  left: 12%;
  border: 4px solid var(--anime-black);
  transform: rotate(2deg);
}

.l2d-hero-art-disc {
  position: absolute;
  z-index: 1;
  top: 18%;
  right: 15%;
  width: 46%;
  aspect-ratio: 1;
  border: 4px solid var(--anime-black);
  border-radius: 0;
  background: var(--anime-pink);
  transform: rotate(21deg);
}

.l2d-hero-art-slash {
  position: absolute;
  z-index: 1;
  right: -10%;
  bottom: 20%;
  width: 90%;
  height: 18%;
  border-block: 4px solid var(--anime-black);
  background: #fff;
  transform: rotate(-18deg);
}

.l2d-hero-model-main {
  z-index: 4;
  right: 8%;
  bottom: -4%;
  width: 55%;
  height: 98%;
  filter: drop-shadow(12px 12px 0 rgba(9, 9, 9, .17));
}

.l2d-hero-model-face,
.l2d-hero-model-side {
  display: none;
}

.l2d-hero-art-caption {
  position: absolute;
  z-index: 5;
  right: 4%;
  bottom: 6%;
  margin: 0;
  padding: 8px 10px;
  border: 2px solid var(--anime-black);
  background: var(--anime-yellow);
  color: var(--anime-black);
  font-family: var(--anime-display);
  font-size: 12px;
  line-height: 1;
  text-align: right;
}

.l2d-hero-vertical {
  position: absolute;
  z-index: 7;
  top: 130px;
  right: 18px;
  margin: 0;
  color: var(--anime-black);
  font-family: var(--anime-display);
  font-size: 11px;
  writing-mode: vertical-rl;
}

.l2d-hero-scroll {
  position: absolute;
  z-index: 8;
  right: 27px;
  bottom: 25px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 3px solid var(--anime-black);
  border-radius: 50%;
  background: var(--anime-yellow);
  box-shadow: 4px 4px 0 var(--anime-black);
  color: var(--anime-black);
  font-family: var(--anime-display);
  font-size: 10px;
}

.l2d-hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: l2d-bounce 1.4s ease-in-out infinite;
}

@keyframes l2d-bounce {
  50% { transform: translateY(4px); }
}

.l2d-proof {
  padding: 0 0 20px;
  border-bottom: 4px solid var(--anime-black);
  background: #fff;
}

.l2d-proof-ticker {
  overflow: hidden;
  padding: 13px 0 10px;
  border-bottom: 3px solid var(--anime-black);
  background: var(--anime-black);
  color: var(--anime-yellow);
  white-space: nowrap;
}

.l2d-proof-ticker span {
  display: block;
  width: max-content;
  font-family: var(--anime-display);
  font-size: 22px;
  line-height: 1;
  animation: l2d-ticker 22s linear infinite;
}

@keyframes l2d-ticker {
  to { transform: translateX(-50%); }
}

.l2d-proof-grid {
  padding-top: 20px;
}

.l2d-proof-grid > div {
  border-color: var(--anime-black);
}

.l2d-proof-grid strong {
  font-family: var(--anime-display);
  font-size: 25px;
}

.l2d-section {
  position: relative;
  overflow: clip;
  padding: 138px 0;
  border-bottom: 4px solid var(--anime-black);
}

.l2d-section-heading {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin-bottom: 56px;
}

.l2d-section-heading::before {
  content: attr(data-word);
  position: absolute;
  z-index: -1;
  top: -78px;
  left: -7px;
  color: transparent;
  font-family: var(--anime-display);
  font-size: clamp(80px, 10vw, 152px);
  line-height: 1;
  white-space: nowrap;
  -webkit-text-stroke: 2px rgba(9, 9, 9, .16);
  pointer-events: none;
}

.l2d-section-heading h2,
.l2d-active h2,
.l2d-estimate h2 {
  color: var(--anime-black);
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 950;
  line-height: 1.12;
}

.l2d-section-heading > p:not(.l2d-eyebrow),
.l2d-section-heading-split > p,
.l2d-active-inner > div > p:not(.l2d-eyebrow),
.l2d-estimate-copy > p:not(.l2d-eyebrow) {
  color: #252525;
  font-size: 14px;
  font-weight: 700;
}

.l2d-motion {
  background: var(--anime-paper);
}

.l2d-motion::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 43%;
  background: var(--anime-cyan);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}

.l2d-case-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1.25fr .875fr .875fr;
  gap: 24px;
}

.l2d-case {
  overflow: visible;
  border: 3px solid var(--anime-black);
  border-radius: 0;
  background: #fff;
  box-shadow: 7px 7px 0 var(--anime-black);
  transition: transform 180ms, box-shadow 180ms;
}

.l2d-case:hover {
  transform: translate(-3px, -3px) rotate(-.35deg);
  box-shadow: 11px 11px 0 var(--anime-black);
}

.l2d-case-featured {
  background: var(--anime-black);
  color: #fff;
}

.l2d-video-trigger {
  border-bottom: 3px solid var(--anime-black);
  background: var(--anime-black);
}

.l2d-case-featured .l2d-video-trigger {
  border-right: 3px solid #fff;
  border-bottom: 0;
}

.l2d-play {
  width: 72px;
  height: 72px;
  border: 3px solid var(--anime-black);
  background: var(--anime-yellow);
  box-shadow: 4px 4px 0 var(--anime-black);
  color: var(--anime-black);
}

.l2d-case-copy {
  padding: 27px;
}

.l2d-case-label,
.l2d-plan-head > p:first-child {
  color: var(--anime-pink);
  font-family: var(--anime-display);
  font-size: 13px;
}

.l2d-case h3,
.l2d-path-grid h3,
.l2d-promise h3 {
  font-size: 22px;
  font-weight: 950;
}

.l2d-case-featured .l2d-case-copy > p:not(.l2d-case-label) {
  color: #d9d9d9;
}

.l2d-case-copy li {
  border: 2px solid currentColor;
  border-radius: 0;
  color: inherit;
  font-weight: 800;
}

.l2d-paths {
  border-block: 0;
  background: var(--anime-pink);
}

.l2d-paths::before {
  content: "";
  position: absolute;
  right: -3%;
  bottom: -4%;
  width: 45%;
  height: 58%;
  background-image: radial-gradient(#fff 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: .35;
  transform: rotate(-6deg);
}

.l2d-paths .l2d-eyebrow {
  color: var(--anime-pink);
  background: #fff;
}

.l2d-path-grid {
  position: relative;
  z-index: 2;
  gap: 22px;
  border: 0;
  border-radius: 0;
}

.l2d-path-grid article {
  border: 3px solid var(--anime-black);
  background: #fff;
  box-shadow: var(--anime-shadow);
}

.l2d-path-grid article:nth-child(2) {
  background: var(--anime-yellow);
}

.l2d-path-grid article + article {
  border-left: 3px solid var(--anime-black);
}

.l2d-path-number {
  color: var(--anime-black);
  font-family: var(--anime-display);
  font-size: 64px;
  -webkit-text-stroke: 1px var(--anime-black);
}

.l2d-path-grid a {
  padding-bottom: 4px;
  border-bottom: 3px solid var(--anime-black);
  color: var(--anime-black);
}

.l2d-path-grid a:hover {
  color: var(--anime-pink);
}

.l2d-plans {
  background-color: var(--anime-yellow);
  background-image: radial-gradient(rgba(9, 9, 9, .16) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
}

.l2d-plan-grid {
  position: relative;
  z-index: 2;
  gap: 24px;
}

.l2d-plan {
  overflow: visible;
  padding: 38px 30px 30px;
  border: 3px solid var(--anime-black);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--anime-shadow);
}

.l2d-plan::before {
  content: attr(data-plan-number);
  position: absolute;
  top: -25px;
  left: 19px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 3px solid var(--anime-black);
  background: var(--anime-cyan);
  box-shadow: 3px 3px 0 var(--anime-black);
  font-family: var(--anime-display);
  font-size: 22px;
}

.l2d-plan-featured {
  border: 3px solid var(--anime-black);
  background: var(--anime-black);
  box-shadow: 8px 8px 0 var(--anime-pink);
  color: #fff;
  transform: translateY(-14px);
}

.l2d-plan-featured::before {
  background: var(--anime-pink);
  color: #fff;
}

.l2d-plan-badge {
  top: -3px;
  right: -3px;
  padding: 8px 13px;
  border: 3px solid var(--anime-black);
  background: var(--anime-pink);
  font-size: 11px;
}

.l2d-plan-head h3 {
  font-size: 27px;
  font-weight: 950;
}

.l2d-plan-head strong {
  font-family: var(--anime-display);
  font-size: 34px;
}

.l2d-plan.l2d-plan-featured .l2d-plan-head > p:last-child,
.l2d-plan.l2d-plan-featured .l2d-plan-head span,
.l2d-plan.l2d-plan-featured li {
  color: #d8d8d8;
}

.l2d-plan ul {
  border-color: currentColor;
}

.l2d-plan-cta {
  min-height: 52px;
  border: 3px solid var(--anime-black);
  border-radius: 0;
  background: var(--anime-yellow);
  color: var(--anime-black);
  font-size: 12px;
}

.l2d-plan-featured .l2d-plan-cta-primary {
  border-color: #fff;
  background: var(--anime-pink);
  color: #fff;
}

.l2d-plan-cta:hover,
.l2d-plan-featured .l2d-plan-cta-primary:hover {
  border-color: var(--anime-black);
  background: var(--anime-cyan);
  color: var(--anime-black);
}

.l2d-scope-note {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  border: 3px solid var(--anime-black);
  border-left: 12px solid var(--anime-pink);
  background: #fff;
  box-shadow: 5px 5px 0 var(--anime-black);
}

.l2d-promise {
  border-block: 0;
  background: var(--anime-cyan);
}

.l2d-promise-grid {
  position: relative;
  z-index: 2;
  gap: 16px;
  border: 0;
}

.l2d-promise article {
  border: 3px solid var(--anime-black);
  background: #fff;
  box-shadow: 6px 6px 0 var(--anime-black);
}

.l2d-promise article + article {
  border-left: 3px solid var(--anime-black);
}

.l2d-promise article > svg {
  color: var(--anime-pink);
  stroke-width: 2.5;
}

.l2d-process {
  background: var(--anime-black);
  color: #fff;
}

.l2d-process .l2d-section-heading::before {
  -webkit-text-stroke-color: rgba(255, 255, 255, .17);
}

.l2d-process .l2d-section-heading h2,
.l2d-process .l2d-section-heading-split > p {
  color: #fff;
}

.l2d-process .l2d-eyebrow {
  background: var(--anime-yellow);
  color: var(--anime-black);
}

.l2d-process-list {
  border: 3px solid #fff;
  border-radius: 0;
  background: transparent;
  box-shadow: 8px 8px 0 var(--anime-pink);
}

.l2d-process-list li {
  min-height: 230px;
  padding: 30px 24px;
}

.l2d-process-list li + li {
  border-color: #fff;
}

.l2d-process-list li > span {
  color: var(--anime-yellow);
  font-family: var(--anime-display);
  font-size: 48px;
}

.l2d-process-list strong {
  color: #fff;
  font-size: 15px;
}

.l2d-process-list p {
  color: #c9c9c9;
  font-size: 11px;
}

.l2d-active {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--anime-black);
  background: var(--anime-pink);
  color: var(--anime-black);
}

.l2d-active::before {
  content: "MODEL 2.0";
  position: absolute;
  top: 2%;
  right: -1%;
  color: transparent;
  font-family: var(--anime-display);
  font-size: clamp(100px, 16vw, 260px);
  line-height: 1;
  -webkit-text-stroke: 3px rgba(255, 255, 255, .28);
  white-space: nowrap;
}

.l2d-active-inner {
  min-height: 620px;
}

.l2d-active h2 {
  color: var(--anime-black);
}

.l2d-active .l2d-eyebrow {
  background: #fff;
  color: var(--anime-pink);
}

.l2d-active-inner > div > p:not(.l2d-eyebrow) {
  color: var(--anime-black);
  font-weight: 750;
}

.l2d-active-art {
  min-height: 620px;
  overflow: visible;
  border-left: 4px solid var(--anime-black);
  background-color: var(--anime-cyan);
  background-image: radial-gradient(rgba(9, 9, 9, .22) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.l2d-active-art img {
  right: 2%;
  bottom: -25%;
  width: 82%;
  height: 130%;
  filter: drop-shadow(10px 10px 0 rgba(9, 9, 9, .18));
}

.l2d-active-art span {
  right: 3%;
  bottom: 30px;
  border: 3px solid var(--anime-black);
  background: var(--anime-yellow);
  box-shadow: 4px 4px 0 var(--anime-black);
  font-size: 12px;
}

.l2d-faq {
  background: var(--anime-paper);
}

.l2d-faq-list {
  border-top: 3px solid var(--anime-black);
}

.l2d-faq-list details {
  border-bottom: 3px solid var(--anime-black);
}

.l2d-faq-list summary {
  min-height: 82px;
  font-size: 14px;
  font-weight: 900;
}

.l2d-faq-list summary svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 2px solid var(--anime-black);
  border-radius: 50%;
  background: var(--anime-yellow);
  color: var(--anime-black);
}

.l2d-estimate {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--anime-cyan);
  color: var(--anime-black);
}

.l2d-estimate::before {
  content: "CONTACT";
  position: absolute;
  right: -2%;
  bottom: -5%;
  color: transparent;
  font-family: var(--anime-display);
  font-size: clamp(120px, 20vw, 320px);
  -webkit-text-stroke: 3px rgba(9, 9, 9, .16);
}

.l2d-estimate h2 {
  color: var(--anime-black);
}

.l2d-estimate-copy > p:not(.l2d-eyebrow),
.l2d-response-note {
  color: var(--anime-black) !important;
}

.l2d-estimate-copy li {
  color: var(--anime-black);
  font-weight: 800;
}

.l2d-estimate-copy li svg {
  color: var(--anime-pink);
  stroke-width: 3;
}

.l2d-form {
  position: relative;
  z-index: 2;
  padding: 36px;
  border: 3px solid var(--anime-black);
  border-radius: 0;
  background: #fff;
  box-shadow: 10px 10px 0 var(--anime-black);
}

.l2d-form-progress {
  margin: -36px -36px 32px;
  border-bottom: 3px solid var(--anime-black);
}

.l2d-form-progress span {
  font-size: 11px;
}

.l2d-form-progress span.is-active {
  border-bottom: 5px solid var(--anime-pink);
}

.l2d-form input,
.l2d-form select,
.l2d-form textarea {
  min-height: 50px;
  border: 2px solid var(--anime-black);
  border-radius: 0;
}

.l2d-form input:focus,
.l2d-form select:focus,
.l2d-form textarea:focus {
  border-color: var(--anime-pink);
  outline: 3px solid rgba(255, 93, 125, .18);
}

.l2d-form .l2d-btn-secondary {
  border-color: var(--anime-black);
  color: var(--anime-black);
}

.l2d-footer {
  border-top: 4px solid var(--anime-black);
  background: var(--anime-black);
}

.l2d-footer .l2d-brand-copy strong {
  color: #fff;
}

.l2d-footer .l2d-brand-copy small {
  color: #aaa;
}

.l2d-video-dialog {
  border: 4px solid #fff;
  border-radius: 0;
  box-shadow: 12px 12px 0 var(--anime-pink);
}

.l2d-video-close {
  border: 3px solid var(--anime-black);
  background: var(--anime-yellow);
  color: var(--anime-black);
}

.is-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(48px) rotate(.4deg);
  transition: opacity 650ms ease, transform 700ms cubic-bezier(.2, .72, .2, 1);
}

.is-motion-ready [data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

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

  .l2d-hero::before {
    right: 58%;
  }

  .l2d-hero-copy {
    width: 52%;
  }

  .l2d-hero-art {
    left: 55%;
  }

  .l2d-hero-model-main {
    right: 2%;
    width: 64%;
  }

  .l2d-case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .l2d-case-featured .l2d-video-trigger {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .l2d-container {
    width: min(100% - 38px, var(--container));
  }

  .l2d-header {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .l2d-header .l2d-brand {
    min-height: 50px;
  }

  .l2d-header-cta {
    width: 64px;
    height: 64px;
    min-height: 64px;
  }

  .l2d-side-index,
  .l2d-hero-vertical {
    display: none;
  }

  .l2d-hero {
    min-height: 920px;
  }

  .l2d-hero::before {
    inset: 0 0 48% 0;
  }

  .l2d-hero::after {
    top: 46%;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 17%;
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
  }

  .l2d-hero-inner {
    min-height: 920px;
    align-items: flex-start;
    padding-top: 112px;
    padding-bottom: 400px;
  }

  .l2d-hero-copy {
    width: 100%;
  }

  .l2d-hero h1 span {
    font-size: 18px;
  }

  .l2d-hero h1 em {
    font-size: clamp(50px, 10vw, 66px);
  }

  .l2d-hero-lead {
    max-width: 600px;
  }

  .l2d-hero-art {
    z-index: 2;
    inset: auto 0 0;
    height: 46%;
    border-top: 4px solid var(--anime-black);
  }

  .l2d-hero-art-frame {
    top: 7%;
    right: 7%;
    bottom: 5%;
    left: 42%;
  }

  .l2d-hero-art-disc {
    top: 19%;
    right: 17%;
    width: 30%;
  }

  .l2d-hero-art-slash {
    right: -8%;
    bottom: 26%;
    width: 75%;
    height: 19%;
  }

  .l2d-hero-model-main {
    right: 10%;
    bottom: -7%;
    width: 36%;
    height: 110%;
  }

  .l2d-hero-backtype {
    right: auto;
    bottom: 0;
    left: 1%;
    font-size: 185px;
    text-align: left;
  }

  .l2d-hero-art-caption {
    right: auto;
    bottom: 5%;
    left: 4%;
  }

  .l2d-hero-scroll {
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }

  .l2d-section {
    padding: 104px 0;
  }

  .l2d-section-heading::before {
    top: -54px;
    font-size: clamp(68px, 16vw, 106px);
  }

  .l2d-section-heading h2,
  .l2d-active h2,
  .l2d-estimate h2 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .l2d-case-grid,
  .l2d-plan-grid,
  .l2d-promise-grid,
  .l2d-estimate-layout,
  .l2d-faq-layout {
    grid-template-columns: 1fr;
  }

  .l2d-case-featured {
    grid-column: auto;
    display: block;
  }

  .l2d-case-featured .l2d-video-trigger {
    min-height: 0;
    border-right: 0;
    border-bottom: 3px solid #fff;
  }

  .l2d-path-grid article + article,
  .l2d-promise article + article {
    border-left: 3px solid var(--anime-black);
  }

  .l2d-plan-featured {
    transform: none;
  }

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

  .l2d-process-list li,
  .l2d-process-list li:nth-child(3),
  .l2d-process-list li:nth-child(4),
  .l2d-process-list li:nth-child(5) {
    border-color: #fff;
  }

  .l2d-active-inner {
    min-height: auto;
    padding-top: 95px;
  }

  .l2d-active-art {
    min-height: 430px;
    border-top: 4px solid var(--anime-black);
    border-left: 0;
    clip-path: none;
  }

  .l2d-active-art img {
    right: 10%;
    bottom: -48%;
    width: 54%;
    height: 165%;
  }

  .l2d-estimate {
    padding: 104px 0 120px;
  }

  .l2d-form {
    box-shadow: 7px 7px 0 var(--anime-black);
  }
}

@media (max-width: 560px) {
  .l2d-header .l2d-brand {
    padding-right: 10px;
  }

  .l2d-brand-copy strong {
    font-size: 11px;
  }

  .l2d-header-cta {
    width: 58px;
    height: 58px;
    min-height: 58px;
    margin-top: -2px;
  }

  .l2d-header-cta span {
    display: block;
    font-size: 8px;
  }

  .l2d-header-cta svg {
    display: none;
  }

  .l2d-hero {
    min-height: max(800px, calc(100svh - 30px));
  }

  .l2d-hero-inner {
    min-height: max(800px, calc(100svh - 30px));
    padding-top: 96px;
    padding-bottom: 224px;
  }

  .l2d-status {
    font-size: 10px;
  }

  .l2d-hero h1 span {
    font-size: 15px;
  }

  .l2d-hero h1 em {
    font-size: 43px;
    line-height: 1.04;
  }

  .l2d-hero-subtitle {
    font-size: 11px;
  }

  .l2d-hero-lead,
  .l2d-hero-actions .l2d-btn-secondary {
    display: none;
  }

  .l2d-hero-actions {
    display: grid;
  }

  .l2d-hero-price {
    display: grid;
    gap: 0;
  }

  .l2d-hero-price strong {
    font-size: 22px;
  }

  .l2d-hero-art {
    height: 35%;
  }

  .l2d-hero-art-frame {
    left: 31%;
  }

  .l2d-hero-model-main {
    right: 3%;
    width: 52%;
    height: 110%;
  }

  .l2d-hero-backtype {
    bottom: 4%;
    font-size: 130px;
  }

  .l2d-hero-scroll {
    display: none;
  }

  .l2d-proof-grid > div {
    border-color: var(--anime-black);
  }

  .l2d-section {
    padding: 88px 0;
  }

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

  .l2d-section-heading::before {
    top: -40px;
    font-size: 62px;
  }

  .l2d-section-heading h2,
  .l2d-active h2,
  .l2d-estimate h2 {
    font-size: 32px;
  }

  .l2d-section-heading-split {
    gap: 16px;
  }

  .l2d-case {
    box-shadow: 5px 5px 0 var(--anime-black);
  }

  .l2d-case-copy {
    padding: 22px;
  }

  .l2d-path-grid {
    gap: 16px;
  }

  .l2d-path-grid article {
    padding: 28px 22px;
    box-shadow: 5px 5px 0 var(--anime-black);
  }

  .l2d-path-number {
    font-size: 48px;
  }

  .l2d-plan {
    padding: 38px 22px 24px;
    box-shadow: 5px 5px 0 var(--anime-black);
  }

  .l2d-plan-head strong {
    font-size: 30px;
  }

  .l2d-promise-grid {
    gap: 14px;
    border: 0;
  }

  .l2d-promise article {
    box-shadow: 5px 5px 0 var(--anime-black);
  }

  .l2d-process-list {
    grid-template-columns: 1fr;
    box-shadow: 6px 6px 0 var(--anime-pink);
  }

  .l2d-process-list li {
    min-height: 0;
    border-top: 2px solid #fff;
    border-left: 0;
  }

  .l2d-process-list li:first-child {
    border-top: 0;
  }

  .l2d-active-inner {
    padding-top: 80px;
  }

  .l2d-active-art {
    min-height: 370px;
  }

  .l2d-active-art img {
    right: 0;
    bottom: -55%;
    width: 70%;
  }

  .l2d-faq-list summary {
    min-height: 74px;
    font-size: 12px;
  }

  .l2d-estimate {
    padding: 88px 0 120px;
  }

  .l2d-form {
    padding: 26px 18px;
  }

  .l2d-form-progress {
    margin: -26px -18px 26px;
  }

  .l2d-mobile-cta {
    border: 3px solid var(--anime-black);
    border-radius: 0;
    background: var(--anime-yellow);
    box-shadow: 5px 5px 0 var(--anime-black);
    color: var(--anime-black);
  }
}

@media (prefers-reduced-motion: reduce) {
  .l2d-opening {
    display: none;
  }

  .l2d-proof-ticker span,
  .l2d-hero-scroll svg {
    animation: none;
  }

  .is-motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Imported immersive assets: final cascade layer */
.l2d-hero-art {
  background: #080e1e url("assets/immersive/backgrounds/bg-desktop.webp") center / cover no-repeat;
}

.l2d-hero-art-frame {
  z-index: 4;
  pointer-events: none;
}

.l2d-hero-art-disc,
.l2d-hero-art-slash {
  opacity: .16;
}

.l2d-hero-motion {
  position: absolute;
  z-index: 2;
  inset: 10% 8% 7% 12%;
  width: 80%;
  height: 83%;
  object-fit: cover;
  object-position: center;
  background: #080e1e;
  filter: saturate(1.06) contrast(1.03);
}

.l2d-hero-art-caption {
  display: flex;
  align-items: center;
  gap: 7px;
}

.l2d-hero-art-caption span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--anime-black);
  border-radius: 50%;
  background: #ff315d;
  box-shadow: 0 0 0 3px rgba(255, 49, 93, .2);
}

.l2d-video-trigger img {
  object-position: center;
}

.l2d-path-grid article {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  padding: 42px 36px;
}

.l2d-path-grid article > div {
  position: relative;
  z-index: 3;
  max-width: 52%;
  padding-top: 64px;
}

.l2d-path-number {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 36px;
}

.l2d-path-art {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  border-left: 3px solid var(--anime-black);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.l2d-path-grid article:first-child .l2d-path-art {
  object-position: 52% center;
}

.l2d-path-grid article:nth-child(2) .l2d-path-art {
  object-position: 47% center;
}

.l2d-active-art img {
  right: 5%;
  bottom: -9%;
  width: 88%;
  height: 112%;
  object-fit: contain;
  object-position: bottom center;
}

.l2d-dialog-video iframe,
.l2d-dialog-video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

.l2d-dialog-video iframe[hidden],
.l2d-dialog-video video[hidden] {
  display: none;
}

@media (max-width: 820px) {
  .l2d-hero-art {
    background-image: url("assets/immersive/backgrounds/bg-desktop.webp");
  }

  .l2d-hero-art-frame,
  .l2d-hero-motion {
    inset: 5%;
    width: 90%;
    height: 90%;
  }

  .l2d-hero-art-disc,
  .l2d-hero-art-slash {
    display: none;
  }

  .l2d-path-grid article {
    min-height: 340px;
  }

  .l2d-active-art img {
    right: 18%;
    bottom: -8%;
    width: 64%;
    height: 112%;
  }
}

@media (max-width: 560px) {
  .l2d-hero-art {
    background-image: url("assets/immersive/backgrounds/bg-mobile.webp");
  }

  .l2d-hero-motion {
    object-fit: cover;
    object-position: center 32%;
  }

  .l2d-hero-art-caption {
    bottom: 7%;
  }

  .l2d-path-grid article {
    min-height: 510px;
    padding: 28px 22px 198px;
  }

  .l2d-path-grid article > div {
    max-width: none;
    padding-top: 58px;
  }

  .l2d-path-number {
    top: 26px;
    left: 22px;
  }

  .l2d-path-art {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 176px;
    border-top: 3px solid var(--anime-black);
    border-left: 0;
    object-position: center 34%;
  }

  .l2d-active-art img {
    right: 8%;
    bottom: -8%;
    width: 84%;
    height: 112%;
  }

  .l2d-active-art span {
    bottom: 82px;
  }
}
.l2d-hero-media-pending {
  position: absolute;
  inset: 12% 8%;
  display: grid;
  place-items: center;
  color: #d7ff37;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: .12em;
  text-align: center;
}
