:root {
  --ink: #0a1024;
  --muted: #626a7f;
  --line: rgba(12, 20, 44, .12);
  --paper: #f7f8fc;
  --white: #fff;
  --blue: #5d7dff;
  --violet: #8f68ff;
  --cyan: #45e4ee;
  --pink: #ff8ac8;
  --dark: #050812;
  --dark-2: #0a1020;
  --wrap: min(1280px, calc(100vw - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 80px rgba(29, 45, 92, .14);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.wrap { width: var(--wrap); margin-inline: auto; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 0;
  width: 100%;
  padding-inline: 24px;
  pointer-events: none;
}

.header-shell {
  width: min(1180px, 100%);
  height: 68px;
  margin-inline: auto;
  padding: 0 10px 0 20px;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 24px;
  background: rgba(255, 255, 255, .63);
  box-shadow: 0 14px 54px rgba(34, 50, 92, .11), inset 0 1px rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  pointer-events: auto;
  transition: background .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 60px rgba(20, 30, 65, .16), inset 0 1px rgba(255, 255, 255, .95);
}

.sanctuary-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 13px;
  line-height: 1;
  font-weight: 840;
  letter-spacing: .12em;
}

.sanctuary-logo small {
  display: inline;
  margin-left: 4px;
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--muted);
}

.sanctuary-symbol {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 11px;
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26);
}

.sanctuary-symbol::before,
.sanctuary-symbol::after,
.sanctuary-symbol i {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.sanctuary-symbol::before { transform: translate(-5px, -3px); }
.sanctuary-symbol::after { transform: translate(5px, 3px); opacity: .58; }
.sanctuary-symbol i { width: 3px; height: 3px; border-width: 1px; transform: translate(7px, -7px); background: var(--cyan); }

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2vw, 28px);
  margin-left: auto;
}

.global-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
  color: rgba(10, 16, 36, .72);
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transform: translate(-50%, 4px);
  transition: .25s ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }

.header-contact {
  display: inline-grid;
  place-items: center;
  height: 46px;
  padding: 0 21px;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s ease;
}

.header-contact:hover { transform: translateY(-2px); background: #26355f; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 1120px;
  padding: 172px 0 140px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(247, 248, 252, .04) 60%, var(--paper) 94%),
    url("../media/onestep-hero-pastel-studio.png") center top / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .54), transparent 40%, rgba(255, 255, 255, .12));
}

