:root {
  color-scheme: light;
  --page: #f2f2f7;
  --surface: #ffffff;
  --text: #111111;
  --secondary: #6d6d72;
  --divider: #d9d9de;
  --button: #111111;
  --button-text: #ffffff;
  --focus: #6a6a70;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--text);
  overflow-x: clip;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.48;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.site-shell {
  width: min(100%, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding: max(20px, env(safe-area-inset-top)) 20px
    max(28px, env(safe-area-inset-bottom));
  animation: site-page-enter 260ms cubic-bezier(0.22, 0.8, 0.2, 1) both;
}

html.is-page-leaving .site-shell {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

@keyframes site-page-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-bottom: 48px;
}

.brand,
.back-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  gap: 9px;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 2px solid var(--text);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: -6px;
  width: 8px;
  height: 5px;
  border: 2px solid var(--text);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.brand-mark::before {
  left: -4px;
  transform: rotate(-24deg);
}

.brand-mark::after {
  right: -4px;
  transform: rotate(24deg);
}

.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  border-radius: 2px;
  background: var(--text);
  transform-origin: bottom center;
}

.clock-hand-short {
  height: 7px;
  transform: translateX(-50%) rotate(-36deg);
}

.clock-hand-long {
  height: 10px;
  transform: translateX(-50%) rotate(42deg);
}

.header-label {
  margin-left: 20px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
}

.intro,
.legal-heading {
  max-width: 560px;
}

.intro {
  margin-bottom: 36px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 650;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 12px;
  font-size: 34px;
  font-weight: 720;
  line-height: 1.06;
}

h2 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.intro > p:last-child,
.legal-section p,
.legal-section address,
.contact-details {
  color: var(--secondary);
}

.list-group {
  overflow: hidden;
  margin-bottom: 42px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: var(--surface);
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
  padding: 15px 18px;
  transition: background-color 160ms ease, transform 160ms ease;
}

.list-row + .list-row {
  border-top: 1px solid var(--divider);
}

.list-row strong,
.list-row small {
  display: block;
}

.list-row strong {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 650;
}

.list-row small {
  color: var(--secondary);
  font-size: 14px;
}

.list-row:hover {
  background: #f7f7f8;
}

.list-row:active {
  background: #ececef;
  transform: scale(0.995);
}

.chevron,
.back-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.chevron {
  color: var(--secondary);
  transform: rotate(45deg);
}

.back-button {
  color: var(--secondary);
  font-weight: 600;
}

.back-arrow {
  width: 9px;
  height: 9px;
  transform: rotate(-135deg);
}

.section-block {
  padding-top: 2px;
}

.section-heading {
  margin-bottom: 18px;
}

.contact-details {
  margin-bottom: 18px;
}

.contact-details p,
.contact-details a {
  display: block;
  margin: 0;
}

.contact-details a,
.legal-section a:not(.outline-button) {
  width: fit-content;
  color: var(--text);
  border-bottom: 1px solid currentColor;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid var(--button);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.outline-button:hover {
  background: var(--button);
  color: var(--button-text);
}

.outline-button:active {
  transform: scale(0.98);
}

.legal-content {
  padding-bottom: 18px;
}

.legal-heading {
  margin-bottom: 38px;
}

.legal-heading h1 {
  max-width: none;
}

.legal-section {
  padding: 0 0 27px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--divider);
}

.legal-section p:last-child,
.legal-section address:last-child {
  margin-bottom: 0;
}

.legal-section address {
  font-style: normal;
}

.legal-contact {
  margin-bottom: 0;
}

.legal-contact .outline-button {
  margin-top: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  color: var(--secondary);
  font-size: 13px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-page {
  background: #f7f7f8;
}

.landing-shell {
  width: min(100%, 1240px);
  padding-top: max(22px, env(safe-area-inset-top));
}

.landing-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider);
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
}

.landing-nav a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.landing-nav a:hover {
  color: var(--text);
  text-decoration-color: currentColor;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 32px;
  padding: 24px 0 48px;
}

.hero-copy {
  max-width: 590px;
}

