:root {
  color-scheme: dark;
  --black: #050505;
  --surface: #151515;
  --raised: #1d1d1d;
  --line: #2b2b2b;
  --gold: #e2b84f;
  --gold-strong: #f0c95f;
  --green: #62c77b;
  --white: #f7f7f5;
  --muted: #a0a09c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: #000;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
}

.brand img {
  border-radius: 8px;
}

.brand-words {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.brand-words b {
  color: var(--gold);
  font-size: 19px;
}

.site-header nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.web-app-link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.header-cta svg {
  width: 17px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  min-height: calc(100svh - 36px);
  max-height: 940px;
  padding: 116px max(32px, calc((100vw - var(--max)) / 2)) 54px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  right: 0;
  top: 76px;
  bottom: 0;
  width: 44%;
  background: #0d0d0d;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 670px;
  padding-right: 40px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 26px;
  font-size: 104px;
  font-weight: 900;
  line-height: 0.9;
}

h1 span {
  color: var(--gold);
}

h2 {
  margin-bottom: 22px;
  font-size: 50px;
  font-weight: 850;
  line-height: 1.04;
}

h3 {
  font-size: 22px;
}

.hero-statement {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-statement strong {
  color: var(--gold);
}

.hero-body,
.section-heading > p:last-child,
.product-copy > p,
.reset-inner > div > p:last-child,
.conviction-copy > p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.primary-button,
.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  min-height: 58px;
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  background: var(--gold);
  color: #050505;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.05;
}

.primary-button:hover,
.primary-button:focus-visible,
.store-button:hover,
.store-button:focus-visible {
  background: var(--gold-strong);
}

.primary-button small,
.store-button small {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 600;
}

.primary-button svg,
.store-button svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
}

.store-button {
  background: transparent;
  color: var(--white);
  border-color: #4a4a47;
}