.hero-ambient span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: inset 0 1px rgba(255, 255, 255, .82), 0 30px 100px rgba(100, 124, 217, .12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.hero-ambient span:nth-child(1) {
  top: 130px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 44% 56% 62% 38% / 46% 43% 57% 54%;
  transform: rotate(18deg);
  animation: liquidFloat 3.33s ease-in-out infinite alternate;
}

.hero-ambient span:nth-child(2) {
  top: 310px;
  right: -90px;
  width: 260px;
  height: 430px;
  border-radius: 50%;
  transform: rotate(-25deg);
  animation: liquidFloat 4s ease-in-out -1s infinite alternate-reverse;
}

.hero-ambient span:nth-child(3) {
  top: 600px;
  left: 42%;
  width: 140px;
  height: 140px;
  border-radius: 42% 58% 34% 66% / 56% 40% 60% 44%;
  animation: liquidFloat 2.67s ease-in-out -.33s infinite alternate;
}

@keyframes liquidFloat {
  from { transform: translate3d(0, -8px, 0) rotate(12deg); }
  to { transform: translate3d(18px, 18px, 0) rotate(22deg); }
}

.hero-copy {
  width: min(960px, calc(100vw - 48px));
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #5c6680;
  font-size: 11px;
  font-weight: 790;
  letter-spacing: .19em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(62px, 9.4vw, 144px);
  font-weight: 780;
  line-height: .94;
  letter-spacing: -.075em;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(110deg, #3d70ff 0%, #7c63ff 45%, #ff7fbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  margin: 34px auto 0;
  color: #39435a;
  font-size: clamp(16px, 1.65vw, 22px);
  line-height: 1.75;
  letter-spacing: -.02em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease;
}

.button:hover { transform: translateY(-3px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(91, 123, 255, .42); outline-offset: 4px; }

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(10, 16, 36, .18), inset 0 1px rgba(255, 255, 255, .28);
}

.button-primary:hover { box-shadow: 0 20px 42px rgba(10, 16, 36, .24); }

.button-quiet {
  color: var(--ink);
  border: 1px solid rgba(10, 16, 36, .09);
  background: rgba(255, 255, 255, .56);
  box-shadow: inset 0 1px rgba(255, 255, 255, .84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.button-quiet span { margin-left: 10px; }

.hero-stage {
  position: relative;
  width: min(1120px, calc(100vw - 80px));
  height: 430px;
  margin: 105px auto 0;
  perspective: 1500px;
}

.hero-screen {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .78);
  background: rgba(248, 250, 255, .44);
  box-shadow: 0 40px 110px rgba(35, 54, 105, .22), inset 0 1px rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(28px) saturate(148%);
  backdrop-filter: blur(28px) saturate(148%);
}

.hero-screen-main {
  z-index: 3;
  inset: 0 13%;
  border-radius: 38px;
  transform: translateZ(40px);
  overflow: hidden;
}

.hero-screen-left,
.hero-screen-right {
  z-index: 1;
  top: 55px;
  width: 30%;
  height: 300px;
  border-radius: 30px;
  display: grid;
  place-items: end center;
  padding-bottom: 30px;
  color: rgba(20, 31, 65, .24);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .23em;
}

.hero-screen-left { left: 0; transform: rotateY(24deg) translateX(-10px); }
.hero-screen-right { right: 0; transform: rotateY(-24deg) translateX(10px); }

.screen-top {
  height: 55px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(15, 24, 53, .08);
  color: #75809a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
}

.screen-visual {
  position: relative;
  height: calc(100% - 55px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 30%, rgba(109, 165, 255, .42), transparent 28%),
    radial-gradient(circle at 76% 50%, rgba(255, 157, 215, .36), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .44), rgba(211, 224, 255, .34));
}

.screen-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image: linear-gradient(rgba(80, 100, 160, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(80, 100, 160, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 28%, #000);
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000);
}

.visual-word {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -.065em;
  text-shadow: 0 8px 38px rgba(72, 93, 166, .2);
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: inset -12px -18px 38px rgba(98, 103, 255, .16), inset 12px 14px 28px rgba(255, 255, 255, .68), 0 20px 50px rgba(91, 123, 255, .12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.orb-one { width: 180px; height: 180px; left: 10%; top: 8%; animation: orbDrift 2.67s ease-in-out infinite alternate; }
.orb-two { width: 124px; height: 124px; right: 9%; bottom: 4%; animation: orbDrift 2.33s ease-in-out -.67s infinite alternate-reverse; }

@keyframes orbDrift { to { transform: translate3d(15px, -16px, 0) scale(1.04); } }

.visual-line { position: absolute; height: 1px; width: 70%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .9), transparent); }
.line-one { transform: rotate(-16deg); }
.line-two { transform: rotate(29deg); }

.screen-visual p {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 18px;
  margin: 0;
  color: #53607a;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .16em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #69738b;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .22em;
}

.scroll-cue i { width: 1px; height: 50px; background: linear-gradient(var(--ink), transparent); }

.section-light { background: var(--paper); }

.intro { padding: 155px 0 110px; }
.intro-grid, .philosophy-grid { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 70px; }

.section-label { display: flex; gap: 12px; align-items: flex-start; color: #69738a; }
.section-label span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; font-size: 10px; }
.section-label p { margin: 7px 0 0; font-size: 10px; font-weight: 770; letter-spacing: .16em; }

.display-heading {
  margin: 0;
  font-size: clamp(45px, 6.2vw, 90px);
  line-height: 1.05;
  letter-spacing: -.065em;
  font-weight: 760;
}

.intro-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 870px;
  margin: 64px 0 0 auto;
  color: #525d73;
  font-size: 15px;
  line-height: 2;
}

.intro-detail p { margin: 0; }

.marquee {
  margin-top: 130px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: #d5d9e4;
  white-space: nowrap;
}

.marquee div {
  width: max-content;
  padding: 24px 0;
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -.055em;
  animation: marqueeMove 32s linear infinite;
}

.marquee i { display: inline-block; width: 12px; height: 12px; margin: 0 34px 8px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--pink)); }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

.business { padding: 155px 0 170px; }
.section-heading-row { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 70px; align-items: start; margin-bottom: 100px; }

