:root {
  --background: #101713;
  --background-deep: #0b100d;
  --surface: #16211b;
  --cream: #f1eddf;
  --text: #efede4;
  --muted: #a1aaa1;
  --gold: #d8be86;
  --line: rgba(223,218,196,.14);
  --serif: Georgia,"Times New Roman",serif;
  --sans: "Inter var",Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

body:has(dialog[open]) {
  overflow: hidden
}

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

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

button {
  font: inherit
}

button,
summary {
  cursor: pointer
}

button {
  color: inherit
}

img,
svg {
  display: block
}

img {
  max-width: 100%
}

h1,
h2,
h3,
p,
figure {
  margin: 0
}

h1,
h2,
h3 {
  line-height: 1.1
}

h1,
h2 {
  font-weight: 500;
  letter-spacing: -.065em
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em
}

h2 {
  font-size: clamp(38px,4.2vw,60px)
}

h3 {
  font-weight: 500;
  letter-spacing: -.035em
}

.container {
  width: min(1240px,calc(100% - 112px));
  margin-inline: auto
}

.section-space {
  padding: 108px 0
}

.eyebrow {
  font-size: 10px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 24px
}

.small-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 13px
}

.muted,
.section-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8
}

.section-description {
  max-width: 355px
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  font-weight: 550;
  transition: color .2s
}

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

.button {
  display: inline-flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  min-height: 54px;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 650;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: background .2s,transform .2s,box-shadow .2s
}

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

.button-gold {
  color: #1b251e;
  background: #dbc38d;
  box-shadow: inset 0 1px rgba(255,255,255,.22),0 5px 24px rgba(0,0,0,.1)
}

.button-gold:hover {
  background: #ead4a3;
  box-shadow: 0 8px 30px rgba(216,190,134,.12)
}

.button-dark {
  color: var(--cream);
  background: #183427
}

.button-dark:hover {
  background: #254935
}

.button-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px
}

.steps-section a:focus-visible {
  outline-color: #183427
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  background: var(--cream);
  color: #101713;
  padding: 12px 20px;
  transform: translateY(-150%)
}

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

.js-only {
  display: none!important
}

html.js .js-only {
  display: flex!important
}

.site-header {
  height: 88px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 31px;
  font-weight: 750;
  letter-spacing: -.075em;
  line-height: 1
}

.brand-symbol {
  font-family: var(--serif);
  font-size: 33px;
  color: var(--gold);
  margin-right: 10px;
  letter-spacing: 0;
  line-height: 1
}

.brand-dot {
  color: var(--gold)
}

.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: 65px
}

.desktop-nav a {
  font-size: 12px;
  color: #b5bcb2;
  transition: color .2s
}

.desktop-nav a:hover {
  color: var(--cream)
}

.header-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(216,190,134,.4);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--gold);
  transition: background .2s
}

.header-cta:hover {
  background: rgba(216,190,134,.08)
}

.header-cta span {
  font-size: 20px;
  line-height: 1
}

.mobile-nav {
  display: none
}

.hero {
  padding: 75px 0 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 75%,rgba(36,77,51,.14),transparent 65%)
}

.hero-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 55px;
  align-items: center
}

.hero .eyebrow {
  margin-bottom: 24px
}

.hero h1 {
  font-size: clamp(63px,6.65vw,96px);
  line-height: 1.02;
  white-space: nowrap
}

.hero h1 em {
  color: var(--cream)
}

.hero-copy {
  padding: 18px 0 0 22px;
  max-width: 350px;
  margin-left: auto
}

.hero-description {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 450;
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.hero-copy .muted {
  font-size: 13px;
  max-width: 310px;
  line-height: 1.75;
  margin-bottom: 25px
}

.hero-copy .button {
  width: 100%
}

.hero-secondary {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  color: #c4c7ba
}

.hero-note {
  text-align: center;
  color: #7d8a7d;
  font-size: 10px;
  letter-spacing: .015em;
  margin-top: 13px
}

.hero-note span {
  padding-inline: 7px
}

.table-showcase {
  position: relative;
  margin-top: 52px;
  scroll-margin-top: 34px
}

.showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: #c1c6b7;
  font-size: 9px;
  font-weight: 550;
  letter-spacing: .15em
}

.showcase-head p {
  display: flex;
  align-items: center;
  gap: 8px
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(216,190,134,.35)
}

