:root {
  --ele-night: #07152d;
  --ele-night-2: #102b4c;
  --ele-ink: #14213a;
  --ele-ivory: #fbf7ed;
  --ele-paper: #f3ecdf;
  --ele-gold: #d2aa5c;
  --ele-gold-light: #f2d99a;
  --ele-wine: #7c2441;
  --ele-teal: #5bc8c6;
  --ele-line: rgba(210, 170, 92, 0.42);
  --ele-shadow: 0 20px 70px rgba(7, 21, 45, 0.18);
  --sw-ink: var(--ele-ink);
  --sw-paper: var(--ele-ivory);
  --sw-white: #ffffff;
  --sw-line: var(--ele-ink);
  --sw-muted: #586276;
  --sw-accent: var(--ele-wine);
  --sw-accent-2: var(--ele-gold-light);
  --sw-shadow: 0 14px 34px rgba(7, 21, 45, 0.14);
}

*,
*::before,
*::after {
  letter-spacing: 0;
}

html {
  background: var(--ele-night);
}

body,
.l2d-body {
  overflow-x: clip;
  background: var(--ele-ivory);
  color: var(--ele-ink);
  font-family: Inter, "Helvetica Neue", Arial, "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

body::selection {
  background: var(--ele-gold-light);
  color: var(--ele-night);
}

#celestial-sky {
  position: fixed;
  z-index: 900;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.celestial-page-transition {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ele-night);
  color: var(--ele-ivory);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.celestial-page-transition::before,
.celestial-page-transition::after {
  content: "";
  position: absolute;
  width: min(72vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 217, 154, 0.7);
  border-radius: 50%;
  transform: scale(0.3) rotate(0deg);
  opacity: 0;
}

.celestial-page-transition::after {
  width: min(48vw, 480px);
  border-style: dashed;
}

.celestial-page-transition.is-active {
  opacity: 1;
  visibility: visible;
}

.celestial-page-transition.is-active::before {
  animation: ele-gate-open 520ms cubic-bezier(.2, .8, .2, 1) both;
}

.celestial-page-transition.is-active::after {
  animation: ele-gate-open 520ms cubic-bezier(.2, .8, .2, 1) 70ms both reverse;
}

.celestial-page-transition img {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(242, 217, 154, 0.75));
  transform: scale(0.7);
}

.celestial-page-transition.is-active img {
  animation: ele-mark-arrive 520ms ease both;
}

.celestial-wish-flight {
  position: fixed;
  z-index: 1450;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 21, 45, 0.94);
  color: var(--ele-ivory);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.celestial-wish-flight.is-active {
  opacity: 1;
  visibility: visible;
}

.celestial-wish-flight__orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(210, 170, 92, 0.62);
  border-radius: 50%;
}

.celestial-wish-flight__orbit::before,
.celestial-wish-flight__orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(91, 200, 198, 0.55);
  border-radius: 50%;
  animation: ele-orbit 5s linear infinite;
}

.celestial-wish-flight__orbit::after {
  inset: 25%;
  border-color: rgba(242, 217, 154, 0.52);
  animation-direction: reverse;
  animation-duration: 3.6s;
}

.celestial-wish-flight__message {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.celestial-wish-flight__message img {
  width: 72px;
  filter: drop-shadow(0 0 22px rgba(242, 217, 154, 0.78));
  animation: ele-letter-flight 1.7s ease-in-out infinite;
}

.celestial-wish-flight__message .celestial-wish-flight__letter {
  width: min(42vw, 154px);
  height: auto;
  object-fit: contain;
}

.celestial-wish-flight__lantern {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: min(26vw, 120px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(242, 217, 154, .55));
  opacity: .72;
  animation: ele-lantern-float 3.4s ease-in-out infinite;
}

.celestial-wish-flight__lantern--left {
  left: -16%;
  transform: translateY(-50%) rotate(-12deg);
}

.celestial-wish-flight__lantern--right {
  right: -16%;
  transform: translateY(-50%) rotate(12deg);
  animation-delay: -1.7s;
}

.celestial-wish-flight__message strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(21px, 4vw, 34px);
  font-weight: 600;
}