.product-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: 72px;
  line-height: 0.98;
}

.hero-lede {
  max-width: 440px;
  margin-bottom: 24px;
  color: var(--secondary);
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--button);
  border-radius: 8px;
  background: var(--button);
  color: var(--button-text);
  font-size: 15px;
  font-weight: 650;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-button:hover {
  background: transparent;
  color: var(--text);
}

.primary-button:active {
  transform: scale(0.98);
}

.text-link {
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.phone-stage {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.phone-frame {
  --photo-nav-extension: 12px;
  position: relative;
  width: min(100%, 320px);
  overflow: hidden;
  padding-bottom: var(--photo-nav-extension);
  border: 8px solid #111111;
  border-radius: 42px;
  background: #171719;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
}

.phone-speaker {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 50%;
  width: 44px;
  height: 5px;
  border-radius: 5px;
  background: #111111;
  transform: translateX(-50%);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px 32px 0 0;
}

.screen-showcase {
  padding: 76px 0 88px;
  border-top: 1px solid var(--divider);
}

.showcase-heading {
  max-width: 590px;
}

.showcase-heading h2 {
  margin-bottom: 13px;
  font-size: 40px;
  line-height: 1.08;
}

.showcase-heading > p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--secondary);
  font-size: 18px;
}

.screen-stair {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 0 56px;
}

.screen-step {
  position: relative;
  z-index: 1;
  width: 240px;
  margin: 0;
}

.screen-step + .screen-step {
  margin-left: -44px;
}

.screen-step-alarm {
  z-index: 1;
  transform: translateY(54px) rotate(-2deg);
}

.screen-step-timer {
  z-index: 2;
  transform: translateY(28px);
}

.screen-step-world {
  z-index: 3;
  transform: rotate(2deg);
}

.mini-phone {
  --photo-nav-extension: 12px;
  position: relative;
  overflow: hidden;
  padding-bottom: var(--photo-nav-extension);
  border: 5px solid #111111;
  border-radius: 30px;
  background: #171719;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.17);
}

.mini-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.preview-scrollbar-mask {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 auto;
  width: 4.4%;
  background: #000000;
  pointer-events: none;
}

.photo-nav-mask {
  position: absolute;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  border: 0;
  background: #171719;
  color: #f5f5f7;
  pointer-events: none;
}

.photo-nav-mask svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.photo-nav-mask span {
  font-size: 7px;
  font-weight: 650;
  line-height: 1;
}

.phone-frame .photo-nav-mask svg {
  width: 18px;
  height: 18px;
}

.phone-frame .photo-nav-mask span {
  font-size: 9px;
}

.photo-nav-mask-alarm {
  bottom: calc(var(--photo-nav-extension) + 1px);
  left: 23.5%;
  width: 27.5%;
  height: 7.7%;
}

.photo-nav-mask-timer {
  bottom: calc(var(--photo-nav-extension) + 1px);
  left: 49%;
  width: 25%;
  height: 7.7%;
}

.screen-step figcaption {
  margin-top: 12px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

.feature-overview {
  padding: 0 0 76px;
}

.feature-heading {
  max-width: 620px;
  margin-bottom: 46px;
}

.feature-heading h2,
.detail-band h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.08;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--divider);
}

.feature-item {
  min-width: 0;
  padding: 31px 36px 31px 0;
  border-bottom: 1px solid var(--divider);
}

.feature-item:nth-child(even) {
  padding-right: 0;
  padding-left: 36px;
  border-left: 1px solid var(--divider);
}

.feature-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--divider);
  border-radius: 8px;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.feature-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-title-row h3 {
  margin-right: auto;
}

.soon-label {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 650;
}

.feature-item p:last-child {
  margin-bottom: 0;
  color: var(--secondary);
}

.detail-band {
  margin: 0 -20px;
  padding: 72px 20px;
  background: #101011;
  color: #ffffff;
}

.detail-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 64px;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.detail-band .eyebrow {
  color: #a9a9ad;
}