.showcase-edition {
  color: #758272;
  font-size: 8px
}

.device-scene {
  position: relative;
  padding: 0 98px 28px 0;
  isolation: isolate
}

.scene-glow {
  position: absolute;
  inset: 8% -4% -5% -4%;
  background: radial-gradient(ellipse,rgba(30,83,53,.35),transparent 70%);
  filter: blur(35px);
  z-index: -1
}

.desktop-device {
  border: 1px solid #485043;
  border-radius: 10px;
  padding: 5px;
  background: #202820;
  box-shadow: 0 40px 70px -25px #0009,0 2px 12px #0006;
  overflow: hidden
}

.browser-chrome {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px 5px;
  color: #8b9487;
  gap: 12px
}

.browser-dots {
  display: flex;
  gap: 5px;
  width: 100px
}

.browser-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #596050
}

.browser-dots i:first-child {
  background: #847458
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  letter-spacing: .04em
}

.browser-address svg {
  width: 11px;
  height: 11px
}

.chrome-label {
  font-size: 7px;
  letter-spacing: .15em;
  width: 100px;
  text-align: right
}

.screenshot-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: #0b100f
}

.desktop-screen {
  border-radius: 4px
}

.screenshot-link:focus-visible {
  outline-offset: -3px
}

.screenshot-link img {
  display: block;
  width: 100%;
  height: auto
}

.image-expand {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #ffffff25;
  background: #0d1910d9;
  padding: 9px 13px;
  border-radius: 4px;
  font-size: 10px;
  color: var(--cream);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s,transform .2s
}

.image-expand svg {
  width: 15px;
  height: 15px
}

.screenshot-link:hover .image-expand,
.screenshot-link:focus-visible .image-expand {
  opacity: 1;
  transform: translateY(0)
}

.mobile-device {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 21%;
  max-width: 248px;
  padding: 7px;
  border: 1px solid #777c67;
  border-radius: 27px;
  background: #151b16;
  box-shadow: 0 20px 50px #0008,0 0 0 4px rgba(7,10,8,.45);
  transform: rotate(3deg);
  z-index: 2
}

.mobile-device:before {
  content: "";
  position: absolute;
  left: -3px;
  top: 90px;
  height: 26px;
  width: 2px;
  background: #6c705e;
  border-radius: 2px
}

.mobile-device:after {
  content: "";
  position: absolute;
  right: -3px;
  top: 110px;
  height: 38px;
  width: 2px;
  background: #6c705e;
  border-radius: 2px
}

.mobile-screen {
  border-radius: 20px
}

.mobile-callout {
  position: absolute;
  top: 30px;
  right: -14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #a7b29e;
  font-size: 8px;
  letter-spacing: .13em;
  transform: rotate(8deg)
}

.mobile-callout svg {
  width: 55px;
  height: 28px;
  transform: rotate(24deg)
}

.showcase-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 5px;
  min-height: 54px
}

.showcase-foot>p {
  font-size: 10px;
  color: #879481;
  letter-spacing: .015em;
  margin-right: auto
}

.table-selector {
  gap: 3px;
  padding: 3px;
  background: #1a231a;
  border: 1px solid #ffffff12;
  border-radius: 6px;
  flex: none
}

.table-selector button {
  border: 0;
  background: transparent;
  color: #a1ac9a;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 550;
  line-height: 1.5;
  min-height: 30px;
  transition: background .2s,color .2s
}

.table-selector button[aria-pressed=true] {
  background: #d4c196;
  color: #1b281f;
  box-shadow: 0 1px 3px #0003
}

.showcase-fullscreen {
  font-size: 10px;
  color: #b4bbaa;
  gap: 12px;
  white-space: nowrap
}

.hero-traits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 88px;
  padding: 42px 0 37px;
  border-bottom: 1px solid var(--line);
  color: #a8b19f
}

.hero-traits>span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .01em
}

.hero-traits svg {
  width: 20px;
  height: 20px;
  color: #a8b493
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px
}

.club-heading .section-description {
  padding-bottom: 4px;
  max-width: 340px
}

.club-benefits {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 62px
}

.benefit {
  padding: 0 40px;
  border-left: 1px solid var(--line)
}

.benefit:first-child {
  padding-left: 0;
  border-left: 0
}

.benefit:last-child {
  padding-right: 0
}

.benefit-number {
  display: block;
  font-size: 8px;
  letter-spacing: .14em;
  font-weight: 550;
  color: #788575
}

