:root {
  color-scheme: light;
  --background: #f7f5f2;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --text: #171513;
  --muted: #6e6963;
  --border: #ded9d3;
  --accent: #5b3a29;
  --accent-strong: #462b1e;
  --on-accent: #ffffff;
  --warm: #f0e7de;
  --warm-strong: #e7d5c4;
  --success: #176b4b;
  --success-soft: #e2f1ea;
  --blue: #285a83;
  --blue-soft: #e4eef7;
  --shadow: 0 20px 60px rgb(45 31 22 / 10%);
  --page: min(1120px, calc(100% - 40px));
  --reading: 760px;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 24px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --background: #11100f;
    --surface: #1a1816;
    --surface-raised: #24211e;
    --text: #f4f1ed;
    --muted: #aaa39b;
    --border: #38332e;
    --accent: #d7a77e;
    --accent-strong: #e9bf9b;
    --on-accent: #11100f;
    --warm: #2a211b;
    --warm-strong: #3b2a21;
    --success: #7bd3aa;
    --success-soft: #143729;
    --blue: #83bce7;
    --blue-soft: #162e40;
    --shadow: 0 20px 60px rgb(0 0 0 / 24%);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--warm-strong);
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--accent-strong);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.14;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--text);
  color: var(--background);
  transform: translateY(-160%);
}

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

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

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 14px;
  align-items: center;
  border-radius: var(--radius-md);
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current='page'] {
  background: var(--warm);
  color: var(--text);
}

.hero {
  display: grid;
  min-height: min(760px, calc(100svh - 77px));
  padding-block: clamp(56px, 9vw, 112px);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
}

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

.eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: '';
}

.lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.button:hover {
  border-color: var(--accent);
  color: var(--text);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

.button-primary:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--on-accent);
}

