:root {
  color-scheme: dark;
  --bg: #111315;
  --surface: #191c20;
  --line: #ffffff18;
  --text: #eef0f2;
  --muted: #9ca3ac;
  --accent: #a6c6df;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard Variable", "Segoe UI", "Malgun Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: #a6c6df;
  color: #111315;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  background: white;
  color: black;
  padding: 14px;
  z-index: 1000;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111315ef;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.nav-wrap {
  height: 78px;
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}
.wordmark {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.7px;
}
nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
nav a {
  font-size: 14px;
  color: #aeb3bc;
  transition: color 0.2s;
}
nav a:hover,
nav a.active {
  color: white;
}
.menu-toggle {
  display: none;
}
.scroll-progress {
  position: absolute;
  bottom: -1px;
  height: 1px;
  background: var(--accent);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
}
.hero {
  padding-top: 73px;
  overflow: hidden;
  text-align: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--accent);
}
h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.25;
  margin: 20px 0 21px;
}
h1 span {
  color: var(--accent);
}
.hero-description {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.showcase {
  max-width: 1280px;
  margin: 46px auto 0;
  padding: 0 40px;
}
.showcase-stage {
  height: 370px;
  position: relative;
  perspective: 1600px;
  isolation: isolate;
}
.preview {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid #ffffff26;
  border-radius: 12px;
  background: #1c2025;
  padding: 0;
  box-shadow: 0 24px 55px #0005;
  text-align: left;
  transition:
    transform 0.65s var(--ease),
    filter 0.5s,
    opacity 0.5s,
    box-shadow 0.5s;
  will-change: transform;
  width: 51%;
  top: 28px;
  height: 318px;
}
.preview-auto {
  left: 24.5%;
  z-index: 3;
}
.preview-auto > img,
.preview-watch > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.preview-studio {
  left: 0;
  transform: translateX(0) rotateY(16deg) rotateZ(-4deg) scale(0.85);
  filter: brightness(0.5);
  z-index: 1;
}
.preview-studio > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-label {
  position: absolute;
  bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(transparent, #0009);
  width: 100%;
}
.preview-label > span:first-child {
  font-size: 22px;
  font-weight: 500;
}
.preview-label > span:last-child {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #bcc6ce;
}
.preview-watch {
  left: 49%;
  transform: rotateY(-16deg) rotateZ(4deg) scale(0.85);
  filter: brightness(0.55);
  z-index: 2;
}
.showcase-caption {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  margin-top: 7px;
  font-size: 13px;
  color: var(--muted);
  min-height: 22px;
}
.preview-selectors {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.media-gallery {
  max-width: 540px;
  margin: 22px auto 0;
  min-width: 0;
}
.gallery-kind {
  margin-bottom: 10px;
  color: #93a3b2;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.gallery-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 3px 10px;
  scrollbar-width: thin;
  scrollbar-color: #566473 transparent;
}
.gallery-thumb {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 118px;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
  color: #9aa7b5;
}
.gallery-thumb img {
  width: 100%;
  aspect-ratio: 2.2;
  object-fit: cover;
  object-position: top;
  border-radius: 7px;
  border: 1px solid #ffffff20;
  opacity: 0.5;
  transition:
    opacity 200ms,
    border-color 200ms;
}
.gallery-thumb span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.5;
}
.gallery-thumb:hover img,
.gallery-thumb[aria-pressed="true"] img {
  opacity: 1;
}
.gallery-thumb[aria-pressed="true"] img {
  border-color: #9ac9ee;
}
.gallery-thumb[aria-pressed="true"] {
  color: #ecf3f9;
}
.studio-gallery {
  width: 100%;
  max-width: 540px;
  margin: 20px 0;
}
.studio-gallery .gallery-thumb img {
  aspect-ratio: 2.8;
}
#hero-gallery {
  --gallery-card-width: 230px;
  --gallery-step: 135px;
  position: relative;
  max-width: 680px;
  margin-top: 24px;
}
#hero-gallery .gallery-thumbnails {
  position: relative;
  display: block;
  height: 215px;
  margin: 0 42px;
  padding: 0;
  overflow: visible;
  perspective: 850px;
  isolation: isolate;
}
#hero-gallery .gallery-thumb {
  --offset: 0px;
  --tilt: 0deg;
  --scale: 1;
  position: absolute;
  left: 50%;
  top: 20px;
  width: var(--gallery-card-width);
  min-width: 0;
  padding: 0;
  text-align: center;
  background: transparent;
  transform: translateX(calc(-50% + var(--offset))) rotate(var(--tilt))
    scale(var(--scale));
  transition:
    transform 550ms var(--ease),
    opacity 350ms;
  z-index: 3;
}
#hero-gallery .gallery-thumb[data-position="left"] {
  --offset: calc(-1 * var(--gallery-step));
  --tilt: -12deg;
  --scale: 0.82;
  z-index: 1;
}
#hero-gallery .gallery-thumb[data-position="right"] {
  --offset: var(--gallery-step);
  --tilt: 12deg;
  --scale: 0.82;
  z-index: 1;
}
#hero-gallery .gallery-thumb[data-position="hidden"] {
  --scale: 0.65;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