.celestial-wish-flight__message small {
  color: rgba(251, 247, 237, 0.72);
  font-size: 11px;
}

.celestial-spark {
  position: fixed;
  z-index: 1300;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ele-gold-light);
  box-shadow: 0 0 12px var(--ele-gold-light);
  pointer-events: none;
  animation: ele-spark 720ms ease-out forwards;
}

.celestial-spark--1 {
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: var(--ele-teal);
  box-shadow: 0 0 14px rgba(91, 200, 198, .9);
  transform: rotate(35deg);
}

.celestial-spark--2 {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ele-gold-light);
  border-radius: 0;
  background: transparent;
  box-shadow: 0 0 12px rgba(242, 217, 154, .72);
  transform: rotate(45deg);
}

.sw-button::before,
.l2d-btn::before,
.l2d-plan-cta::before,
.sw-header-cta::before,
.l2d-header-cta::before {
  content: "✦";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 12px;
  color: currentColor;
  font-size: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-10px, -50%) scale(.4) rotate(0deg);
  transition: opacity 180ms ease, transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.sw-button:hover::before,
.l2d-btn:hover::before,
.l2d-plan-cta:hover::before,
.sw-header-cta:hover::before,
.l2d-header-cta:hover::before {
  opacity: .9;
  transform: translate(0, -50%) scale(1) rotate(90deg);
}

@keyframes ele-lantern-float {
  0%, 100% { margin-top: -8px; filter: drop-shadow(0 0 16px rgba(242, 217, 154, .46)); }
  50% { margin-top: 8px; filter: drop-shadow(0 0 30px rgba(242, 217, 154, .78)); }
}

.sw-page-opening,
.l2d-opening {
  background: var(--ele-night);
  color: var(--ele-ivory);
}

.sw-page-opening::before,
.l2d-opening::before {
  background: transparent;
  border: 1px solid rgba(210, 170, 92, 0.56);
  border-radius: 50%;
}

.sw-page-opening span,
.l2d-opening span {
  color: var(--ele-ivory) !important;
  -webkit-text-stroke: 0 !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(28px, 6vw, 86px);
  font-weight: 500;
}

.sw-page-opening span:last-child,
.l2d-opening span:last-child {
  color: var(--ele-gold-light) !important;
}

.sw-container,
.l2d-container {
  width: min(calc(100% - 64px), 1220px);
}

.sw-header,
.l2d-header {
  top: 16px;
  right: 22px;
  left: 22px;
  min-height: 64px;
  padding: 7px 9px;
  border: 1px solid rgba(210, 170, 92, 0.48);
  border-radius: 6px;
  background: rgba(7, 21, 45, 0.88);
  box-shadow: 0 14px 42px rgba(7, 21, 45, 0.28);
  backdrop-filter: blur(16px);
}

.sw-brand,
.l2d-brand {
  min-width: 176px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ele-ivory);
}

