:root {
  color-scheme: light;
  --paper: #f4f3ef;
  --white: #ffffff;
  --ink: #171719;
  --muted: #66666c;
  --line: rgba(23, 23, 25, .16);
  --violet: #7353a6;
  --violet-soft: #d9c8f2;
  --blue: #b9ddf0;
  --coral: #ff765f;
  --acid: #d9f36c;
  --max: 1440px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 var(--sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(244, 243, 239, .84);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(244, 243, 239, .96); }
.home-header { color: var(--white); background: transparent; }
.home-header.scrolled { color: var(--ink); }
.nav-shell {
  width: min(calc(100% - 56px), var(--max));
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; white-space: nowrap; }
.brand img { width: 42px; height: 42px; border-radius: 8px; box-shadow: 0 8px 22px rgba(20, 14, 35, .2); }
.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-name { font: 800 20px/1 var(--sans); }
.brand-company { font-size: 10px; font-weight: 650; line-height: 1; opacity: .72; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a { font-size: 13px; font-weight: 680; text-decoration: none; transition: opacity .2s ease; }
.nav-links a:hover { opacity: .58; }
.nav-email { padding: 9px 14px; border: 1px solid currentColor; border-radius: 6px; }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
}
.menu-button span, .menu-button::before, .menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-open .menu-button span { opacity: 0; }
.menu-open .menu-button::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-button::after { transform: translateY(-6px) rotate(-45deg); }

.story-hero {
  position: relative;
  min-height: 94dvh;
  overflow: hidden;
  color: var(--white);
  background: #4c493f;
}
.story-hero-image { position: absolute; inset: -4% 0; width: 100%; height: 108%; object-fit: cover; object-position: center 52%; transform: translate3d(0, var(--hero-image-y, 0), 0) scale(var(--hero-image-scale, 1.04)); }
.story-hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 13, 12, .14), rgba(15, 13, 12, .05) 42%, rgba(15, 13, 12, .74)); }
.story-hero-copy { position: absolute; inset: auto 3.5vw 132px; z-index: 2; transform: translate3d(0, var(--hero-copy-y, 0), 0); opacity: var(--hero-copy-opacity, 1); }
.hero-kicker { margin-bottom: 12px; font-size: 17px; font-weight: 760; }
.story-hero h1 {
  margin: 0;
  font: 900 176px/.78 var(--display);
  text-transform: uppercase;
  letter-spacing: 0;
}
.story-hero h1 span { display: block; overflow: hidden; padding: .05em 0; }
.story-hero h1 i { display: inline-block; font: inherit; font-style: normal; transform-origin: 50% 100%; }
.hero-promise { margin: 26px 0 0; font-size: 34px; font-weight: 780; line-height: 1.15; }
.hero-bottomline {
  position: absolute;
  inset: auto 3.5vw 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .55);
  padding-top: 16px;
  font-size: 13px;
  font-weight: 700;
}
.hero-bottomline p { margin: 0; }
.hero-bottomline a { text-decoration: none; }

