@font-face {
  font-family: 'Akkurat';
  src: url('../fonts/AkkuratLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akkurat';
  src: url('../fonts/Akkurat-Regular.woff2') format('woff2'),
    url('../fonts/Akkurat-Regular.woff') format('woff'),
    url('../fonts/Akkurat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akkurat';
  src: url('../fonts/Akkurat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akkurat Mono';
  src: url('../fonts/Akkurat-Mono.woff2') format('woff2'),
    url('../fonts/Akkurat-Mono.woff') format('woff'),
    url('../fonts/Akkurat-Mono.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Editorial New';
  src: url('../fonts/EditorialNew-Light.woff2') format('woff2'),
    url('../fonts/EditorialNew-Light.woff') format('woff'),
    url('../fonts/EditorialNew-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Editorial New';
  src: url('../fonts/PPEditorialNew-Ultralight-BF644b21500d0c0.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Editorial New';
  src: url('../fonts/PPEditorialNew-Italic-BF644b214fb0c0a.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --dark: #19191C;
  --warm: #F3F1F0;
  --light: #E6E4E2;
  --gray: #484950;
  --gray-mid: #626469;
  --gray-light: #7E8086;
  --gray-muted: #9B9893;
  --menu-bg: #252119;
  --sans: 'Akkurat', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Akkurat Mono', 'SF Mono', monospace;
  --serif: 'PP Editorial New', Georgia, serif;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--dark);
  background: var(--warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.top-fade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, var(--warm) 0%, transparent 100%);
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.top-fade.active {
  opacity: 1;
  transition: opacity 0.8s ease 0.4s;
}
.page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
}
.menu-btn {
  position: fixed;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 72px;
  height: 56px;
  background: rgba(37, 33, 25, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.menu-top {
  padding: 40px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.menu-logo {
  filter: brightness(0) invert(1);
}
.menu-lang {
  display: flex;
  background: #2F3035;
  border-radius: 8px;
  padding: 4px;
}
.menu-lang-btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  color: #B3B1AD;
  border-radius: 6px;
}
.menu-lang-btn.active {
  background: #E6E4E2;
  color: var(--dark);
}
.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}
.menu-nav a {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--warm);
  padding: 15px 0;
  display: block;
  opacity: 0;
  letter-spacing: -0.03em;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.menu-overlay.active .menu-nav a {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.active .menu-nav a:nth-child(1) {
  transition-delay: 0.1s;
}
.menu-overlay.active .menu-nav a:nth-child(2) {
  transition-delay: 0.15s;
}
.menu-overlay.active .menu-nav a:nth-child(3) {
  transition-delay: 0.2s;
}
.menu-overlay.active .menu-nav a:nth-child(4) {
  transition-delay: 0.25s;
}
.menu-bottom {
  padding: 24px;
  display: flex;
  justify-content: center;
}
.menu-close-btn {
  width: 72px;
  height: 56px;
  background: var(--menu-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero {
  background:
    linear-gradient(to bottom, #967C51 0%, #D5C8BA 100%);
  padding-top: 40px;
  min-height: calc(100vh - 40px);
  position: relative;
}
.hero>* {
  position: relative;
  z-index: 1;
}
.hero-fade {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--warm));
  z-index: 1;
  pointer-events: none;
}
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20vh;
}
.hero-logo img {
  opacity: 0;
  transform: translateY(-10px);
}
.hero-ring-img {
  display: flex;
  justify-content: center;
  padding-bottom: 3vh;
}
.hero-ring-img img,
.hero-ring-img video {
  width: 400px;
  height: 200px;
  object-fit: cover;
  transform-origin: center center;
  opacity: 0.2;
}
.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 13vh;
}
.hero-ring-text {
  width: 273px;
  height: 57px;
  opacity: 0;
}
.hero-tagline-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 18px;
  opacity: 0;
  transform: translateY(10px);
}
.afterhero {
  background: var(--warm);
  opacity: 0;
  transform: translateY(10px);
}
.hero-body {
  padding: 0 0 0 28px;
}
.hero-body p {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 16px;
  max-width: 262px;
}
.section-video {
  padding: 85px 0 40px 0;
}
.video-inner {
  margin: 0 12px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--dark);
  aspect-ratio: 351/460;
}
.video-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-lockup {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.play-icon {
  width: 36px;
  height: 36px;
  background: var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}
.play-label {
  border-radius: 12px;
  padding: 8px 12px 12px 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--warm);
  white-space: nowrap;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-modal-content {
  width: 100%;
  height: 100%;
}
.video-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-modal-close {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--menu-bg);
  border-radius: 16px;
  z-index: 10;
}
.section-rings {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.rings-slider {
  overflow: hidden;
}
.rings-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.rings-slide {
  flex: 0 0 174px;
  width: 174px;
  margin-right: 60px;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rings-slide img {
  width: 174px;
  height: auto;
  object-fit: contain;
}
.rings-pagination {
  position: absolute;
  top: calc(60px + 154px + 16px);
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}
.rings-pagination-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rings-pagination .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-muted);
  transition: all 0.2s ease;
}
.rings-pagination .dot.active {
  background: var(--gray);
  width: 6px;
  height: 6px;
}
.rings-info-stack {
  position: relative;
  margin-top: 70px;
}
.rings-slide-info {
  padding: 0 28px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.rings-slide-info.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.rings-title-mask {
  margin-bottom: 48px;
}
.rings-title {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 40px;
  color: var(--dark);
  padding-bottom: 10px;
  margin-bottom: -10px;
}
.spec-list {
  display: flex;
  flex-direction: column;
}
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.spec-row {
  display: flex;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light);
}
.spec-row:first-child {
  padding-top: 0;
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-label {
  text-transform: uppercase;
  flex: 0 0 106px;
  width: 106px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.05em;
  line-height: 20px;
}
.spec-value {
  flex: 1;
  max-width: 202px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 20px;
  color: var(--dark);
}
.section-chiclet {
  padding: 36px 0;
}
.section-chiclet-bottom {
  background: var(--light);
  padding: 90px 0;
}
.chiclet {
  display: flex;
  align-items: center;
  gap: 29px;
  padding: 0 28px;
}
.chiclet-img {
  flex: 0 0 151px;
  width: 151px;
  height: 94px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.chiclet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.chiclet-body {
  flex: 1;
}
.chiclet-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 20px;
  color: var(--dark);
  margin-bottom: 8px;
  max-width: 127px;
}
.chiclet-text a {
  color: #7E8086;
  font-weight: 700
}
.chiclet-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--gray-light);
  max-width: 127px;
}
.section-sizing {
  padding: 60px 0 0;
}
.sizing-header {
  padding: 0 24px;
  margin-bottom: 48px;
  text-align: center;
}
.sizing-title {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 40px;
  color: var(--dark);
  margin-bottom: 24px;
  max-width: 217px;
  margin-left: auto;
  margin-right: auto;
}
.sizing-desc {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: var(--dark);
  max-width: 327px;
  margin-left: auto;
  margin-right: auto;
}
.sizing-kits {
  padding: 0 24px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sizing-kits .chiclet {
  padding: 0;
}
.sizing-kits .chiclet-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sizing-kits .chiclet-img img {
  width: 70px;
  height: auto;
}
.sizing-note {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 20px;
  color: var(--dark);
  text-align: center;
  max-width: 285px;
  margin-left: auto;
  margin-right: auto;
}
.section-sizing-carousel {
  background: #19191C;
  background: linear-gradient(0deg, rgba(25, 25, 28, 1) 0%, rgba(243, 241, 240, 1) 72%);
  padding: 48px 0 100px;
}
.sizing-carousel-title {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 40px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 50px;
  padding: 0 24px;
  max-width: 278px;
  margin-left: auto;
  margin-right: auto;
}
.sizing-swiper .swiper-slide {
  width: 307px;
  height: auto;
}
.sizing-card {
  background: #fff;
  border-radius: 24px;
  padding: 6px;
  overflow: hidden;
  height: 100%;
}
.sizing-card-img {
  width: 100%;
  aspect-ratio: 295/400;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
.sizing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sizing-card-body {
  padding: 0 18px 25px;
  text-align: center;
}
.sizing-card-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 13px;
}
.sizing-card-text {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  color: var(--dark);
}
.carousel-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px 16px;
}
.pag-current {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--dark);
}
.pag-sep {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--dark);
  opacity: 0.6;
}
.pag-total {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--dark);
  opacity: 0.6;
}
.carousel-pagination-light .pag-current,
.carousel-pagination-light .pag-sep,
.carousel-pagination-light .pag-total {
  color: var(--warm);
}
.section-app {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vh 0;
}
.section-track {
  background: var(--dark);
  padding: 0 0 60px;
}
.app-serif-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 55px;
  color: var(--warm);
  text-align: center;
  padding: 0 12px;
  margin-bottom: 4vh;
  max-width: calc(351px + 24px);
  margin-left: auto;
  margin-right: auto;
}
.app-video {
  margin: 0 12px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 55vh;
  background: var(--dark);
}
.app-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.caterpillar {
  display: flex;
}
.cat-dot {
  width: 52px;
  height: 52px;
  margin-right: -6px;
}
.app-carousel {
  padding: 24px 0 60px;
}
.app-swiper .swiper-slide {
  width: 284px;
}
.app-card-img {
  width: 284px;
  height: 284px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 201, 185, 0.15);
  margin-bottom: 24px;
  padding: 15px;
}
.app-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.app-card-body {
  padding: 0;
  max-width: 286px;
}
.app-card-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.app-card-text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.app-card-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  margin-left: 5px;
}
.app-card-list li {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 20px;
  color: #fff;
  padding: 2px 0;
}
.app-card-list li::before {
  content: '• ';
}
.section-science {
  background: var(--light);
  padding: 0 0 60px;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.science-header {
  position: relative;
  padding: 60px 0 0;
}
.science-title {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 40px;
  color: var(--dark);
  text-align: center;
  padding: 0 9px;
  margin-bottom: 16px;
  max-width: 357px;
  margin-left: auto;
  margin-right: auto;
}
.science-desc {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: var(--dark);
  padding: 0 24px;
  margin-bottom: 24px;
  max-width: 330px;
  margin-top: -150px;
  position: relative;
}
.science-header-img {
  width: 100%;
  margin-top: 44px;
  overflow: hidden;
  position: relative;
}
.science-header-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--light));
}
.science-header-img img {
  width: 100%;
  height: auto;
}
.science-carousel {
  padding: 60px 0 0;
}
.science-swiper .swiper-slide {
  width: 284px;
}
.science-card {
  background: var(--warm);
  border-radius: 24px;
  height: 336px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 24px 0;
  position: relative;
  overflow: hidden;
}
.science-card-image {
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  padding: 24px;
  background: #000;
}
.science-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  opacity: 0.7;
}
.science-card-heading-light {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 29px;
  color: #fff;
  max-width: 175px;
  position: relative;
  z-index: 2;
}
.science-card-desc-light {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 20px;
  color: var(--warm);
  position: relative;
  z-index: 2;
  max-width: 236px;
}
.science-card-number {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.sci-big {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--dark);
  max-width: 236px;
}
.science-card-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 20px;
  color: var(--dark);
}
.science-card-heading {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.science-card-desc {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 20px;
  color: var(--gray);
  position: relative;
  z-index: 2;
}
.footer {
  background: var(--light);
  padding: 36px 12px;
}
.footer-logo {
  width: 100%;
  height: auto;
}
.mask-reveal {
  overflow: hidden;
}
.mask-reveal-inner {
  clip-path: inset(0px 0px 100% 0px);
  transform: translateY(10px);
}
.mask-line-1,
.mask-line-2 {
  display: block;
}
.mask-line-1 {
  margin-bottom: 0;
}
.mask-line-2 {
  margin-bottom: 73px;
}
.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}