.l2d-header .l2d-brand {
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sw-brand-mark,
.l2d-brand-mark {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.sw-brand-mark img,
.l2d-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sw-brand-copy,
.l2d-brand-copy {
  padding: 4px 9px;
}

.sw-brand-copy strong,
.l2d-brand-copy strong {
  color: var(--ele-ivory);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 15px;
  font-weight: 600;
}

.sw-brand-copy small,
.l2d-brand-copy small {
  color: var(--ele-gold-light);
  font-size: 8px;
  font-weight: 700;
}

.sw-nav,
.l2d-nav {
  min-height: 46px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sw-nav a,
.l2d-nav a {
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid transparent;
  color: rgba(251, 247, 237, 0.82);
  font-size: 11px;
  font-weight: 700;
}

.sw-nav a:hover,
.sw-nav a[aria-current="page"],
.l2d-nav a:hover {
  border-bottom-color: var(--ele-gold);
  background: transparent;
  color: var(--ele-gold-light);
}

.sw-header-cta,
.sw-menu-button,
.l2d-header-cta {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ele-gold);
  border-radius: 4px;
  background: var(--ele-gold);
  box-shadow: none;
  color: var(--ele-night);
}

.l2d-header-cta {
  width: auto;
  min-width: 112px;
  padding: 0 13px;
}

.l2d-header-cta span {
  font-size: 9px;
}

.sw-button,
.l2d-btn,
.l2d-plan-cta,
.l2d-mobile-cta,
.sw-mobile-cta {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  border: 1px solid var(--ele-gold);
  border-radius: 4px;
  box-shadow: none;
  font-weight: 800;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.sw-button::after,
.l2d-btn::after,
.l2d-plan-cta::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -30%;
  width: 18%;
  background: rgba(255, 255, 255, 0.38);
  transform: skewX(-18deg) translateX(-240%);
  transition: transform 520ms ease;
}

.sw-button:hover::after,
.l2d-btn:hover::after,
.l2d-plan-cta:hover::after {
  transform: skewX(-18deg) translateX(850%);
}

.sw-button:hover,
.l2d-btn:hover,
.l2d-plan-cta:hover {
  transform: translateY(-2px);
}

.sw-button-primary,
.l2d-btn-primary,
.l2d-plan-cta-primary {
  background: var(--ele-gold);
  color: var(--ele-night);
}

.sw-button-light,
.l2d-btn-secondary {
  background: rgba(251, 247, 237, 0.08);
  color: var(--ele-ivory);
}

.sw-kicker,
.l2d-eyebrow {
  border: 0;
  color: var(--ele-wine);
  font-size: 10px;
  font-weight: 850;
}

.sw-kicker::before,
.l2d-eyebrow::before {
  content: "✦";
  color: var(--ele-gold);
}

.sw-section-head h2,
.sw-contact-copy h2,
.l2d-section-heading h2,
.l2d-estimate-copy h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
  line-height: 1.32;
}

.sw-proof,
.l2d-proof-grid {
  border-color: var(--ele-line);
  background: var(--ele-ivory);
}

.sw-proof > div,
.l2d-proof-grid > div {
  border-color: var(--ele-line);
}

.sw-proof strong,
.l2d-proof-grid strong {
  color: var(--ele-wine);
}

.home-hero,
.td-hero,
.biz-hero,
.l2d-hero {
  min-height: 92svh;
  max-height: none;
  background: var(--ele-night);
  color: var(--ele-ivory);
}

.home-hero::after,
.td-hero::after,
.biz-hero::after,
.l2d-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 45, 0.96) 0%, rgba(7, 21, 45, 0.78) 42%, rgba(7, 21, 45, 0.2) 72%, rgba(7, 21, 45, 0.08) 100%);
  pointer-events: none;
}

