@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --black: #050607;
  --black-soft: #0b0d0f;
  --panel: #101316;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --white: #f5f7f8;
  --muted: #a6adb2;
  --silver: #c7cdd1;
  --ice: #74e8ff;
  --ice-soft: #dffaff;
  --paper: #e9ecec;
  --ink: #101213;
  --header-height: 78px;
  --shell: min(92vw, 1440px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--black);
}

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

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.ambient--top {
  top: -20vw;
  right: -12vw;
  background: var(--ice);
}

.ambient--bottom {
  bottom: -25vw;
  left: -20vw;
  background: #315e73;
}

.site-header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, height 300ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 6, 7, 0.76);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  letter-spacing: 0.02em;
}

.brand__word {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.brand__meta {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.desktop-nav a {
  position: relative;
  color: #c5c9cc;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ice);
  content: "";
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 250ms var(--ease), background 250ms ease, color 250ms ease, border-color 250ms ease;
}

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

.button:active {
  transform: translateY(0);
}

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

.button--light:hover {
  background: var(--ice-soft);
}

.button--compact {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.7rem;
}

.button--outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--ice);
  color: var(--ice);
}

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

.button--dark:hover {
  background: #283033;
}

.button--full {
  width: 100%;
}

.button:focus-visible,
.menu-button:focus-visible,
.dialog__close:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 4px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero__media,
.hero__media::after,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(140deg, #07090b, #12171b 72%, #050607);
}

.hero__halo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98), rgba(232, 234, 235, 0.94) 62%, #cdd1d3),
    #e8ebec;
  box-shadow: -48px 0 120px rgba(116, 232, 255, 0.06);
}

.hero__product {
  position: absolute;
  right: max(0px, calc((100vw - 1440px) / 2));
  bottom: -3%;
  width: min(44vw, 660px);
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: contrast(1.02);
  animation: hero-settle 1.8s var(--ease) both;
}

.hero__product-label {
  position: absolute;
  z-index: 2;
  top: 110px;
  right: 3.5vw;
  color: rgba(16, 18, 19, 0.58);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.hero__media::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.99) 0%, rgba(5, 6, 7, 0.92) 38%, rgba(5, 6, 7, 0.2) 58%, transparent 72%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.2), transparent 48%, rgba(5, 6, 7, 0.55));
  content: "";
}

.hero__scrim {
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.15), transparent 48%, rgba(5, 6, 7, 0.72));
}

.hero__content {
  display: flex;
  min-height: max(760px, 100svh);
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 54px;
}

.hero__eyebrow,
.section-kicker,
.founder__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 18px var(--ice);
  animation: breathe 2.5s ease-in-out infinite;
}

.eyebrow-divider {
  color: #626a6f;
}

.hero__title,
.section-title,
.closing h2,
.dialog__intro h2,
.reserve-success h3 {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero__title {
  position: relative;
  z-index: 2;
  margin-top: clamp(32px, 5vw, 72px);
  font-size: clamp(3.8rem, 8.4vw, 8.8rem);
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 247, 248, 0.72);
}

.hero__lower {
  display: grid;
  width: min(720px, 100%);
  margin-top: clamp(30px, 4vw, 56px);
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: end;
}

.hero__copy {
  margin: 0;
  color: #c5cacf;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c5cacf;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.text-link:hover {
  color: var(--ice);
}

.hero__offer {
  display: grid;
  width: min(720px, 100%);
  margin-top: auto;
  padding-top: 46px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.micro-label {
  display: block;
  margin-bottom: 6px;
  color: #8e969b;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__offer strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero__edition {
  position: absolute;
  right: 4vw;
  bottom: 48px;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080a0b;
}

.ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: 34px;
  padding: 19px 0;
  color: #9ea5a9;
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker__track i {
  color: var(--ice);
  font-style: normal;
}

.section {
  position: relative;
  padding: clamp(100px, 11vw, 180px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) 2.4fr;
  gap: 5vw;
}

.section-kicker {
  align-self: start;
  padding-top: 9px;
  color: var(--muted);
}

.section-kicker span:first-child {
  color: var(--ice);
}

.story__content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.72fr);
  gap: 6vw;
  align-items: end;
}

