@import url("./tokens.css");

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font: 450 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button,
input {
  accent-color: var(--lavender);
}
img {
  display: block;
  max-width: 100%;
}
button {
  border: 0;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 6px;
}
::selection {
  background: #c3b6f7;
  color: #11101a;
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 124px;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  font-weight: 650;
  margin: 0 0 27px;
  color: var(--lavender);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h2 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
  margin-bottom: 0;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.13em;
  letter-spacing: -0.035em;
}
button {
  background: none;
}
.skip {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  background: white;
  color: black;
  padding: 10px 20px;
}
.skip:focus {
  top: 10px;
}
.button {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 13px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 5px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  line-height: 1.5;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 1.15rem;
}
.button.light {
  background: #f0edf5;
  color: #171723;
}
.button.light:hover {
  background: #fff;
  box-shadow: 0 7px 30px #cfbdff20;
}
.button.small {
  min-height: 43px;
  padding: 9px 18px;
  gap: 20px;
}
.button.outline {
  border-color: var(--line);
  background: #ffffff03;
}
.button.outline:hover {
  background: #ffffff0b;
  border-color: #8c809e;
}
.text-link {
  font-size: 0.875rem;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-underline-offset: 6px;
}
.text-link:hover {
  text-decoration: underline;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition:
    background 0.3s,
    border-color 0.3s;
  border-bottom: 1px solid #ffffff0d;
}
.header.scrolled {
  position: fixed;
  background: #090b13ed;
  backdrop-filter: blur(22px);
  border-color: var(--line);
}
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 105px;
  height: 36px;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
.desktop-nav a {
  font-size: 0.875rem;
  color: #cdccdb;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: white;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}
.login {
  font-size: 0.875rem;
  color: #d4d1df;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 44px;
  padding: 10px 5px;
}
.menu-toggle span {
  height: 1px;
  background: white;
  width: 25px;
  display: block;
  margin: 7px 0;
  transition: transform 0.2s;
}
.mobile-nav {
  background: #090b13;
  padding: 28px;
  max-height: calc(100dvh - 80px);
  overflow: auto;
}
.mobile-nav a {
  display: block;
  font-size: 1.4rem;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(980px, 100svh);
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #171c30;
}
.hero-landscape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  z-index: -3;
  animation: drift 5s ease-out both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 26, 0.76) 0%,
      rgba(8, 12, 26, 0.44) 42%,
      rgba(8, 12, 26, 0.04) 85%
    ),
    linear-gradient(
      0deg,
      #090b13 0%,
      transparent 32%,
      rgba(8, 10, 25, 0.15) 76%,
      rgba(8, 10, 25, 0.4)
    );
}
.hero-content {
  padding-top: 80px;
  padding-bottom: 85px;
}
.hero .eyebrow {
  color: #cecadf;
  margin-bottom: 31px;
  font-size: 0.75rem;
}
.hero h1 {
  font-size: clamp(4.7rem, 7.7vw, 7.65rem);
  letter-spacing: -0.067em;
  line-height: 1.04;
  margin: 0 0 32px;
  font-weight: 500;
}
.hero h1 em {
  color: #ebd5cb;
  font-size: 1.12em;
}
.hero-description {
  font-size: 1.125rem;
  color: #d0cfdd;
  line-height: 1.8;
  margin-bottom: 35px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
}
.film-button {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.5;
}
.film-button small {
  display: block;
  font-size: 0.75rem;
  color: #c0bece;
  margin-top: 3px;
}
.play-circle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  font-size: 0.7rem;
  padding-left: 2px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.film-button:hover .play-circle,