.benefit-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin: 25px 0
}

.benefit-icon svg {
  width: 100%;
  height: 100%
}

.benefit h3 {
  font-size: 24px;
  margin-bottom: 14px
}

.benefit p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  max-width: 315px
}

.formats-section {
  border-top: 1px solid var(--line);
  background: #131d16
}

.formats-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center
}

.formats-intro .section-description {
  font-size: 13px;
  margin-top: 25px
}

.format-note {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 8px;
  letter-spacing: .14em;
  color: #8f9e86;
  margin-top: 29px
}

.format-note>span {
  color: var(--gold);
  font-size: 21px;
  line-height: 1
}

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

.format-row {
  display: grid;
  grid-template-columns: 55px 1fr 20px;
  gap: 15px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line)
}

.format-mark {
  width: 46px;
  height: 58px;
  border: 1px solid #9b96684d;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
  transform: rotate(-8deg);
  background: linear-gradient(140deg,#293326,#18251b)
}

.format-row:nth-child(2) .format-mark {
  transform: rotate(8deg)
}

.format-label {
  font-size: 8px;
  letter-spacing: .16em;
  color: #9eaa94;
  display: block;
  margin-bottom: 8px
}

.format-row h3 {
  font-size: 28px;
  margin-bottom: 12px
}

.format-row p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 330px
}

.format-index {
  font-family: var(--serif);
  font-size: 17px;
  color: #64715d;
  font-style: italic
}

.steps-section {
  background: var(--cream);
  color: #183025;
  position: relative;
  overflow: hidden
}

.steps-section .eyebrow {
  color: #64725b
}

.steps-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px
}

.steps-heading .button {
  margin-bottom: 4px;
  min-width: 236px
}

.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 55px;
  margin: 62px 0 0;
  padding: 0
}

.steps-list li {
  border-top: 1px solid #18302535;
  padding-top: 24px
}

.step-number {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  font-style: italic;
  color: #899080;
  margin-bottom: 32px;
  letter-spacing: -.05em
}

.steps-list h3 {
  font-size: 22px;
  margin-bottom: 14px
}

.steps-list p {
  font-size: 13px;
  line-height: 1.8;
  color: #63705e;
  max-width: 310px
}

.steps-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #18302525;
  margin-top: 58px;
  padding-top: 20px;
  gap: 20px;
  color: #78816c
}

.steps-bottom>span:first-child {
  font-size: 8px;
  letter-spacing: .16em
}

.steps-bottom>span:last-child {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
  letter-spacing: .15em
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px
}

.faq-aside {
  font-size: 12px;
  line-height: 1.8;
  color: #83917e;
  margin-top: 28px
}

.faq-aside a {
  margin-top: 6px;
  color: #c3cab8
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  list-style: none;
  padding: 26px 0;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: -.02em
}

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

.faq-plus {
  position: relative;
  width: 15px;
  height: 15px;
  flex: none
}

.faq-plus:before,
.faq-plus:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 1px;
  width: 13px;
  height: 1px;
  background: var(--gold);
  transition: transform .2s
}

.faq-plus:after {
  transform: rotate(90deg)
}

.faq-list details[open] .faq-plus:after {
  transform: rotate(0)
}

.faq-list details[open] summary {
  color: var(--gold)
}

.faq-list details>div {
  padding: 0 34px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85
}

.final-section {
  padding: 0 0 95px;
  overflow: hidden
}

.final-inner {
  position: relative;
  text-align: center;
  border: 1px solid #88937330;
  background: radial-gradient(ellipse at 50% 110%,#264d325e,transparent 70%),#152219;
  padding: 60px 24px 64px;
  border-radius: 4px;
  isolation: isolate
}

.final-inner:before,
.final-inner:after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid #cfbd8230;
  border-radius: 2px;
  z-index: -1;
  pointer-events: none
}

.final-inner:after {
  inset: 15px;
  border-color: #cfbd8212
}

.final-ornament {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-family: var(--serif);
  font-size: 25px;
  color: var(--gold);
  margin-bottom: 23px;
  line-height: 1
}

.final-ornament span {
  width: 40px;
  height: 1px;
  background: #ccbb7b45
}

.final-inner .eyebrow {
  font-size: 8px;
  margin-bottom: 25px
}

.final-inner h2 {
  font-size: clamp(45px,5.1vw,74px);
  line-height: 1.04;
  letter-spacing: -.05em
}