.display-quote {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 6.5vw, 7.2rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

em {
  color: var(--ice);
  font-style: normal;
}

.story__body {
  padding-bottom: 8px;
  color: var(--muted);
}

.story__body p {
  margin: 0;
}

.story__body p + p {
  margin-top: 24px;
}

.story__visual {
  position: relative;
  height: min(66vw, 850px);
  min-height: 520px;
  margin-top: clamp(70px, 9vw, 140px);
  overflow: hidden;
  background: #101418;
}

.story__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 6, 7, 0.8));
  content: "";
  pointer-events: none;
}

.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.68) contrast(1.08);
  transition: transform 1.1s var(--ease);
}

.story__visual:hover img {
  transform: scale(1.02);
}

.story__caption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: #c2c8cc;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.product {
  border-top: 1px solid var(--line);
  background: #080a0b;
}

.product__intro,
.scents__header {
  display: grid;
  margin-top: clamp(48px, 7vw, 100px);
  grid-template-columns: 1.55fr 0.72fr;
  gap: 8vw;
  align-items: end;
}

.section-title {
  font-size: clamp(3.2rem, 7vw, 7.5rem);
}

.product__lead,
.scents__lead,
.founder__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product__stage {
  position: relative;
  display: grid;
  min-height: 700px;
  margin-top: clamp(72px, 9vw, 140px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98), rgba(230, 233, 234, 0.94) 58%, #bdc3c6),
    #e8ebec;
}

.product__stage::before,
.product__stage::after {
  position: absolute;
  border: 1px solid rgba(20, 27, 31, 0.1);
  border-radius: 50%;
  content: "";
}

.product__stage::before {
  width: 52%;
  aspect-ratio: 1;
}

.product__stage::after {
  width: 70%;
  aspect-ratio: 1;
}

.product__image-wrap {
  position: relative;
  z-index: 1;
  width: min(49%, 610px);
  height: 650px;
}

.product__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.03) drop-shadow(0 40px 70px rgba(0, 0, 0, 0.16));
}

.product__badge {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.product__badge span {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 1;
}

.product__badge small {
  color: #545b5e;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.product-gallery {
  display: grid;
  margin-top: 1px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 0.78fr 1.44fr 0.78fr;
}

.product-gallery__item {
  position: relative;
  height: 470px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f2f3f3;
}

.product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.product-gallery__item--portrait img {
  object-position: center 44%;
}

.product-gallery__item--wide img {
  filter: saturate(0.72) contrast(1.03);
}

.product-gallery__item:hover img {
  transform: scale(1.025);
}

.product-gallery__item figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(5, 6, 7, 0.78);
  color: #dfe3e5;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  backdrop-filter: blur(10px);
}

.product-gallery__item figcaption span {
  color: var(--ice);
}

.spec-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.spec {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease;
}

.spec:hover {
  background: rgba(116, 232, 255, 0.045);
}

.spec__number {
  color: #6f777c;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.spec__icon {
  width: 44px;
  margin-top: 70px;
  color: var(--ice);
}