.home-hero-media,
.td-hero-image,
.biz-hero-image,
.l2d-hero-art {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-video,
.td-hero-image,
.biz-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.td-hero-image {
  inset: 0 0 0 auto;
  width: 58%;
}

.home-hero-inner,
.td-hero-inner,
.biz-hero-inner,
.l2d-hero-inner {
  position: relative;
  z-index: 3;
}

.home-hero-copy,
.td-hero-copy,
.biz-hero-copy,
.l2d-hero-copy {
  max-width: 650px;
}

.home-hero h1,
.td-hero h1,
.biz-hero h1,
.l2d-hero h1 {
  color: var(--ele-ivory);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
  text-shadow: 0 3px 24px rgba(7, 21, 45, 0.38);
}

.l2d-hero h1 em {
  color: var(--ele-ivory);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
  text-shadow: 0 4px 24px rgba(7, 21, 45, 0.82);
}

.l2d-hero h1 span {
  border: 1px solid var(--ele-gold);
  border-radius: 3px;
  background: rgba(7, 21, 45, 0.8);
  box-shadow: none;
  color: var(--ele-gold-light);
  transform: none;
}

.l2d-hero-subtitle {
  border: 1px solid rgba(210, 170, 92, 0.55);
  border-radius: 3px;
  background: rgba(124, 36, 65, 0.86);
}

.home-hero h1 > span,
.td-hero-title-label,
.biz-hero-title-label,
.l2d-hero h1 > span {
  color: var(--ele-gold-light);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.home-hero-lead,
.td-hero-lead,
.biz-hero-lead,
.l2d-hero-lead {
  color: rgba(251, 247, 237, 0.84);
}

.l2d-hero-lead {
  border: 1px solid rgba(210, 170, 92, 0.5);
  border-left: 4px solid var(--ele-gold);
  border-radius: 3px;
  background: rgba(7, 21, 45, 0.78);
  box-shadow: none;
}

.l2d-hero-lead strong {
  color: var(--ele-ivory);
}

.l2d-hero-price {
  border-color: var(--ele-gold);
  background: rgba(251, 247, 237, 0.96);
  color: var(--ele-ink);
}

.l2d-hero-price span,
.l2d-hero-price small {
  color: rgba(20, 33, 58, 0.74);
}

.home-hero-meta li,
.td-hero-specs,
.biz-hero-meta li,
.l2d-hero-price {
  border-color: rgba(210, 170, 92, 0.42);
  color: rgba(251, 247, 237, 0.82);
}

.home-hero-switcher {
  z-index: 4;
  border: 1px solid rgba(210, 170, 92, 0.45);
  border-radius: 4px;
  background: rgba(7, 21, 45, 0.78);
  backdrop-filter: blur(14px);
}

.home-hero-switcher button {
  border-color: rgba(210, 170, 92, 0.3);
  background: transparent;
  color: rgba(251, 247, 237, 0.66);
}

.home-hero-switcher button.is-active {
  background: var(--ele-gold);
  color: var(--ele-night);
}

.home-hero-caption,
.td-hero-caption,
.biz-hero-caption,
.l2d-hero-art-caption,
.td-hero-side-note,
.biz-hero-side-note,
.l2d-hero-vertical {
  z-index: 4;
  color: rgba(242, 217, 154, 0.78);
}

.home-hero-caption {
  min-width: 188px;
  background: rgba(7, 21, 45, 0.78);
  color: var(--ele-gold-light);
  font-size: 10px;
  font-weight: 800;
}

.l2d-hero-art {
  position: absolute;
}

.l2d-hero-picture,
.l2d-hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.l2d-hero-picture img {
  object-fit: cover;
  object-position: center;
}

.l2d-hero-art-frame,
.l2d-hero-art-disc,
.l2d-hero-art-slash,
.td-hero-guide,
.biz-hero-rule {
  border-color: rgba(210, 170, 92, 0.55);
}

.l2d-hero-backtype,
.td-hero-backtype,
.biz-hero-backtype {
  z-index: 2;
  color: rgba(242, 217, 154, 0.09);
}

.td-hero-status,
.biz-hero-status,
.l2d-status {
  border-color: rgba(210, 170, 92, 0.45);
  background: rgba(7, 21, 45, 0.52);
  color: var(--ele-gold-light);
}

.home-services,
.td-actual,
.biz-usecases,
.l2d-motion,
.l2d-paths,
.l2d-plans,
.l2d-process,
.l2d-faq {
  background: var(--ele-ivory);
}

.home-method,
.home-work,
.td-capabilities,
.td-specification,
.td-process,
.biz-model-videos,
.biz-showcase,
.biz-process,
.l2d-activity,
.l2d-promise {
  background: var(--ele-paper);
}

.l2d-activity .l2d-section-heading h2 {
  color: var(--ele-ink);
  text-shadow: none;
}

.l2d-activity .l2d-section-heading-split > p {
  color: rgba(20, 33, 58, 0.72);
}

.l2d-activity .l2d-section-heading::before {
  -webkit-text-stroke-color: rgba(20, 33, 58, 0.1);
}

.td-motion,
.td-plans,
.td-faq,
.biz-scope,
.biz-deliverables,
.biz-plans,
.biz-faq,
.l2d-active {
  background: var(--ele-night);
  color: var(--ele-ivory);
}

.home-route,
.home-method-grid article,
.home-work-grid figure,
.td-actual-media,
.td-capability-grid article,
.td-motion-frame,
.td-plan,
.biz-usecase,
.biz-model-video-frame,
.biz-showcase-media,
.biz-plan,
.l2d-case,
.l2d-path-grid article,
.l2d-activity-feature,
.l2d-activity-video-card,
.l2d-plan,
.l2d-promise-grid article {
  border: 1px solid rgba(20, 33, 58, 0.18);
  border-radius: 6px;
  box-shadow: var(--ele-shadow);
}

.home-route {
  overflow: hidden;
  background: #fffdf7;
}

.home-route-visual {
  aspect-ratio: 16 / 10;
}

.home-route-visual img,
.home-route-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-route-number,
.td-actual-tag,
.biz-showcase-tag,
.l2d-case-label {
  border: 1px solid var(--ele-gold);
  border-radius: 3px;
  background: var(--ele-night);
  color: var(--ele-gold-light);
}

.home-route-price strong,
.td-plan-price,
.biz-plan-price,
.l2d-plan-head strong {
  color: var(--ele-wine);
}

.td-motion .sw-section-head h2,
.td-plans .sw-section-head h2,
.td-faq .sw-section-head h2,
.biz-scope .sw-section-head h2,
.biz-deliverables h2,
.biz-plans .sw-section-head h2,
.biz-faq .sw-section-head h2,
.l2d-active h2 {
  color: var(--ele-ivory);
}

.td-motion .sw-kicker,
.td-plans .sw-kicker,
.td-faq .sw-kicker,
.biz-scope .sw-kicker,
.biz-plans .sw-kicker,
.biz-faq .sw-kicker,
.l2d-active .l2d-eyebrow {
  color: var(--ele-gold-light);
}

.td-concept-note,
.home-concept-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 8px 11px;
  border: 1px solid rgba(210, 170, 92, 0.54);
  border-radius: 3px;
  background: rgba(7, 21, 45, 0.76);
  color: rgba(251, 247, 237, 0.82);
  font-size: 10px;
  font-weight: 700;
}

.sw-contact,
.l2d-estimate {
  position: relative;
  overflow: hidden;
  background: var(--ele-night);
  color: var(--ele-ivory);
}

.sw-contact::before,
.l2d-estimate::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(210, 170, 92, 0.24);
  pointer-events: none;
}

