:root {
  --ink: #10182b;
  --ink-soft: #1b2741;
  --night: #0b1121;
  --paper: #f4f0e8;
  --paper-light: #fbf9f4;
  --white: #ffffff;
  --violet: #7b68ee;
  --violet-light: #b9afff;
  --mint: #54d8be;
  --gold: #f4c85b;
  --plum: #28143a;
  --plum-light: #432159;
  --rose: #ef7891;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(16, 24, 43, 0.14);
  --shadow: 0 28px 80px rgba(8, 13, 26, 0.16);
  --radius-small: 12px;
  --radius-medium: 22px;
  --radius-large: 36px;
  --shell: 1180px;
  --display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Segoe UI Variable Text", "Aptos", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

::selection {
  color: var(--night);
  background: var(--mint);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  color: var(--night);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(11, 17, 33, 0.93);
  border-color: var(--line-dark);
  box-shadow: 0 8px 30px rgba(3, 7, 16, 0.16);
  backdrop-filter: blur(18px);
}

.site-header-light {
  color: var(--ink);
}

.site-header-light.is-scrolled,
.site-header-light.is-menu-open {
  color: var(--ink);
  background: rgba(244, 240, 232, 0.94);
  border-color: var(--line-light);
}

.navigation-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 48px;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent),
    var(--violet);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  box-shadow: 0 9px 24px rgba(74, 57, 188, 0.33);
  font-family: var(--display);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  transform: translateY(-52%);
}

.brand-mark::before {
  left: 5px;
  content: "[";
}

.brand-mark::after {
  right: 5px;
  content: "]";
}

.brand-mark i {
  position: relative;
  top: -8px;
  margin-inline: -3px;
  color: var(--gold);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 31px;
}

.site-navigation a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 610;
}