.final-inner h2 em {
  display: inline-block;
  margin-top: 5px;
  color: #e3cf9f;
  letter-spacing: -.045em
}

.final-inner .button {
  margin-top: 34px;
  min-width: 263px
}

.final-note {
  color: #84927d;
  font-size: 10px;
  margin-top: 16px
}

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

.footer-top {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 30px
}

.footer-top .brand {
  font-size: 25px
}

.footer-top .brand-symbol {
  font-size: 27px;
  margin-right: 8px
}

.footer-top>p {
  font-size: 11px;
  color: #81917b
}

.footer-top nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 11px;
  color: #a0aa95
}

.footer-top nav a:hover {
  color: var(--gold)
}

.footer-bottom {
  padding-top: 21px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #788570;
  font-size: 9px
}

.footer-bottom p:last-child {
  display: flex;
  align-items: center;
  gap: 10px
}

.age-badge {
  border: 1px solid #7c886851;
  border-radius: 3px;
  padding: 2px 5px;
  font-size: 8px
}

.screenshot-dialog {
  max-width: min(1500px,calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 1px solid #697557;
  border-radius: 10px;
  background: #101713;
  color: var(--cream);
  box-shadow: 0 35px 120px #000a;
  width: fit-content
}

.screenshot-dialog::backdrop {
  background: rgba(4,9,6,.88);
  backdrop-filter: blur(9px)
}

.dialog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  gap: 30px
}

.dialog-toolbar h2 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0
}

.dialog-close {
  background: transparent;
  border: 1px solid #ffffff26;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px 6px 12px;
  font-size: 11px;
  min-height: 36px
}

.dialog-close svg {
  width: 19px;
  height: 19px
}

.dialog-close:hover {
  background: #ffffff0a
}

.dialog-image-wrap {
  display: flex;
  justify-content: center;
  overflow: auto
}

.dialog-image-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 175px);
  object-fit: contain
}

.screenshot-dialog[data-device=mobile] {
  max-width: min(420px,calc(100vw - 32px))
}

.dialog-caption {
  padding: 11px 18px;
  font-size: 10px;
  color: #96a18a
}

.hero-heading,
.hero-copy {
  animation: arrive .7s ease-out both
}

.hero-copy {
  animation-delay: .1s
}

.table-showcase {
  animation: arrive .85s .15s ease-out both
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

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

}

@media(min-width:1600px) {
  .container {
    width: min(1320px,calc(100% - 144px))
  }

  .hero {
    padding-top: 88px
  }

  .hero h1 {
    font-size: 103px
  }

  .hero-copy {
    max-width: 360px
  }

  .device-scene {
    padding-right: 110px
  }

  .mobile-device {
    max-width: 262px
  }

}

@media(max-width:1150px) {
  .container {
    width: calc(100% - 72px)
  }

  .desktop-nav {
    gap: 23px;
    margin-left: 0
  }

  .hero-intro {
    grid-template-columns: 1.5fr 1fr;
    gap: 20px
  }

  .hero h1 {
    font-size: 7.05vw
  }

  .hero-copy {
    padding-left: 10px;
    max-width: 320px
  }

  .hero-description {
    font-size: 17px
  }

  .hero-copy .muted {
    font-size: 12px
  }

  .device-scene {
    padding-right: 82px
  }

  .mobile-callout {
    right: -13px;
    top: 15px;
    font-size: 7px
  }

  .hero-traits {
    gap: 50px
  }

  .section-space {
    padding: 85px 0
  }

  .formats-layout,
  .faq-layout {
    gap: 55px
  }

  .benefit {
    padding: 0 27px
  }

  .benefit h3 {
    font-size: 22px
  }

  .section-heading {
    gap: 35px
  }

  .section-heading .section-description {
    font-size: 13px;
    max-width: 295px
  }

  .steps-list {
    gap: 32px
  }

  .steps-list h3 {
    font-size: 20px
  }

  .steps-list p {
    font-size: 12px
  }

}