#hero-gallery .gallery-thumb img {
  width: 100%;
  aspect-ratio: 1.6;
  object-position: center;
  border-radius: 9px;
  border: 1px solid #ffffff25;
  box-shadow: 0 10px 24px #0005;
  opacity: 0.65;
  transition: opacity 300ms;
}
#hero-gallery .gallery-thumb span {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  word-break: keep-all;
  opacity: 0;
  transition: opacity 250ms;
}
#hero-gallery .gallery-thumb[aria-pressed="true"] img,
#hero-gallery .gallery-thumb[aria-pressed="true"] span {
  opacity: 1;
}
@media (hover: hover) {
  #hero-gallery .gallery-thumb:hover {
    --scale: 0.9;
  }
  #hero-gallery .gallery-thumb[data-position="center"]:hover {
    --scale: 1.045;
  }
  #hero-gallery .gallery-thumb:hover img {
    opacity: 1;
  }
}
.gallery-arrow {
  position: absolute;
  top: 92px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 38px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9daebd;
  z-index: 5;
  font-size: 34px;
  line-height: 1;
  transition:
    color 200ms,
    background 200ms;
}
.gallery-arrow:hover {
  color: #f0f5f9;
  background: #ffffff08;
}
.gallery-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.gallery-previous {
  left: 0;
}
.gallery-next {
  right: 0;
}
@media (max-width: 640px) {
  #hero-gallery {
    --gallery-card-width: 136px;
    --gallery-step: 68px;
  }
  #hero-gallery .gallery-thumbnails {
    height: 160px;
    margin: 0 30px;
  }
  #hero-gallery .gallery-thumb img {
    border-radius: 6px;
  }
  .gallery-arrow {
    width: 28px;
    top: 63px;
    font-size: 30px;
  }
}