.proof-list {
  display: flex;
  margin: 26px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.proof-list li {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.app-window {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.app-window::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -22px;
  width: 74%;
  height: 74%;
  border-radius: 36px;
  background: var(--warm-strong);
  content: '';
}

.app-screen {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--background);
}

.app-topbar {
  display: flex;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.app-topbar strong {
  font-size: 1.08rem;
}

.counter {
  color: var(--muted);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.progress-track {
  height: 6px;
  margin: 0 18px 16px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--border);
}

.progress-value {
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.workout-card {
  margin: 0 12px 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.workout-card-complete {
  border-color: var(--success);
  background: var(--success-soft);
}

.workout-card-active {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.workout-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.status {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.workout-card-complete .status {
  color: var(--success);
}

.workout-card-active .status {
  color: var(--blue);
}

.workout-stats {
  display: flex;
  margin-top: 8px;
  gap: 15px;
  color: var(--muted);
  font-size: 0.83rem;
  font-variant-numeric: tabular-nums;
}

.app-action {
  margin: 16px 12px 12px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--on-accent);
  text-align: center;
  font-weight: 750;
}

.section {
  padding-block: clamp(70px, 9vw, 112px);
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.feature-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--warm);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.feature-card p {
  color: var(--muted);
}

.privacy-panel {
  display: grid;
  padding: clamp(28px, 5vw, 54px);
  align-items: end;
  gap: 40px;
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: var(--on-accent);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.privacy-panel h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.privacy-panel p {
  max-width: 680px;
  margin-bottom: 0;
  opacity: 0.84;
}

.privacy-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid color-mix(in srgb, var(--on-accent) 22%, transparent);
  font-weight: 700;
}

.privacy-points li::before {
  position: absolute;
  top: 12px;
  left: 2px;
  content: '✓';
}

.sharing-grid {
  display: grid;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.share-card {
  aspect-ratio: 4 / 5;
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: #5b3a29;
  color: #fff8f0;
  box-shadow: var(--shadow);
}

.share-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 54px;
  border-radius: 12px;
}

.share-kicker {
  margin-bottom: 8px;
  color: #d7a77e;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.share-card h3 {
  max-width: 270px;
  margin-bottom: 34px;
  color: #fff8f0;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
}

.share-metrics {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.share-metric {
  padding: 14px;
  border: 1px solid rgb(255 248 240 / 28%);
  border-radius: var(--radius-md);
}

.share-metric span,
.share-metric strong {
  display: block;
}

.share-metric span {
  color: #d7c8bc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.share-metric strong {
  margin-top: 3px;
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
}

.share-tag {
  margin-top: 20px;
  color: #d7a77e;
  font-weight: 750;
}

.text-list {
  padding-left: 1.2rem;
}

.text-list li + li {
  margin-top: 8px;
}

.cta {
  display: grid;
  padding: clamp(30px, 5vw, 52px);
  align-items: center;
  gap: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  color: var(--muted);
}

.page-hero {
  padding-block: clamp(60px, 9vw, 100px) 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero .shell {
  max-width: var(--reading);
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
}

.meta-line {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  padding-block: 54px 100px;
  align-items: start;
  gap: 54px;
  grid-template-columns: 220px minmax(0, var(--reading));
  justify-content: center;
}

.toc {
  position: sticky;
  top: 24px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.toc strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  color: var(--text);
}

.article {
  min-width: 0;
}

.article section {
  scroll-margin-top: 24px;
}

.article section + section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}

.article h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.article h3 {
  margin-top: 28px;
}

.article p,
.article li {
  color: var(--muted);
}

.article strong {
  color: var(--text);
}

.callout {
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--warm);
}

.callout p {
  color: var(--text);
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.contact-card address {
  color: var(--muted);
  font-style: normal;
}

.contact-card a {
  overflow-wrap: anywhere;
  font-weight: 750;
}

.support-main {
  padding-block: 54px 100px;
}

.support-grid {
  display: grid;
  margin-bottom: 70px;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.support-card h2 {
  font-size: 1.2rem;
}

.support-card p {
  color: var(--muted);
}

.support-card a {
  font-weight: 750;
}

.support-section {
  max-width: var(--reading);
  margin-inline: auto;
}

.support-section + .support-section {
  margin-top: 70px;
}

.steps {
  margin: 24px 0 0;
  padding: 0;
  counter-reset: support-step;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 64px;
  padding: 8px 0 20px 58px;
  color: var(--muted);
  counter-increment: support-step;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--warm);
  color: var(--accent);
  content: counter(support-step);
  font-weight: 800;
}

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

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

.faq-list summary {
  min-height: 64px;
  padding: 18px 42px 18px 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.4;
}

.faq-list details > div {
  padding: 0 0 22px;
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: calc(100svh - 77px);
  padding-block: 80px;
  place-items: center;
  text-align: center;
}

.not-found-inner {
  max-width: 600px;
}

.not-found-code {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.not-found p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.12rem;
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  padding-block: 34px;
  align-items: center;
  gap: 20px;
  grid-template-columns: 1fr auto;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-copy strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 650;
}

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

  .app-window {
    width: min(100%, 430px);
  }

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

  .feature-card:last-child,
  .support-card:last-child {
    grid-column: 1 / -1;
  }

  .privacy-panel,
  .sharing-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: minmax(0, var(--reading));
  }

  .toc {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --page: min(100% - 24px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .brand span {
    display: none;
  }

  .nav-list {
    gap: 0;
  }

  .nav-list a {
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-block: 48px 70px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-list {
    gap: 6px;
  }

  .app-window {
    padding: 9px;
    border-radius: 28px;
  }

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

  .feature-card:last-child,
  .support-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
  }

  .privacy-panel {
    border-radius: var(--radius-lg);
  }

  .share-card {
    padding: 24px;
  }

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

  .page-hero {
    padding-top: 48px;
  }

  .article-layout,
  .support-main {
    padding-block: 36px 76px;
  }

  .toc {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    margin-left: -10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --border: currentcolor;
  }

  .feature-card,
  .support-card,
  .workout-card,
  .button,
  .toc,
  .cta {
    border-width: 2px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .toc,
  .hero-actions,
  .cta-actions {
    display: none;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .page-hero,
  .article-layout {
    padding-block: 24px;
  }

  .article-layout {
    display: block;
  }

  a {
    color: inherit;
  }
}

/* Landing page */

.home-page {
  overflow-x: hidden;
  background: #f4eee8;
  color: #211b18;
}

.home-header {
  position: sticky;
  top: 0;
  border-color: rgb(91 58 41 / 12%);
  background: rgb(244 238 232 / 88%);
  backdrop-filter: blur(18px);
}

.home-header .nav {
  min-height: 78px;
}

.home-header .nav-list {
  margin-left: auto;
}

.home-header .nav-list a {
  color: #6b5a50;
}

.nav-release {
  display: inline-flex;
  min-height: 44px;
  padding: 0 16px;
  align-items: center;
  border-radius: 999px;
  background: #211b18;
  color: #fff9f2;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-release:hover {
  background: #5b3a29;
  color: #fff9f2;
}

.launch-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgb(215 167 126 / 34%), transparent 25rem),
    radial-gradient(circle at 91% 64%, rgb(105 70 50 / 18%), transparent 27rem), #f4eee8;
}

.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgb(33 27 24 / 12%) 0.65px, transparent 0.65px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.22;
}

.launch-hero-grid {
  display: grid;
  min-height: calc(100svh - 78px);
  padding-block: clamp(68px, 8vw, 116px);
  align-items: center;
  gap: clamp(58px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.88fr);
}

.launch-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.launch-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: #211b18;
  font-size: clamp(4rem, 7.5vw, 7.25rem);
  font-weight: 830;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.launch-copy h1 span {
  color: #6a422f;
}

.launch-copy .lede {
  max-width: 590px;
  color: #6b5a50;
}

.home-page .eyebrow {
  color: #6a422f;
}

.home-page .eyebrow::before {
  background: #b87851;
}

.store-button {
  display: inline-flex;
  min-height: 62px;
  padding: 9px 18px 9px 10px;
  align-items: center;
  gap: 11px;
  border: 1px solid #211b18;
  border-radius: 13px;
  background: #211b18;
  color: #fff9f2;
  font-size: 1.15rem;
  font-weight: 740;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-decoration: none;
}

.store-button:hover {
  background: #5b3a29;
  color: #fff9f2;
}

.store-button img {
  border-radius: 9px;
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  font-size: 0.65rem;
  font-weight: 560;
  letter-spacing: 0;
}

.button-quiet {
  border-color: rgb(91 58 41 / 20%);
  background: rgb(255 255 255 / 36%);
  color: #422f26;
}

.button-quiet span {
  margin-left: 12px;
}

.home-page .proof-list li {
  border-color: rgb(91 58 41 / 14%);
  background: rgb(255 255 255 / 38%);
  color: #6b5a50;
}

.home-page .proof-list li::before {
  margin-right: 7px;
  color: #8d5b3f;
  content: '✓';
  font-weight: 900;
}

.hero-product {
  position: relative;
  min-height: 690px;
  perspective: 1200px;
}

.hero-watermark {
  position: absolute;
  top: 12%;
  left: 50%;
  margin: 0;
  color: rgb(91 58 41 / 7%);
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  transform: translateX(-50%) rotate(-7deg);
  white-space: nowrap;
}

.orbit {
  position: absolute;
  left: 50%;
  border: 1px solid rgb(91 58 41 / 17%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.orbit-one {
  top: 7%;
  width: 520px;
  height: 520px;
}

.orbit-two {
  top: 17%;
  width: 410px;
  height: 410px;
}

.phone-shell {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 336px;
  height: 676px;
  padding: 10px;
  border: 1px solid #59483e;
  border-radius: 46px;
  background: #171310;
  box-shadow: 0 38px 80px rgb(48 30 20 / 28%);
  transform: translate(-50%, -50%) rotate(2.4deg);
}

.phone-island {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 50%;
  width: 86px;
  height: 23px;
  border-radius: 999px;
  background: #171310;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  padding: 18px 13px 14px;
  border-radius: 37px;
  background: #f7f3ef;
  color: #211b18;
  font-size: 12px;
}

.phone-status {
  display: flex;
  padding: 0 7px 18px;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
}

.phone-heading {
  display: flex;
  padding: 0 5px;
  align-items: end;
  justify-content: space-between;
}

.phone-heading small,
.phone-heading strong {
  display: block;
}

.phone-heading small {
  margin-bottom: 2px;
  color: #8a776c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.phone-heading strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.phone-heading > span {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.mini-progress {
  height: 5px;
  margin: 17px 5px 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfd6cf;
}

.mini-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: #2f6a4f;
}

.phone-progress-copy {
  margin: 0 5px 15px;
  color: #77675e;
  font-size: 9px;
}

.exercise-tile {
  display: flex;
  margin-bottom: 8px;
  padding: 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ded4cd;
  border-radius: 14px;
  background: #fff;
}

.exercise-tile strong,
.exercise-tile small {
  display: block;
}

.exercise-tile strong {
  font-size: 12px;
}

.exercise-tile small {
  margin-top: 2px;
  color: #7b6c64;
  font-size: 8px;
}

.tile-done {
  border-color: #b9d8c9;
  background: #eaf4ee;
}

.tile-done > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #2f6a4f;
  color: white;
  font-weight: 900;
}

.tile-active {
  display: block;
  padding: 13px;
  border: 2px solid #76513d;
}

.tile-title {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}

.tile-title small {
  margin: 0;
  color: #76513d;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.set-head,
.set-line {
  display: grid;
  align-items: center;
  gap: 6px;
  grid-template-columns: 30px 1fr 1fr 28px;
  text-align: center;
}

.set-head {
  padding: 0 4px 5px;
  color: #8c7d74;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.set-line {
  min-height: 34px;
  border-top: 1px solid #ece5e0;
}

.set-line > span {
  color: #8c7d74;
}

.set-line b {
  padding: 5px;
  border-radius: 6px;
  background: #f4eee8;
  font-size: 10px;
}

.set-line i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  background: #2f6a4f;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.set-next {
  opacity: 0.52;
}

.set-next i {
  border: 1px solid #cfc4bc;
  background: transparent;
}

.tile-planned > span {
  color: #9a8b82;
  font-size: 11px;
  font-weight: 800;
}

.phone-action {
  padding: 11px;
  border: 1px dashed #bea99b;
  border-radius: 12px;
  color: #76513d;
  text-align: center;
  font-weight: 800;
}

.floating-stat {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border: 1px solid rgb(91 58 41 / 13%);
  border-radius: 16px;
  background: rgb(255 252 248 / 91%);
  color: #211b18;
  box-shadow: 0 18px 44px rgb(52 33 22 / 15%);
  backdrop-filter: blur(14px);
}

.floating-stat small,
.floating-stat strong,
.floating-stat span {
  display: block;
}

.floating-stat small {
  color: #8a776c;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.floating-volume {
  top: 24%;
  left: -3%;
  min-width: 155px;
}

.floating-volume strong {
  margin: 4px 0;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.floating-volume span {
  color: #2f6a4f;
  font-size: 8px;
  font-weight: 750;
}

.floating-private {
  right: -2%;
  bottom: 16%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-private strong {
  font-size: 11px;
}

.lock-dot {
  display: grid !important;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #2f6a4f;
  color: #fff;
  font-weight: 900;
}

.trust-strip {
  padding-block: 28px;
  border-block: 1px solid rgb(91 58 41 / 16%);
  background: #211b18;
  color: #fff9f2;
}

.trust-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  margin: 0;
  padding: 4px 30px;
  border-right: 1px solid rgb(255 249 242 / 16%);
  color: #cbbdb5;
  font-size: 0.82rem;
}

.trust-grid p:first-child {
  padding-left: 0;
}

.trust-grid p:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid p > span,
.trust-grid p > strong {
  display: block;
}

.trust-grid p > span {
  margin-bottom: 7px;
  color: #d7a77e;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.trust-grid p > strong {
  margin-bottom: 3px;
  color: #fff9f2;
  font-size: 0.98rem;
}

.watch-section {
  scroll-margin-top: 78px;
  overflow: hidden;
  border: 0 !important;
  background:
    radial-gradient(circle at 83% 42%, rgb(215 167 126 / 17%), transparent 28rem),
    radial-gradient(circle at 12% 88%, rgb(91 58 41 / 23%), transparent 24rem), #171311;
  color: #fff9f2;
}

.watch-grid {
  display: grid;
  min-height: 760px;
  align-items: center;
  gap: clamp(60px, 8vw, 118px);
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
}

.watch-copy {
  position: relative;
  z-index: 3;
  max-width: 590px;
}

.watch-copy .eyebrow {
  color: #d7a77e;
}

.watch-copy .eyebrow::before {
  background: #d7a77e;
}

.watch-copy h2 {
  margin-bottom: 24px;
  color: #fff9f2;
  font-size: clamp(3.25rem, 5.5vw, 5.6rem);
  font-weight: 830;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.watch-copy .lede {
  max-width: 570px;
  color: #cbbdb5;
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
}

.watch-points {
  margin-top: 34px;
  border-bottom: 1px solid rgb(255 249 242 / 13%);
}

.watch-points article {
  display: grid;
  padding: 15px 0;
  gap: 0 14px;
  border-top: 1px solid rgb(255 249 242 / 13%);
  grid-template-columns: 34px minmax(0, 1fr);
}

.watch-points article > span {
  padding-top: 2px;
  color: #d7a77e;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  grid-row: 1 / 3;
}

.watch-points h3 {
  margin: 0;
  color: #fff9f2;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.watch-points p {
  margin: 2px 0 0;
  color: #a99b93;
  font-size: 0.88rem;
}

.watch-boundary {
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 3px solid #9a6547;
  color: #a99b93;
  font-size: 0.9rem;
}

.watch-boundary strong {
  color: #fff9f2;
}

.watch-beta-link {
  display: inline-flex;
  min-height: 66px;
  margin-top: 26px;
  padding: 10px 18px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgb(255 249 242 / 25%);
  border-radius: 14px;
  background: #fff9f2;
  color: #211b18;
  text-decoration: none;
}

.watch-beta-link:hover {
  border-color: #d7a77e;
  background: #d7a77e;
  color: #211b18;
}

.watch-beta-link span {
  margin-bottom: 1px;
  color: #76513d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watch-beta-link strong {
  font-size: 1.05rem;
}

.watch-product {
  position: relative;
  min-height: 720px;
}

.watch-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(215 167 126 / 21%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.watch-halo::before,
.watch-halo::after {
  position: absolute;
  border: 1px solid rgb(215 167 126 / 10%);
  border-radius: inherit;
  content: '';
}

.watch-halo::before {
  inset: 52px;
}

.watch-halo::after {
  inset: 112px;
}

.watch-device {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 610px;
  filter: drop-shadow(0 36px 52px rgb(0 0 0 / 42%));
  transform: translate(-50%, -50%) rotate(2deg);
}

.watch-strap {
  position: absolute;
  left: 50%;
  width: 178px;
  height: 190px;
  border: 1px solid #382c26;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 5%), transparent 16% 84%, rgb(0 0 0 / 18%)), #5b3a29;
  transform: translateX(-50%);
}

.watch-strap::after {
  position: absolute;
  inset: 13px;
  border: 1px solid rgb(255 255 255 / 5%);
  border-radius: inherit;
  content: '';
}

.watch-strap-top {
  top: -44px;
  border-radius: 52px 52px 18px 18px;
}

.watch-strap-bottom {
  bottom: -44px;
  border-radius: 18px 18px 52px 52px;
}

.watch-case {
  position: absolute;
  z-index: 2;
  top: 108px;
  left: 15px;
  width: 330px;
  height: 394px;
  padding: 10px;
  border: 1px solid #aaa6a1;
  border-radius: 82px;
  background: linear-gradient(145deg, #c8c5c1, #666461 43%, #b9b6b1);
  box-shadow:
    inset 0 0 0 2px rgb(255 255 255 / 22%),
    inset -6px -6px 14px rgb(0 0 0 / 26%);
}

.watch-crown {
  position: absolute;
  top: 91px;
  right: -18px;
  width: 17px;
  height: 58px;
  border: 1px solid #85817d;
  border-radius: 0 11px 11px 0;
  background: repeating-linear-gradient(to bottom, #8d8985 0 3px, #b7b3ae 3px 5px);
}

.watch-screen {
  height: 100%;
  overflow: hidden;
  padding: 28px 17px 17px;
  border-radius: 70px;
  background: #050505;
  color: #f7f7f7;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.watch-screen-head {
  display: flex;
  min-height: 54px;
  padding: 0 8px;
  align-items: start;
  justify-content: space-between;
}

.watch-screen-head strong {
  color: #a9a9ae;
  font-size: 2rem;
  font-weight: 430;
  letter-spacing: -0.05em;
}

.watch-screen-head span {
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.watch-control {
  min-height: 98px;
  margin-bottom: 10px;
  padding: 7px 10px 9px;
  border-radius: 30px;
  background: #242424;
}

.watch-control small {
  display: block;
  margin-bottom: 1px;
  color: #a9a9ae;
  font-size: 0.9rem;
  line-height: 1;
}

.watch-control > div {
  display: grid;
  align-items: center;
  gap: 9px;
  grid-template-columns: 62px minmax(0, 1fr) 62px;
}

.watch-control b {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #4a4a4c;
  font-size: 2.15rem;
  font-weight: 350;
  line-height: 1;
}

.watch-control strong {
  text-align: center;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}

.watch-control strong i {
  font-size: 0.78rem;
  font-style: normal;
}

.watch-action-row {
  display: grid;
  min-height: 67px;
  gap: 9px;
  grid-template-columns: 1.15fr 0.85fr;
}

.watch-action-row strong,
.watch-action-row span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.91rem;
}

.watch-action-row strong {
  background: #2fd45d;
}

.watch-action-row span {
  background: #561317;
  color: #ff5a5f;
  font-weight: 750;
}

.watch-sync-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 188px;
  padding: 13px 15px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 249 242 / 16%);
  border-radius: 16px;
  background: rgb(37 31 28 / 88%);
  color: #fff9f2;
  box-shadow: 0 18px 38px rgb(0 0 0 / 24%);
  backdrop-filter: blur(14px);
}

.watch-sync-card > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #2f6a4f;
  color: #fff;
  font-weight: 900;
}

.watch-sync-card strong,
.watch-sync-card small {
  display: block;
}

.watch-sync-card strong {
  font-size: 0.78rem;
}

.watch-sync-card small {
  margin-top: 2px;
  color: #aaa09a;
  font-size: 0.65rem;
}

.watch-sync-saved {
  top: 18%;
  left: -2%;
}

.watch-sync-private {
  right: -2%;
  bottom: 18%;
}

.watch-sync-private > span {
  background: #76513d;
}

.feature-showcase {
  background: #fbf8f5;
}

.showcase-heading {
  display: grid;
  max-width: none;
  margin-bottom: 52px;
  align-items: end;
  gap: 24px 70px;
  grid-template-columns: 1.1fr 0.9fr;
}

.showcase-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.showcase-heading h2 {
  margin: 0;
  color: #211b18;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.showcase-heading > p:last-child {
  margin: 0;
  color: #6b5a50;
  font-size: 1.08rem;
}

.bento-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #ded3cc;
  border-radius: 26px;
  background: #f4eee8;
}

.bento-card h3 {
  max-width: 510px;
  margin-bottom: 12px;
  color: #211b18;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.bento-card p {
  max-width: 540px;
  color: #6b5a50;
}

.feature-index {
  display: inline-block;
  margin-bottom: 52px;
  color: #8d5b3f;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.bento-log {
  display: grid;
  min-height: 440px;
  align-items: center;
  gap: 34px;
  grid-column: span 12;
  grid-template-columns: 0.85fr 1.15fr;
}

.bento-log .feature-index {
  margin-bottom: 30px;
}

.set-demo {
  overflow: hidden;
  border: 1px solid #d8cbc2;
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: 0 24px 50px rgb(55 34 22 / 10%);
}

.set-demo-row {
  display: grid;
  min-height: 70px;
  padding-inline: 18px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #ebe3dd;
  grid-template-columns: 0.55fr 1.45fr 0.8fr 0.7fr;
}

.set-demo-row > *:not(:first-child) {
  text-align: center;
}

.set-demo-row > span:first-child {
  color: #8b7a71;
  font-size: 0.82rem;
  font-weight: 800;
}

.set-demo-row strong {
  font-size: 1.15rem;
}

.set-demo-row strong small {
  color: #8b7a71;
  font-size: 0.7rem;
  font-weight: 650;
}

.set-demo-row b {
  display: grid;
  width: 32px;
  height: 32px;
  margin-inline: auto;
  place-items: center;
  border-radius: 9px;
  background: #2f6a4f;
  color: white;
}

.set-demo-header {
  min-height: 44px;
  border-top: 0;
  background: #211b18;
  color: #d7c8bf;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.set-demo-header > span:first-child {
  color: #d7c8bf;
  font-size: 0.66rem;
}

.bento-repeat {
  min-height: 520px;
  grid-column: span 7;
}

.repeat-stack {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  min-height: 185px;
}

.repeat-stack div {
  position: absolute;
  right: 0;
  left: 0;
  padding: 22px;
  border: 1px solid #d7c9c0;
  border-radius: 16px;
  background: #fffdfa;
  box-shadow: 0 14px 28px rgb(55 34 22 / 8%);
}

.repeat-stack div:first-child {
  top: 0;
  transform: rotate(-2deg);
}

.repeat-stack div:last-child {
  top: 78px;
  transform: rotate(1.4deg);
}

.repeat-stack span,
.repeat-stack strong,
.repeat-stack small {
  display: block;
}

.repeat-stack span {
  color: #9a6a4e;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.repeat-stack strong {
  margin: 5px 0 3px;
}

.repeat-stack small {
  color: #7a6960;
}

.bento-private {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  grid-column: span 5;
  background: #5b3a29;
}

.bento-private .feature-index,
.bento-private a {
  color: #e2b993;
}

.bento-private h3 {
  margin-top: auto;
  color: #fff9f2;
}

.bento-private p {
  color: #d8c7bc;
}

.bento-private a {
  margin-top: 14px;
  font-weight: 750;
}

.privacy-lock {
  position: absolute;
  top: 84px;
  left: 50%;
  width: 160px;
  height: 160px;
  border: 1px solid rgb(255 249 242 / 25%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.privacy-lock::before,
.privacy-lock::after {
  position: absolute;
  border: 1px solid rgb(255 249 242 / 13%);
  border-radius: 50%;
  content: '';
}

.privacy-lock::before {
  inset: -28px;
}

.privacy-lock::after {
  inset: -56px;
}

.privacy-lock span {
  position: absolute;
  top: 45px;
  left: 47px;
  width: 66px;
  height: 60px;
  border: 7px solid #fff9f2;
  border-radius: 12px;
}

.privacy-lock span::before {
  position: absolute;
  top: -43px;
  left: 8px;
  width: 36px;
  height: 40px;
  border: 7px solid #fff9f2;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  content: '';
}

.progress-section {
  background: #e8eeea;
}

.progress-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
}

.progress-copy h2,
.share-section h2 {
  color: #17241e;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.progress-copy .lede {
  color: #53675d;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-top: 1px solid rgb(23 36 30 / 13%);
  color: #53675d;
}

.check-list li::before {
  position: absolute;
  left: 3px;
  color: #2f6a4f;
  content: '✓';
  font-weight: 900;
}

.stats-board {
  padding: 24px;
  border: 1px solid #cbd7d0;
  border-radius: 28px;
  background: #f8fbf9;
  color: #17241e;
  box-shadow: 0 30px 70px rgb(23 50 37 / 13%);
}

.stats-board-head,
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats-board small,
.stats-board strong {
  display: block;
}

.stats-board small {
  color: #687a70;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.stats-board-head strong {
  font-size: 1.3rem;
}

.stats-board-head > span {
  padding: 8px 11px;
  border: 1px solid #d0dbd5;
  border-radius: 9px;
  color: #53675d;
  font-size: 0.72rem;
  font-weight: 750;
}

.stat-metric-grid {
  display: grid;
  margin-block: 18px;
  gap: 10px;
  grid-template-columns: 0.75fr 1.25fr;
}

.stat-metric-grid > div {
  padding: 16px;
  border: 1px solid #dbe4df;
  border-radius: 14px;
  background: white;
}

.stat-metric-grid strong {
  margin: 8px 0 4px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.05em;
}

.stat-metric-grid strong i {
  font-size: 0.8rem;
  font-style: normal;
}

.stat-metric-grid span {
  color: #607269;
  font-size: 0.68rem;
}

.chart-card {
  padding: 18px;
  border: 1px solid #dbe4df;
  border-radius: 16px;
  background: white;
}

.chart-head strong {
  font-size: 0.98rem;
}

.chart-head > span {
  color: #6a7b72;
  font-size: 0.7rem;
}

.bar-chart {
  display: flex;
  height: 155px;
  margin-top: 22px;
  align-items: end;
  gap: 9px;
  border-bottom: 1px solid #d6e0da;
  background: repeating-linear-gradient(to bottom, #eef3f0 0 1px, transparent 1px 50px);
}

.bar-chart span {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: #89aa98;
}

.bar-chart span:nth-child(4n) {
  background: #2f6a4f;
}

.bar-1 {
  height: 40%;
}
.bar-2 {
  height: 56%;
}
.bar-3 {
  height: 49%;
}
.bar-4 {
  height: 72%;
}
.bar-5 {
  height: 61%;
}
.bar-6 {
  height: 79%;
}
.bar-7 {
  height: 70%;
}
.bar-8 {
  height: 94%;
}

.chart-axis {
  display: flex;
  margin-top: 7px;
  justify-content: space-around;
  color: #718279;
  font-size: 0.62rem;
}

.calendar-row {
  display: grid;
  margin-top: 14px;
  align-items: center;
  gap: 8px;
  grid-template-columns: 22px repeat(7, 1fr);
}

.calendar-row span {
  color: #66786f;
  font-size: 0.65rem;
  font-weight: 800;
}

.calendar-row i {
  aspect-ratio: 1;
  border: 1px solid #d4dfd8;
  border-radius: 5px;
  background: white;
}

.calendar-row .trained {
  border-color: #75a089;
  background: #75a089;
}

.share-section {
  background: #211b18;
  color: #fff9f2;
}

.share-section h2 {
  color: #fff9f2;
}

.share-section .lede,
.share-section .check-list li {
  color: #c8bab2;
}

.share-section .check-list li {
  border-color: rgb(255 249 242 / 12%);
}

.share-section .check-list li::before,
.share-section .eyebrow {
  color: #d7a77e;
}

.share-stage {
  position: relative;
  width: min(100%, 410px);
  margin-inline: auto;
  padding: 20px 20px 40px;
  border: 1px solid rgb(255 249 242 / 13%);
  border-radius: 30px;
  background: #2a231f;
  transform: rotate(-2deg);
}

.share-card-new {
  display: flex;
  aspect-ratio: 4 / 5;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 15%, rgb(215 167 126 / 36%), transparent 32%),
    linear-gradient(145deg, #6b4532, #3d291f 70%);
  color: #fff9f2;
  box-shadow: 0 28px 60px rgb(0 0 0 / 28%);
}

.share-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.share-brand img {
  border-radius: 11px;
}

.share-card-new p {
  margin-bottom: 8px;
  color: #e3b991;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.share-card-new h3 {
  margin-bottom: 5px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.065em;
}

.share-card-new > div > small {
  color: #d8c8be;
  font-size: 0.68rem;
}

.share-numbers {
  display: grid;
  gap: 9px;
  grid-template-columns: 1.35fr 0.65fr;
}

.share-numbers p {
  margin: 0;
  padding: 13px;
  border: 1px solid rgb(255 249 242 / 22%);
  border-radius: 12px;
  background: rgb(20 12 8 / 12%);
}

.share-numbers span,
.share-numbers strong {
  display: block;
}

.share-numbers strong {
  margin-top: 4px;
  color: #fff9f2;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.share-numbers strong small {
  font-size: 0.62rem;
}

.share-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d8c8be;
  font-size: 0.62rem;
}

.share-footer strong {
  color: #e3b991;
}

.share-format-tag {
  position: absolute;
  bottom: 10px;
  left: 50%;
  color: #998b83;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.launch-section {
  border: 0 !important;
  background: #f4eee8;
}

.launch-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 94px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, rgb(215 167 126 / 25%), transparent 28rem), #5b3a29;
  color: #fff9f2;
  text-align: center;
}

.launch-mark {
  position: absolute;
  top: 42px;
  right: 48px;
  opacity: 0.2;
  transform: rotate(9deg);
}

.launch-mark img {
  border-radius: 20px;
}

.launch-panel .eyebrow {
  color: #e3b991;
}

.launch-panel .eyebrow::before {
  background: #e3b991;
}

.launch-panel h2 {
  max-width: 820px;
  margin: 0 auto 20px;
  color: #fff9f2;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 830;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.launch-panel > p:not(.eyebrow) {
  color: #d8c7bc;
  font-size: 1.12rem;
}

.launch-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.store-button-light {
  border-color: #fff9f2;
  background: #fff9f2;
  color: #211b18;
  text-align: left;
}

.launch-actions > a {
  color: #fff9f2;
  font-weight: 750;
}

.launch-actions > .store-button-light {
  color: #211b18;
}

.launch-actions > .store-button-light:hover {
  color: #fff9f2;
}

.home-footer {
  border-color: rgb(91 58 41 / 15%);
  background: #f4eee8;
}

.home-footer .footer-inner {
  grid-template-columns: 1fr auto 1fr;
}

.home-footer .footer-copy {
  margin: 0;
  text-align: center;
}

.home-footer .footer-links {
  justify-content: flex-end;
}

@media (max-width: 1040px) {
  .launch-hero-grid,
  .watch-grid,
  .progress-grid {
    grid-template-columns: 1fr;
  }

  .launch-copy {
    max-width: 760px;
  }

  .watch-grid {
    min-height: auto;
  }

  .watch-copy {
    max-width: 760px;
  }

  .hero-product {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .watch-product {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .progress-copy {
    max-width: 680px;
  }

  .stats-board {
    width: min(100%, 720px);
  }
}

@media (max-width: 780px) {
  .nav-release {
    display: none;
  }

  .trust-grid,
  .showcase-heading,
  .bento-log {
    grid-template-columns: 1fr;
  }

  .trust-grid p,
  .trust-grid p:first-child,
  .trust-grid p:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 249 242 / 14%);
  }

  .trust-grid p:last-child {
    border-bottom: 0;
  }

  .showcase-heading .eyebrow {
    grid-column: auto;
  }

  .bento-log {
    padding-bottom: 26px;
  }

  .bento-repeat,
  .bento-private {
    grid-column: span 12;
  }

  .watch-sync-saved {
    left: 3%;
  }

  .watch-sync-private {
    right: 3%;
  }

  .home-footer .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .home-footer .footer-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .home-header .brand span {
    display: inline;
  }

  .home-header .nav-list li:first-child {
    display: none;
  }

  .home-header .nav-list a {
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .launch-hero-grid {
    min-height: auto;
    padding-block: 54px 70px;
  }

  .launch-copy h1 {
    font-size: clamp(3.55rem, 18vw, 5.6rem);
  }

  .launch-copy .hero-actions {
    align-items: stretch;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .hero-product {
    min-height: 620px;
  }

  .phone-shell {
    width: 294px;
    height: 590px;
  }

  .phone-screen {
    padding-inline: 10px;
  }

  .phone-action,
  .tile-planned {
    display: none;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
  }

  .orbit-two {
    width: 340px;
    height: 340px;
  }

  .floating-volume {
    top: 23%;
    left: -2%;
    min-width: 132px;
  }

  .floating-private {
    right: -3%;
    bottom: 11%;
  }

  .floating-private small {
    display: none;
  }

  .watch-product {
    min-height: 570px;
  }

  .watch-halo {
    width: 440px;
    height: 440px;
  }

  .watch-device {
    transform: translate(-50%, -50%) rotate(2deg) scale(0.82);
  }

  .watch-sync-card {
    min-width: 176px;
    padding: 11px 13px;
  }

  .watch-sync-saved {
    top: 7%;
    left: 0;
  }

  .watch-sync-private {
    right: 0;
    bottom: 7%;
  }

  .bento-card,
  .launch-panel {
    border-radius: 20px;
  }

  .feature-index {
    margin-bottom: 34px;
  }

  .bento-log {
    min-height: auto;
  }

  .set-demo-row {
    min-height: 60px;
    padding-inline: 10px;
    gap: 5px;
  }

  .bento-repeat,
  .bento-private {
    min-height: 500px;
  }

  .repeat-stack {
    right: 20px;
    bottom: 28px;
    left: 20px;
  }

  .stat-metric-grid {
    grid-template-columns: 1fr;
  }

  .stats-board {
    padding: 14px;
    border-radius: 20px;
  }

  .bar-chart {
    height: 120px;
    gap: 6px;
  }

  .share-card-new {
    padding: 22px;
  }

  .launch-mark {
    display: none;
  }

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

  .home-footer .footer-inner {
    grid-template-columns: 1fr;
  }

  .home-footer .footer-copy {
    grid-column: auto;
  }

  .home-footer .footer-links {
    margin-left: -10px;
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .watch-product {
    min-height: 510px;
  }

  .watch-halo {
    width: 350px;
    height: 350px;
  }

  .watch-device {
    transform: translate(-50%, -50%) rotate(2deg) scale(0.68);
  }

  .watch-sync-card {
    min-width: 164px;
  }

  .watch-sync-saved {
    top: 4%;
  }

  .watch-sync-private {
    bottom: 4%;
  }
}

@media (prefers-color-scheme: dark) {
  .home-page,
  .home-footer,
  .launch-hero {
    background-color: #151210;
    color: #fff8f2;
  }

  .home-header {
    border-color: rgb(255 248 242 / 11%);
    background: rgb(21 18 16 / 88%);
  }

  .launch-hero {
    background:
      radial-gradient(circle at 9% 8%, rgb(183 120 81 / 22%), transparent 25rem),
      radial-gradient(circle at 91% 64%, rgb(215 167 126 / 14%), transparent 27rem), #151210;
  }

  .launch-copy h1,
  .home-header .brand,
  .home-footer .brand {
    color: #fff8f2;
  }

  .launch-copy h1 span,
  .home-page .eyebrow {
    color: #d7a77e;
  }

  .launch-copy .lede,
  .home-header .nav-list a,
  .home-footer .footer-copy,
  .home-footer .footer-links a {
    color: #c9bbb1;
  }

  .button-quiet,
  .home-page .proof-list li {
    border-color: rgb(255 248 242 / 16%);
    background: rgb(255 255 255 / 5%);
    color: #e7ddd6;
  }

  .hero-watermark {
    color: rgb(255 248 242 / 5%);
  }

  .orbit {
    border-color: rgb(255 248 242 / 11%);
  }

  .feature-showcase {
    background: #1b1816;
  }

  .showcase-heading h2,
  .bento-card h3 {
    color: #fff8f2;
  }

  .showcase-heading > p:last-child,
  .bento-card p {
    color: #b9aba2;
  }

  .bento-card {
    border-color: #3c332e;
    background: #24201d;
  }

  .set-demo,
  .repeat-stack div {
    border-color: #4a3d35;
    background: #181513;
    color: #fff8f2;
  }

  .set-demo-row {
    border-color: #3a312c;
  }

  .set-demo-header {
    background: #5b3a29;
  }

  .bento-private {
    background: #5b3a29;
  }

  .launch-section {
    background: #151210;
  }

  .home-footer {
    border-color: rgb(255 248 242 / 11%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-shell,
  .share-stage,
  .repeat-stack div {
    transform: none;
  }

  .phone-shell {
    transform: translate(-50%, -50%);
  }
}