.spec__icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.spec h3 {
  margin: 32px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec p {
  margin: 0;
  color: #8e969b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.scents {
  background: var(--paper);
  color: var(--ink);
}

.section-kicker--dark {
  color: #606668;
}

.section-title--dark em,
.scents em {
  color: #18758b;
}

.scents__lead {
  color: #596063;
}

.scent-list {
  display: grid;
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid rgba(16, 18, 19, 0.18);
  border-left: 1px solid rgba(16, 18, 19, 0.18);
  grid-template-columns: repeat(3, 1fr);
}

.scent {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border-right: 1px solid rgba(16, 18, 19, 0.18);
  border-bottom: 1px solid rgba(16, 18, 19, 0.18);
  isolation: isolate;
}

.scent__top {
  display: flex;
  justify-content: space-between;
  color: #6f7476;
  font-size: 0.64rem;
  letter-spacing: 0.17em;
}

.scent__orb {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(2px);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.scent:hover .scent__orb,
.scent:focus-visible .scent__orb {
  transform: translate(-50%, -50%) scale(1.12);
  filter: blur(0);
}

.scent--forest .scent__orb {
  background: radial-gradient(circle at 34% 28%, #a7b9a1, #344b3f 52%, #15231e 72%);
  box-shadow: 0 26px 70px rgba(34, 65, 48, 0.33);
}

.scent--ocean .scent__orb {
  background: radial-gradient(circle at 34% 26%, #e1fbff, #5ac5df 46%, #146b84 72%);
  box-shadow: 0 26px 70px rgba(28, 143, 172, 0.3);
}

.scent--nightfall .scent__orb {
  background: radial-gradient(circle at 34% 26%, #e4bb8d, #725144 45%, #241c25 72%);
  box-shadow: 0 26px 70px rgba(80, 51, 43, 0.3);
}

.scent h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}

.scent p {
  margin: 12px 0 0;
  color: #5f6668;
  font-size: 0.86rem;
}

.founder {
  overflow: hidden;
  background: #060809;
}

.founder__number {
  position: absolute;
  top: -7vw;
  right: -1vw;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Manrope", sans-serif;
  font-size: clamp(13rem, 35vw, 38rem);
  font-weight: 600;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

.founder__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.95fr);
  gap: 8vw;
  align-items: center;
}

.founder__label {
  margin-top: 90px;
  color: var(--ice);
}

.founder__title {
  margin-top: 30px;
  font-size: clamp(3rem, 5.5vw, 6.4rem);
}

.founder__lead {
  max-width: 560px;
  margin-top: 38px;
}

.founder__serial {
  display: flex;
  max-width: 560px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.founder__serial span {
  color: #7d858a;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
}

.founder__serial strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
}

.founder-card {
  border: 1px solid var(--line);
  background: #0b0e10;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.35);
}

.founder-card__visual {
  position: relative;
  height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(104, 222, 255, 0.12), transparent 36%),
    #0e1215;
}

.founder-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card__stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(116, 232, 255, 0.7);
  border-radius: 50%;
  place-items: center;
  color: var(--ice);
  font-size: 0.61rem;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
}

.founder-card__details {
  padding: 36px;
}

.founder-card__head,
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.founder-card__head h3 {
  margin: 6px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.founder-card__edition {
  color: var(--ice);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.bundle-list {
  margin: 32px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.bundle-list li {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px 1fr;
  color: #c6cbce;
  font-size: 0.88rem;
}

.bundle-list li span {
  color: #6f777c;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.price-row {
  margin-bottom: 32px;
}

.price-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
}

.founder-card__note {
  margin: 14px 0 0;
  color: #6f777c;
  font-size: 0.78rem;
  text-align: center;
}

.payment {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.payment__header {
  display: grid;
  margin-top: clamp(48px, 7vw, 100px);
  grid-template-columns: 1.45fr 0.7fr;
  gap: 8vw;
  align-items: end;
}

.payment__intro {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.payment__intro p {
  margin: 0;
  color: #596063;
  font-size: 1.05rem;
  line-height: 1.7;
}

.payment__grid {
  display: grid;
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid rgba(16, 18, 19, 0.18);
  border-bottom: 1px solid rgba(16, 18, 19, 0.18);
  grid-template-columns: minmax(380px, 0.86fr) 1.14fr;
  gap: 0;
}

.payment__qr-card {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: clamp(24px, 4vw, 58px);
  border-right: 1px solid rgba(16, 18, 19, 0.18);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #dfe2e3;
}

.payment__qr-card img {
  width: min(100%, 520px);
  height: auto;
  aspect-ratio: 1546 / 2017;
  flex: 0 0 auto;
  object-fit: contain;
  margin-inline: auto;
  box-shadow: 0 26px 80px rgba(33, 39, 41, 0.12);
}

.payment__qr-card figcaption {
  margin-top: 18px;
  color: #60676a;
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-align: center;
}

.payment__details {
  display: flex;
  padding: clamp(34px, 5vw, 76px);
  flex-direction: column;
  justify-content: center;
}

.payment__verified {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4f575a;
  font-size: 0.66rem;
  letter-spacing: 0.17em;
}

.payment__verified span {
  display: grid;
  width: 24px;
  height: 24px;
  border: 1px solid #18758b;
  border-radius: 50%;
  place-items: center;
  color: #18758b;
}

.payment__details dl {
  margin: 34px 0 0;
}

.payment__details dl div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 18, 19, 0.16);
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
}

.payment__details dt {
  color: #697174;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.payment__details dd {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: right;
}

.payment__steps {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(16, 18, 19, 0.14);
}

.payment__steps div {
  min-height: 170px;
  padding: 20px;
  background: var(--paper);
}

.payment__steps span {
  color: #18758b;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.payment__steps p {
  margin: 42px 0 0;
  color: #535b5e;
  font-size: 0.82rem;
  line-height: 1.6;
}

.payment__actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 28px;
}

.text-link--dark {
  color: #353b3e;
}

.text-link--dark:hover {
  color: #18758b;
}

.payment__safety {
  margin: 26px 0 0;
  color: #777e80;
  font-size: 0.72rem;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) 1.1fr;
  gap: 9vw;
}

.faq__title {
  margin-top: 70px;
  font-size: clamp(3rem, 5vw, 5.9rem);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--ice);
  content: "";
  transition: transform 250ms ease;
}

