@font-face {
  font-family: "Cast Text";
  src: url("/cast/assets/fonts/CastText.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cast Display";
  src: url("/cast/assets/fonts/CastDisplay.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f3f1e9;
  --ink: #18231e;
  --muted: #536057;
  --green: #24563f;
  --mint: #d4eddf;
  --line: #ccd0c5;
  --page: min(1320px, calc(100% - 112px));
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  background: var(--paper);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    400 1rem/1.65 "Cast Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]),
body:has(.mobile-menu[open]) {
  overflow: hidden;
}
::selection {
  background: #c4dfce;
  color: #15291f;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
summary,
input {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.2;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 4.2rem);
}
h3 {
  font-size: 1.8rem;
}
p {
  overflow-wrap: break-word;
}
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] p,
html[lang="ko"] li,
html[lang="ko"] summary {
  word-break: keep-all;
}
html[lang="ko"] h2,
html[lang="ko"] h3 {
  line-height: 1.3;
  letter-spacing: -0.035em;
}
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
.device-word,
.brand {
  font-family: "Cast Display", "Cast Text", sans-serif;
}
[hidden] {
  display: none !important;
}
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.section {
  padding: 136px 0;
}
.section-inner {
  width: var(--page);
  margin: auto;
}
.eyebrow {
  font-size: 0.889rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.015em;
  color: var(--green);
  margin-bottom: 24px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 72px;
  margin-bottom: 64px;
}
.section-description {
  font-size: 1.111rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 430px;
}
.section-heading > .section-description {
  margin-bottom: 5px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 48px;
  font-weight: 600;
  font-size: 0.944rem;
  border-bottom: 1px solid currentColor;
  padding: 6px 0;
}
.text-link > span {
  transition: transform 0.25s var(--ease);
}
.text-link:hover > span {
  transform: translate(3px, -3px);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
}
.skip-link:not(:focus) {
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: #f3f1e9e8;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #18231e15;
  transition: background 0.25s;
}
.header-inner {
  height: 90px;
  width: var(--page);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}
.brand img {
  border-radius: 11px;
}
.brand b {
  font-weight: 750;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  margin: auto;
  font-size: 0.889rem;
  font-weight: 500;
}
.desktop-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.889rem;
  font-weight: 600;
}
.language-link {
  display: grid;
  place-items: center;
  min-height: 48px;
  min-width: 44px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 46px;
  border: 1px solid #778479;
  border-radius: 3px;
  padding: 6px 17px;
  transition: background 0.2s;
}
.header-cta:hover {
  background: #e0e6da;
}
.header-cta > span {
  font-size: 1.25rem;
}
.mobile-menu {
  display: none;
}
.reading-progress {
  height: 2px;
  background: var(--green);
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  height: min(960px, 100svh);
  overflow: hidden;
  background: #e5dccb;
}
.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: translateY(var(--scene-offset, 0px)) scale(1.015);
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f3f1e9b3 0%,
    #f3f1e961 36%,
    transparent 60%
  );
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, #101812b3);
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  width: var(--page);
  margin: auto;
  padding-top: 174px;
}
.hero-eyebrow {
  color: #314b3b;
  margin-bottom: 26px;
  letter-spacing: 0.08em;
  font-size: 0.944rem;
}
.hero h1 {
  font-family: "Cast Display", "Cast Text", sans-serif;
  font-size: clamp(86px, 9.2vw, 146px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1.05;
  white-space: nowrap;
  width: fit-content;
}
.hero h1 > span {
  font-weight: 750;
}
.hero-headline {
  font-size: clamp(30px, 2.85vw, 44px);
  line-height: 1.35;
  font-weight: 550;
  letter-spacing: -0.045em;
  margin: 26px 0 20px;
}
.hero-description {
  font-size: 1.111rem;
  color: #344237;
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 60px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.944rem;
  font-weight: 600;
  line-height: 1.4;
  transition:
    transform 0.25s var(--ease),
    background 0.25s;
}
.arrow {
  font-family: "Cast Text", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}
.button:hover {
  transform: translateY(-3px);
}
.button:hover .arrow {
  transform: translate(3px, -3px);
}
.button-dark {
  background: var(--ink);
  color: var(--paper);
}
.button-dark:hover {
  background: #315441;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: var(--mint);
}
.hero-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.833rem;
  color: #344539;
  margin-top: 23px;
  line-height: 1.5;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #35644b;
}
.hero-bottom {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  width: var(--page);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.833rem;
  font-weight: 500;
  color: #f7f7ef;
  text-shadow: 0 1px 4px #1119;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 44px;
}
.hero-bottom a > span {
  font-size: 1.3rem;
}
.hero-inner > * {
  animation: enter 0.8s var(--ease) both;
}
.hero-inner > :nth-child(2) {
  animation-delay: 0.06s;
}
.hero-inner > :nth-child(3) {
  animation-delay: 0.13s;
}
.hero-inner > :nth-child(4) {
  animation-delay: 0.2s;
}
.hero-inner > :nth-child(5) {
  animation-delay: 0.27s;
}
.hero-inner > :nth-child(6) {
  animation-delay: 0.34s;
}
.picture-experience {
  --picture-scale: 1;
}
.preview-toolbar {
  background: #17241e;
  color: #edf2ea;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 32px;
  min-height: 88px;
  border-radius: 5px 5px 0 0;
  font-size: 0.889rem;
}
.preview-toolbar > p {
  margin-right: auto;
  color: #d1dccf;
}
.scene-switch {
  display: flex;
  gap: 22px;
  align-items: center;
}
.scene-switch button {
  min-height: 46px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 8px 4px;
  color: #b8c7bb;
  font-weight: 500;
}
.scene-switch button[aria-pressed="true"] {
  color: #f7fbf3;
  border-color: #d4eddf;
}
.scene-switch button:hover {
  color: #fff;
}
.preview-expand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding-left: 27px;
  border-left: 1px solid #4b5c50;
}
.preview-expand > span {
  font-size: 1.2rem;
}
.picture-stage {
  position: relative;
  background: #111c16;
  aspect-ratio: 16/8.5;
  overflow: hidden;
}
.picture-frame {
  position: absolute;
  inset: 0;
  transform: scale(var(--picture-scale));
  transform-origin: center;
  box-shadow: 0 12px 48px #050c0766;
  will-change: transform;
}
.picture-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.picture-controls {
  padding: 30px 36px 32px;
  background: #17241e;
  color: #edf2ea;
  border-radius: 0 0 5px 5px;
}
.range-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.944rem;
  font-weight: 550;
}
.range-heading output {
  font-size: 0.944rem;
  font-variant-numeric: tabular-nums;
  color: #c4ddc8;
  min-width: 48px;
  text-align: right;
}
.range-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 11px;
}
.range-row > span {
  font-size: 0.833rem;
  color: #d3dfd0;
  white-space: nowrap;
}
.range-row input {
  width: 100%;
  min-width: 0;
  height: 48px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
  touch-action: pan-y;
}
.range-row input::-webkit-slider-runnable-track {
  height: 3px;
  background: #72927c;
  border-radius: 2px;
}
.range-row input::-moz-range-track {
  height: 3px;
  background: #72927c;
}
.range-row input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: #e9f5e6;
  border: 6px solid #bed5c1;
  border-radius: 50%;
  margin-top: -12.5px;
  box-shadow: 0 0 0 6px #cee9d011;
  transition: box-shadow 0.2s;
}
.range-row input::-moz-range-thumb {
  width: 19px;
  height: 19px;
  background: #e9f5e6;
  border: 5px solid #bed5c1;
  border-radius: 50%;
}
.range-row input:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 10px #cee9d024;
}
.picture-experience a:focus-visible,
.picture-experience button:focus-visible,
.picture-experience input:focus-visible {
  outline-color: #d4eddf;
}
.media-note {
  font-size: 0.833rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 18px;
}
.sound-statement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
  padding: 66px 0 0;
}
.sound-statement h3 {
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.45;
}
.sound-statement > p {
  font-size: 1.055rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 430px;
}
.devices {
  border-top: 1px solid var(--line);
  padding-top: 120px;
}
.device-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #b9c2b5;
  margin-bottom: 64px;
  gap: 0;
}
.device-tabs button {
  font-family: "Cast Display", "Cast Text", sans-serif;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #626f64;
  font-size: 1.45rem;
  font-weight: 550;
  padding: 21px 12px;
  min-height: 76px;
  position: relative;
  transition:
    color 0.2s,
    background 0.2s;
}
.device-tabs button[aria-selected="true"] {
  border-color: var(--green);
  color: var(--ink);
  background: #e6ebe0;
}
.device-tabs button:hover {
  color: var(--ink);
  background: #e8ebe3;
}
.device-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.device-panel + .device-panel:not([hidden]) {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}
.device-panels.tabs-ready .device-panel {
  margin: 0;
  padding: 0;
  border: 0;
  animation: enter 0.38s var(--ease);
}
.device-word {
  font-size: clamp(60px, 6.8vw, 104px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1.1;
}
.device-system {
  font-size: 0.889rem;
  color: var(--green);
  margin-top: 12px;
  font-weight: 550;
}
.device-intro h3 {
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.45;
  margin-top: 32px;
  max-width: 480px;
}
.device-copy > p:first-child {
  font-size: 1.111rem;
  color: var(--muted);
  line-height: 1.8;
}
.device-copy ol {
  list-style: none;
  margin: 28px 0 24px;
  padding: 0;
}
.device-copy li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.7;
}
.device-copy li:first-child {
  border-top: 1px solid var(--line);
}
.step-number {
  font-family: "Cast Display", sans-serif;
  font-size: 0.889rem;
  font-variant-numeric: tabular-nums;
  color: var(--green);
  padding-top: 2px;
}
.device-copy .device-note {
  font-size: 0.833rem;
  color: var(--muted);
  line-height: 1.7;
}
.quality {
  background: #e8e9e0;
}
.quality-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 84px;
}
.quality-copy > .section-description {
  margin-top: 28px;
  max-width: 510px;
}
.quality-details {
  margin: 34px 0 27px;
}
.quality-details > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #c1c8bb;
  align-items: baseline;
}
.quality-details dt {
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
.quality-details dd {
  font-size: 0.889rem;
  color: var(--muted);
  text-align: right;
}
.fine-print {
  font-size: 0.833rem;
  line-height: 1.8;
  color: #4f6052;
  max-width: 500px;
}
.quality-image-link {
  display: block;
  position: relative;
  background: #d8ddcf;
  padding: 25px 25px 80px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 52px #263c2412;
  transition: transform 0.35s var(--ease);
  cursor: zoom-in;
}
.quality-image-link:hover {
  transform: translateY(-6px);
}
.quality-image-link > img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.image-action {
  position: absolute;
  bottom: 20px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 44px;
  font-size: 0.944rem;
  font-weight: 600;
}
.image-action > span {
  font-size: 1.5rem;
}
.quality-figure figcaption {
  font-size: 0.833rem;
  color: var(--muted);
  margin-top: 20px;
  text-align: center;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.privacy-copy > p:first-child {
  font-size: 1.22rem;
  line-height: 1.85;
  max-width: 575px;
}
.privacy-copy .privacy-detail {
  font-size: 0.889rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 24px 0;
}
.privacy-copy .text-link {
  margin-top: 10px;
}
.faq {
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.faq h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}
.faq .text-link {
  margin-top: 32px;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 25px 0;
  font-size: 1.111rem;
  font-weight: 550;
  line-height: 1.55;
}
.faq-mark {
  font-family: "Cast Display", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  min-width: 24px;
  text-align: center;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] .faq-mark {
  transform: rotate(45deg);
}
.faq-item p {
  font-size: 1rem;
  line-height: 1.85;
  color: #4d5a50;
  max-width: 650px;
  padding: 0 40px 28px 0;
}
.faq-item summary:hover {
  color: var(--green);
}
.release {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #101812;
  color: #f5f5eb;
  padding: 120px 0 115px;
  min-height: 780px;
}
.release-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 50%;
  z-index: -3;
}
.release::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    #101812f5 0%,
    #101812dc 32%,
    #10181240 68%,
    #10181210
  );
}
.release .eyebrow {
  color: #d3e8ca;
}
.release h2 {
  font-size: clamp(3rem, 5.7vw, 5rem);
  line-height: 1.25;
  max-width: 720px;
}
.release-description {
  font-size: 1.111rem;
  color: #d5dfcd;
  line-height: 1.8;
  margin: 30px 0;
}
.release-note {
  font-size: 0.833rem;
  line-height: 1.8;
  color: #c4d1be;
  margin-top: 24px;
}
.release a:focus-visible {
  outline-color: var(--mint);
}
.site-footer {
  padding-top: 64px;
}
.footer-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  padding-bottom: 40px;
}
.footer-main > p {
  font-size: 0.889rem;
  color: var(--muted);
}
.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-left: auto;
  font-size: 0.889rem;
}
.footer-main nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.footer-main nav a:hover,
.family-nav a:hover {
  color: var(--green);
}
.family-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 0;
  font-size: 0.944rem;
  border-top: 1px solid var(--line);
}
.family-nav > a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.family-nav > a:first-child {
  font-family: "Cast Display", sans-serif;
  font-weight: 650;
  margin-right: auto;
  font-size: 1.22rem;
}
.family-nav > a[aria-current="page"] {
  color: var(--green);
  font-weight: 650;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0 26px;
  font-size: 0.833rem;
  color: var(--muted);
}
.footer-bottom > p:nth-child(2) {
  margin-left: auto;
}
.footer-bottom > a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  flex-shrink: 0;
}
dialog {
  width: min(1440px, calc(100% - 64px));
  max-width: none;
  max-height: calc(100svh - 64px);
  border: 0;
  padding: 0;
  color: var(--paper);
  background: #18231e;
  border-radius: 8px;
  box-shadow: 0 40px 100px #0005;
  overflow: auto;
}
dialog::backdrop {
  background: #0a140ee6;
  backdrop-filter: blur(8px);
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  background: #18231ef2;
  padding: 18px 30px;
  z-index: 1;
}
.dialog-header h2 {
  font-size: 1.111rem;
  letter-spacing: -0.015em;
  font-weight: 500;
  line-height: 1.5;
}
.dialog-close {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 12px;
  border: 1px solid #748571;
  background: none;
  border-radius: 3px;
  min-height: 48px;
  font-size: 0.889rem;
  color: var(--paper);
}
.dialog-close > span {
  font-size: 1.65rem;
  line-height: 1;
}
dialog button:focus-visible {
  outline-color: var(--mint);
}
dialog figure {
  padding: 0 30px 28px;
}
dialog figure img {
  margin: auto;
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 240px);
  object-fit: contain;
}
dialog figcaption {
  font-size: 0.889rem;
  color: #d2ddcc;
  text-align: center;
  margin-top: 20px;
}
[data-reveal] {
  opacity: 1;
}
.js-motion [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.js-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1700px) {
  .hero-inner {
    padding-top: 185px;
  }
  .hero-scene {
    object-position: center 56%;
  }
}
@media (max-width: 1150px) {
  :root {
    --page: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-inner {
    gap: 20px;
  }
  .hero {
    height: 860px;
  }
  .hero-inner {
    padding-top: 160px;
  }
  .hero h1 {
    font-size: clamp(78px, 9.2vw, 112px);
  }
  .hero-description {
    max-width: 420px;
  }
  .hero-wash {
    background: linear-gradient(
      90deg,
      #f3f1e9cc 0%,
      #f3f1e996 35%,
      transparent 70%
    );
  }
  .section-heading {
    gap: 48px;
  }
  .section-description {
    max-width: 380px;
  }
  .device-panel {
    gap: 64px;
  }
  .quality-layout {
    gap: 52px;
  }
  .quality-details > div {
    display: block;
  }
  .quality-details dd {
    text-align: left;
    margin-top: 5px;
  }
  .privacy-layout,
  .faq-layout {
    gap: 60px;
  }
  .footer-main nav {
    margin-left: 0;
    flex-basis: 100%;
  }
  .preview-toolbar {
    padding-inline: 24px;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  :root {
    --page: calc(100% - 48px);
  }
  .header-inner {
    height: 78px;
  }
  .brand {
    font-size: 1.15rem;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 48px;
    position: relative;
    z-index: 2;
  }
  .mobile-menu summary > span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .mobile-menu[open] summary > span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }
  .mobile-menu[open] summary > span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }
  .mobile-menu nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    padding: 20px 24px 34px;
    box-shadow: 0 30px 45px #15231620;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu nav a {
    font-size: 1.111rem;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    min-height: 60px;
  }
  .section {
    padding: 90px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 46px;
  }
  .section-heading > .section-description {
    margin-top: 25px;
    max-width: 580px;
  }
  .hero {
    height: auto;
    min-height: 0;
    padding-bottom: 420px;
    background: #f1ece0;
  }
  .hero-inner {
    padding-top: 134px;
    padding-bottom: 48px;
  }
  .hero h1 {
    font-size: clamp(84px, 13.5vw, 120px);
  }
  .hero-headline {
    font-size: 2rem;
    margin-top: 26px;
  }
  .hero-description {
    font-size: 1.111rem;
    max-width: 540px;
  }
  .hero-scene {
    top: auto;
    bottom: 0;
    height: 510px;
    object-fit: cover;
    object-position: center 60%;
    transform: none;
  }
  .hero-wash {
    background: linear-gradient(
      0deg,
      transparent 0%,
      transparent 260px,
      #f1ece0 465px
    );
  }
  .hero-bottom > p {
    display: none;
  }
  .hero-bottom {
    bottom: 18px;
  }
  .picture-stage {
    aspect-ratio: 16/10;
  }
  .sound-statement {
    display: block;
    padding-top: 44px;
  }
  .sound-statement > p {
    margin-top: 22px;
  }
  .device-tabs {
    margin-bottom: 42px;
  }
  .device-panel {
    gap: 42px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .device-intro h3 {
    font-size: 1.55rem;
  }
  .device-word {
    font-size: 3.6rem;
  }
  .quality-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .quality-copy > .section-description {
    max-width: 680px;
  }
  .quality-details > div {
    display: flex;
    max-width: 680px;
  }
  .quality-details dd {
    margin-top: 0;
    text-align: right;
  }
  .quality-figure {
    max-width: 660px;
    width: 100%;
    margin: auto;
  }
  .privacy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .privacy-copy > p:first-child {
    max-width: 680px;
  }
  .faq .text-link {
    margin-top: 24px;
  }
  .release {
    padding: 92px 0;
    min-height: 780px;
  }
  .release::before {
    background: linear-gradient(
      90deg,
      #101812f5,
      #101812c7 40%,
      #10181255 100%
    );
  }
  .release h2 {
    font-size: clamp(2.6rem, 6.3vw, 4rem);
  }
  .footer-main > p {
    margin-left: auto;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .footer-bottom > p:nth-child(2) {
    margin-left: 0;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  :root {
    --page: calc(100% - 40px);
  }
  html {
    scroll-padding-top: 100px;
  }
  .header-inner {
    height: 74px;
    gap: 8px;
  }
  .brand {
    font-size: 1.055rem;
    gap: 8px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-cta {
    display: none;
  }
  .mobile-menu nav {
    top: 74px;
    padding-inline: 20px;
  }
  .hero {
    padding-bottom: 300px;
  }
  .hero-inner {
    padding-top: 118px;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: clamp(58px, 17vw, 92px);
  }
  .hero-eyebrow {
    font-size: 0.889rem;
    margin-bottom: 22px;
  }
  .hero-headline {
    font-size: clamp(28px, 7.9vw, 38px);
    margin: 22px 0 20px;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 360px;
    line-height: 1.75;
    margin-bottom: 26px;
  }
  .hero-description br {
    display: none;
  }
  .hero .button {
    font-size: 0.889rem;
    gap: 22px;
    min-height: 58px;
    padding: 13px 21px;
  }
  .hero-platforms {
    font-size: 0.778rem;
    margin-top: 20px;
    gap: 9px;
  }
  .hero-scene {
    height: 360px;
    object-position: 63% 55%;
  }
  .hero-wash {
    background: linear-gradient(
      0deg,
      transparent 0%,
      transparent 210px,
      #f1ece0 352px
    );
  }
  .hero-bottom {
    font-size: 0.778rem;
    bottom: 9px;
  }
  .hero-bottom > a {
    gap: 20px;
  }
  .section {
    padding: 76px 0;
  }
  .eyebrow {
    font-size: 0.833rem;
    margin-bottom: 20px;
  }
  .section-description {
    font-size: 1rem;
    line-height: 1.85;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading > .section-description {
    margin-top: 22px;
  }
  .section-description br {
    display: none;
  }
  .preview-toolbar {
    padding: 15px 18px;
    gap: 16px;
    flex-wrap: wrap;
    min-height: 90px;
  }
  .preview-toolbar > p {
    font-size: 0.778rem;
    flex-basis: 100%;
    margin: 0;
  }
  .scene-switch {
    gap: 23px;
  }
  .scene-switch button {
    font-size: 0.889rem;
    min-height: 44px;
    padding: 6px 0;
  }
  .preview-expand {
    font-size: 0.778rem;
    padding-left: 0;
    border-left: 0;
    gap: 8px;
    margin-left: auto;
    min-height: 44px;
  }
  .picture-stage {
    aspect-ratio: 4/3;
  }
  .picture-controls {
    padding: 22px 18px 20px;
  }
  .range-heading {
    font-size: 0.889rem;
    gap: 12px;
  }
  .range-heading output {
    font-size: 0.833rem;
  }
  .range-row {
    gap: 15px;
    margin-top: 5px;
  }
  .range-row > span {
    font-size: 0.778rem;
  }
  .range-row input::-webkit-slider-thumb {
    width: 26px;
    height: 26px;
    margin-top: -11.5px;
  }
  .media-note {
    font-size: 0.778rem;
    line-height: 1.75;
    margin-top: 15px;
  }
  .sound-statement {
    padding-top: 39px;
  }
  .sound-statement h3 {
    font-size: 1.333rem;
    letter-spacing: -0.03em;
  }
  .sound-statement > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
  }
  .device-tabs {
    margin-bottom: 34px;
  }
  .device-tabs button {
    font-size: 1.111rem;
    min-height: 66px;
    padding: 15px 4px;
  }
  .device-panel {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .device-word {
    font-size: 3.6rem;
  }
  .device-system {
    font-size: 0.833rem;
    margin-top: 10px;
  }
  .device-intro h3 {
    font-size: 1.45rem;
    margin-top: 24px;
  }
  .device-copy > p:first-child {
    font-size: 1rem;
  }
  .device-copy ol {
    margin: 24px 0 22px;
  }
  .device-copy li {
    font-size: 1rem;
    grid-template-columns: 28px 1fr;
    gap: 18px;
    padding: 20px 0;
    line-height: 1.75;
  }
  .step-number {
    font-size: 0.833rem;
  }
  .device-copy .device-note {
    font-size: 0.778rem;
  }
  .quality-layout {
    gap: 36px;
  }
  .quality-details {
    margin: 28px 0 24px;
  }
  .quality-details > div {
    display: block;
    padding: 15px 0;
  }
  .quality-details dd {
    font-size: 0.889rem;
    text-align: left;
    margin-top: 6px;
  }
  .fine-print {
    font-size: 0.778rem;
  }
  .quality-image-link {
    padding: 16px 16px 75px;
  }
  .image-action {
    font-size: 0.889rem;
    bottom: 17px;
    left: 18px;
    right: 18px;
    gap: 12px;
  }
  .quality-figure figcaption {
    font-size: 0.778rem;
  }
  .privacy-layout {
    gap: 25px;
  }
  .privacy-copy > p:first-child {
    font-size: 1.111rem;
    line-height: 1.9;
  }
  .privacy-copy .privacy-detail {
    font-size: 0.889rem;
    margin: 20px 0;
  }
  .text-link {
    font-size: 0.889rem;
    gap: 22px;
  }
  .faq-layout {
    gap: 29px;
  }
  .faq-item summary {
    font-size: 1rem;
    padding: 23px 0;
    gap: 20px;
    line-height: 1.7;
  }
  .faq-item p {
    font-size: 1rem;
    line-height: 1.85;
    padding: 0 10px 26px 0;
  }
  .release {
    min-height: 840px;
    padding: 77px 0 300px;
  }
  .release h2 {
    font-size: clamp(44px, 12vw, 64px);
  }
  .release-description {
    font-size: 1rem;
    margin: 25px 0;
    max-width: 360px;
  }
  .release-description br {
    display: none;
  }
  .release-note {
    font-size: 0.778rem;
    line-height: 1.85;
    margin-top: 22px;
  }
  .release-scene {
    top: auto;
    height: 570px;
    object-position: 67% center;
  }
  .release::before {
    background: linear-gradient(
      0deg,
      #10181210,
      transparent 100px,
      #101812 440px
    );
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-main {
    gap: 20px;
    padding-bottom: 28px;
  }
  .footer-main > p {
    margin-left: 0;
    flex-basis: 100%;
    font-size: 0.889rem;
  }
  .footer-main nav {
    gap: 10px 22px;
    font-size: 0.889rem;
  }
  .family-nav {
    gap: 24px;
    font-size: 0.889rem;
  }
  .family-nav > a:first-child {
    flex-basis: 100%;
    margin: 0;
    min-height: 32px;
  }
  .footer-bottom {
    font-size: 0.778rem;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-bottom > p:first-child {
    flex-basis: 100%;
  }
  .footer-bottom > p:nth-child(2) {
    max-width: 240px;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  dialog {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
  }
  .dialog-header {
    padding: 12px 16px;
    gap: 12px;
  }
  .dialog-header h2 {
    font-size: 0.944rem;
    max-width: 210px;
  }
  .dialog-close {
    font-size: 0.833rem;
    gap: 12px;
    padding: 6px 10px;
  }
  .dialog-close > span {
    font-size: 1.4rem;
  }
  dialog figure {
    padding: 0 12px 22px;
  }
  dialog figure img {
    max-height: calc(100svh - 195px);
  }
  dialog figcaption {
    font-size: 0.833rem;
    margin-top: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-scene {
    transform: none !important;
  }
  .js-motion [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
.error-page .section {
  padding-top: 150px;
}
.error-page h1 {
  font-size: clamp(40px, 8vw, 100px);
  white-space: normal;
}
.error-page .hero-headline {
  margin-top: 28px;
}
.error-page .hero-description {
  max-width: 600px;
}
.error-page .text-link {
  margin: 24px;
}