.manifesto-scroll { height: 190dvh; background: var(--paper); }
.manifesto {
  position: relative;
  position: sticky;
  top: 0;
  min-height: 100dvh;
  padding: 110px 3.5vw 56px;
  overflow: hidden;
  background: var(--paper);
}
.manifesto-intro { display: flex; justify-content: space-between; gap: 40px; border-top: 1px solid var(--line); padding-top: 17px; }
.manifesto-intro span { font-size: 13px; font-weight: 800; }
.manifesto-intro p { width: 400px; color: var(--muted); font-size: 20px; line-height: 1.38; }
.manifesto h2 {
  margin: 108px 0 0;
  font: 900 174px/.76 var(--display);
  text-transform: uppercase;
}
.manifesto h2 span { display: inline-block; transform: translate3d(var(--manifesto-line-one-x, -120px), 0, 0); }
.manifesto h2 em { color: var(--violet); font-style: normal; }
.manifesto h2 em { display: inline-block; transform: translate3d(var(--manifesto-line-two-x, 140px), 0, 0); }
.manifesto-foot { position: absolute; inset: auto 3.5vw 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.manifesto-foot p { max-width: 520px; margin: 0; font-size: 28px; font-weight: 720; line-height: 1.2; }
.manifesto-foot span, .gesture-note span, .review-copy > span { font: 800 12px/1 var(--sans); }

.gesture-scroll { height: 245dvh; background: var(--blue); }
.gesture-stage {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  padding: 100px 3.5vw 52px;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  grid-template-rows: auto 1fr auto;
  gap: 30px 5vw;
  overflow: hidden;
  background: var(--blue);
}
.chapter-label { margin-bottom: 18px; font-size: 13px; font-weight: 800; }
.gesture-copy { align-self: start; padding-top: 32px; }
.gesture-copy h2, .video-copy h2, .company-statement h2 {
  margin-bottom: 28px;
  font-size: 68px;
  line-height: .98;
}
.gesture-copy > p:last-child, .video-copy > p:last-child, .company-statement > p { max-width: 470px; color: rgba(23, 23, 25, .68); font-size: 18px; }
.gesture-demo { grid-row: 1 / 3; grid-column: 2; min-height: 0; position: relative; display: grid; place-items: center; }
.demo-stack { position: relative; width: min(430px, 62%); aspect-ratio: .73; }
.demo-card {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 34px 75px rgba(32, 60, 77, .24);
  backface-visibility: hidden;
}
.demo-card img { width: 100%; height: 100%; object-fit: cover; }
.back-left { transform: translate3d(var(--back-left-x, -80px), var(--back-left-y, 26px), 0) rotate(var(--back-left-rotation, -8deg)); opacity: .65; }
.back-right { transform: translate3d(var(--back-right-x, 76px), var(--back-right-y, 32px), 0) rotate(var(--back-right-rotation, 7deg)); opacity: .72; }
.demo-card-front { transform: translate3d(var(--card-x, 0), var(--card-y, 0), 0) rotate(var(--card-rotation, 1deg)); opacity: var(--card-opacity, 1); }
.demo-card-front figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 52px 22px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(17, 17, 18, .8));
  font-size: 12px;
}
.demo-card-front figcaption span { opacity: .75; }
.swipe-track { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; font: 900 38px/1 var(--sans); opacity: var(--track-opacity, .3); transform: scale(var(--track-scale, .94)); transform-origin: center; }
.swipe-track i { font-style: normal; font-size: 58px; }
.skip-track { left: 0; top: 46%; }
.stash-track { right: 0; top: 46%; }
.skip-track { --track-opacity: var(--skip-opacity, .3); --track-scale: var(--skip-scale, .94); }
.stash-track { --track-opacity: var(--stash-opacity, .3); --track-scale: var(--stash-scale, .94); }
.gesture-note { grid-column: 1 / 3; align-self: end; display: flex; justify-content: space-between; border-top: 1px solid rgba(23, 23, 25, .25); padding-top: 17px; }
.gesture-note p { max-width: 520px; margin: 0; font-size: 18px; font-weight: 700; }

.review-stage {
  min-height: 1080px;
  padding: 94px 3.5vw 0;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px) .8fr;
  gap: 5vw;
  align-items: center;
  overflow: hidden;
  background: var(--coral);
}
.review-heading { align-self: start; padding-top: 38px; }
.review-heading h2 { margin: 0; font: 900 126px/.76 var(--display); }
.review-heading h2 span { display: block; margin-top: 34px; font: 800 28px/1.06 var(--sans); }
.review-device { align-self: end; }
.review-device.visible { transform: translate3d(0, var(--review-device-y, 0), 0) scale(var(--review-device-scale, 1)); transition: opacity .7s ease; }
.device-frame {
  padding: 10px 10px 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  background: var(--ink);
  box-shadow: 0 40px 80px rgba(69, 19, 13, .25);
}
.device-frame img { width: 100%; }
.review-copy { align-self: end; padding-bottom: 80px; }
.review-lede { font-size: 28px; font-weight: 800; line-height: 1.15; }
.review-copy p:not(.review-lede) { color: rgba(23, 23, 25, .72); font-size: 17px; }
.review-copy > span { display: block; margin-top: 38px; }