.sw-contact-copy h2,
.l2d-estimate-copy h2 {
  color: var(--ele-ivory);
}

.sw-contact-copy > p,
.l2d-estimate-copy > p,
.sw-contact-points,
.l2d-estimate-copy li {
  color: rgba(251, 247, 237, 0.76);
}

.sw-form,
.l2d-form {
  position: relative;
  border: 1px solid rgba(210, 170, 92, 0.5);
  border-radius: 6px;
  background: rgba(251, 247, 237, 0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  color: var(--ele-ink);
}

.sw-form::before,
.l2d-form::before {
  content: "WISH LETTER";
  position: absolute;
  top: -15px;
  right: 22px;
  padding: 5px 10px;
  border: 1px solid var(--ele-gold);
  background: var(--ele-night);
  color: var(--ele-gold-light);
  font-size: 9px;
  font-weight: 800;
}

.sw-form input,
.sw-form select,
.sw-form textarea,
.l2d-form input,
.l2d-form select,
.l2d-form textarea {
  border: 1px solid rgba(20, 33, 58, 0.24);
  border-radius: 3px;
  background: #fffdf8;
  color: var(--ele-ink);
}

.sw-form input:focus,
.sw-form select:focus,
.sw-form textarea:focus,
.l2d-form input:focus,
.l2d-form select:focus,
.l2d-form textarea:focus {
  border-color: var(--ele-gold);
  outline: 3px solid rgba(210, 170, 92, 0.18);
}

.l2d-form-progress span.is-active {
  background: var(--ele-wine);
  color: #fff;
}

.sw-footer,
.l2d-footer {
  border-color: rgba(210, 170, 92, 0.38);
  background: #050f22;
  color: var(--ele-ivory);
}

.sw-footer h2,
.l2d-footer .l2d-brand-copy strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
}

.celestial-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.celestial-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.thanks-main.celestial-thanks {
  min-height: 100svh;
  background: var(--ele-night);
  color: var(--ele-ivory);
}