.site-navigation a:not(.navigation-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--mint);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-navigation a:hover::after,
.site-navigation a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navigation-contact {
  padding: 10px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.navigation-contact:hover {
  color: var(--night);
  background: var(--white);
}

.site-header-light .navigation-contact:hover {
  color: var(--paper-light);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle i {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle i:first-of-type {
  transform: translateY(-4px);
}

.menu-toggle i:last-of-type {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: rotate(-45deg);
}

.eyebrow,
.overline,
.section-index,
.work-card-kicker {
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(84, 216, 190, 0.13);
}

.eyebrow-dark {
  color: rgba(16, 24, 43, 0.62);
}

.overline {
  margin-bottom: 17px;
  color: var(--violet);
}

.section-index {
  margin: 8px 0 0;
  color: rgba(16, 24, 43, 0.52);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 720;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--mint);
}

.button-primary:hover {
  background: #73e8d1;
}

.button-quiet {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-style {
  color: var(--plum);
  background: #f5a2b2;
}

.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 24%, rgba(123, 104, 238, 0.2), transparent 30%),
    linear-gradient(135deg, var(--night) 0%, var(--ink) 62%, #151f36 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  content: "";
  background: linear-gradient(to top, rgba(4, 8, 17, 0.26), transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -290px;
  right: 2%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(123, 104, 238, 0.18);
  box-shadow:
    0 0 0 100px rgba(123, 104, 238, 0.025),
    0 0 0 200px rgba(123, 104, 238, 0.018);
}

.hero-glow-two {
  bottom: -150px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: rgba(84, 216, 190, 0.08);
  filter: blur(70px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: 65px;
  padding-block: 150px 90px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--white);
}

.hero-copy h1 em,
.product-hero h1 em,
.about-hero h1 em {
  display: block;
  color: var(--violet-light);
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-footnote i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.product-constellation {
  position: relative;
  min-height: 530px;
  isolation: isolate;
}

.constellation-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-outer {
  width: 470px;
}

.orbit-inner {
  width: 280px;
  border-style: dashed;
  animation: slow-spin 38s linear infinite;
}

.constellation-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 38%),
    var(--violet);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 31px;
  box-shadow:
    0 24px 70px rgba(69, 50, 184, 0.45),
    0 0 0 14px rgba(123, 104, 238, 0.08);
  transform: translate(-50%, -50%) rotate(7deg);
}

.constellation-core span {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 820;
  letter-spacing: -0.1em;
  transform: rotate(-7deg);
}

.constellation-core i {
  position: absolute;
  top: 8px;
  right: 13px;
  color: var(--gold);
  font-size: 1.3rem;
  font-style: normal;
  animation: twinkle 2.6s ease-in-out infinite;
}

.orbit-card {
  position: absolute;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 17px;
  box-shadow: 0 20px 50px rgba(3, 8, 18, 0.28);
  backdrop-filter: blur(14px);
}

.orbit-card small,
.orbit-card strong {
  display: block;
}

.orbit-card small {
  margin-bottom: 2px;
  color: rgba(16, 24, 43, 0.52);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.orbit-card strong {
  font-family: var(--display);
  font-size: 0.96rem;
}

.orbit-icon {
  width: 43px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 800;
}

.orbit-icon-style {
  background: var(--plum);
}

.orbit-icon-fantasy {
  color: var(--gold);
  background: #20362e;
}

.orbit-icon-workshop {
  color: var(--night);
  background: var(--mint);
}

.orbit-styleirist {
  top: 52px;
  right: 5px;
  animation: float 6.3s ease-in-out infinite;
}

.orbit-fantasy {
  right: -23px;
  bottom: 53px;
  animation: float 7.2s ease-in-out -1.4s infinite;
}

.orbit-workshop {
  bottom: 25px;
  left: -20px;
  animation: float 6.8s ease-in-out -2.3s infinite;
}

.floating-spark {
  position: absolute;
  color: var(--gold);
  line-height: 1;
}

.spark-one {
  top: 109px;
  left: 21px;
  font-size: 1.5rem;
}

.spark-two {
  top: 48%;
  right: 18px;
  color: var(--mint);
  font-size: 1.8rem;
}

.spark-three {
  top: 30%;
  left: 9%;
  font-size: 2.2rem;
}

.studio-intro,
.product-story,
.about-story {
  padding-block: 125px;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 85px;
}

.intro-grid > div {
  max-width: 880px;
}

.intro-grid h2 {
  max-width: 920px;
  margin-bottom: 30px;
}

.intro-grid > div > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(16, 24, 43, 0.68);
  font-size: 1.13rem;
}

.work-section {
  padding-block: 125px 145px;
  background: var(--paper-light);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin: 12px 0 0;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: rgba(16, 24, 43, 0.62);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 22px;
}

.work-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-large);
  box-shadow: 0 4px 0 transparent;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

a.work-card {
  color: inherit;
  text-decoration: none;
}

.work-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.work-card-copy {
  position: relative;
  z-index: 3;
}

.work-card h3 {
  margin: 13px 0 17px;
  font-size: clamp(2.4rem, 3.7vw, 4rem);
}

.work-card p {
  max-width: 500px;
  color: inherit;
  opacity: 0.75;
}

.work-card-kicker {
  margin: 30px 0 0;
  opacity: 0.6;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill > i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.status-live > i {
  background: #f5a2b2;
}

.status-dark {
  color: var(--ink);
  border-color: rgba(16, 24, 43, 0.2);
}

.status-dark > i {
  background: var(--violet);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  font-size: 0.93rem;
  font-weight: 750;
}

.text-link i {
  font-style: normal;
  transition: transform 180ms ease;
}

a:hover .text-link i,
.text-link:hover i {
  transform: translate(3px, -1px);
}

.text-link-dark {
  color: var(--ink);
}

.work-card-styleirist {
  min-height: 704px;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(239, 120, 145, 0.24), transparent 28%),
    linear-gradient(145deg, var(--plum) 0%, #371949 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.work-card-styleirist::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
}

.work-card-styleirist .work-card-copy {
  max-width: 520px;
}

.style-device {
  position: absolute;
  right: 42px;
  bottom: -132px;
  width: 260px;
  height: 500px;
  padding: 9px;
  background: #130a1c;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 47px;
  box-shadow: 0 30px 60px rgba(7, 3, 11, 0.45);
  transform: rotate(8deg);
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card-styleirist:hover .style-device {
  transform: rotate(5deg) translateY(-12px);
}

.device-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 20px;
  background: #130a1c;
  border-radius: 999px;
  transform: translateX(-50%);
}

.device-screen {
  height: 100%;
  padding: 50px 21px 20px;
  color: var(--plum);
  background: linear-gradient(155deg, #fff7f5, #f5e6ec);
  border-radius: 39px;
}

.mini-brand {
  display: block;
  margin-bottom: 82px;
  color: var(--plum);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
}

.device-screen p {
  margin-bottom: 3px;
  font-size: 0.76rem;
}

.device-screen > strong {
  display: block;
  max-width: 165px;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.05;
}

.mini-outfit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 19px 0;
}

.mini-outfit i {
  height: 98px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.4), transparent),
    #d9a2aa;
  border-radius: 9px;
}