.faq-list summary span::before {
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -4px 0 32px;
  color: var(--muted);
  line-height: 1.75;
}

.closing {
  position: relative;
  display: grid;
  min-height: min(82vw, 880px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.closing__media,
.closing__scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.closing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing__scrim {
  z-index: -1;
  background: rgba(4, 6, 7, 0.64);
  backdrop-filter: saturate(0.75);
}

.closing__content {
  text-align: center;
}

.closing h2 {
  margin: 24px 0 44px;
  font-size: clamp(3.2rem, 8vw, 8.8rem);
}

.site-footer {
  padding: 72px 0 24px;
  border-top: 1px solid var(--line);
  background: #040506;
}

.footer__top,
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer__ownership {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer__ownership p {
  margin: 0;
  color: #b7bec2;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.footer__ownership strong {
  color: var(--paper);
  font-weight: 500;
}

.brand--footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.brand--footer .brand__word {
  font-size: 2.2rem;
}

.footer__top nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 42px;
  color: #a4abb0;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer__top nav a:hover {
  color: var(--ice);
}

.footer__bottom {
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #666e72;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-reserve {
  display: none;
}

.reserve-dialog {
  width: min(1000px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: hidden auto;
  border: 1px solid var(--line-strong);
  background: #090b0d;
  color: var(--white);
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.7);
}

.reserve-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
}

.dialog__panel {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: 0.85fr 1.15fr;
}

.dialog__close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.68);
  color: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 300;
  place-items: center;
}

.dialog__intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 22%, rgba(116, 232, 255, 0.16), transparent 34%),
    linear-gradient(155deg, #151a1e, #090b0d 70%);
}