.celestial-thanks .thanks-box {
  position: relative;
  overflow: hidden;
  max-width: 780px;
  border: 1px solid rgba(210, 170, 92, 0.62);
  border-radius: 6px;
  background: rgba(16, 43, 76, 0.58);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.celestial-thanks .thanks-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-inline: auto;
  border: 1px solid var(--ele-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--ele-gold-light);
  font-size: 38px;
  animation: ele-delivered 1.4s ease both;
}

.celestial-thanks h1 {
  color: var(--ele-ivory);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
}

.celestial-thanks p {
  color: rgba(251, 247, 237, 0.76);
}

.thanks-icon img,
.legal-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thanks-kicker {
  margin: 18px 0 10px !important;
  color: var(--ele-gold-light) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.18em !important;
}

.celestial-thanks .thanks-actions a:first-child {
  border-color: var(--ele-gold);
  background: var(--ele-gold);
  color: var(--ele-night);
}

.celestial-thanks .thanks-actions a:last-child {
  border-color: rgba(242, 217, 154, 0.55);
  color: var(--ele-ivory);
}

.celestial-legal {
  background: var(--ele-ivory);
  color: var(--ele-ink);
}

.celestial-legal .legal-header,
.legal-header {
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(210, 170, 92, 0.52);
  background: var(--ele-night);
  color: var(--ele-ivory);
}

.legal-mark {
  overflow: hidden;
  border: 1px solid rgba(210, 170, 92, 0.55);
  border-radius: 4px;
  background: transparent;
}

.celestial-legal .legal-main h1,
.celestial-legal .legal-section h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
}

.celestial-legal .legal-section {
  border-color: rgba(20, 33, 58, 0.18);
}

.biz-hero::before {
  inset: 0;
  background: transparent;
  clip-path: none;
}

.biz-hero h1 em {
  color: var(--ele-ivory);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
}

.biz-hero h1 strong,
.biz-hero-eyebrow {
  color: var(--ele-gold-light);
}

.biz-hero-eyebrow,
.biz-hero-subtitle {
  border: 1px solid rgba(210, 170, 92, 0.46);
  border-radius: 3px;
  background: rgba(7, 21, 45, 0.56);
}

.biz-hero-title-label {
  border: 1px solid var(--ele-gold);
  border-radius: 3px;
  background: var(--ele-gold);
  box-shadow: none;
  color: var(--ele-night);
  transform: none;
}

.biz-hero-lead {
  border-left-color: var(--ele-gold);
  background: rgba(7, 21, 45, 0.56);
  color: rgba(251, 247, 237, 0.82);
}

.biz-hero-lead strong {
  color: var(--ele-ivory);
}

.biz-usecase-media span {
  border: 1px solid var(--ele-gold);
  border-radius: 3px;
  background: var(--ele-night);
  color: var(--ele-gold-light);
}

.biz-usecase-media img {
  object-position: center;
}

.biz-showcase-media {
  background: var(--ele-night) !important;
}

.biz-showcase figure:first-child .biz-showcase-media img {
  transform: none;
}

.biz-process-board {
  grid-template-columns: minmax(320px, 0.72fr) minmax(280px, 1fr);
  border-color: var(--ele-gold);
  background: var(--ele-night);
  box-shadow: 7px 7px 0 rgba(210, 170, 92, 0.48);
}

.biz-process-board img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.biz-process-board figcaption {
  align-content: center;
  border-left-color: var(--ele-gold);
  background: var(--ele-night);
  color: var(--ele-ivory);
}

.biz-process-board figcaption strong {
  color: var(--ele-gold-light);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
}

.biz-process-board figcaption span {
  color: rgba(251, 247, 237, 0.72);
}

.td-motion-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes ele-gate-open {
  0% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  60% { opacity: 1; }
  100% { opacity: 0.8; transform: scale(1.25) rotate(72deg); }
}