.hero {
  padding-bottom: 54px;
}
.download-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.download-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ffffff25;
  border-radius: 9px;
  padding: 12px 14px;
  background: #ffffff04;
  color: #d5dfe8;
  text-align: left;
  min-width: 150px;
}
.platform-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: invert(1);
  opacity: 0.8;
}
.download-option strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.download-option small {
  display: block;
  font-size: 12px;
  color: #8d9aaa;
  margin-top: 4px;
}
.download-option:disabled {
  cursor: default;
}
a.download-option:hover {
  border-color: var(--accent);
  background: #ffffff09;
}
.download-note {
  color: #8d9aaa;
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.7;
}
.preview-selectors button {
  border: 0;
  background: none;
  color: #9199a4;
  font-size: 12px;
  padding: 8px 15px;
  border-radius: 20px;
  transition:
    background 0.25s,
    color 0.25s;
}
.preview-selectors button[aria-pressed="true"] {
  background: #ffffff10;
  color: #eaf0f5;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 29px;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 12px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ffffff20;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: #dce8f1;
  color: #171d22;
  border-color: #dce8f1;
}
.button-primary:hover {
  background: white;
}
.button-quiet {
  color: #c2cad2;
}
.button-quiet:hover {
  background: #ffffff08;
}
.section {
  max-width: 1184px;
  padding: 100px 0;
  margin: 0 auto;
  scroll-margin-top: 0;
}
.intro {
  border-top: 1px solid var(--line);
}
h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.4;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-top: 22px;
}
.muted {
  color: #818b97;
}
.section-description {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 25px;
}
@media (min-width: 801px) {
  .showcase[data-active="studio"] .preview-studio {
    transform: translateX(23%) rotateY(0) rotateZ(0) scale(1.07);
    filter: brightness(1);
    z-index: 5;
  }
  .showcase[data-active="studio"] .preview-auto {
    transform: translateX(18%) rotateY(-12deg) scale(0.83);
    filter: brightness(0.4);
    z-index: 2;
  }
  .showcase[data-active="studio"] .preview-watch {
    transform: translateX(12%) rotateY(-16deg) rotateZ(4deg) scale(0.76);
    filter: brightness(0.4);
  }
  .showcase[data-active="watch"] .preview-watch {
    transform: translateX(-23%) rotateY(0) rotateZ(0) scale(1.07);
    filter: brightness(1);
    z-index: 5;
  }
  .showcase[data-active="watch"] .preview-auto {
    transform: translateX(-18%) rotateY(12deg) scale(0.83);
    filter: brightness(0.4);
    z-index: 2;
  }
  .showcase[data-active="watch"] .preview-studio {
    transform: translateX(-12%) rotateY(16deg) rotateZ(-4deg) scale(0.76);
    filter: brightness(0.4);
  }
  .showcase[data-active="auto"] .preview-auto {
    transform: scale(1.07);
    filter: brightness(1);
    z-index: 5;
  }
}
@media (max-width: 1250px) {
  .section {
    margin-left: 48px;
    margin-right: 48px;
  }
}
@media (max-width: 800px) {
  .nav-wrap {
    height: 68px;
    padding: 0 24px;
  }
  .wordmark {
    font-size: 20px;
  }
  nav {
    gap: 22px;
  }
  .hero {
    padding-top: 58px;
  }
  h1 {
    font-size: clamp(32px, 6vw, 48px);
    padding: 0 20px;
  }
  .hero-description {
    font-size: 15px;
    padding: 0 22px;
  }
  .showcase {
    padding: 0 24px;
    margin-top: 32px;
  }
  .showcase-stage {
    height: clamp(225px, 54vw, 380px);
  }
  .preview {
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    transform: none !important;
    opacity: 0;
    filter: none;
    pointer-events: none;
  }
  .preview[aria-pressed="true"] {
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
  }
  .showcase-caption {
    margin-top: 20px;
    font-size: 12px;
  }
  .section {
    margin-left: 24px;
    margin-right: 24px;
    padding: 64px 0;
  }
  .hero-actions {
    margin-top: 24px;
  }
}
@media (max-width: 520px) {
  .eyebrow {
    font-size: 10px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span {
    height: 1px;
    background: #e1e5e9;
    width: 22px;
  }
  nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #171a1e;
    padding: 25px;
    gap: 25px;
    border-bottom: 1px solid var(--line);
  }
  nav.open {
    display: flex;
  }
  .hero {
    padding-top: 45px;
  }
  .showcase {
    padding: 0 18px;
  }
  .preview-selectors button {
    font-size: 11px;
    padding: 10px 12px;
  }
  .hero-actions {
    gap: 8px;
  }
  .button {
    font-size: 13px;
    padding: 12px 17px;
    gap: 14px;
  }
  .showcase-caption {
    font-size: 11px;
  }
  .hero-description {
    font-size: 14px;
  }
  .section-description {
    font-size: 15px;
  }
  .showcase-stage {
    height: 220px;
  }
  .preview-auto > img,
  .preview-watch > img {
    object-fit: cover;
  }
  .preview-auto > img,
  .preview-watch > img {
    height: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .preview {
    will-change: auto;
  }
}

/* Complete homepage */
.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;
}
.line {
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.language-control {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  color: #b3bdc7;
}
.language-control > span {
  font-size: 18px;
  line-height: 1;
}
.language-control select {
  font: inherit;
  font-size: 12px;
  background: transparent;
  border: 0;
  color: #c5cdd5;
  padding: 8px 3px;
  max-width: 94px;
  cursor: pointer;
}
.language-control option {
  background: #1b2025;
  color: #eaf0f5;
}
.language-control select:focus {
  outline: none;
}
.language-control select:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-title-main {
  color: var(--text);
}
html[lang="en"] h1 {
  font-size: clamp(38px, 4.4vw, 62px);
  letter-spacing: -0.045em;
}
html[lang="en"] h1 span {
  display: block;
}
html[lang="en"] .hero {
  padding-top: 60px;
}
html[lang="en"] .showcase {
  margin-top: 34px;
}
.hero-copy {
  animation: hero-enter 0.8s var(--ease) both;
}
.showcase {
  animation: hero-enter 1s 0.12s var(--ease) both;
}
.showcase-stage {
  transform: translateY(var(--hero-shift, 0px));
}
@keyframes hero-enter {
  from {
    opacity: 0;
    translate: 0 20px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.preview[aria-pressed="true"] {
  box-shadow:
    0 24px 60px #0007,
    0 0 0 1px #aac8df28;
}
.preview {
  touch-action: pan-y;
}
.showcase-caption #preview-description {
  transition: opacity 0.15s;
}
.apps-section {
  border-top: 1px solid var(--line);
  padding-top: 88px;
  padding-bottom: 64px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 70px;
}
.section-heading .section-description {
  margin: 0 0 4px;
  font-size: 15px;
}
.product-block {
  border-top: 1px solid var(--line);
  padding: 38px 0 74px;
}
.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}
.product-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: #8796a4;
}
.product-heading h3 {
  font-size: 30px;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-top: 9px;
}
.product-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
}
.product-copy h4 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.5;
  margin: 0 0 22px;
}
.product-copy > p {
  font-size: 15px;
  line-height: 1.85;
  color: #9da7b1;
  max-width: 365px;
}
.feature-tabs {
  margin: 29px 0 28px;
  max-width: 330px;
}
.feature-tabs button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background: none;
  color: #85909b;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 16px 4px;
  text-align: left;
  font-size: 14px;
  transition:
    color 0.25s,
    padding 0.3s var(--ease);
}
.feature-tabs button[aria-selected="true"] {
  color: #e2edf5;
  padding-left: 13px;
  border-bottom-color: #7693a7;
}
.feature-tabs button[aria-selected="true"] span:last-child {
  color: #bdd7e9;
  transform: rotate(45deg);
}
.feature-tabs button > span:last-child {
  transition: transform 0.3s;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  color: #c2d9e9;
  background: none;
  border: 0;
  border-bottom: 1px solid #b3d3e14a;
  font-size: 14px;
  cursor: pointer;
}
.text-link:hover {
  color: white;
  border-bottom-color: #fff;
}
.product-visual {
  min-width: 0;
}
.screen-expand {
  display: block;
  padding: 0;
  border: 0;
  width: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 8px;
}
.screen-expand > img {
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease);
}
.screen-expand:hover > img {
  transform: scale(1.018);
}
.product-visual .screen-expand {
  border: 1px solid #ffffff25;
  box-shadow: 0 22px 60px #0004;
}
.expand-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #171c22dc;
  border: 1px solid #ffffff30;
  backdrop-filter: blur(8px);
  border-radius: 7px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 22px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.screen-expand:hover .expand-icon {
  opacity: 1;
}
.visual-caption {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 17px;
}
.visual-caption p {
  font-size: 12px;
  line-height: 1.7;
  color: #a1acb6;
}
.watch-product {
  padding-top: 38px;
  padding-bottom: 10px;
}
.watch-product .product-layout {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
}
.watch-feature-stage {
  height: 455px;
  position: relative;
  background: #1a2026;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #ffffff0d;
}
.watch-phone-detail {
  position: absolute;
  width: 200px;
  height: auto;
  top: 43px;
  left: 55px;
  border: 5px solid #353d46;
  border-radius: 28px;
  box-shadow: 0 30px 60px #0006;
  transform: rotate(-7deg);
}
.watch-detail {
  position: absolute;
  width: 227px;
  height: 227px;
  border: 7px solid #434e59;
  border-radius: 50%;
  right: 35px;
  top: 139px;
  box-shadow: 0 25px 40px #0008;
  background: black;
}
.watch-detail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.watch-detail .expand-icon {
  bottom: 23px;
  right: 35px;
}
.watch-tabs {
  display: flex;
  gap: 8px;
  margin-top: 27px;
}
.watch-tabs button {
  border: 1px solid #ffffff20;
  background: none;
  color: #9ca8b3;
  padding: 9px 15px;
  border-radius: 6px;
  font-size: 13px;
}
.watch-tabs button[aria-selected="true"] {
  background: #c6dbe9;
  color: #14202a;
  border-color: #c6dbe9;
}
.product-copy .feature-caption {
  font-size: 13px;
  line-height: 1.8;
  margin: 18px 0 20px;
  min-height: 48px;
  color: #bbc6ce;
}
.product-copy .product-note {
  font-size: 11px;
  color: #74828e;
  margin-top: 22px;
  line-height: 1.7;
}
.studio-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  background: #0d171f;
  scroll-margin-top: 0;
}
.studio-visual {
  position: absolute;
  inset: -90px 0;
  z-index: -2;
  transform: translateY(var(--studio-shift, 0px));
}
.studio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, #0a141b65, #09141b33 40%, #09141be0);
  z-index: -1;
  pointer-events: none;
}
.studio-content.section {
  min-height: 650px;
  padding-top: 50px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.studio-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.studio-status {
  border: 1px solid #c5d4e03a;
  border-radius: 20px;
  padding: 8px 13px;
  font-size: 11px;
  color: #bdcdd8;
  background: #13233260;
}
.studio-title-wrap h2 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #f4f5f7;
  font-weight: 450;
}
.studio-title-wrap p {
  font-size: 15px;
  line-height: 1.9;
  color: #c0ced7;
  margin-top: 25px;
  max-width: 470px;
}
.studio-bottomline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #93a8b8;
  letter-spacing: 0.14em;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 110px;
}
.about-heading h2 {
  font-size: 37px;
}
.about-body > p {
  font-size: 17px;
  line-height: 2;
  color: #a4aeb9;
  margin-top: 40px;
  word-break: keep-all;
}
.about-links {
  margin-top: 35px;
}
.about-links a {
  display: grid;
  grid-template-columns: 70px 1fr 20px;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 19px 0;
  align-items: center;
  font-size: 14px;
}
.about-links a > span:nth-child(2) {
  color: #8895a1;
  font-size: 13px;
}
.about-links a > span:last-child {
  color: #a6c6df;
  transition: transform 0.2s;
}
.about-links a:hover > span:last-child {
  transform: translate(3px, -3px);
}
.support-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding-top: 85px;
  padding-bottom: 90px;
}
.support-heading h2 {
  font-size: 34px;
}
.support-heading .section-description {
  font-size: 14px;
  line-height: 1.8;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  font-size: 15px;
  padding: 23px 36px 23px 0;
  list-style: none;
  cursor: pointer;
  position: relative;
  line-height: 1.7;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  position: absolute;
  right: 3px;
  top: 24px;
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: #9cacb9;
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details > p {
  font-size: 14px;
  color: #a4b0bb;
  line-height: 1.9;
  padding: 0 30px 25px 0;
}
.faq-actions {
  display: flex;
  gap: 25px;
  padding-bottom: 25px;
}
.faq-actions .text-link {
  font-size: 13px;
}
.closing {
  border-top: 1px solid var(--line);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 85px;
}
.closing h2 {
  font-size: 34px;
  margin-bottom: 30px;
}
.closing .eyebrow {
  font-size: 10px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 45px max(48px, calc((100vw - 1184px) / 2)) 30px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-contact {
  display: grid;
  gap: 5px;
  font-size: 12px;
  line-height: 1.6;
}
.footer-contact p {
  color: var(--muted);
}
.footer-contact a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.footer-contact a span {
  display: inline-block;
  margin-left: 4px;
  color: var(--muted);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: #9fabb6;
}
.footer-links a:hover {
  color: white;
}
.back-top {
  display: grid;
  place-items: center;
  border: 1px solid #ffffff20;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #b6c9d8;
  font-size: 18px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  gap: 15px;
  color: #73818e;
  font-size: 11px;
}
.image-dialog {
  background: #1a1e23;
  color: var(--text);
  border: 1px solid #ffffff28;
  border-radius: 16px;
  padding: 44px;
  max-width: min(660px, calc(100vw - 32px));
  max-height: 85dvh;
  overflow: auto;
  box-shadow: 0 30px 100px #0008;
}
dialog::backdrop {
  background: #050709bb;
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  font-size: 27px;
  font-weight: 300;
  color: #bcc7d0;
  border-radius: 50%;
}
.dialog-close:hover {
  background: #ffffff12;
}
body:has(dialog[open]) {
  overflow: hidden;
}
.image-dialog {
  max-width: min(1200px, calc(100vw - 32px));
  padding: 46px 20px 20px;
}
.image-dialog p {
  font-size: 13px;
  color: #adbbc6;
  margin-bottom: 15px;
  padding-right: 30px;
}
.image-dialog img {
  object-fit: contain;
  max-height: 70dvh;
  width: auto;
  margin: auto;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1600px) {
  .showcase-stage {
    height: 405px;
  }
  .preview {
    height: 345px;
  }
  .hero {
    padding-top: 85px;
  }
}
@media (max-width: 1100px) {
  .product-layout {
    gap: 35px;
  }
  .watch-product .product-layout {
    gap: 45px;
  }
  .watch-phone-detail {
    left: 30px;
    width: 175px;
  }
  .watch-detail {
    width: 197px;
    height: 197px;
    right: 25px;
  }
  .about-section,
  .support-section {
    gap: 50px;
  }
  .about-heading h2 {
    font-size: 32px;
  }
  .product-copy h4 {
    font-size: 27px;
  }
  .section-heading .section-description {
    max-width: 280px;
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .nav-right {
    gap: 20px;
  }
  .language-control {
    padding-left: 15px;
  }
  .section-heading {
    display: block;
    margin-bottom: 40px;
  }
  .section-heading .section-description {
    margin-top: 20px;
    max-width: none;
  }
  .product-block {
    padding-top: 28px;
    padding-bottom: 45px;
  }
  .product-heading {
    margin-bottom: 28px;
  }
  .product-heading h3 {
    font-size: 26px;
  }
  .product-layout,
  .watch-product .product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-copy > p {
    max-width: 540px;
  }
  .feature-tabs {
    display: flex;
    gap: 15px;
    max-width: none;
    margin: 22px 0 15px;
  }
  .feature-tabs button {
    width: auto;
    flex: 1;
    gap: 5px;
    font-size: 13px;
  }
  .feature-tabs button[aria-selected="true"] {
    padding-left: 4px;
  }
  .product-copy h4 .line {
    display: inline;
  }
  .product-copy h4 .line + .line::before {
    content: " ";
  }
  .product-copy h4 {
    font-size: 27px;
  }
  .product-visual {
    grid-row: 2;
  }
  .watch-feature-stage {
    grid-row: 2;
    height: 390px;
  }
  .watch-phone-detail {
    left: calc(50% - 160px);
    width: 190px;
    top: 35px;
  }
  .watch-detail {
    right: calc(50% - 175px);
    width: 210px;
    height: 210px;
    top: 122px;
  }
  .watch-product .product-copy {
    grid-row: 1;
  }
  .watch-tabs {
    margin-top: 20px;
  }
  .product-copy .feature-caption {
    min-height: 0;
  }
  .product-copy .product-note {
    margin-top: 14px;
  }
  .studio-content.section {
    min-height: 590px;
    padding-top: 35px;
    padding-bottom: 25px;
  }
  .studio-section {
    min-height: 590px;
  }
  .studio-title-wrap h2 {
    font-size: 46px;
  }
  .studio-topline {
    align-items: flex-start;
  }
  .studio-status {
    font-size: 10px;
    padding: 7px 10px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-body > p {
    margin-top: 27px;
    font-size: 16px;
  }
  .about-heading h2 {
    font-size: 35px;
  }
  .support-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .closing h2 {
    font-size: 30px;
  }
  .site-footer {
    padding: 36px 24px 24px;
  }
  .footer-links {
    gap: 22px;
  }
  .visual-caption p {
    font-size: 12px;
  }
  .feature-tabs {
    scroll-margin-top: 90px;
  }
}
@media (max-width: 520px) {
  .nav-right {
    gap: 8px;
  }
  .language-control {
    border: 0;
    padding: 0;
  }
  .language-control select {
    font-size: 11px;
    max-width: 80px;
  }
  .language-control > span {
    font-size: 16px;
  }
  .nav-wrap {
    padding: 0 19px;
  }
  .wordmark {
    font-size: 19px;
  }
  .hero-title-main {
    display: block;
  }
  h1 {
    font-size: 36px;
    letter-spacing: -0.055em;
    margin-top: 17px;
  }
  html[lang="en"] h1 {
    font-size: 34px;
  }
  html[lang="en"] .hero {
    padding-top: 45px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.8;
  }
  .preview-studio .preview-label {
    padding: 18px;
  }
  .preview-label > span:first-child {
    font-size: 20px;
  }
  .hero {
    padding-bottom: 5px;
  }
  .apps-section {
    padding-top: 52px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .section-heading .section-description {
    font-size: 13px;
  }
  .product-category {
    font-size: 9px;
  }
  .product-heading h3 {
    font-size: 25px;
  }
  .product-copy h4 {
    font-size: 24px;
  }
  .product-copy > p {
    font-size: 14px;
  }
  .feature-tabs {
    gap: 10px;
  }
  .feature-tabs button {
    font-size: 12px;
  }
  .visual-caption {
    gap: 10px;
    display: block;
  }
  .watch-tabs button {
    font-size: 12px;
    padding: 10px 16px;
  }
  .watch-feature-stage {
    height: 350px;
  }
  .watch-phone-detail {
    width: 157px;
    left: calc(50% - 136px);
    top: 29px;
    border-radius: 22px;
  }
  .watch-detail {
    width: 185px;
    height: 185px;
    right: calc(50% - 144px);
    top: 117px;
    border-width: 5px;
  }
  .studio-content.section {
    min-height: 530px;
  }
  .studio-section {
    min-height: 530px;
  }
  .studio-topline {
    flex-direction: column;
    gap: 15px;
  }
  .studio-title-wrap h2 {
    font-size: 37px;
  }
  .studio-title-wrap p {
    font-size: 13px;
    line-height: 1.8;
  }
  .studio-bottomline {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .about-heading h2 {
    font-size: 30px;
  }
  .about-body > p {
    font-size: 14px;
    line-height: 1.9;
  }
  .about-links a {
    font-size: 13px;
    grid-template-columns: 55px 1fr 18px;
  }
  .about-links a > span:nth-child(2) {
    font-size: 12px;
  }
  .support-heading h2 {
    font-size: 29px;
  }
  .support-heading .section-description {
    font-size: 13px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .faq-list details > p {
    font-size: 13px;
    padding-right: 15px;
  }
  .closing h2 {
    font-size: 26px;
    line-height: 1.5;
  }
  .footer-top {
    gap: 15px;
    flex-wrap: wrap;
  }
  .footer-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 27px;
    margin-top: 9px;
  }
  .footer-bottom {
    font-size: 10px;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .showcase-stage,
  .studio-visual {
    transform: none;
  }
  .hero-copy,
  .showcase {
    animation: none;
  }
  .screen-expand:hover > img {
    transform: none;
  }
  .button:hover {
    transform: none;
  }
}