.video-stage {
  position: relative;
  min-height: 1060px;
  padding: 100px 3.5vw 0;
  display: grid;
  grid-template-columns: .9fr minmax(340px, 520px);
  gap: 9vw;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #171719;
}
.video-copy { align-self: start; position: relative; z-index: 2; padding-top: 40px; }
.video-copy h2 { font-size: 76px; }
.video-copy > p:last-child { color: rgba(255, 255, 255, .62); }
.video-device { position: relative; z-index: 2; align-self: end; }
.video-device.visible { transform: translate3d(0, var(--video-device-y, 0), 0) scale(var(--video-device-scale, 1)); transition: opacity .7s ease; }
.video-device .device-frame { border-color: #080809; background: #080809; box-shadow: 0 45px 90px rgba(0, 0, 0, .42); }
.video-word { position: absolute; left: 2.5vw; bottom: 45px; z-index: 0; color: rgba(255, 255, 255, .07); font: 900 192px/.75 var(--display); transform: translate3d(var(--video-word-x, 0), 0, 0); }

.feature-ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--acid); }
.ticker-row { width: max-content; display: flex; align-items: center; gap: 28px; padding: 22px 0; animation: ticker 28s linear infinite; font: 900 38px/1 var(--display); }
.ticker-row i { color: var(--violet); font-style: normal; font-size: 16px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.privacy-stage { padding: 112px 3.5vw 120px; color: var(--white); background: var(--violet); }
.privacy-lockup { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255, 255, 255, .28); padding-bottom: 18px; }
.privacy-lockup img { width: 54px; height: 54px; border-radius: 8px; }
.privacy-lockup p { margin: 0; font-size: 13px; font-weight: 800; }
.privacy-stage > h2 { margin: 94px 0 100px; font: 900 132px/.82 var(--display); }
.privacy-stage > h2 span { color: var(--acid); }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, .3); }
.privacy-grid article { min-height: 270px; padding: 22px 28px 28px 0; border-right: 1px solid rgba(255, 255, 255, .3); }
.privacy-grid article + article { padding-left: 28px; }
.privacy-grid article:last-child { border-right: 0; }
.privacy-grid span { font-size: 12px; font-weight: 800; opacity: .68; }
.privacy-grid h3 { margin: 52px 0 18px; font-size: 26px; }
.privacy-grid p { color: rgba(255, 255, 255, .7); }
.text-link { display: inline-block; margin-top: 30px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-weight: 750; text-decoration: none; }
.light-link { margin-top: 48px; }

.company-stage { padding: 120px 3.5vw 140px; display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; background: var(--paper); }
.company-statement h2 { font-size: 64px; }
.company-details { margin: 0; border-top: 1px solid var(--line); }
.detail-row { display: grid; grid-template-columns: 126px 1fr; gap: 20px; border-bottom: 1px solid var(--line); padding: 19px 0; }
.detail-row dt { color: var(--muted); font-size: 13px; }
.detail-row dd { margin: 0; font-weight: 650; }
.detail-row a { color: var(--violet); }

.closing-stage { position: relative; min-height: 92dvh; display: grid; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.closing-stage > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.closing-shade { position: absolute; inset: 0; background: rgba(15, 13, 12, .52); }
.closing-copy { position: relative; z-index: 2; width: min(900px, calc(100% - 40px)); }
.closing-copy > p { font-weight: 800; }
.closing-copy h2 { margin-bottom: 38px; font-size: 74px; line-height: .98; }
.closing-button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; border: 1px solid var(--white); border-radius: 6px; padding: 0 22px; font-weight: 750; text-decoration: none; transition: background .2s ease, color .2s ease, transform .2s ease; }
.closing-button:hover { color: var(--ink); background: var(--white); transform: translateY(-2px); }

.site-footer { padding: 48px 0; border-top: 1px solid var(--line); background: var(--white); }
.home-footer { color: var(--white); border-color: rgba(255, 255, 255, .14); background: var(--ink); }
.footer-shell { width: min(calc(100% - 56px), var(--max)); margin: auto; display: flex; gap: 28px; align-items: center; }
.footer-brand { font-weight: 800; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }
.footer-links a { color: inherit; font-size: 13px; text-decoration: none; opacity: .7; }
.footer-links a:hover { opacity: 1; }
.footer-legal { color: inherit; font-size: 12px; opacity: .62; }
.footer-legal .icp-link { display: inline-block; margin-top: 5px; text-decoration: none; }
.police-link { display: inline-flex; gap: 5px; align-items: center; margin-top: 5px; color: inherit; text-decoration: none; }
.police-link img { width: 18px; height: 18px; flex: 0 0 18px; }
.police-link:hover { opacity: 1; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 6px; padding: 0 20px; font-weight: 750; text-decoration: none; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ink); }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, .72); }
.eyebrow { margin: 0 0 16px; color: var(--violet); font-size: 13px; font-weight: 800; text-transform: uppercase; }