.mini-outfit i:nth-child(2) {
  background-color: #683c6b;
}

.mini-outfit i:nth-child(3) {
  background-color: #bd8b75;
}

.mini-button {
  display: block;
  padding: 10px;
  color: var(--white);
  background: var(--plum);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.work-card-fantasy {
  min-height: 341px;
  padding: 34px;
  color: #f8f1dd;
  background:
    radial-gradient(circle at 85% 6%, rgba(244, 200, 91, 0.18), transparent 38%),
    #1b302a;
  border-color: rgba(255, 255, 255, 0.08);
}

.work-card-fantasy .work-card-copy {
  width: 72%;
}

.work-card-fantasy h3 {
  font-size: clamp(2.25rem, 3vw, 3.4rem);
}

.fantasy-map {
  position: absolute;
  right: -62px;
  bottom: -30px;
  width: 270px;
  height: 250px;
  transform: rotate(-8deg);
}

.fantasy-map i {
  position: absolute;
  width: 87px;
  aspect-ratio: 1.15;
  background: #385c47;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.03);
}

.fantasy-map i:nth-child(1) { top: 0; left: 86px; background: #416c52; }
.fantasy-map i:nth-child(2) { top: 67px; left: 43px; background: #304f3c; }
.fantasy-map i:nth-child(3) { top: 67px; left: 129px; background: #7b6740; }
.fantasy-map i:nth-child(4) { top: 134px; left: 0; background: #2f5c50; }
.fantasy-map i:nth-child(5) { top: 134px; left: 86px; background: #846b3f; }
.fantasy-map i:nth-child(6) { top: 134px; left: 172px; background: #42614b; }
.fantasy-map i:nth-child(7) { top: 201px; left: 43px; background: #385740; }

.work-card-workshop {
  min-height: 341px;
  padding: 34px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(84, 216, 190, 0.18), transparent 50%),
    var(--paper);
}

.work-card-workshop .work-card-copy {
  width: 72%;
}

.work-card-workshop h3 {
  font-size: clamp(2.25rem, 3vw, 3.4rem);
}

.workshop-symbol {
  position: absolute;
  top: 42px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 2px;
  color: rgba(16, 24, 43, 0.13);
  font-family: var(--display);
  font-size: 3.3rem;
  font-weight: 800;
  letter-spacing: -0.17em;
}

.workshop-symbol i {
  position: relative;
  top: -24px;
  color: var(--violet);
  font-size: 1.3rem;
  font-style: normal;
  letter-spacing: 0;
}

.principles-section {
  padding-block: 125px 145px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    var(--ink);
  background-size: 36px 36px;
}

.principles-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 85px;
  align-items: end;
  margin-bottom: 64px;
}

.principles-heading .section-index {
  color: rgba(255, 255, 255, 0.45);
}

.principles-heading h2 {
  margin: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-large);
}

.principles-grid article {
  min-height: 320px;
  padding: 36px;
  background: rgba(11, 17, 33, 0.92);
}

.principles-grid article > span {
  display: inline-grid;
  width: 43px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 72px;
  color: var(--night);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.principles-grid article:nth-child(2) > span {
  background: var(--violet-light);
}

.principles-grid article:nth-child(3) > span {
  background: var(--gold);
}

.principles-grid h3 {
  margin-bottom: 16px;
  letter-spacing: -0.035em;
}

.principles-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
}

.closing-section {
  padding-block: 105px;
  background: var(--paper-light);
}

.closing-panel {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 94% 0%, rgba(123, 104, 238, 0.35), transparent 33%),
    var(--night);
  border-radius: var(--radius-large);
}

.closing-panel > div {
  position: relative;
  z-index: 2;
}

.closing-panel h2 {
  margin-bottom: 15px;
}

.closing-panel p:last-child {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.closing-panel .button {
  position: relative;
  z-index: 2;
}

.closing-spark {
  position: absolute;
  top: -72px;
  right: 19%;
  color: rgba(244, 200, 91, 0.15);
  font-size: 15rem;
  line-height: 1;
  transform: rotate(12deg);
}

.site-footer {
  padding-block: 70px;
  color: rgba(255, 255, 255, 0.7);
  background: #080d19;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1fr;
  gap: 60px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer + p {
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer nav a:hover,
.footer-meta > a:hover {
  color: var(--white);
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.footer-meta > a {
  color: var(--white);
  font-weight: 650;
}

.footer-meta small {
  color: rgba(255, 255, 255, 0.43);
}

/* StyleIrisT */

.product-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 23%, rgba(239, 120, 145, 0.22), transparent 30%),
    linear-gradient(135deg, #1d0c2b, var(--plum) 58%, #34184a);
}

.product-hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.product-orbit-one {
  top: -250px;
  right: -140px;
  width: 760px;
  height: 760px;
}

.product-orbit-two {
  right: 15%;
  bottom: -360px;
  width: 620px;
  height: 620px;
}

.product-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: 70px;
  padding-block: 150px 80px;
}

.eyebrow-product > span {
  background: #f5a2b2;
  box-shadow: 0 0 0 7px rgba(245, 162, 178, 0.13);
}

.styleirist-wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 23px;
}

.styleirist-wordmark > span {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #f9dae1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
}

.styleirist-wordmark strong {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.product-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 6.5vw, 6.2rem);
}

.product-hero h1 em {
  color: #f5a2b2;
}

.product-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.product-availability i {
  width: 7px;
  height: 7px;
  background: #f5a2b2;
  border-radius: 50%;
}

.product-device-stage {
  position: relative;
  min-height: 560px;
}

.product-phone {
  position: absolute;
  width: 245px;
  height: 500px;
  padding: 9px;
  background: #120819;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 47px;
  box-shadow: 0 32px 70px rgba(7, 2, 12, 0.48);
}

.product-phone::before {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 68px;
  height: 20px;
  content: "";
  background: #120819;
  border-radius: 999px;
  transform: translateX(-50%);
}

.product-phone-screen {
  height: 100%;
  overflow: hidden;
  padding: 49px 20px 20px;
  color: var(--plum);
  background: linear-gradient(160deg, #fff9f6, #f4e4e9);
  border-radius: 39px;
}

.product-phone-back {
  top: 35px;
  left: 12px;
  transform: rotate(-9deg);
}

.product-phone-front {
  top: 5px;
  right: 4px;
  z-index: 2;
  transform: rotate(6deg);
}

.phone-topline {
  display: block;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}

.wardrobe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wardrobe-grid i {
  height: 117px;
  background: #dcb0b8;
  border-radius: 12px;
}

.wardrobe-grid i:nth-child(2) { background: #775471; }
.wardrobe-grid i:nth-child(3) { background: #cb9378; }
.wardrobe-grid i:nth-child(4) { background: #657184; }
.wardrobe-grid i:nth-child(5) { background: #a8846f; }
.wardrobe-grid i:nth-child(6) { background: #512f5c; }

.phone-logo {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 65px;
  color: var(--white);
  background: var(--plum);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-phone-screen > small {
  display: block;
  margin-bottom: 4px;
  color: rgba(40, 20, 58, 0.5);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-phone-screen h2 {
  margin-bottom: 24px;
  font-size: 1.65rem;
  line-height: 1.06;
}

.prompt-chip {
  display: block;
  margin-bottom: 8px;
  padding: 10px 11px;
  background: rgba(40, 20, 58, 0.06);
  border: 1px solid rgba(40, 20, 58, 0.12);
  border-radius: 10px;
  font-size: 0.65rem;
}

.phone-action {
  display: block;
  margin-top: 20px;
  padding: 11px;
  color: var(--white);
  background: var(--plum);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.product-float {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 18px 46px rgba(7, 2, 12, 0.32);
}

.product-float > span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--plum);
  border-radius: 10px;
}

.product-float strong,
.product-float small {
  display: block;
}

.product-float strong {
  font-size: 0.75rem;
}

.product-float small {
  color: rgba(40, 20, 58, 0.56);
  font-size: 0.6rem;
}

.product-float-top {
  top: 101px;
  right: -48px;
}

.product-float-bottom {
  bottom: 58px;
  left: -37px;
}

.product-story {
  background: #f6eee9;
}

.product-features {
  padding-block: 125px 145px;
  color: var(--white);
  background: var(--plum);
}

.section-heading-dark .section-index {
  color: rgba(255, 255, 255, 0.45);
}

.section-heading-dark > p {
  color: rgba(255, 255, 255, 0.6);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 340px;
  padding: 39px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-medium);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.feature-grid article:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.feature-icon {
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 50px;
  color: var(--plum);
  background: #f5a2b2;
  border-radius: 15px;
  font-size: 1.25rem;
}

.feature-grid article:nth-child(2) .feature-icon { background: var(--gold); }
.feature-grid article:nth-child(3) .feature-icon { background: var(--mint); }
.feature-grid article:nth-child(4) .feature-icon { background: var(--violet-light); }

.feature-grid .overline {
  color: rgba(255, 255, 255, 0.54);
}

.feature-grid h3 {
  max-width: 450px;
  margin-bottom: 16px;
}

.feature-grid p:last-child {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
}

.privacy-section {
  padding-block: 125px;
  background: var(--paper);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 110px;
}

.privacy-grid h2 {
  margin-bottom: 27px;
}

.privacy-grid > div:last-child > p:not(.section-index, .overline) {
  color: rgba(16, 24, 43, 0.66);
}

.privacy-visual {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(239, 120, 145, 0.17), transparent 42%),
    var(--plum);
  border-radius: var(--radius-large);
}

.privacy-visual > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 105px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--plum);
  background: #f5a2b2;
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(245, 162, 178, 0.08);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
}

.privacy-visual > i {
  position: absolute;
  bottom: 37px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 730;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.privacy-ring {
  position: absolute;
  width: 305px;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: slow-spin 32s linear infinite;
}

.privacy-ring::before,
.privacy-ring::after {
  position: absolute;
  width: 9px;
  aspect-ratio: 1;
  content: "";
  background: var(--mint);
  border-radius: 50%;
}

.privacy-ring::before {
  top: 31px;
  left: 39px;
}

.privacy-ring::after {
  right: 20px;
  bottom: 70px;
  background: var(--gold);
}

.product-closing {
  padding-block: 120px;
  text-align: center;
  background: #f8e8e9;
}

.product-closing-inner {
  max-width: 900px;
}

.product-closing h2 {
  margin-bottom: 24px;
}

.product-closing p:not(.overline) {
  max-width: 650px;
  margin: 0 auto 31px;
  color: rgba(16, 24, 43, 0.64);
}

/* About */

.about-page {
  background: var(--paper);
}

.about-hero {
  min-height: 800px;
  display: flex;
  align-items: center;
  padding-block: 155px 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(123, 104, 238, 0.11), transparent 30%),
    var(--paper);
}

.about-hero-heading {
  display: grid;
  grid-template-columns: 1fr;
}

.about-hero h1 {
  max-width: 1060px;
  margin-bottom: 55px;
  font-size: clamp(3.8rem, 7.5vw, 7rem);
}

.about-hero h1 em {
  color: var(--violet);
}

.about-hero-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  max-width: 900px;
  margin-left: auto;
}

.about-hero-detail p:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 650;
  line-height: 1.3;
}

.about-hero-detail p:last-child {
  color: rgba(16, 24, 43, 0.65);
}

.about-banner {
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
  margin-top: 60px;
  padding: 25px 38px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-medium);
}

.about-banner strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.about-banner i {
  color: var(--gold);
  font-size: 2.1rem;
  font-style: normal;
}

.about-banner-code {
  color: var(--mint);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.95rem;
}

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

.about-story .intro-grid > div > p:last-child {
  margin-top: 20px;
}

.approach-section {
  padding-block: 125px 145px;
  color: var(--white);
  background: var(--ink);
}

.approach-grid {
  display: grid;
  gap: 16px;
}

.approach-grid article {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 35px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-medium);
}

.approach-grid article > span {
  display: grid;
  width: 76px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--night);
  background: var(--mint);
  border-radius: 22px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
}

.approach-grid article:nth-child(2) > span { background: var(--violet-light); }
.approach-grid article:nth-child(3) > span { background: var(--gold); }

.approach-grid .overline {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.48);
}

.approach-grid h3 {
  margin-bottom: 12px;
}

.approach-grid article div p:last-child {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.now-building {
  padding-block: 125px;
  background: var(--paper-light);
}

.now-building-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 85px;
  align-items: end;
  margin-bottom: 60px;
}

.now-building-heading h2 {
  margin: 0;
}

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

.building-list > * {
  min-height: 125px;
  display: grid;
  grid-template-columns: 70px 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px 12px;
  color: inherit;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  transition:
    padding 180ms ease,
    background 180ms ease;
}

.building-list > a:hover {
  padding-inline: 25px;
  background: var(--paper);
}

.building-number {
  color: rgba(16, 24, 43, 0.45);
  font-size: 0.74rem;
  font-weight: 750;
}

.building-list small,
.building-list strong {
  display: block;
}

.building-list small {
  margin-bottom: 4px;
  color: rgba(16, 24, 43, 0.48);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.building-list strong {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.building-list p {
  margin: 0;
  color: rgba(16, 24, 43, 0.6);
}

.building-list > * > i {
  font-style: normal;
  font-size: 1.2rem;
}

.contact-section {
  padding-block: 125px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(123, 104, 238, 0.35), transparent 34%),
    var(--night);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 90px;
}

.contact-grid .section-index {
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.45);
}

.contact-grid h2 {
  margin: 0;
}

.contact-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-medium);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.64);
}