@media(max-width:850px) {
  .container {
    width: calc(100% - 48px)
  }

  .site-header {
    height: 76px
  }

  .brand {
    font-size: 28px
  }

  .brand-symbol {
    font-size: 30px
  }

  .desktop-nav {
    gap: 18px
  }

  .desktop-nav a {
    font-size: 11px
  }

  .header-cta {
    gap: 16px;
    padding: 8px 12px;
    font-size: 11px
  }

  .hero {
    padding-top: 55px
  }

  .hero-intro {
    grid-template-columns: 1fr 1fr;
    gap: 25px
  }

  .hero h1 {
    font-size: 6.9vw;
    white-space: normal
  }

  .hero-heading .eyebrow {
    font-size: 8px;
    letter-spacing: .14em
  }

  .small-rule {
    width: 20px;
    margin-right: 8px
  }

  .hero-copy {
    padding-top: 0;
    padding-left: 0;
    max-width: 265px
  }

  .hero-description {
    font-size: 16px
  }

  .hero-copy .muted {
    margin-bottom: 17px
  }

  .hero-copy .button {
    min-height: 48px;
    font-size: 12px;
    gap: 18px;
    padding: 12px 14px
  }

  .hero-secondary {
    font-size: 10px;
    margin-top: 12px
  }

  .hero-note {
    font-size: 9px
  }

  .table-showcase {
    margin-top: 42px
  }

  .device-scene {
    padding-right: 58px;
    padding-bottom: 16px
  }

  .desktop-device {
    padding: 4px;
    border-radius: 8px
  }

  .browser-chrome {
    height: 28px
  }

  .chrome-label {
    font-size: 6px
  }

  .browser-address {
    font-size: 8px
  }

  .mobile-device {
    width: 22%;
    padding: 5px;
    border-radius: 20px
  }

  .mobile-screen {
    border-radius: 15px
  }

  .mobile-callout {
    display: none
  }

  .showcase-foot {
    gap: 18px
  }

  .showcase-foot>p {
    font-size: 9px
  }

  .showcase-foot>p span {
    display: none
  }

  .hero-traits {
    gap: 28px;
    padding: 30px 0
  }

  .hero-traits>span {
    font-size: 9px;
    gap: 7px
  }

  .hero-traits svg {
    width: 17px;
    height: 17px
  }

  .section-heading {
    align-items: flex-start
  }

  .section-heading h2 {
    font-size: 42px
  }

  .section-heading .section-description {
    max-width: 260px;
    padding-top: 42px
  }

  .benefit {
    padding: 0 20px
  }

  .benefit h3 {
    font-size: 20px
  }

  .benefit p {
    font-size: 12px
  }

  .benefit-number {
    font-size: 7px;
    letter-spacing: .11em
  }

  .formats-layout {
    grid-template-columns: .95fr 1.1fr;
    gap: 32px
  }

  .formats-intro h2 {
    font-size: 43px
  }

  .format-row {
    grid-template-columns: 41px 1fr 13px;
    gap: 12px
  }

  .format-mark {
    width: 34px;
    height: 46px;
    font-size: 24px
  }

  .format-label {
    font-size: 6px;
    letter-spacing: .1em
  }

  .format-row h3 {
    font-size: 24px
  }

  .format-row p {
    font-size: 11px
  }

  .steps-list {
    gap: 25px
  }

  .steps-list h3 {
    font-size: 18px
  }

  .steps-heading .button {
    min-width: 210px;
    font-size: 12px
  }

  .faq-layout {
    grid-template-columns: .8fr 1.2fr;
    gap: 35px
  }

  .faq-list summary {
    font-size: 13px
  }

  .footer-top {
    gap: 20px
  }

  .footer-top nav {
    gap: 22px
  }

}