@keyframes ele-mark-arrive {
  from { opacity: 0; transform: scale(0.5) rotate(-20deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes ele-orbit {
  to { transform: rotate(360deg); }
}

@keyframes ele-letter-flight {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes ele-spark {
  from { opacity: 1; transform: translate(0, 0) scale(1); }
  to { opacity: 0; transform: translate(var(--spark-x), var(--spark-y)) scale(0); }
}

@keyframes ele-delivered {
  0% { opacity: 0; transform: scale(0.35) rotate(-30deg); }
  65% { opacity: 1; transform: scale(1.12) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 980px) {
  .sw-container,
  .l2d-container {
    width: min(calc(100% - 40px), 1220px);
  }

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

  .l2d-nav {
    display: none;
  }

  .sw-nav {
    top: 62px;
    border: 1px solid rgba(210, 170, 92, 0.46);
    border-radius: 4px;
    background: rgba(7, 21, 45, 0.98);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  }

  .sw-nav a {
    border-color: rgba(210, 170, 92, 0.18);
  }

  .home-hero::after,
  .td-hero::after,
  .biz-hero::after,
  .l2d-hero::after {
    background: linear-gradient(90deg, rgba(7, 21, 45, 0.94), rgba(7, 21, 45, 0.62));
  }
}

@media (max-width: 680px) {
  #celestial-sky {
    opacity: 0.42;
  }

  .sw-container,
  .l2d-container {
    width: min(calc(100% - 28px), 1220px);
  }

  .sw-header,
  .l2d-header {
    min-height: 56px;
    padding: 5px 7px;
  }

  .sw-brand,
  .l2d-brand {
    min-width: 0;
  }

  .sw-brand-mark,
  .l2d-brand-mark {
    width: 40px;
    height: 40px;
  }

  .sw-brand-copy strong,
  .l2d-brand-copy strong {
    font-size: 13px;
  }

  .sw-menu-button {
    width: 44px;
    height: 44px;
  }

  .home-hero,
  .td-hero,
  .biz-hero,
  .l2d-hero {
    min-height: 94svh;
  }

  .home-hero::after,
  .td-hero::after,
  .biz-hero::after,
  .l2d-hero::after {
    background: linear-gradient(180deg, rgba(7, 21, 45, 0.38) 0%, rgba(7, 21, 45, 0.86) 52%, rgba(7, 21, 45, 0.98) 100%);
  }

  .home-hero-video,
  .td-hero-image,
  .biz-hero-image,
  .l2d-hero-picture img {
    object-position: center top;
  }

  .td-hero-image {
    inset: 0;
    width: 100%;
    height: 48%;
    object-fit: cover;
    object-position: center top;
  }

  .home-hero-inner,
  .td-hero-inner,
  .biz-hero-inner,
  .l2d-hero-inner {
    align-items: end;
    padding-bottom: 132px;
  }

  .home-hero-copy,
  .td-hero-copy,
  .biz-hero-copy,
  .l2d-hero-copy {
    max-width: 100%;
  }

  .home-hero h1,
  .td-hero h1,
  .biz-hero h1,
  .l2d-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .home-hero-switcher {
    top: 84px;
    right: 14px;
    bottom: auto;
    left: 14px;
    height: auto;
    width: auto;
  }

  .home-hero-switcher button {
    min-width: 0;
  }

  .biz-hero-image,
  .home-hero-video[data-showcase-kind="business"] {
    object-position: 76% top;
  }

  .home-route-visual {
    aspect-ratio: 4 / 3;
  }

  .sw-contact::before,
  .l2d-estimate::before {
    inset: 14px;
  }

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

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

  .biz-process-board img {
    max-height: 620px;
    aspect-ratio: 4 / 5;
  }

  .sw-mobile-cta,
  .l2d-mobile-cta {
    right: 12px;
    bottom: 10px;
    left: 12px;
    border-color: var(--ele-gold);
    background: var(--ele-gold);
    color: var(--ele-night);
  }
}

@media (prefers-reduced-motion: reduce) {
  #celestial-sky,
  .celestial-page-transition,
  .celestial-wish-flight__orbit::before,
  .celestial-wish-flight__orbit::after,
  .celestial-wish-flight__message img,
  .celestial-wish-flight__lantern {
    animation: none !important;
  }

  .celestial-reveal {
    opacity: 1;
    transform: none;
  }
}