.contact-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-block: 20px;
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.contact-card > a:hover {
  color: var(--mint);
}

.contact-card small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.42);
}

/* 404 */

.not-found-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 20%, rgba(123, 104, 238, 0.25), transparent 32%),
    var(--night);
}

.not-found {
  min-height: 100vh;
  width: min(calc(100% - 48px), 760px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-inline: auto;
}

.not-found .brand {
  margin-bottom: 90px;
}

.not-found h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.not-found > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.64);
}

/* Motion */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.privacy-ring {
  animation-name: privacy-spin;
}

@keyframes privacy-spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes twinkle {
  0%,
  100% { opacity: 0.65; transform: scale(0.84); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 1060px) {
  .hero-grid,
  .product-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 35px;
  }

  .orbit-outer {
    width: 400px;
  }

  .orbit-inner {
    width: 235px;
  }

  .orbit-card {
    min-width: 198px;
  }

  .orbit-workshop {
    left: -10px;
  }

  .orbit-fantasy {
    right: -5px;
  }

  .work-card-styleirist {
    padding: 38px;
  }

  .style-device {
    right: 20px;
    width: 230px;
  }

  .privacy-grid {
    gap: 65px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .js .menu-toggle {
    position: relative;
    display: block;
  }

  .js .site-navigation {
    position: fixed;
    inset: 88px 0 auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    color: var(--white);
    background: rgba(11, 17, 33, 0.98);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: 0 22px 40px rgba(3, 8, 18, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 170ms ease,
      transform 170ms ease;
  }

  .js .site-header-light .site-navigation {
    color: var(--ink);
    background: rgba(244, 240, 232, 0.99);
    border-color: var(--line-light);
  }

  .js .site-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .site-navigation a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .js .site-header-light .site-navigation a {
    border-color: rgba(16, 24, 43, 0.1);
  }

  .js .site-navigation a::after {
    display: none;
  }

  .js .site-navigation .navigation-contact {
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 150px 70px;
  }

  .hero-copy {
    max-width: 750px;
  }

  .product-constellation {
    min-height: 480px;
    max-width: 590px;
    width: 100%;
    margin-inline: auto;
  }

  .orbit-outer {
    width: 450px;
  }

  .orbit-inner {
    width: 270px;
  }

  .intro-grid,
  .principles-heading,
  .now-building-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card-styleirist {
    min-height: 650px;
  }

  .style-device {
    right: 8%;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article {
    min-height: auto;
  }

  .principles-grid article > span {
    margin-bottom: 45px;
  }

  .closing-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }

  .product-device-stage {
    min-height: 570px;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .product-phone-back {
    left: 10%;
  }

  .product-phone-front {
    right: 10%;
  }

  .product-float-top {
    right: 1%;
  }

  .product-float-bottom {
    left: 1%;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-visual {
    min-height: 380px;
  }

  .about-hero {
    padding-top: 145px;
  }

  .about-hero-detail {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-banner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .building-list > * {
    grid-template-columns: 55px 1fr auto;
  }

  .building-list p {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .navigation-shell {
    min-height: 78px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 43px;
    border-radius: 12px;
  }

  .js .site-navigation {
    inset-block-start: 78px;
  }

  .hero-grid,
  .product-hero-grid {
    padding-block: 128px 55px;
  }

  .hero-copy h1,
  .product-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-footnote {
    flex-wrap: wrap;
  }

  .product-constellation {
    min-height: 420px;
    transform: scale(0.88);
    transform-origin: top center;
  }

  .orbit-outer {
    width: 390px;
  }

  .orbit-inner {
    width: 235px;
  }

  .orbit-styleirist {
    top: 30px;
    right: -12px;
  }

  .orbit-workshop {
    left: -30px;
  }

  .orbit-fantasy {
    right: -30px;
  }

  .studio-intro,
  .product-story,
  .about-story,
  .work-section,
  .principles-section,
  .product-features,
  .privacy-section,
  .approach-section,
  .now-building,
  .contact-section {
    padding-block: 82px;
  }

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

  .work-card {
    border-radius: 26px;
  }

  .work-card-styleirist {
    min-height: 650px;
    padding: 27px;
  }

  .style-device {
    right: 50%;
    bottom: -180px;
    transform: translateX(50%) rotate(5deg);
  }

  .work-card-styleirist:hover .style-device {
    transform: translateX(50%) rotate(3deg) translateY(-8px);
  }

  .work-card-fantasy,
  .work-card-workshop {
    min-height: 390px;
    padding: 27px;
  }

  .work-card-fantasy .work-card-copy,
  .work-card-workshop .work-card-copy {
    width: 100%;
  }

  .fantasy-map {
    opacity: 0.28;
  }

  .workshop-symbol {
    opacity: 0.55;
  }

  .principles-grid {
    border-radius: 26px;
  }

  .principles-grid article {
    padding: 28px;
  }

  .closing-section {
    padding-block: 70px;
  }

  .closing-panel {
    min-height: 410px;
    padding: 35px 27px;
    border-radius: 26px;
  }

  .closing-panel .button {
    font-size: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-meta {
    grid-column: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
    padding: 28px;
  }

  .feature-icon {
    margin-bottom: 38px;
  }

  .product-device-stage {
    min-height: 485px;
    transform: scale(0.83);
    transform-origin: top center;
  }

  .product-phone-back {
    left: -5px;
  }

  .product-phone-front {
    right: -5px;
  }

  .product-float-top {
    right: -28px;
  }

  .product-float-bottom {
    left: -28px;
  }

  .privacy-grid {
    gap: 55px;
  }

  .privacy-visual {
    min-height: 330px;
    border-radius: 26px;
  }

  .product-closing {
    padding-block: 82px;
  }

  .about-hero {
    min-height: auto;
    padding-block: 130px 75px;
  }

  .about-hero h1 {
    margin-bottom: 40px;
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .about-hero-detail p:first-child {
    font-size: 1.35rem;
  }

  .about-banner {
    justify-content: flex-start;
    padding: 28px;
  }

  .about-banner strong {
    font-size: 1.4rem;
  }

  .about-banner-code {
    width: 100%;
  }

  .approach-grid article {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }

  .approach-grid article > span {
    width: 61px;
    border-radius: 17px;
  }

  .building-list > * {
    grid-template-columns: 42px 1fr auto;
    gap: 16px;
  }

  .building-list strong {
    font-size: 1.18rem;
  }

  .contact-card {
    padding: 27px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