@media(max-width:650px) {
  html {
    scroll-padding-top: 24px
  }

  .container {
    width: calc(100% - 40px)
  }

  .section-space {
    padding: 68px 0
  }

  .site-header {
    height: 72px
  }

  .header-inner {
    gap: 18px
  }

  .brand {
    font-size: 29px
  }

  .brand-symbol {
    font-size: 30px
  }

  .desktop-nav {
    display: none
  }

  .header-cta {
    margin-left: auto;
    min-height: 36px
  }

  .mobile-nav {
    display: block;
    position: relative
  }

  .mobile-nav summary {
    list-style: none;
    width: 24px;
    height: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none
  }

  .mobile-nav summary span {
    height: 1px;
    background: #c8cfbe;
    width: 20px;
    transition: transform .2s
  }

  .mobile-nav[open] summary span:first-child {
    transform: translateY(3.5px) rotate(45deg)
  }

  .mobile-nav[open] summary span:last-child {
    transform: translateY(-3.5px) rotate(-45deg)
  }

  .mobile-nav nav {
    position: absolute;
    right: -1px;
    top: 48px;
    width: min(300px,calc(100vw - 40px));
    padding: 12px 22px;
    border: 1px solid #62735465;
    border-radius: 6px;
    background: #162119;
    box-shadow: 0 15px 40px #0008;
    display: flex;
    flex-direction: column
  }

  .mobile-nav nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
    color: var(--gold)
  }

  .hero {
    padding-top: 43px
  }

  .hero-intro {
    display: block
  }

  .hero-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
    letter-spacing: .15em
  }

  .hero h1 {
    font-size: clamp(47px,11.8vw,75px);
    line-height: 1.02;
    white-space: nowrap;
    letter-spacing: -.065em
  }

  .hero h1 em {
    letter-spacing: -.055em
  }

  .hero-copy {
    padding: 24px 0 0;
    max-width: none;
    margin: 0
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.55
  }

  .hero-description br {
    display: none
  }

  .hero-copy .muted {
    font-size: 12px;
    max-width: 330px;
    margin-bottom: 20px;
    line-height: 1.75
  }

  .hero-copy .button {
    width: auto;
    min-width: 244px;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 12px
  }

  .hero-secondary {
    display: none
  }

  .hero-note {
    text-align: left;
    margin-top: 12px;
    font-size: 9px;
    padding-left: 1px
  }

  .table-showcase {
    margin-top: 32px
  }

  .showcase-head {
    padding: 14px 0;
    font-size: 6.6px;
    letter-spacing: .12em
  }

  .showcase-edition {
    font-size: 6px;
    letter-spacing: .06em
  }

  .showcase-head p {
    gap: 6px
  }

  .status-dot {
    width: 4px;
    height: 4px
  }

  .device-scene {
    padding: 0 19px 58px 0;
    margin-top: 2px
  }

  .desktop-device {
    border-radius: 7px;
    padding: 3px
  }

  .browser-chrome {
    height: 24px;
    padding: 0 5px 3px;
    gap: 8px
  }

  .browser-dots {
    width: 55px;
    gap: 3px
  }

  .browser-dots i {
    width: 4px;
    height: 4px
  }

  .browser-address {
    font-size: 6px;
    gap: 3px
  }

  .browser-address svg {
    width: 8px;
    height: 8px
  }

  .chrome-label {
    font-size: 4px;
    width: 55px
  }

  .desktop-screen {
    border-radius: 3px
  }

  .mobile-device {
    width: 31%;
    max-width: 161px;
    right: 0;
    bottom: 0;
    padding: 4px;
    border-radius: 17px;
    transform: rotate(3deg);
    box-shadow: 0 14px 25px #0007,0 0 0 2px #080d096e
  }

  .mobile-screen {
    border-radius: 13px
  }

  .mobile-device:before {
    top: 42px;
    height: 14px
  }

  .mobile-device:after {
    top: 53px;
    height: 20px
  }

  .image-expand {
    display: none
  }

  .showcase-foot {
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 9px 16px
  }

  .table-selector {
    padding: 2px
  }

  .table-selector button {
    font-size: 9px;
    padding: 5px 13px;
    min-height: 32px
  }

  .showcase-foot>p {
    font-size: 8px;
    margin: 0
  }

  .showcase-foot>p span {
    display: none
  }

  .showcase-fullscreen {
    font-size: 9px;
    gap: 9px;
    margin-left: auto;
    display: none
  }

  .hero-traits {
    gap: 0;
    justify-content: space-between;
    padding: 26px 0 27px
  }

  .hero-traits>span {
    font-size: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    line-height: 1.4
  }

  .hero-traits svg {
    width: 19px;
    height: 19px
  }

  .hero-traits>span:nth-child(2) {
    padding: 0 10px
  }

  .section-heading {
    display: block
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: .16em;
    margin-bottom: 20px
  }

  h2,
  .section-heading h2 {
    font-size: 43px;
    letter-spacing: -.055em
  }

  .section-heading .section-description {
    padding-top: 24px;
    max-width: 335px;
    font-size: 12px;
    line-height: 1.8
  }

  .club-benefits {
    display: block;
    margin-top: 37px
  }

  .benefit {
    position: relative;
    padding: 23px 0 25px 59px;
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .benefit:first-child {
    padding-left: 59px;
    border-top: 1px solid var(--line)
  }

  .benefit:last-child {
    padding-right: 0;
    padding-bottom: 0
  }

  .benefit-number {
    font-size: 7px;
    margin-bottom: 9px;
    letter-spacing: .13em
  }

  .benefit-icon {
    position: absolute;
    left: 0;
    top: 28px;
    width: 34px;
    height: 34px;
    margin: 0
  }

  .benefit h3 {
    font-size: 22px;
    margin-bottom: 10px
  }

  .benefit p {
    font-size: 12px;
    max-width: 330px;
    line-height: 1.8
  }

  .formats-layout {
    display: block
  }

  .formats-intro h2 {
    font-size: 43px
  }

  .formats-intro .section-description {
    font-size: 12px;
    margin-top: 22px
  }

  .format-note {
    font-size: 7px;
    gap: 11px;
    margin-top: 21px
  }

  .format-list {
    margin-top: 34px
  }

  .format-row {
    grid-template-columns: 48px 1fr 18px;
    gap: 17px;
    padding: 26px 0
  }

  .format-mark {
    width: 40px;
    height: 54px;
    font-size: 27px
  }

  .format-label {
    font-size: 7px;
    letter-spacing: .13em
  }

  .format-row h3 {
    font-size: 27px;
    margin-bottom: 10px
  }

  .format-row p {
    font-size: 12px;
    max-width: 330px
  }

  .steps-heading {
    display: block
  }

  .steps-heading .button {
    margin-top: 27px;
    min-width: 231px
  }

  .steps-list {
    display: block;
    margin-top: 35px
  }

  .steps-list li {
    display: grid;
    grid-template-columns: 43px 1fr;
    column-gap: 17px;
    padding: 25px 0
  }

  .step-number {
    grid-row: span 2;
    font-size: 31px;
    margin: 0;
    line-height: 1.15
  }

  .steps-list h3 {
    font-size: 21px;
    margin-bottom: 10px;
    line-height: 1.25
  }

  .steps-list p {
    font-size: 12px;
    max-width: 350px
  }

  .steps-list li:last-child {
    padding-bottom: 0
  }

  .steps-bottom {
    margin-top: 32px;
    padding-top: 18px;
    gap: 20px
  }

  .steps-bottom>span:first-child {
    font-size: 6.5px;
    line-height: 1.8;
    max-width: 215px;
    letter-spacing: .11em
  }

  .steps-bottom>span:last-child {
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0
  }

  .faq-layout {
    display: block
  }

  .faq-aside {
    margin-top: 22px;
    font-size: 12px
  }

  .faq-aside br {
    display: none
  }

  .faq-aside a {
    font-size: 11px;
    margin-left: 8px;
    gap: 9px
  }

  .faq-list {
    margin-top: 33px
  }

  .faq-list summary {
    font-size: 13px;
    padding: 22px 0;
    gap: 18px
  }

  .faq-list details>div {
    font-size: 12px;
    padding-right: 20px;
    line-height: 1.8
  }

  .final-section {
    padding: 0 0 65px
  }

  .final-inner {
    padding: 44px 20px 45px
  }

  .final-inner:before {
    inset: 7px
  }

  .final-inner:after {
    inset: 12px
  }

  .final-ornament {
    font-size: 22px;
    margin-bottom: 23px
  }

  .final-inner .eyebrow {
    font-size: 6px;
    letter-spacing: .12em
  }

  .final-inner h2 {
    font-size: clamp(33px,8.6vw,52px);
    line-height: 1.08
  }

  .final-inner h2 em {
    margin-top: 8px
  }

  .final-inner .button {
    margin-top: 28px;
    min-width: 238px;
    font-size: 12px;
    padding: 13px 17px
  }

  .final-note {
    font-size: 8px;
    margin-top: 14px
  }

  .site-footer {
    padding-top: 28px
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 16px 20px;
    padding-bottom: 23px
  }

  .footer-top .brand {
    font-size: 26px
  }

  .footer-top>p {
    font-size: 9px
  }

  .footer-top nav {
    width: 100%;
    margin: 0;
    gap: 25px;
    font-size: 11px
  }

  .footer-bottom {
    align-items: flex-start;
    font-size: 8px;
    gap: 12px;
    padding-top: 20px
  }

  .footer-bottom p:last-child {
    font-size: 7px;
    gap: 7px;
    line-height: 1.7
  }

  .age-badge {
    font-size: 7px;
    padding: 1px 4px;
    flex: none
  }

  .screenshot-dialog {
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 24px);
    border-radius: 7px
  }

  .dialog-toolbar {
    padding: 10px 11px;
    gap: 15px
  }

  .dialog-toolbar h2 {
    font-size: 10px
  }

  .dialog-close {
    font-size: 10px;
    gap: 6px;
    padding: 5px 6px 5px 9px;
    min-height: 35px
  }

  .dialog-close svg {
    width: 17px;
    height: 17px
  }

  .dialog-caption {
    font-size: 8px;
    padding: 9px 11px
  }

  .dialog-image-wrap img {
    max-height: calc(100dvh - 136px)
  }

  .screenshot-dialog[data-device=mobile] {
    max-width: calc(100vw - 20px)
  }

}