.legal-hero { padding: 160px 0 74px; background: var(--blue); }
.section-shell { width: min(calc(100% - 56px), 1180px); margin: auto; }
.legal-hero .section-shell { max-width: 900px; }
.legal-hero h1 { margin-bottom: 18px; font-size: 74px; line-height: .95; }
.legal-hero p { color: rgba(23, 23, 25, .68); }
.legal-content { width: min(calc(100% - 56px), 900px); margin: auto; padding: 74px 0 120px; }
.legal-content > p:first-child { font-size: 18px; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 25px; }
.legal-content h3 { margin-top: 26px; font-size: 17px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--violet); }
.legal-content table { width: 100%; border-collapse: collapse; }
.legal-content th, .legal-content td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-content th { background: rgba(185, 221, 240, .45); }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.support-item { min-height: 230px; padding: 28px 28px 28px 0; border-bottom: 1px solid var(--line); }
.support-item:nth-child(odd) { border-right: 1px solid var(--line); }
.support-item:nth-child(even) { padding-left: 28px; }
.support-item h2 { font-size: 20px; }
.support-item p { margin-bottom: 0; }
.support-cta { margin-top: 56px; padding: 42px; color: var(--white); background: var(--violet); }
.support-cta p { color: rgba(255, 255, 255, .72); }
.support-cta .button-secondary { color: var(--white); border-color: rgba(255, 255, 255, .4); background: transparent; }