.store-button:hover,
.store-button:focus-visible {
  color: var(--gold);
  background: #111;
  border-color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.text-link svg {
  width: 17px;
}

.hero-product {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(370px, 100%);
  margin: 42px 0 0;
}

.phone-shell {
  position: relative;
  height: min(720px, calc(100svh - 148px));
  overflow: hidden;
  border: 7px solid #252525;
  border-radius: 48px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.phone-shell::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 84px;
  height: 22px;
  border-radius: 99px;
  background: #050505;
  content: "";
  transform: translateX(-50%);
}

.phone-shell img {
  width: 100%;
  height: auto;
}

.hero-product figcaption {
  margin-top: 13px;
  color: #777773;
  font-size: 11px;
  text-align: center;
}

.rhythm-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 68px;
  padding: 14px 24px;
  overflow: hidden;
  background: var(--gold);
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.rhythm-strip svg {
  width: 6px;
  height: 6px;
  fill: currentColor;
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
}

.rhythm-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(440px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 116px;
}

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

.practice-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(160px, 0.7fr);
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.practice-list li > span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.practice-list strong {
  font-size: 17px;
}

.practice-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(380px, 1.2fr);
  gap: 110px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.product-shot {
  height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.product-shot img {
  width: 100%;
  height: auto;
  transform: translateY(-80px);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: #d6d6d2;
  font-size: 15px;
  line-height: 1.5;
}

.feature-list svg {
  width: 20px;
  color: var(--green);
}

.reset-band {
  padding: 100px 32px;
  border-top: 1px solid #3d3218;
  border-bottom: 1px solid #3d3218;
  background: #17140c;
}

.reset-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: center;
  width: min(950px, 100%);
  margin: 0 auto;
}

.reset-mark {
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.reset-mark span {
  color: var(--gold);
  font-size: 108px;
  font-weight: 900;
}

.conviction-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.conviction-line {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 800;
}

blockquote {
  margin: 0;
  padding: 34px 0 0 34px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}

blockquote p {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

blockquote cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

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

.support-section .section-heading {
  position: static;
  max-width: 720px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  margin-top: 54px;
}

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

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

summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-panel {
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-panel > svg {
  width: 28px;
  color: var(--gold);
}

.contact-panel h3 {
  margin: 24px 0 12px;
}

.contact-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-panel a {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  word-break: break-word;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto 90px;
  padding: 42px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #0c0b08;
}

.final-cta > img {
  border-radius: 8px;
}

.final-cta h2 {
  margin: 0;
  font-size: 32px;
}

.final-cta .eyebrow {
  margin-bottom: 9px;
}

.final-actions {
  display: flex;
  gap: 10px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 100px;
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  color: #777773;
  font-size: 12px;
}

footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.legal-page {
  min-height: 100svh;
  padding: 124px 24px 80px;
}

.legal-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1;
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-action {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 7px;
  background: var(--gold);
  color: #050505 !important;
  font-weight: 800;
  text-decoration: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 310px;
    min-height: 760px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero::after {
    width: 38%;
  }

  h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-statement {
    font-size: 23px;
  }

  .rhythm-section,
  .product-section,
  .conviction-section {
    gap: 58px;
  }

  .reset-inner {
    grid-template-columns: 160px 1fr;
    gap: 46px;
  }

  .reset-mark {
    width: 160px;
    height: 160px;
  }

  .reset-mark span {
    font-size: 82px;
  }
}

@media (max-width: 720px) {
  body::before {
    display: none;
  }

  .site-header {
    height: 66px;
  }

  .header-cta {
    width: 42px;
    padding: 0;
  }

  .web-app-link {
    font-size: 10px;
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero {
    display: block;
    min-height: calc(100svh - 18px);
    max-height: none;
    padding: 116px 20px 40px;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 37%;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 66px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-statement {
    font-size: 21px;
  }

  .hero-body {
    max-width: 92%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 18px;
  }

  .text-link {
    display: none;
  }

  .hero-product {
    position: absolute;
    right: 20px;
    bottom: -245px;
    z-index: 2;
    width: 205px;
  }

  .phone-shell {
    height: 430px;
    border-width: 4px;
    border-radius: 29px;
  }

  .phone-shell::before {
    top: 6px;
    width: 54px;
    height: 14px;
  }

  .hero-product figcaption {
    display: none;
  }

  .rhythm-strip {
    justify-content: flex-start;
    min-height: 62px;
    padding-left: 20px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 84px 0;
  }

  .legal-page {
    padding-top: 104px;
  }

  .legal-content h1 {
    font-size: 40px;
  }

  .rhythm-section,
  .product-section,
  .conviction-section,
  .support-grid,
  .reset-inner {
    grid-template-columns: 1fr;
  }

  .rhythm-section,
  .product-section,
  .conviction-section {
    gap: 44px;
  }

  .section-heading {
    position: static;
  }

  .practice-list li {
    grid-template-columns: 45px 1fr;
    min-height: 76px;
  }

  .practice-list p {
    grid-column: 2;
    margin-top: 4px;
  }

  .product-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-shot {
    width: 100%;
    height: 500px;
  }

  .reset-band {
    padding: 76px 20px;
  }

  .reset-inner {
    gap: 34px;
  }

  .reset-mark {
    width: 130px;
    height: 130px;
  }

  .reset-mark span {
    font-size: 68px;
  }

  blockquote {
    padding: 28px 0 0 24px;
  }

  blockquote p {
    font-size: 23px;
  }

  .support-grid {
    gap: 40px;
  }

  .final-cta {
    grid-template-columns: 64px 1fr;
    width: calc(100% - 40px);
    margin-bottom: 60px;
    padding: 25px;
  }

  .final-cta > img {
    width: 64px;
    height: 64px;
  }

  .final-cta .primary-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: start;
    padding: 32px 20px;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 100px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-statement {
    font-size: 19px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .primary-button {
    min-width: 176px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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