.film-poster:hover .play-circle {
  background: #ffffff25;
}
.trial-note {
  color: #b2b0c0;
  font-size: 0.75rem;
  margin: 20px 0 0;
}
.hero-bottom {
  position: absolute;
  bottom: 43px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  color: #b4b3c4;
}
.scroll-line {
  height: 35px;
  width: 1px;
  background: linear-gradient(transparent, #e2d3ec);
}
.hero-coordinate {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #ded2d4;
}
.intro {
  padding-top: 92px;
}
.intro-top {
  display: flex;
  justify-content: space-between;
}
.small-copy {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.8;
}
.intro-title {
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  margin-top: 25px;
}
.intro-title em {
  color: var(--lavender);
}
.intro-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  max-width: 960px;
  margin: 46px 0 62px;
}
.intro-bottom p {
  color: var(--muted);
  margin: 0;
  line-height: 1.9;
}
.life-index {
  border-block: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-block: 23px;
  color: #c4c1d3;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.life-index span {
  display: flex;
  align-items: center;
  gap: 20px;
}
.life-index span:not(:first-child):before {
  content: "+";
  color: #605771;
}
.product {
  background: linear-gradient(180deg, #0c0e18, #111321);
  padding-top: 110px;
  padding-bottom: 118px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.section-heading > p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 8px;
}
.section-heading em {
  color: var(--lavender);
}
.product-stage {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 58px;
}
.area-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.area-tabs button {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 18px;
  border-radius: 5px;
  font-size: 1rem;
  color: #acabba;
  text-align: left;
  transition:
    background 0.2s,
    color 0.2s;
}
.area-tabs button:hover {
  background: #ffffff06;
  color: white;
}
.area-tabs button[aria-selected="true"] {
  background: #c3b6f713;
  color: var(--lavender);
}
.tab-symbol {
  width: 21px;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}
.tab-arrow {
  margin-left: auto;
  opacity: 0;
}
.area-tabs button[aria-selected="true"] .tab-arrow {
  opacity: 1;
}
.fitting-link {
  margin: 36px 18px 0;
  display: block;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 450;
  line-height: 1.8;
}
.fitting-link span {
  display: block;
  color: #eee9ff;
  margin-top: 5px;
  font-weight: 600;
}
.area-panel {
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #a895f328;
  background:
    radial-gradient(ellipse at 85% 70%, #4b345f45, transparent 65%), #171626;
}
.area-copy {
  padding: 32px 37px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.area-copy .eyebrow {
  grid-column: 1/-1;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  margin-bottom: 14px;
  color: #b5a5d7;
}
.area-copy h3 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 0;
}
.area-copy > p:last-child {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #b9b4c8;
  margin: 0;
  max-width: 350px;
}
.screenshot-button {
  display: block;
  width: calc(100% - 74px);
  margin: 0 37px;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 6px 6px 0 0;
  background: #191329;
  border: 1px solid #b9a3e836;
  aspect-ratio: 1.65;
  box-shadow: 0 10px 35px #0006;
}
.screenshot-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s;
}
.screenshot-button:hover img {
  transform: scale(1.018);
}
.expand-label {
  position: absolute;
  bottom: 17px;
  right: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.75rem;
  background: #10121ded;
  border: 1px solid #b5b0d144;
  padding: 8px 13px;
  border-radius: 4px;
}
.expand-label span {
  font-size: 1rem;
}
.area-footnote {
  display: flex;
  justify-content: space-between;
  padding: 17px 37px;
  font-size: 0.75rem;
  color: #aba3bf;
}
.daily {
  background: #efedf5;
  color: #252132;
  overflow: hidden;
}
.daily-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 10%;
  align-items: center;
}
.daily .eyebrow {
  color: #6a527d;
}
.daily h2 em {
  color: #6c5487;
}
.daily-copy > p:not(.eyebrow) {
  color: #666071;
  max-width: 440px;
  margin-top: 33px;
  line-height: 1.9;
}
.plain-list {
  padding: 0;
  margin: 35px 0;
  list-style: none;
  border-top: 1px solid #4b3b581e;
  max-width: 440px;
}
.plain-list li {
  padding: 14px 0;
  border-bottom: 1px solid #4b3b581e;
  font-size: 0.875rem;
}
.plain-list span {
  color: #8e7b9d;
  font-size: 0.75rem;
  margin-right: 20px;
}
.daily .text-link {
  color: #433151;
}
.device-link {
  display: block;
  font-size: 0.75rem;
  color: #716779;
  margin-top: 23px;
}
.daily-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 0;
}
.daily-visual:before {
  content: "";
  position: absolute;
  inset: 15% -15% 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, #a7a3de55, transparent 70%);
  pointer-events: none;
}
.phone-screen {
  position: relative;
  padding: 0;
  max-width: 290px;
  border-radius: 36px;
  overflow: hidden;
  border: 7px solid #1d1925;
  box-shadow: 0 30px 65px #34204a25;
  transform: rotate(3deg);
  background: #1d1925;
  transition: transform 0.4s;
}
.phone-screen:hover {
  transform: rotate(0);
}
.phone-screen img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
}
.vertical-caption {
  position: absolute;
  left: 0;
  top: 40%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 0.21em;
  color: #8f8299;
}
.daily-caption {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: #73657f;
  margin-top: 30px;
}
.film-heading {
  text-align: center;
  margin-bottom: 48px;
}
.film-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.film-heading h2 em {
  color: var(--lavender);
}
.film-heading > p:last-child {
  margin: 28px 0 0;
  color: var(--muted);
}
.film-poster {
  padding: 0;
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 2.25;
  overflow: hidden;
  border-radius: 8px;
}
.film-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.62);
  transition:
    transform 1s,
    filter 0.5s;
}
.film-poster:hover > img {
  transform: scale(1.025);
  filter: saturate(1);
}
.film-poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #050710dd, transparent 80%);
}
.film-play {
  position: absolute;
  left: 38px;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.film-play .play-circle {
  height: 58px;
  width: 58px;
  background: #f3eef017;
}
.film-play small {
  font-size: 0.75rem;
  margin-left: 8px;
  color: #c3bfcb;
}
.film-disclosure {
  text-align: right;
  color: #838194;
  font-size: 0.75rem;
  margin: 13px 0 0;
}
.how {
  padding-top: 15px;
}
.how .section-heading {
  margin-bottom: 60px;
}
.how .text-link {
  margin-bottom: 12px;
  white-space: nowrap;
  color: var(--lavender);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.steps article {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.step-number {
  font-family: var(--serif);
  font-size: 2.7rem;
  color: #75628f;
  line-height: 1.2;
  display: block;
  margin-bottom: 39px;
}
.steps h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  font-weight: 550;
  margin-bottom: 16px;
}
.steps p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}
.steps a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pricing {
  background: linear-gradient(180deg, #10121d, #0c0e17);
}
.pricing-header {
  text-align: center;
}
.pricing-header h2 em {
  color: var(--lavender);
}
.pricing-header > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 28px;
}
.billing {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin: 24px 0 53px;
  background: #06070d55;
}
.billing button {
  font-size: 0.875rem;
  padding: 8px 25px;
  border-radius: 3px;
  color: #b4afc3;
}
.billing button.selected {
  background: #d2c6ec;
  color: #252032;
  font-weight: 650;
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.plan {
  position: relative;
  border: 1px solid var(--line);
  padding: 31px 24px 30px;
  border-radius: 7px;
  background: #ffffff02;
}
.plan.featured {
  border-color: #a58ac285;
  background: linear-gradient(140deg, #4b3d634d, #181525);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: #c9b7e0;
  color: #261d35;
  border-radius: 3px;
  padding: 4px 9px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.plan-top h3 {
  font-size: 1.1rem;
  font-weight: 650;
  margin-bottom: 4px;
}
.plan-top > p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  min-height: 40px;
}
.price {
  font-size: 2.65rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  margin: 19px 0 2px;
  line-height: 1.35;
  white-space: nowrap;
}
.price > span {
  font-size: 0.75rem;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 450;
  margin-left: 4px;
}
.billing-note {
  font-size: 0.75rem;
  color: #aba5b9;
  margin: 0 0 28px;
  min-height: 21px;
}
.plan .button {
  width: 100%;
  padding: 11px 13px;
  min-height: 48px;
  gap: 9px;
  font-size: 0.75rem;
}
.plan ul {
  padding: 24px 0 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.plan li {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #beb9cb;
  position: relative;
  padding-left: 19px;
}
.plan li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a78ac4;
  font-size: 0.75rem;
}
.pricing-fineprint {
  max-width: 890px;
  text-align: center;
  color: #90899e;
  font-size: 0.75rem;
  line-height: 1.9;
  margin: 29px auto 0;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12%;
}
.faq h2 {
  font-size: clamp(2.5rem, 3.4vw, 3.8rem);
}
.questions details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.questions details:first-child {
  border-top: 1px solid var(--line);
}
.questions summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 38px;
  font-size: 0.9375rem;
  font-weight: 550;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary:after {
  content: "+";
  position: absolute;
  right: 1px;
  top: -3px;
  font-size: 1.35rem;
  color: #a894bd;
  font-weight: 400;
}
.questions details[open] summary:after {
  content: "−";
}
.questions p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 18px 35px 0 0;
  line-height: 1.9;
}
.questions a {
  color: #d5c3ea;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing {
  position: relative;
  isolation: isolate;
  padding: 125px 0 118px;
  text-align: center;
  overflow: hidden;
  background: #171c30;
}
.closing > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 69%;
  z-index: -3;
  filter: saturate(0.7);
}
.closing-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(0deg, #090b13d9, #10101fa8 60%, #090b13d9);
}
.closing h2 {
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  margin: 0 0 39px;
}
.closing h2 em {
  color: #e8cdbf;
}
.closing-fitting {
  display: block;
  font-size: 0.8125rem;
  color: #c0b7c9;
  margin-top: 24px;
  text-underline-offset: 5px;
}
.closing-fitting:hover {
  text-decoration: underline;
}
.footer {
  padding-top: 75px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand img {
  margin: 0 0 23px;
  width: 116px;
  height: 40px;
}
.footer-brand p {
  font-size: 0.8125rem;
  color: #8b8499;
  line-height: 1.9;
}
.footer-label {
  font-size: 0.75rem;
  color: #8b829c;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-weight: 650;
}
.footer-top > div:not(:first-child) > a {
  display: block;
  font-size: 0.8125rem;
  color: #aaa4b8;
  margin: 10px 0;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 23px 0 28px;
  color: #80798d;
  font-size: 0.75rem;
}
.media-dialog {
  width: min(1050px, calc(100% - 36px));
  max-height: 90dvh;
  padding: 0;
  border: 1px solid #9e82bc55;
  border-radius: 10px;
  background: #0e0f19;
  color: white;
  box-shadow: 0 35px 120px #0009;
}
.media-dialog::backdrop {
  background: #050610e8;
  backdrop-filter: blur(12px);
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 14px 22px;
}
.dialog-head h2 {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.dialog-head button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
}
.media-dialog video {
  display: block;
  width: 100%;
  max-height: 65dvh;
  background: #000;
}
.media-dialog > p {
  font-size: 0.8125rem;
  padding: 16px 23px;
  margin: 0;
  color: #aaa2b9;
  line-height: 1.7;
}
.image-dialog {
  width: min(1320px, calc(100% - 36px));
}
.image-dialog > img {
  width: auto;
  max-width: 100%;
  max-height: calc(90dvh - 74px);
  object-fit: contain;
  margin: auto;
}
.entrance {
  animation: enter 0.9s ease both;
}
.hero h1 {
  animation-delay: 0.1s;
}
.hero-description {
  animation-delay: 0.2s;
}
.hero-actions {
  animation-delay: 0.3s;
}
.trial-note {
  animation-delay: 0.4s;
}
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drift {
  from {
    transform: scale(1.055);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1500px) {
  .shell {
    width: min(1360px, calc(100% - 160px));
  }
  .hero h1 {
    font-size: 8.3rem;
  }
  .hero-content {
    padding-bottom: 60px;
  }
  .product-stage {
    grid-template-columns: 235px 1fr;
    gap: 68px;
  }
}
@media (max-width: 1150px) {
  .shell {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 22px;
  }
  .nav {
    gap: 25px;
  }
  .nav-actions {
    gap: 20px;
  }
  .hero {
    min-height: 780px;
  }
  .hero h1 {
    font-size: 6rem;
  }
  .product-stage {
    grid-template-columns: 180px 1fr;
    gap: 30px;
  }
  .area-copy {
    padding: 28px;
    grid-template-columns: 1fr;
  }
  .area-copy > p:last-child {
    max-width: none;
    margin-top: 16px;
  }
  .screenshot-button {
    margin-inline: 28px;
    width: calc(100% - 56px);
  }
  .area-footnote {
    padding-inline: 28px;
  }
  .plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .plan {
    padding: 30px;
  }
  .plan-top > p {
    min-height: auto;
  }
  .plan .button {
    font-size: 0.875rem;
  }
  .plan li {
    font-size: 0.875rem;
  }
  .plan-badge {
    font-size: 0.75rem;
  }
  .daily-grid {
    gap: 7%;
  }
  .phone-screen {
    max-width: 260px;
  }
  .steps {
    gap: 30px;
  }
  .how .text-link {
    white-space: normal;
    max-width: 210px;
  }
  .faq {
    gap: 7%;
  }
}
@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    height: 80px;
  }
  .nav-actions {
    margin-left: auto;
  }
  .header.menu-is-open {
    position: fixed;
    background: var(--bg);
  }
  .menu-is-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-is-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero h1 {
    font-size: 5.5rem;
  }
  .section {
    padding-block: 90px;
  }
  .intro-title {
    font-size: 4.1rem;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 260px;
  }
  .product-stage {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-controls {
    min-width: 0;
  }
  .area-tabs {
    flex-direction: row;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .area-tabs button {
    flex-shrink: 0;
    font-size: 0.875rem;
    padding: 11px 14px;
    gap: 10px;
  }
  .tab-arrow {
    display: none;
  }
  .tab-symbol {
    font-size: 1.1rem;
    width: 18px;
  }
  .fitting-link {
    margin: 13px 0 0;
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .fitting-link span {
    margin: 0;
  }
  .area-copy {
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }
  .area-copy > p:last-child {
    margin: 0;
  }
  .daily-grid {
    gap: 30px;
  }
  .daily h2 {
    font-size: 3.2rem;
  }
  .daily-copy > p:not(.eyebrow) {
    font-size: 0.9375rem;
  }
  .phone-screen {
    max-width: 225px;
    border-radius: 28px;
  }
  .vertical-caption {
    left: -8px;
  }
  .daily-caption {
    font-size: 1.05rem;
  }
  .film-poster {
    aspect-ratio: 1.8;
  }
  .steps {
    gap: 25px;
  }
  .steps h3 {
    font-size: 1.0625rem;
  }
  .steps p {
    font-size: 0.875rem;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1.1fr 1.3fr;
    gap: 32px 60px;
  }
  .hero-coordinate {
    display: none;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 44px);
  }
  .nav {
    height: 76px;
    gap: 16px;
  }
  .brand img {
    width: 92px;
    height: auto;
  }
  .nav-actions {
    gap: 14px;
  }
  .nav-actions .login {
    display: none;
  }
  .button.small {
    min-height: 40px;
    font-size: 0.8125rem;
    padding: 8px 13px;
    gap: 16px;
  }
  .menu-toggle {
    width: 30px;
    padding: 5px 0;
  }
  .hero {
    height: auto;
    min-height: max(760px, 100svh);
    max-height: none;
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 169px;
    padding-bottom: 140px;
  }
  .hero-landscape {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #090d208a, #090d2040),
      linear-gradient(0deg, #090b13, transparent 42%, #090d2030 70%);
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.17em;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: clamp(3rem, 13.7vw, 4.75rem);
    line-height: 1.09;
    letter-spacing: -0.065em;
    margin-bottom: 26px;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 28px;
  }
  .hero-actions {
    align-items: flex-start;
    gap: 22px;
    flex-direction: column;
  }
  .hero-actions .button {
    min-height: 52px;
    gap: 40px;
    padding-inline: 21px;
  }
  .film-button {
    font-size: 0.8125rem;
    gap: 11px;
  }
  .film-button .play-circle {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }
  .film-button small {
    font-size: 0.75rem;
    margin: 0;
  }
  .trial-note {
    font-size: 0.75rem;
    margin-top: 22px;
  }
  .hero-bottom {
    bottom: 27px;
  }
  .scroll-cue {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
  .scroll-line {
    height: 27px;
  }
  .section {
    padding-block: 73px;
  }
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.17em;
    margin-bottom: 22px;
  }
  h2 {
    font-size: 2.9rem;
    line-height: 1.12;
    letter-spacing: -0.055em;
  }
  .intro-top .small-copy {
    display: none;
  }
  .intro-title {
    font-size: 3.1rem;
    margin-top: 5px;
  }
  .intro-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0 38px;
  }
  .intro-bottom p {
    font-size: 0.9375rem;
  }
  .life-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px 23px;
    padding-block: 21px;
    font-size: 0.75rem;
  }
  .life-index span {
    gap: 14px;
  }
  .life-index span:not(:first-child):before {
    display: none;
  }
  .life-index span:before {
    content: "+" !important;
    display: block !important;
    color: #665775;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p {
    margin-top: 25px;
    max-width: none;
    font-size: 0.9375rem;
  }
  .area-tabs button {
    padding: 10px 13px;
    font-size: 0.8755rem;
  }
  .fitting-link {
    justify-content: flex-start;
    font-size: 0.75rem;
  }
  .product-stage {
    gap: 20px;
  }
  .area-copy {
    display: block;
    padding: 25px 23px;
  }
  .area-copy h3 {
    font-size: 1.75rem;
  }
  .area-copy > p:last-child {
    margin-top: 17px;
    font-size: 0.875rem;
  }
  .area-copy .eyebrow {
    font-size: 0.75rem;
  }
  .screenshot-button {
    width: calc(100% - 28px);
    margin: 0 14px;
    aspect-ratio: 1.32;
  }
  .area-footnote {
    padding: 13px 15px;
    font-size: 0.75rem;
    gap: 20px;
  }
  .area-footnote span:last-child {
    display: none;
  }
  .expand-label {
    bottom: 11px;
    right: 10px;
    font-size: 0.75rem;
    padding: 6px 9px;
  }
  .daily-grid {
    grid-template-columns: 1fr;
    gap: 47px;
  }
  .daily h2 {
    font-size: 3.05rem;
  }
  .daily-copy > p:not(.eyebrow) {
    margin-top: 28px;
    font-size: 0.9375rem;
  }
  .daily-visual {
    max-width: 340px;
    width: 100%;
    margin: auto;
  }
  .phone-screen {
    max-width: 230px;
  }
  .vertical-caption {
    left: 0;
  }
  .daily-caption {
    font-size: 1.2rem;
  }
  .film-heading h2 {
    font-size: 2.4rem;
  }
  .film-heading > p:last-child {
    font-size: 0.9375rem;
    margin-top: 22px;
  }
  .film-poster {
    aspect-ratio: 1.26;
  }
  .film-poster > img {
    object-fit: cover;
    object-position: center;
  }
  .film-play {
    left: 18px;
    right: 16px;
    bottom: 20px;
    gap: 12px;
    font-size: 0.8125rem;
  }
  .film-play .play-circle {
    width: 43px;
    height: 43px;
  }
  .film-play small {
    font-size: 0.75rem;
    margin-left: auto;
  }
  .film-disclosure {
    text-align: left;
    font-size: 0.75rem;
  }
  .how {
    padding-top: 5px;
  }
  .how .text-link {
    margin-top: 26px;
    max-width: none;
  }
  .how .section-heading {
    margin-bottom: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps article {
    padding: 27px 0 24px;
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 0 16px;
  }
  .step-number {
    font-size: 2.2rem;
    grid-row: 1/3;
    margin: 0;
  }
  .steps h3 {
    margin: 3px 0 11px;
    font-size: 1.075rem;
  }
  .steps p {
    grid-column: 2;
  }
  .pricing-header h2 {
    font-size: 3rem;
  }
  .pricing-header > p:not(.eyebrow) {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
  .billing {
    margin-bottom: 40px;
  }
  .plans {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .plan {
    padding: 28px;
  }
  .plan-top h3 {
    font-size: 1.15rem;
  }
  .plan-top > p {
    font-size: 0.8125rem;
  }
  .price {
    font-size: 2.7rem;
    margin-top: 21px;
  }
  .price > span {
    font-size: 0.8125rem;
  }
  .plan .button {
    font-size: 0.875rem;
  }
  .plan ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .plan li {
    font-size: 0.875rem;
  }
  .pricing-fineprint {
    text-align: left;
    font-size: 0.75rem;
    margin-top: 25px;
  }
  .faq {
    gap: 32px;
  }
  .questions summary {
    font-size: 0.875rem;
  }
  .questions details {
    padding: 21px 0;
  }
  .questions p {
    font-size: 0.875rem;
    margin-right: 8px;
  }
  .closing {
    padding: 93px 0;
  }
  .closing h2 {
    font-size: 3.15rem;
  }
  .closing h2 em {
    font-size: 1.07em;
  }
  .closing .eyebrow {
    font-size: 0.75rem;
  }
  .closing-fitting {
    font-size: 0.75rem;
  }
  .footer {
    padding-top: 55px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 29px 25px;
    padding-bottom: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .footer-brand img {
    margin-bottom: 0;
    width: 105px;
  }
  .footer-brand p {
    font-size: 0.75rem;
    margin: 0;
  }
  .footer-label {
    font-size: 0.75rem;
    margin-bottom: 19px;
  }
  .footer-top > div:not(:first-child) > a {
    font-size: 0.75rem;
    line-height: 1.8;
    margin: 8px 0;
  }
  .footer-bottom {
    font-size: 0.75rem;
    gap: 20px;
    line-height: 1.8;
  }
  .dialog-head {
    padding: 10px 15px;
  }
  .dialog-head h2 {
    font-size: 0.875rem;
  }
  .media-dialog > p {
    font-size: 0.75rem;
    padding: 15px;
  }
  .media-dialog {
    width: calc(100% - 20px);
  }
  .motion-ready .reveal {
    transform: translateY(15px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .phone-screen {
    transform: none;
  }
  .hero-landscape {
    transform: none;
  }
}

/* Keep frequently used labels and controls readable at every breakpoint. */
.plan .button,
.plan li,
.plan-top > p,
.fitting-link,
.footer-top > div:not(:first-child) > a,
.closing-fitting,
.device-link,
.film-button,
.film-play {
  font-size: 0.875rem;
}
@media (max-width: 360px) {
  .nav-actions {
    gap: 8px;
  }
  .button.small {
    gap: 10px;
    padding-inline: 11px;
  }
  .hero .eyebrow {
    max-width: 255px;
  }
  .hero-content {
    padding-top: 146px;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
}