.dialog__intro h2 {
  margin: 24px 0 28px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.dialog__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reserve-form,
.reserve-success {
  padding: 64px 48px 42px;
}

.reserve-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.reserve-form label:not(.consent) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.reserve-form label > span {
  color: #90989d;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  transition: border-color 200ms ease;
}

.reserve-form textarea {
  resize: vertical;
}

.reserve-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 50%,
    calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.reserve-form select option {
  background: #0b0d0f;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: var(--ice);
}

.form-note,
.consent,
.reserve-form .button,
.form-privacy {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin: 3px 0 0;
  accent-color: var(--ice);
}

.consent span {
  color: #9ca3a8 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.form-privacy {
  margin: -10px 0 0;
  color: #60686c;
  font-size: 0.7rem;
  text-align: center;
}

.reserve-success {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.reserve-success[hidden] {
  display: none;
}

.reserve-success h3 {
  margin: 16px 0 18px;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
}

.reserve-success p {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.request-code {
  display: flex;
  margin: 22px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.request-code span {
  color: #7f878c;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.request-code strong {
  color: var(--ice);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.reserve-payment {
  display: grid;
  margin-top: 24px;
  border: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}

.reserve-payment__qr {
  min-width: 0;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.reserve-payment__qr img {
  width: min(100%, 400px);
  height: auto;
  aspect-ratio: 1226 / 1280;
  margin-inline: auto;
  object-fit: contain;
}

.reserve-payment__info {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
}

.reserve-payment__info span,
.reserve-payment__info small {
  color: #858d92;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.reserve-payment__info strong {
  margin: 12px 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.reserve-success .button + .button {
  margin-top: 10px;
}

.reserve-payment__download {
  margin-top: 16px;
  color: #8d969a;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.text-button {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #879095;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100vw - 32px));
  padding: 14px 18px;
  transform: translateY(20px);
  background: var(--white);
  color: var(--black);
  font-size: 0.84rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms var(--ease);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  transform: translateY(26px);
  opacity: 0;
  transition: transform 850ms var(--ease), opacity 850ms ease;
}

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

@keyframes breathe {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: 0 0 8px rgba(116, 232, 255, 0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 24px rgba(116, 232, 255, 0.9);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes hero-settle {
  from {
    transform: scale(1.06);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(92vw, 980px);
  }

  .desktop-nav {
    gap: 24px;
  }

  .desktop-nav a {
    font-size: 0.68rem;
  }

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

  .story__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .story__body p + p {
    margin-top: 0;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
  }

  .founder-card__visual {
    height: 350px;
  }

  .founder-card__details {
    padding: 28px;
  }

  .product-gallery__item {
    height: 390px;
  }

  .payment__grid {
    grid-template-columns: minmax(340px, 0.82fr) 1.18fr;
  }

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

  .payment__steps div {
    display: grid;
    min-height: auto;
    grid-template-columns: 44px 1fr;
  }

  .payment__steps p {
    margin: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
    --shell: calc(100vw - 40px);
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform 250ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 89;
    inset: var(--header-height) 0 0;
    display: flex;
    padding: 44px 20px max(32px, env(safe-area-inset-bottom));
    transform: translateX(100%);
    flex-direction: column;
    gap: 0;
    background: rgba(5, 6, 7, 0.98);
    visibility: hidden;
    transition: transform 450ms var(--ease), visibility 450ms;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu a {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.7rem, 7vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    text-transform: uppercase;
  }

  .mobile-menu .button {
    margin-top: auto;
  }

  .hero__halo {
    width: 100%;
    height: 58%;
    bottom: auto;
  }

  .hero__media::after {
    background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 7, 0.08) 40%, rgba(5, 6, 7, 0.94) 69%, #050607 100%);
  }

  .hero__product {
    top: 50px;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 53%;
    object-position: center center;
  }

  .hero__product-label {
    top: 92px;
    right: 24px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .hero__lower {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero__offer {
    margin-top: 48px;
  }

  .hero__edition {
    display: none;
  }

  .section-grid,
  .product__intro,
  .scents__header,
  .founder__grid,
  .faq__grid,
  .payment__header,
  .payment__grid {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 56px;
  }

  .story__visual {
    height: 72vw;
    min-height: 460px;
  }

  .product__intro,
  .scents__header {
    gap: 36px;
  }

  .product__lead,
  .scents__lead {
    max-width: 620px;
  }

  .product__stage {
    min-height: 580px;
  }

  .product__image-wrap {
    width: min(60%, 500px);
    height: 530px;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .product-gallery__item--wide {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .payment__header {
    gap: 36px;
  }

  .payment__intro {
    max-width: 620px;
  }

  .payment__grid {
    border-right: 1px solid rgba(16, 18, 19, 0.18);
    border-left: 1px solid rgba(16, 18, 19, 0.18);
  }

  .payment__qr-card {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 18, 19, 0.18);
  }

  .payment__qr-card img {
    width: min(100%, 500px);
  }

  .scent-list {
    grid-template-columns: 1fr;
  }

  .scent {
    min-height: 380px;
  }

  .scent__orb {
    width: 36%;
  }

  .founder__grid {
    gap: 70px;
  }

  .founder__label {
    margin-top: 56px;
  }

  .founder-card {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .faq__grid {
    gap: 72px;
  }

  .faq__title {
    margin-top: 48px;
  }

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

  .dialog__intro {
    min-height: 380px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reserve-success {
    min-height: 720px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .brand__meta {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero__content {
    min-height: 900px;
    padding-bottom: 24px;
  }

  .hero__eyebrow {
    font-size: 0.62rem;
  }

  .hero__title {
    margin-top: 24px;
    font-size: clamp(3.25rem, 16vw, 5.8rem);
    line-height: 0.92;
  }

  .hero__lower {
    margin-top: 26px;
  }

  .hero__actions {
    align-items: flex-start;
  }

  .hero__actions .button {
    min-height: 50px;
    padding-inline: 18px;
    font-size: 0.68rem;
  }

  .hero__actions .text-link {
    display: none;
  }

  .hero__offer {
    gap: 12px;
    padding-top: 22px;
  }

  .hero__offer .micro-label {
    font-size: 0.53rem;
    letter-spacing: 0.12em;
  }

  .hero__offer strong {
    font-size: 0.78rem;
  }

  .section {
    padding: 92px 0;
  }

  .section-kicker {
    font-size: 0.64rem;
  }

  .display-quote,
  .section-title {
    font-size: clamp(2.85rem, 13vw, 5.1rem);
  }

  .story__body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story__visual {
    width: 100%;
    min-height: 520px;
    margin-top: 72px;
  }

  .story__visual img {
    object-position: 63% center;
  }

  .story__caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    font-size: 0.54rem;
    letter-spacing: 0.13em;
  }

  .product__stage {
    min-height: 470px;
    margin-top: 64px;
  }

  .product__image-wrap {
    width: 78%;
    height: 420px;
  }

  .product__badge {
    right: 18px;
    bottom: 18px;
  }

  .product__badge span {
    font-size: 2.8rem;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery__item,
  .product-gallery__item--wide {
    height: 420px;
    grid-column: auto;
    grid-row: auto;
  }

  .product-gallery__item--wide {
    height: 300px;
  }

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

  .spec {
    min-height: 250px;
  }

  .spec__icon {
    margin-top: 38px;
  }

  .scent {
    min-height: 360px;
    padding: 22px;
  }

  .scent__orb {
    width: 52%;
  }

  .founder__number {
    top: 40px;
    font-size: 68vw;
  }

  .founder-card__visual {
    height: 300px;
  }

  .founder-card__details {
    padding: 24px 20px;
  }

  .founder-card__head {
    flex-direction: column;
  }

  .price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .price-row strong {
    font-size: 0.95rem;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 0.92rem;
  }

  .payment__grid {
    margin-top: 64px;
  }

  .payment__qr-card,
  .payment__details {
    padding: 22px;
  }

  .payment__details dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .payment__details dd {
    text-align: left;
  }

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

  .payment__actions .text-link {
    justify-content: center;
  }

  .closing {
    min-height: 720px;
  }

  .closing h2 {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

  .footer__top,
  .footer__bottom {
    flex-direction: column;
  }

  .footer__top nav {
    margin-top: 40px;
  }

  .footer__bottom {
    margin-top: 54px;
    gap: 8px;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 74px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 6, 7, 0.92);
    backdrop-filter: blur(16px);
    transition: transform 300ms var(--ease);
  }

  .mobile-reserve.is-hidden {
    transform: translateY(110%);
  }

  .mobile-reserve div {
    display: flex;
    flex-direction: column;
  }

  .mobile-reserve span {
    color: #778085;
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .mobile-reserve strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.94rem;
    font-weight: 400;
  }

  .reserve-dialog {
    width: 100vw;
    max-height: 100svh;
    height: 100svh;
    border: 0;
  }

  .dialog__intro {
    min-height: 330px;
    padding: 64px 22px 30px;
  }

  .dialog__intro h2 {
    font-size: 3.2rem;
  }

  .reserve-form,
  .reserve-success {
    padding: 38px 22px 32px;
  }

  .reserve-payment__qr {
    padding: 12px;
  }

  .reserve-payment__info {
    padding: 16px;
  }

  .reserve-payment__info strong {
    font-size: 1rem;
  }

  .request-code {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .reserve-form {
    grid-template-columns: 1fr;
  }

  .reserve-form label,
  .consent,
  .reserve-form .button,
  .form-privacy {
    grid-column: 1;
  }

  .toast {
    right: 16px;
    bottom: calc(90px + env(safe-area-inset-bottom));
  }
}

@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;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}