.business-list { border-top: 1px solid var(--line); }
.business-item {
  min-height: 190px;
  display: grid;
  grid-template-columns: 72px 1.15fr 1.25fr 54px;
  gap: 30px;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease), background .4s ease;
}

.business-item:hover { padding-inline: 24px; background: rgba(255, 255, 255, .55); }
.business-no { color: #9ca4b7; font-size: 11px; font-weight: 730; letter-spacing: .14em; }
.business-item small { color: #758097; font-size: 9px; font-weight: 770; letter-spacing: .14em; }
.business-item h3 { margin: 10px 0 0; font-size: clamp(24px, 2.8vw, 38px); letter-spacing: -.04em; }
.business-item p { margin: 0; color: #596379; font-size: 14px; line-height: 1.9; }
.business-item > a { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; transition: .3s var(--ease); }
.business-item > a:hover { color: #fff; background: var(--ink); transform: rotate(45deg); }

.division-heading {
  display: grid;
  grid-template-columns: 170px 1.05fr .95fr;
  gap: 50px;
  align-items: end;
  margin-top: 150px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
}

.division-heading .eyebrow { margin: 0 0 6px; }
.division-heading h3 { margin: 0; font-size: clamp(36px, 4.7vw, 66px); line-height: 1.06; letter-spacing: -.06em; }
.division-heading > p:last-child { margin: 0; color: #616c81; font-size: 13px; line-height: 1.9; }
.division-grid { display: grid; grid-template-columns: 1fr 1fr; }
.division-card { border-bottom: 1px solid var(--line); }
.division-card:nth-child(odd):not(.division-card-wide) { border-right: 1px solid var(--line); }
.division-card-wide { grid-column: 1 / -1; }
.division-card summary {
  min-height: 142px;
  display: grid;
  grid-template-columns: 38px 1fr 42px;
  gap: 20px;
  align-items: center;
  padding: 24px 34px;
  cursor: pointer;
  list-style: none;
  transition: background .35s ease, padding .35s var(--ease);
}
.division-card summary::-webkit-details-marker { display: none; }
.division-card summary:hover { background: rgba(255, 255, 255, .6); padding-inline: 42px; }
.division-card summary > span { color: #98a1b4; font-size: 10px; font-weight: 760; }
.division-card summary small { color: #7a8499; font-size: 8px; font-weight: 770; letter-spacing: .14em; }
.division-card summary h4 { margin: 10px 0 0; font-size: clamp(21px, 2.3vw, 31px); letter-spacing: -.04em; }
.division-card summary i { position: relative; display: block; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; }
.division-card summary i::before, .division-card summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.division-card summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.division-card[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.division-card[open] summary { background: rgba(255, 255, 255, .7); }
.division-body { padding: 8px 34px 38px 92px; background: rgba(255, 255, 255, .7); }
.division-body p { max-width: 600px; margin: 0 0 22px; color: #59647a; font-size: 13px; line-height: 1.85; }
.division-body ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: #313b53; font-size: 12px; }
.division-body li { position: relative; padding-left: 18px; }
.division-body li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--pink)); }
.division-body-columns { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.division-body-columns ul { grid-template-columns: 1fr 1fr; }

.onestep {
  position: relative;
  padding: 145px 0 130px;
  color: #fff;
  background:
    radial-gradient(circle at 48% 38%, rgba(61, 111, 255, .18), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(67, 228, 238, .11), transparent 27%),
    radial-gradient(circle at 14% 72%, rgba(150, 83, 255, .13), transparent 30%),
    var(--dark);
  overflow: hidden;
  isolation: isolate;
}

.onestep::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(123, 153, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(123, 153, 255, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 3%, #000 22%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent 3%, #000 22%, #000 80%, transparent);
  pointer-events: none;
}

.onestep-glow i { position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none; }
.onestep-glow i:nth-child(1) { width: 360px; height: 360px; top: 16%; right: -150px; background: rgba(50, 205, 255, .16); }
.onestep-glow i:nth-child(2) { width: 300px; height: 300px; bottom: 0; left: -120px; background: rgba(123, 80, 255, .17); }
.onestep-glow i:nth-child(3) { width: 90px; height: 90px; top: 48%; left: 48%; background: rgba(255, 109, 208, .26); }

.onestep-shell { position: relative; z-index: 2; }
.onestep-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.section-label-dark { color: rgba(255, 255, 255, .48); }
.section-label-dark span { border-color: rgba(255, 255, 255, .18); }

.product-brand { display: flex; align-items: center; gap: 13px; font-size: 15px; font-weight: 780; letter-spacing: .08em; }
.product-brand small { display: block; margin-top: 5px; color: rgba(255, 255, 255, .42); font-size: 8px; letter-spacing: .12em; }
.product-mark { position: relative; display: inline-block; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 14px; background: linear-gradient(145deg, rgba(103, 125, 255, .35), rgba(139, 92, 246, .16)); box-shadow: inset 0 1px rgba(255, 255, 255, .2); }
.product-mark i { position: absolute; left: 12px; top: 10px; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid #76c9ff; filter: drop-shadow(0 0 8px rgba(76, 201, 255, .55)); }
.product-mark b { position: absolute; right: 9px; bottom: 8px; width: 15px; height: 7px; border-radius: 5px; background: #9475ff; box-shadow: -4px -5px 0 rgba(148, 117, 255, .7); }

.onestep-hero { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(50px, 7vw, 110px); align-items: center; margin-top: 115px; }
.product-kicker { margin: 0 0 28px; color: #7de8f2; font-size: 10px; font-weight: 780; letter-spacing: .2em; }
.onestep-copy h2 { margin: 0; font-size: clamp(50px, 6.6vw, 92px); line-height: .99; letter-spacing: -.065em; }
.onestep-copy h2 em { color: transparent; background: linear-gradient(90deg, #7fc7ff, #a788ff 55%, #ff8ece); -webkit-background-clip: text; background-clip: text; font-style: normal; }
.onestep-copy > p:not(.product-kicker) { max-width: 620px; margin: 38px 0 0; color: rgba(255, 255, 255, .62); font-size: 15px; line-height: 2; }
.onestep-actions { display: flex; align-items: center; gap: 24px; margin-top: 38px; }
.button-light { color: #071022; background: #fff; box-shadow: 0 16px 42px rgba(0, 0, 0, .25); }
.text-link { padding: 10px 0; color: rgba(255, 255, 255, .78); border-bottom: 1px solid rgba(255, 255, 255, .22); font-size: 12px; font-weight: 700; }
.text-link span { margin-left: 8px; }

.glass-dark {
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px rgba(255, 255, 255, .14), 0 28px 90px rgba(0, 0, 0, .34);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
}

.product-visual { position: relative; min-width: 0; padding: 16px; border-radius: 34px; transform: perspective(1400px) rotateY(-4deg) rotateX(2deg); }
.product-visual::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--x, 50%) var(--y, 25%), rgba(255, 255, 255, .22), transparent 35%);
  pointer-events: none;
}
.product-visual video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 22px; background: #101833; }
.video-status { display: flex; justify-content: space-between; padding: 14px 8px 0; color: rgba(255, 255, 255, .42); font-size: 8px; font-weight: 780; letter-spacing: .15em; }
.video-status span:first-child { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .7); }
.video-status i { width: 7px; height: 7px; border-radius: 50%; background: #53e4b0; box-shadow: 0 0 12px #53e4b0; }

.product-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 90px; }
.product-stats article { min-height: 164px; padding: 24px; border-radius: 24px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .35s var(--ease), border-color .35s ease; }
.product-stats article:hover { transform: translateY(-8px); border-color: rgba(120, 213, 255, .34); }
.product-stats strong { font-size: clamp(28px, 3.2vw, 46px); font-weight: 660; letter-spacing: -.04em; }
.product-stats span { color: rgba(255, 255, 255, .55); font-size: 12px; line-height: 1.6; }

.philosophy { padding: 175px 0; }
.philosophy .display-heading { max-width: 980px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 95px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles article { min-height: 280px; padding: 35px 36px 40px; border-right: 1px solid var(--line); }
.principles article:first-child { padding-left: 0; }
.principles article:last-child { border-right: 0; padding-right: 0; }
.principles span { color: #98a1b4; font-size: 10px; }
.principles h3 { margin: 55px 0 18px; font-size: 23px; letter-spacing: -.035em; }
.principles p { margin: 0; color: #626d82; font-size: 13px; line-height: 1.9; }

.recruit {
  position: relative;
  padding: 165px 0 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 15%, rgba(85, 151, 255, .2), transparent 28%),
    radial-gradient(circle at 8% 68%, rgba(255, 133, 198, .18), transparent 30%),
    linear-gradient(150deg, #f0f7ff 0%, #f7f3ff 48%, #fff6fa 100%);
}
.recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(rgba(96, 113, 169, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(96, 113, 169, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent);
  pointer-events: none;
}
.recruit-ambient i { position: absolute; border: 1px solid rgba(255, 255, 255, .86); box-shadow: inset 0 1px rgba(255, 255, 255, .9), 0 30px 80px rgba(77, 105, 190, .1); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.recruit-ambient i:first-child { width: 300px; height: 300px; right: -90px; top: 32%; border-radius: 44% 56% 61% 39% / 54% 35% 65% 46%; transform: rotate(20deg); }
.recruit-ambient i:last-child { width: 180px; height: 180px; left: -60px; top: 12%; border-radius: 50%; }
.recruit-shell { position: relative; z-index: 2; }
.recruit-heading { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 70px; }
.recruit .display-heading em { color: transparent; background: linear-gradient(105deg, #477aff, #8d6cff 55%, #ef71b7); -webkit-background-clip: text; background-clip: text; font-style: normal; }
.recruit-lead { max-width: 720px; margin: 40px 0 0; color: #59657a; font-size: 15px; line-height: 2; }
.career-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 100px; }
.glass-career { border: 1px solid rgba(255, 255, 255, .82); background: rgba(255, 255, 255, .53); box-shadow: 0 28px 80px rgba(65, 83, 139, .11), inset 0 1px rgba(255, 255, 255, .95); -webkit-backdrop-filter: blur(24px) saturate(145%); backdrop-filter: blur(24px) saturate(145%); }
.career-feature { min-height: 390px; padding: 34px; border-radius: 30px; display: flex; flex-direction: column; transition: transform .4s var(--ease), background .4s ease; }
.career-feature:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .7); }
.career-feature > span { color: #78849b; font-size: 8px; font-weight: 780; letter-spacing: .14em; }
.career-feature h3 { margin: 70px 0 22px; font-size: clamp(24px, 2.6vw, 35px); line-height: 1.24; letter-spacing: -.045em; }
.career-feature p { margin: auto 0 0; color: #5f6b80; font-size: 13px; line-height: 1.9; }
.positions { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; margin-top: 130px; padding-top: 70px; border-top: 1px solid rgba(19, 29, 57, .13); }
.positions-heading h3 { margin: 0 0 22px; font-size: clamp(36px, 4vw, 56px); letter-spacing: -.055em; }
.positions-heading > p:last-child { max-width: 330px; margin: 0; color: #667186; font-size: 13px; line-height: 1.8; }
.position-list { border-top: 1px solid rgba(19, 29, 57, .13); }
.position-card { display: grid; grid-template-columns: 46px 1fr 1fr; gap: 26px; align-items: start; min-height: 215px; padding: 36px 0; border-bottom: 1px solid rgba(19, 29, 57, .13); }
.position-no { color: #8791a6; font-size: 10px; font-weight: 760; }
.position-card small { color: #758197; font-size: 8px; font-weight: 780; letter-spacing: .12em; }
.position-card h4 { margin: 12px 0 0; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.25; letter-spacing: -.04em; }
.position-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; color: #566177; font-size: 12px; line-height: 1.65; }
.position-card li { position: relative; padding-left: 18px; }
.position-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.work-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 90px; border-block: 1px solid rgba(19, 29, 57, .13); }
.work-facts > div { min-height: 185px; display: flex; flex-direction: column; justify-content: center; padding: 30px; border-right: 1px solid rgba(19, 29, 57, .13); }
.work-facts > div:last-child { border-right: 0; }
.work-facts span { color: #7b869b; font-size: 8px; font-weight: 780; letter-spacing: .14em; }
.work-facts strong { margin-top: 25px; font-size: clamp(26px, 3vw, 41px); line-height: 1; letter-spacing: -.045em; }
.work-facts small { margin-top: 14px; color: #657086; font-size: 11px; }
.recruit-action { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 70px; }
.recruit-action p { margin: 0; font-size: clamp(20px, 2.2vw, 30px); font-weight: 680; letter-spacing: -.035em; }
.recruit-action .button span { margin-left: 10px; }
.recruit .prototype-note { margin-top: 24px; }

.news { padding: 140px 0 170px; border-top: 1px solid var(--line); }
.news-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.round-link { display: grid; place-items: center; width: 128px; height: 128px; border: 1px solid var(--line); border-radius: 50%; font-size: 11px; font-weight: 700; transition: .35s var(--ease); }
.round-link span { margin-left: 6px; }
.round-link:hover { color: #fff; background: var(--ink); transform: rotate(8deg); }
.news-list { margin-top: 95px; border-top: 1px solid var(--line); }
.news-row { display: grid; grid-template-columns: 120px 140px minmax(0, 1fr) 50px; gap: 24px; align-items: center; min-height: 105px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s ease; }
.news-row:hover { padding-inline: 18px; background: rgba(255, 255, 255, .58); }
.news-row time { color: #7d879b; font-size: 11px; }
.news-category { color: #6a7490; font-size: 9px; font-weight: 770; letter-spacing: .12em; }
.news-row h3 { margin: 0; font-size: 15px; font-weight: 650; }
.news-row > a, .news-link { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; }
.prototype-note { margin: 16px 0 0; color: #8b93a5; font-size: 10px; line-height: 1.7; }

.company { padding: 165px 0; background: #fff; }
.company-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 160px); }
.company-lead { max-width: 520px; margin: 40px 0 0; color: #626d82; font-size: 14px; line-height: 2; }
.company-table { margin: 0; border-top: 1px solid var(--line); }
.company-table div { display: grid; grid-template-columns: 140px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.company-table dt { color: #7c8699; font-size: 11px; }
.company-table dd { margin: 0; font-size: 14px; line-height: 1.8; }
.company-table small { color: #818a9d; }

.contact {
  position: relative;
  padding: 175px 0 160px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(96, 135, 255, .30), transparent 34%),
    radial-gradient(circle at 20% 72%, rgba(255, 136, 203, .25), transparent 32%),
    linear-gradient(145deg, #edf5ff, #f8f1ff 45%, #fff3fa);
}

.contact-ambient i { position: absolute; border: 1px solid rgba(255, 255, 255, .8); box-shadow: inset 0 1px rgba(255, 255, 255, .9), 0 30px 80px rgba(77, 105, 190, .12); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.contact-ambient i:first-child { width: 430px; height: 430px; right: -150px; top: -90px; border-radius: 48% 52% 34% 66% / 45% 30% 70% 55%; transform: rotate(20deg); }
.contact-ambient i:last-child { width: 250px; height: 250px; left: -70px; bottom: -110px; border-radius: 50%; }
.contact-inner { position: relative; text-align: center; }
.contact h2 { margin: 0; font-size: clamp(64px, 10vw, 146px); line-height: .92; letter-spacing: -.075em; }
.contact p:not(.eyebrow) { margin: 38px auto 32px; color: #59657b; font-size: 15px; line-height: 1.9; }

.site-footer { padding: 64px 0 24px; color: #fff; background: var(--dark); }
.footer-top { display: flex; align-items: start; justify-content: space-between; gap: 50px; padding-bottom: 58px; }
.sanctuary-logo-footer small { color: rgba(255, 255, 255, .45); }
.sanctuary-logo-footer .sanctuary-symbol { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .12); }
.footer-top nav { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 18px 40px; color: rgba(255, 255, 255, .58); font-size: 12px; }
.footer-top nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .36); font-size: 10px; }
.footer-bottom div { display: flex; gap: 24px; }

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

body.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --wrap: min(100% - 44px, 920px); }
  .global-nav { position: fixed; display: flex; top: 99px; left: 50%; width: min(680px, calc(100% - 48px)); margin-left: 0; padding: 24px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid rgba(255, 255, 255, .74); border-radius: 24px; background: rgba(255, 255, 255, .9); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -10px) scale(.985); transform-origin: top center; -webkit-backdrop-filter: blur(30px); backdrop-filter: blur(30px); transition: opacity .24s ease, transform .3s var(--ease), visibility 0s linear .3s; }
  .header-shell { max-width: 720px; }
  .menu-toggle { display: inline-flex; width: 44px; height: 44px; margin-left: auto; border: 0; border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; color: var(--ink); background: rgba(255, 255, 255, .55); }
  .menu-toggle i { width: 18px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .global-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0) scale(1); transition-delay: 0s; }
  .global-nav.is-open a { padding: 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .global-nav.is-open a:last-child { border-bottom: 0; }
  .hero-stage { height: 370px; }
  .intro-grid, .section-heading-row, .philosophy-grid { grid-template-columns: 150px minmax(0, 1fr); gap: 40px; }
  .business-item { grid-template-columns: 50px 1fr 1fr 50px; }
  .division-heading { grid-template-columns: 150px 1fr; gap: 40px; }
  .division-heading > p:last-child { grid-column: 2; }
  .onestep-hero { grid-template-columns: 1fr; }
  .product-visual { max-width: 880px; transform: none; }
  .product-stats { grid-template-columns: repeat(2, 1fr); }
  .recruit-heading { grid-template-columns: 150px minmax(0, 1fr); gap: 40px; }
  .career-feature { min-height: 360px; padding: 27px; }
  .positions { grid-template-columns: 1fr; gap: 45px; }
  .positions-heading > p:last-child { max-width: 520px; }
  .company-grid { grid-template-columns: 1fr 1.15fr; gap: 60px; }
}

@media (max-width: 760px) {
  :root { --wrap: calc(100vw - 34px); }
  html { scroll-padding-top: 90px; }
  .site-header { top: 10px; padding-inline: 10px; }
  .header-shell { height: 60px; padding-left: 14px; border-radius: 20px; gap: 9px; }
  .sanctuary-logo { font-size: 11px; letter-spacing: .09em; }
  .sanctuary-logo small { display: none; }
  .sanctuary-symbol { width: 28px; height: 28px; border-radius: 10px; }
  .header-contact { height: 40px; padding: 0 14px; border-radius: 13px; font-size: 10px; }
  .menu-toggle { width: 40px; height: 40px; }
  .global-nav.is-open { top: 81px; width: calc(100% - 20px); }

  .hero { min-height: 930px; padding: 132px 0 90px; background-position: 62% top; }
  .hero-copy { width: calc(100% - 32px); }
  .hero h1 { font-size: clamp(56px, 19vw, 82px); }
  .hero-lead { margin-top: 25px; font-size: 14px; line-height: 1.85; }
  .hero-lead br { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(330px, 100%); margin: 28px auto 0; }
  .button { min-height: 52px; }
  .hero-stage { width: calc(100% - 24px); height: 265px; margin-top: 66px; perspective: none; }
  .hero-screen-main { inset: 0 4%; border-radius: 25px; }
  .hero-screen-left, .hero-screen-right { display: none; }
  .screen-top { height: 44px; padding: 0 14px; }
  .screen-visual { height: calc(100% - 44px); }
  .visual-word { font-size: 48px; }
  .orb-one { width: 105px; height: 105px; }
  .orb-two { width: 76px; height: 76px; }
  .scroll-cue { bottom: 22px; }
  .scroll-cue i { height: 34px; }

  .intro { padding: 100px 0 65px; }
  .intro-grid, .section-heading-row, .philosophy-grid { grid-template-columns: 1fr; gap: 45px; }
  .section-label { align-items: center; }
  .section-label p { margin-top: 0; }
  .display-heading { font-size: clamp(42px, 13vw, 62px); line-height: 1.08; }
  .intro-detail { grid-template-columns: 1fr; gap: 26px; margin-top: 44px; font-size: 14px; }
  .marquee { margin-top: 80px; }
  .marquee div { font-size: 46px; }
  .marquee i { width: 8px; height: 8px; margin: 0 18px 5px; }

  .business { padding: 95px 0 110px; }
  .section-heading-row { margin-bottom: 60px; }
  .business-item { min-height: 0; grid-template-columns: 36px 1fr 40px; gap: 16px; padding: 28px 0; }
  .business-item > div { grid-column: 2; }
  .business-item p { grid-column: 2 / -1; font-size: 13px; }
  .business-item > a { grid-column: 3; grid-row: 1; width: 40px; height: 40px; }
  .business-item h3 { font-size: 25px; }
  .business-item:hover { padding-inline: 0; background: transparent; }
  .division-heading { grid-template-columns: 1fr; gap: 24px; margin-top: 95px; padding-bottom: 34px; }
  .division-heading > p:last-child { grid-column: auto; }
  .division-heading h3 { font-size: 42px; }
  .division-grid { grid-template-columns: 1fr; }
  .division-card:nth-child(odd):not(.division-card-wide) { border-right: 0; }
  .division-card-wide { grid-column: auto; }
  .division-card summary { min-height: 118px; grid-template-columns: 26px 1fr 36px; gap: 12px; padding: 20px 4px; }
  .division-card summary:hover { padding-inline: 4px; background: transparent; }
  .division-card[open] summary { background: transparent; }
  .division-card summary i { width: 34px; height: 34px; }
  .division-card summary h4 { font-size: 23px; }
  .division-body, .division-body-columns { display: block; padding: 0 0 30px 38px; background: transparent; }
  .division-body-columns ul { grid-template-columns: 1fr; }

  .onestep { padding: 90px 0 80px; }
  .onestep-top { align-items: flex-start; flex-direction: column; }
  .product-brand { font-size: 13px; }
  .onestep-hero { margin-top: 68px; gap: 54px; }
  .onestep-copy h2 { font-size: clamp(48px, 14vw, 68px); }
  .onestep-copy > p:not(.product-kicker) { font-size: 14px; line-height: 1.9; }
  .onestep-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .text-link { text-align: center; }
  .product-visual { padding: 9px; border-radius: 23px; }
  .product-visual video { border-radius: 16px; }
  .video-status { font-size: 7px; }
  .product-stats { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 52px; }
  .product-stats article { min-height: 138px; padding: 18px; border-radius: 18px; }
  .product-stats strong { font-size: 28px; }
  .product-stats span { font-size: 11px; }

  .philosophy { padding: 100px 0; }
  .principles { grid-template-columns: 1fr; margin-top: 60px; }
  .principles article, .principles article:first-child, .principles article:last-child { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles article:last-child { border-bottom: 0; }
  .principles h3 { margin: 28px 0 12px; }

  .recruit { padding: 100px 0 90px; }
  .recruit-heading { grid-template-columns: 1fr; gap: 45px; }
  .recruit-lead { margin-top: 30px; font-size: 14px; }
  .career-features { grid-template-columns: 1fr; margin-top: 62px; }
  .career-feature { min-height: 310px; padding: 28px; border-radius: 24px; }
  .career-feature h3 { margin-top: 45px; font-size: 29px; }
  .positions { grid-template-columns: 1fr; gap: 40px; margin-top: 80px; padding-top: 52px; }
  .positions-heading h3 { font-size: 42px; }
  .position-card { grid-template-columns: 34px 1fr; gap: 16px; padding: 30px 0; }
  .position-card ul { grid-column: 2; margin-top: 12px; }
  .work-facts { grid-template-columns: 1fr; margin-top: 58px; }
  .work-facts > div { min-height: 145px; padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(19, 29, 57, .13); }
  .work-facts > div:last-child { border-bottom: 0; }
  .work-facts strong { margin-top: 18px; font-size: 34px; }
  .recruit-action { align-items: stretch; flex-direction: column; margin-top: 50px; }
  .recruit-action .button { width: 100%; }

  .news { padding: 90px 0 110px; }
  .news-heading { align-items: flex-start; flex-direction: column; }
  .round-link { width: auto; height: auto; padding: 12px 18px; border-radius: 999px; }
  .news-list { margin-top: 50px; }
  .news-row { grid-template-columns: 88px 1fr 38px; gap: 12px; padding: 22px 0; }
  .news-category { grid-column: 2; grid-row: 1; }
  .news-row time { grid-column: 1; grid-row: 1; }
  .news-row h3 { grid-column: 1 / 3; grid-row: 2; line-height: 1.65; }
  .news-row > a, .news-link { grid-column: 3; grid-row: 1 / 3; width: 36px; height: 36px; }
  .news-row:hover { padding-inline: 0; background: transparent; }

  .company { padding: 100px 0; }
  .company-grid { grid-template-columns: 1fr; gap: 60px; }
  .company-table div { grid-template-columns: 88px 1fr; gap: 18px; padding: 24px 0; }
  .company-table dt { font-size: 10px; }
  .company-table dd { font-size: 13px; }

  .contact { padding: 110px 0 100px; }
  .contact h2 { font-size: clamp(64px, 19vw, 90px); }
  .contact p:not(.eyebrow) { font-size: 13px; }
  .contact p br { display: none; }

  .site-footer { padding-top: 48px; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-top nav { grid-template-columns: 1fr; gap: 14px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  body.motion-ready .reveal { opacity: 1; transform: none; }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header-shell { background: rgba(255, 255, 255, .94); }
  .hero-screen { background: rgba(239, 244, 255, .95); }
  .glass-dark { background: rgba(19, 25, 45, .95); }
}