@media(max-width:359px) {
  .container {
    width: calc(100% - 32px)
  }

  .header-inner {
    gap: 12px
  }

  .header-cta {
    font-size: 10px;
    padding: 7px 10px;
    gap: 12px
  }

  .brand {
    font-size: 27px
  }

  .brand-symbol {
    font-size: 28px
  }

  .hero {
    padding-top: 35px
  }

  .hero h1 {
    font-size: 11.8vw
  }

  .hero-description {
    font-size: 14px
  }

  .hero-copy .muted {
    font-size: 11px
  }

  .hero-copy .button {
    min-width: 230px
  }

  .showcase-edition {
    display: none
  }

  .showcase-head {
    font-size: 6.5px
  }

  .showcase-foot {
    gap: 8px
  }

  .table-selector button {
    padding: 5px 10px
  }

  .showcase-foot>p {
    font-size: 7px
  }

  .hero-traits>span {
    font-size: 7px
  }

  .hero-traits>span:nth-child(2) {
    padding: 0 6px
  }

  h2,
  .section-heading h2,
  .formats-intro h2 {
    font-size: 38px
  }

  .benefit {
    padding-left: 48px
  }

  .benefit:first-child {
    padding-left: 48px
  }

  .benefit-icon {
    width: 30px;
    height: 30px
  }

  .benefit h3 {
    font-size: 20px
  }

  .benefit p {
    font-size: 11px
  }

  .format-row {
    grid-template-columns: 38px 1fr 14px;
    gap: 12px
  }

  .format-mark {
    width: 32px;
    height: 45px;
    font-size: 24px
  }

  .format-row p {
    font-size: 11px
  }

  .format-label {
    font-size: 6px
  }

  .steps-list {
    margin-top: 30px
  }

  .steps-list li {
    grid-template-columns: 32px 1fr;
    column-gap: 13px
  }

  .steps-list h3 {
    font-size: 19px
  }

  .steps-list p {
    font-size: 11px
  }

  .steps-bottom>span:first-child {
    max-width: 170px
  }

  .faq-aside {
    font-size: 10px
  }

  .faq-aside a {
    font-size: 10px;
    margin-left: 4px;
    gap: 5px
  }

  .faq-list summary {
    font-size: 12px
  }

  .final-inner {
    padding-inline: 17px
  }

  .final-inner .button {
    min-width: 0;
    width: 100%;
    font-size: 11px;
    gap: 20px
  }

  .final-inner .eyebrow {
    font-size: 5.5px
  }

  .final-note {
    font-size: 7px
  }

  .footer-top>p {
    font-size: 8px
  }

  .footer-bottom {
    font-size: 7px
  }

  .footer-bottom p:last-child {
    font-size: 6px;
    gap: 5px
  }

}

@media(max-width:650px) {
  .hero-note,
  .final-note {
    font-size: 11px;
    color: #a1aaa1
  }

  .showcase-foot>p {
    font-size: 10px
  }

  .table-selector button {
    font-size: 11px;
    min-height: 40px;
    padding-inline: 14px
  }

  .hero-traits>span {
    font-size: 10px;
    max-width: 31%;
    color: #b5bcb2
  }

  .footer-top>p {
    font-size: 11px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 10px;
    color: #a1aaa1
  }

  .footer-bottom p:last-child,
  .age-badge {
    font-size: 10px
  }

  .dialog-caption {
    font-size: 10px
  }

}

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

  *,
  *:before,
  *:after {
    animation: none!important;
    transition: none!important
  }

  .button:hover {
    transform: none
  }

}