.detail-band h2 {
  max-width: 600px;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.detail-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-list div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-list dt {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 650;
}

.detail-list dd {
  margin: 0;
  color: #c4c4c8;
}

.contact-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: 72px 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.contact-section > div > p:last-child {
  margin: 12px 0 0;
  color: var(--secondary);
}

.landing-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 24px 0 8px;
  border-top: 1px solid var(--divider);
  color: var(--secondary);
  font-size: 13px;
}

.availability-note {
  flex-basis: 100%;
  margin: 0 0 4px;
  color: var(--primary);
  font-weight: 600;
}

.landing-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 760px) {
  .site-shell {
    padding-right: 40px;
    padding-left: 40px;
  }

  .landing-page .detail-band {
    margin-right: -40px;
    margin-left: -40px;
    padding-right: 40px;
    padding-left: 40px;
  }

  h1 {
    font-size: 44px;
  }
}

@media (min-width: 901px) {
  .hero-copy {
    align-self: start;
    padding-top: 116px;
  }
}

@media (max-width: 900px) {
  .product-hero,
  .detail-band-inner {
    grid-template-columns: 1fr;
  }

  .product-hero {
    gap: 30px;
  }

  .phone-stage {
    justify-content: flex-start;
  }

  .screen-showcase {
    padding-top: 64px;
  }

  .screen-step {
    width: 190px;
  }

  .screen-step + .screen-step {
    margin-left: -34px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 700px) {
  .product-hero h1 {
    font-size: 56px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .showcase-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 430px) {
  .site-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    margin-bottom: 38px;
  }

  .intro {
    margin-bottom: 30px;
  }

  .list-row {
    min-height: 72px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .landing-header {
    margin-bottom: 18px;
  }

  .landing-nav {
    gap: 13px;
    font-size: 13px;
  }

  .product-hero {
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .product-hero h1 {
    font-size: 50px;
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .hero-actions {
    gap: 16px;
  }

  .phone-stage {
    justify-content: center;
  }

  .phone-frame {
    width: 180px;
    border-width: 6px;
    border-radius: 31px;
  }

  .legal-heading h1 {
    font-size: 29px;
  }

  .phone-frame img {
    border-radius: 24px 24px 0 0;
  }

  .phone-speaker {
    top: 3px;
    width: 36px;
    height: 4px;
  }

  .phone-frame .photo-nav-mask svg {
    width: 12px;
    height: 12px;
  }

  .phone-frame .photo-nav-mask span {
    font-size: 6px;
  }

  .screen-showcase {
    padding: 18px 0 50px;
  }

  .showcase-heading > p:last-child {
    font-size: 16px;
  }

  .screen-stair {
    justify-content: center;
    padding: 30px 0 24px;
  }

  .screen-step {
    width: 126px;
  }

  .screen-step + .screen-step {
    margin-left: -20px;
  }

  .screen-step-alarm {
    transform: translateY(36px) rotate(-2deg);
  }

  .screen-step-timer {
    transform: translateY(18px);
  }

  .mini-phone {
    border-width: 3px;
    border-radius: 19px;
  }

  .mini-phone .photo-nav-mask {
    gap: 1px;
  }

  .mini-phone .photo-nav-mask svg {
    width: 7px;
    height: 7px;
  }

  .mini-phone .photo-nav-mask span {
    font-size: 4px;
  }

  .screen-step figcaption {
    margin-top: 8px;
    font-size: 12px;
  }

  .feature-overview {
    padding: 0 0 54px;
  }

  .feature-heading {
    margin-bottom: 30px;
  }

  .feature-heading h2,
  .detail-band h2,
  .contact-section h2 {
    font-size: 30px;
  }

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

  .feature-item,
  .feature-item:nth-child(even) {
    padding: 26px 0;
    padding-left: 0;
    border-left: 0;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .feature-icon {
    margin-bottom: 18px;
  }

  .detail-band {
    margin-right: -18px;
    margin-left: -18px;
    padding-top: 54px;
    padding-bottom: 54px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .detail-band-inner {
    gap: 32px;
  }

  .contact-section {
    gap: 22px;
    padding: 54px 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .site-shell {
    animation: none;
  }
}