.invite-page { min-height: 100dvh; color: #f7f4ec; background: #171719; }
.invite-page *, .invite-page *::before, .invite-page *::after { box-sizing: border-box; }
.invite-shell { min-height: 100dvh; position: relative; display: grid; place-items: center; overflow: hidden; padding: 46px; isolation: isolate; }
.invite-backdrop, .invite-backdrop-shade { position: fixed; inset: 0; width: 100%; height: 100%; }
.invite-backdrop { z-index: -3; object-fit: cover; object-position: 58% center; transform: scale(1.04); filter: saturate(.78); }
.invite-backdrop-shade { z-index: -2; background: linear-gradient(105deg, rgba(14, 12, 17, .86), rgba(20, 17, 25, .64)), radial-gradient(circle at 76% 18%, rgba(115, 83, 166, .22), transparent 34%); backdrop-filter: blur(7px); }
.invite-card { width: min(1120px, calc(100vw - 92px)); min-height: min(700px, calc(100dvh - 92px)); display: grid; grid-template-columns: minmax(330px, .82fr) minmax(520px, 1.18fr); overflow: hidden; color: var(--ink); background: #f7f4ec; border: 1px solid rgba(255, 255, 255, .2); border-radius: 28px; box-shadow: 0 42px 130px rgba(8, 6, 12, .48); }
.invite-story { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; padding: 46px; color: var(--white); background: linear-gradient(180deg, rgba(21, 17, 28, .26), rgba(18, 14, 24, .84)), url('/assets/memory.jpg') 58% center / cover; }
.invite-story::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .16), transparent 26%); }
.invite-action { min-width: 0; display: flex; flex-direction: column; padding: clamp(38px, 4.3vw, 60px); background: #f7f4ec; }
.invite-brand { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.invite-brand img { width: 44px; height: 44px; border-radius: 11px; box-shadow: 0 10px 28px rgba(55, 45, 76, .16); }
.invite-brand span { display: flex; flex-direction: column; gap: 3px; }
.invite-brand strong { font-size: 19px; line-height: 1; letter-spacing: -.03em; }
.invite-brand small { color: rgba(255, 255, 255, .66); font-size: 9px; font-weight: 650; }
.invite-heading { position: relative; z-index: 1; margin-top: 88px; }
.invite-kicker { margin: 0 0 15px; color: rgba(255, 255, 255, .65); font-size: 9px; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.invite-heading h1 { margin: 0; font-size: clamp(39px, 3.6vw, 54px); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.invite-reward-note { max-width: 260px; margin: 24px 0 0; color: rgba(255, 255, 255, .68); font-size: 12px; line-height: 1.6; }
.invite-reward-note strong { color: #fff; font-size: 14px; }
.invite-action-heading > span { color: var(--violet); font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.invite-action-heading h2 { max-width: 430px; margin: 11px 0 0; font-size: clamp(30px, 3vw, 42px); line-height: 1.05; letter-spacing: -.045em; }
.invite-code-card { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px 20px; margin-top: 30px; padding: 22px; border: 1px solid rgba(23, 23, 25, .12); border-radius: 14px; background: var(--white); box-shadow: 0 20px 60px rgba(55, 45, 76, .1); }
.invite-code-card > span { grid-column: 1 / -1; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.invite-code-card > strong { min-width: 0; font: 850 clamp(36px, 5vw, 54px)/1 var(--sans); letter-spacing: .12em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.invite-code-card button { min-height: 50px; display: flex; align-items: center; gap: 12px; border: 0; border-radius: 9px; padding: 0 18px; color: var(--white); background: var(--ink); font-size: 12px; font-weight: 780; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.invite-code-card button span:last-child { color: rgba(255, 255, 255, .48); font-size: 9px; }
.invite-code-card button:hover:not(:disabled) { background: var(--violet); transform: translateY(-2px); }
.invite-code-card button.copied { background: #39784d; }
.invite-code-card button:disabled { cursor: default; opacity: .36; }
.invite-code-error { grid-column: 1 / -1; margin: 2px 0 0; color: #a34634; font-size: 11px; }
.invite-use-note { margin: 14px 0 0; color: rgba(23, 23, 25, .52); font-size: 11px; line-height: 1.6; }
.invite-section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.invite-section-heading h2 { margin: 0; font-size: 13px; letter-spacing: -.01em; }
.invite-section-heading > span { color: rgba(23, 23, 25, .42); font-size: 9px; line-height: 1.45; text-align: right; }
.invite-download { margin-top: 18px; }
.invite-store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.invite-store-link { min-width: 0; min-height: 68px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 11px; position: relative; border: 1px solid var(--ink); border-radius: 10px; padding: 11px 13px; color: var(--ink); text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease; }
.invite-store-link:not([aria-disabled="true"]):hover { color: var(--white); background: var(--ink); transform: translateY(-2px); }
.invite-store-link[aria-disabled="true"] { border-color: var(--line); cursor: default; opacity: .72; }
.store-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--white); background: var(--ink); font-size: 9px; font-weight: 850; letter-spacing: -.03em; }
.store-mark-huawei { background: #b64236; }
.store-mark-android { color: var(--ink); background: var(--acid); }
.invite-store-wide { grid-column: 1 / -1; }
.invite-store-link span:not(.store-mark) { display: flex; flex-direction: column; line-height: 1.1; }
.invite-store-link small { color: var(--muted); font-size: 9px; }
.invite-store-link strong { margin-top: 4px; font-size: 17px; }
.invite-store-link em { position: absolute; inset: 6px 7px auto auto; color: var(--muted); font-size: 8px; font-style: normal; font-weight: 800; }
.invite-company { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 30px; color: rgba(23, 23, 25, .45); font-size: 9px; }
.invite-company p { margin: 0; }
.invite-company nav { display: flex; gap: 16px; }
.invite-company a { color: inherit; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1); }
[data-reveal].visible { opacity: 1; transform: none; }
.review-device[data-reveal].visible { transform: translate3d(0, var(--review-device-y, 0), 0) scale(var(--review-device-scale, 1)); transition: opacity .7s ease; }
.video-device[data-reveal].visible { transform: translate3d(0, var(--video-device-y, 0), 0) scale(var(--video-device-scale, 1)); transition: opacity .7s ease; }
.scene-active .story-hero-image,
.scene-active .story-hero-copy,
.scene-active .manifesto h2 span,
.scene-active .manifesto h2 em,
.scene-active .demo-card,
.scene-active .swipe-track,
.scene-active .review-device,
.scene-active .video-device,
.scene-active .video-word { will-change: transform, opacity; }

.motion-ready:not(.is-ready) .home-header,
.motion-ready:not(.is-ready) .hero-kicker,
.motion-ready:not(.is-ready) .hero-promise,
.motion-ready:not(.is-ready) .hero-bottomline { opacity: 0; transform: translateY(18px); }
.motion-ready:not(.is-ready) .story-hero h1 i { opacity: 0; transform: translateY(110%) skewY(9deg); }
.motion-ready.is-ready .home-header,
.motion-ready.is-ready .hero-kicker,
.motion-ready.is-ready .hero-promise,
.motion-ready.is-ready .hero-bottomline { transition: opacity .75s ease, transform .75s cubic-bezier(.2, .85, .2, 1); }
.motion-ready.is-ready .hero-kicker { transition-delay: .12s; }
.motion-ready.is-ready .story-hero h1 i { transition: opacity .7s ease, transform .85s cubic-bezier(.18, .84, .2, 1); transition-delay: calc(.16s + var(--i) * .045s); }
.motion-ready.is-ready .hero-promise { transition-delay: .62s; }
.motion-ready.is-ready .hero-bottomline { transition-delay: .78s; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

@media (max-width: 1100px) {
  .story-hero h1 { font-size: 132px; }
  .manifesto h2 { font-size: 132px; }
  .review-stage { grid-template-columns: .85fr minmax(340px, 460px); }
  .review-copy { grid-column: 1; grid-row: 2; }
  .review-heading h2 { font-size: 96px; }
  .privacy-stage > h2 { font-size: 104px; }
}

@media (max-width: 820px) {
  .invite-shell { place-items: center; padding: 34px; }
  .invite-backdrop { object-position: 53% center; }
  .invite-card { width: min(680px, calc(100vw - 68px)); min-height: 0; grid-template-columns: 1fr; }
  .invite-story { min-height: 310px; padding: 34px; }
  .invite-heading { margin-top: 72px; }
  .invite-action { padding: 42px 34px; }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 28px 26px;
    color: var(--ink);
    background: rgba(244, 243, 239, .98);
  }
  .menu-open .nav-links { display: flex; }
  .nav-links a { padding: 13px 0; }
  .nav-email { border: 0; padding-inline: 0; }
  .story-hero h1 { font-size: 104px; }
  .hero-promise { font-size: 28px; }
  .manifesto-scroll { height: 175dvh; }
  .manifesto { min-height: 100dvh; }
  .manifesto h2 { font-size: 96px; }
  .gesture-scroll { height: 225dvh; }
  .gesture-stage { min-height: 100dvh; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .gesture-demo { grid-column: 1; grid-row: 2; min-height: 0; }
  .gesture-note { grid-column: 1; }
  .review-stage { min-height: auto; grid-template-columns: 1fr 1fr; padding-top: 80px; }
  .review-heading h2 { font-size: 84px; }
  .review-copy { grid-column: 1; grid-row: 2; align-self: center; }
  .review-device { grid-column: 2; grid-row: 1 / 3; }
  .video-stage { min-height: auto; grid-template-columns: 1fr 1fr; padding-top: 80px; }
  .video-copy h2 { font-size: 58px; }
  .video-word { display: none; }
  .privacy-stage > h2 { font-size: 82px; }
  .company-stage { grid-template-columns: 1fr; gap: 70px; }
}

@media (max-width: 600px) {
  .invite-shell { display: block; padding: 0; background: #f2efe8; }
  .invite-backdrop, .invite-backdrop-shade { display: none; }
  .invite-card { min-height: 100dvh; width: 100%; display: block; border: 0; border-radius: 0; box-shadow: none; }
  .invite-story { min-height: 300px; padding: 26px 20px; }
  .invite-heading { margin-top: 70px; }
  .invite-heading h1 { font-size: clamp(39px, 12vw, 52px); }
  .invite-action { padding: 34px 20px 24px; }
  .invite-action-heading h2 { font-size: 30px; }
  .invite-code-card { grid-template-columns: 1fr; margin-top: 28px; padding: 20px 17px 17px; }
  .invite-code-card > strong { margin: 8px 0 12px; font-size: clamp(38px, 13vw, 54px); letter-spacing: .1em; }
  .invite-code-card button { width: 100%; justify-content: space-between; }
  .invite-store-grid { grid-template-columns: 1fr; }
  .invite-store-wide { grid-column: auto; }
  .invite-section-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .invite-section-heading > span { text-align: left; }
  .invite-company { align-items: flex-start; flex-direction: column; }
  .nav-shell { width: calc(100% - 28px); height: 66px; }
  .nav-links { inset-block-start: 66px; padding-inline: 14px; }
  .brand img { width: 36px; height: 36px; }
  .brand-name { font-size: 18px; }
  .brand-company { font-size: 8px; }
  .story-hero { min-height: 780px; }
  .story-hero-image { object-position: 57% center; }
  .story-hero-copy { inset: auto 14px 128px; }
  .hero-kicker { font-size: 14px; }
  .story-hero h1 { font-size: 76px; line-height: .86; }
  .hero-promise { margin-top: 18px; font-size: 25px; }
  .hero-bottomline { inset: auto 14px 22px; display: block; }
  .hero-bottomline a { display: inline-block; margin-top: 7px; }
  .manifesto { min-height: 100dvh; padding: 76px 14px 34px; }
  .manifesto-intro { display: block; }
  .manifesto-intro p { width: auto; margin-top: 28px; font-size: 17px; }
  .manifesto h2 { margin-top: 74px; font-size: 66px; line-height: .82; }
  .manifesto-foot { inset: auto 14px 32px; }
  .manifesto-foot p { max-width: 280px; font-size: 18px; }
  .gesture-stage { --back-left-x: -38px; --back-left-y: 20px; --back-left-rotation: -7deg; --back-right-x: 38px; --back-right-y: 22px; --back-right-rotation: 7deg; padding: 62px 14px 28px; gap: 14px; }
  .gesture-copy h2, .video-copy h2, .company-statement h2 { font-size: 46px; }
  .gesture-copy > p:last-child, .video-copy > p:last-child, .company-statement > p { font-size: 16px; }
  .gesture-demo { min-height: 0; }
  .demo-stack { width: 68%; }
  .demo-card { border-width: 5px; border-radius: 18px; }
  .swipe-track { font-size: 25px; }
  .swipe-track i { font-size: 38px; }
  .swipe-track { top: 48%; gap: 5px; border: 1px solid rgba(23, 23, 25, .18); border-radius: 6px; padding: 7px 9px; background: rgba(255, 255, 255, .68); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .swipe-track i { font-size: 25px; }
  .skip-track { left: 0; }
  .stash-track { right: 0; }
  .gesture-note { gap: 18px; }
  .gesture-note p { max-width: 270px; font-size: 15px; }
  .review-stage { grid-template-columns: 1fr; gap: 48px; padding: 70px 14px 0; }
  .review-heading, .review-copy, .review-device { grid-column: 1; grid-row: auto; }
  .review-heading { padding-top: 0; }
  .review-heading h2 { font-size: 72px; }
  .review-heading h2 span { font-size: 22px; }
  .review-copy { padding-bottom: 0; }
  .review-device { width: min(88%, 390px); margin: auto; }
  .device-frame { border-radius: 32px 32px 0 0; }
  .video-stage { grid-template-columns: 1fr; gap: 58px; padding: 70px 14px 0; }
  .video-copy { padding-top: 0; }
  .video-device { width: min(88%, 390px); margin: auto; }
  .ticker-row { gap: 20px; padding: 18px 0; font-size: 28px; }
  .privacy-stage { padding: 76px 14px 84px; }
  .privacy-stage > h2 { margin: 68px 0 70px; font-size: 64px; line-height: .86; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-grid article, .privacy-grid article + article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .3); padding: 24px 0 30px; }
  .privacy-grid h3 { margin: 30px 0 10px; }
  .company-stage { padding: 78px 14px 90px; }
  .company-statement h2 { font-size: 44px; }
  .detail-row { grid-template-columns: 1fr; gap: 4px; }
  .closing-stage { min-height: 720px; }
  .closing-copy h2 { font-size: 46px; }
  .footer-shell { width: calc(100% - 28px); display: block; }
  .footer-links { margin: 22px 0 0; }
  .section-shell, .legal-content { width: calc(100% - 28px); }
  .legal-hero { padding: 118px 0 54px; }
  .legal-hero h1 { font-size: 50px; }
  .legal-content { padding: 48px 0 80px; }
  .legal-content table { display: block; overflow-x: auto; }
  .support-grid { grid-template-columns: 1fr; }
  .support-item, .support-item:nth-child(even) { min-height: 0; border-right: 0; padding: 25px 0; }
  .support-cta { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .manifesto-scroll, .gesture-scroll { height: auto; }
  .manifesto, .gesture-stage { position: relative; min-height: auto; }
  .story-hero-image, .story-hero-copy, .manifesto h2 span, .manifesto h2 em, .demo-card, .swipe-track, .review-device, .video-device, .video-word { transform: none !important; opacity: 1 !important; }
}
