@font-face {
  font-family:Inter;
  src:url('/assets/fonts/Inter.ttf') format('truetype');
  font-weight:100 900;
  font-display:swap;
}
:root {
  --ink:#102c2d;
  --tide:#087f79;
  --lime:#d8f36a;
  --salt:#f5f7ef;
  --slate:#4b6363;
  --line:#dce3d6;
  --white:#fff;
  --soft:#e9eee2;
  --radius:28px;
  color-scheme:light;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:112px;
}
body {
  margin:0;
  background:var(--salt);
  color:var(--ink);
  font:400 16px/1.65 Inter,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
a {
  color:inherit;
  text-underline-offset:5px;
}
button {
  font:inherit;
  color:inherit;
  cursor:pointer;
}
img {
  max-width:100%;
  height:auto;
  display:block;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
button:focus-visible,a:focus-visible,summary:focus-visible {
  outline:3px solid var(--tide);
  outline-offset:5px;
}
h1,h2,h3,p,figure {
  margin:0;
}
h1,h2,h3 {
  font-weight:700;
  line-height:1.08;
  letter-spacing:-.055em;
}
h1 {
  font-size:clamp(48px,6.3vw,86px);
}
h2 {
  font-size:clamp(36px,4.2vw,57px);
}
h3 {
  font-size:25px;
  letter-spacing:-.04em;
  line-height:1.22;
}
em {
  font-style:normal;
  color:var(--tide);
}
[hidden] {
  display:none!important;
}
.wrap {
  width:min(1280px,calc(100% - 96px));
  margin-inline:auto;
}
.section-space {
  padding-block:112px;
}
.eyebrow {
  font-size:11px;
  letter-spacing:.16em;
  line-height:1.6;
  font-weight:700;
  text-transform:uppercase;
}
.muted {
  color:var(--slate);
}
.section-lead {
  font-size:18px;
  line-height:1.8;
  color:var(--slate);
  max-width:550px;
  margin-top:24px;
}
.fine-print {
  font-size:12px;
  line-height:1.7;
  color:var(--slate);
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:27px;
  min-height:54px;
  padding:15px 23px;
  background:var(--lime);
  border:1px solid transparent;
  border-radius:100px;
  text-decoration:none;
  line-height:1.4;
  font-size:14px;
  font-weight:600;
  transition:transform .18s,background .18s;
}
.button:hover {
  background:#ccea58;
  transform:translateY(-2px);
}
.button>span {
  font-size:21px;
  line-height:1;
}
.button-small {
  padding:11px 18px;
  min-height:44px;
  font-size:12px;
  gap:18px;
}
.button-dark {
  background:var(--ink);
  color:var(--salt);
}
.button-dark:hover {
  background:var(--tide);
}
.button-outline {
  border-color:var(--ink);
  background:transparent;
}
.button-outline:hover {
  background:var(--soft);
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  padding-block:8px;
}
.text-link:hover {
  text-decoration:underline;
}
.text-link span {
  font-size:21px;
  line-height:1;
}
.status-dot {
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--tide);
  display:inline-block;
  margin-right:7px;
  vertical-align:1px;
}
.skip-link {
  position:fixed;
  left:20px;
  top:10px;
  z-index:100;
  transform:translateY(-170%);
  background:var(--ink);
  color:white;
  padding:12px 20px;
  border-radius:8px;
}
.skip-link:focus {
  transform:none;
}
.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:rgb(245 247 239 / .96);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgb(16 44 45 / .06);
}
.nav-wrap {
  width:min(1376px,calc(100% - 64px));
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:86px;
}
.brand {
  display:block;
  width:182px;
  flex-shrink:0;
}
.brand img {
  width:100%;
  height:auto;
}
.desktop-nav {
  display:flex;
  gap:30px;
  align-items:center;
}
.desktop-nav a {
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  padding-block:12px;
  color:var(--slate);
}
.desktop-nav a:hover {
  color:var(--tide);
}
.nav-actions {
  display:flex;
  align-items:center;
  gap:16px;
}
.menu-toggle {
  display:none;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  gap:6px;
  background:none;
  border:1px solid var(--line);
  border-radius:50%;
  width:44px;
  height:44px;
}
.menu-toggle span {
  width:17px;
  height:2px;
  background:var(--ink);
}
.mobile-nav {
  padding:16px 24px 24px;
  border-top:1px solid var(--line);
}
.mobile-nav a {
  display:block;
  padding:11px 8px;
  text-decoration:none;
  font-weight:600;
}
.hero {
  overflow:clip;
  overflow-clip-margin:20px;
  display:grid;
  grid-template-columns:1.08fr 1fr;
  align-items:center;
  gap:12px;
  padding-top:38px;
  padding-bottom:44px;
  min-height:735px;
}
.hero-copy {
  min-width:0;
  position:relative;
  z-index:2;
  padding-top:10px;
}
.hero h1 {
  margin-top:26px;
  max-width:640px;
}
.hero-description {
  font-size:17px;
  line-height:1.8;
  max-width:535px;
  color:var(--slate);
  margin-top:28px;
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:23px;
  flex-wrap:wrap;
  margin-top:32px;
}
.hero-actions .text-link {
  font-size:12px;
  gap:12px;
}
.hero-facts {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:25px;
  font-size:11px;
  color:var(--slate);
}
.hero-facts span+span::before {
  content:'·';
  margin-right:18px;
}
.hero-art {
  min-width:0;
  position:relative;
  min-height:648px;
}
.orbit {
  position:absolute;
  border:1px solid #cfdcc5;
  border-radius:50%;
  width:500px;
  height:500px;
  left:10px;
  top:66px;
  transform:rotate(-24deg);
}
.orbit-one {
  background:radial-gradient(ellipse at 50% 54%,#e7f0c6 0%,#eaf0dc 42%,transparent 71%);
  border:0;
  width:570px;
  height:570px;
  left:-12px;
  top:20px;
}
.orbit-two {
  width:540px;
  height:348px;
  left:-14px;
  top:150px;
  transform:rotate(-47deg);
}
.phone {
  border:7px solid var(--ink);
  border-radius:34px;
  background:var(--ink);
  overflow:hidden;
  box-shadow:0 22px 40px -22px rgb(16 44 45 / .38);
  width:258px;
  flex-shrink:0;
}
.phone img {
  width:100%;
  height:auto;
}
.hero-phone-front {
  position:absolute;
  left:20px;
  top:62px;
  z-index:2;
  transform:rotate(-8deg);
}
.hero-phone-back {
  position:absolute;
  right:4px;
  top:110px;
  width:236px;
  transform:rotate(9deg);
}
.art-label {
  position:absolute;
  right:38px;
  top:15px;
  font-size:9px;
  font-weight:700;
  letter-spacing:.14em;
  transform:rotate(5deg);
}
.screen-disclaimer {
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  text-align:center;
  font-size:8px;
  letter-spacing:.1em;
  color:var(--slate);
}
.hero-note {
  position:absolute;
  bottom:49px;
  right:-10px;
  z-index:3;
  background:var(--white);
  box-shadow:0 10px 35px -18px rgb(16 44 45 / .3);
  border:1px solid var(--line);
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:17px 22px;
  transform:rotate(3deg);
  font-size:12px;
  line-height:1.7;
}
.note-icon {
  font-size:29px;
  background:var(--lime);
  width:45px;
  height:45px;
  border-radius:50%;
  display:grid;
  place-items:center;
}
.hero-note strong {
  font-weight:600;
}
.principles {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:12px;
  font-weight:600;
}
.principles span {
  display:flex;
  align-items:center;
  gap:14px;
}
.principles i {
  font-style:normal;
  color:var(--tide);
  font-size:10px;
  border:1px solid var(--line);
  border-radius:50%;
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  font-variant-numeric:tabular-nums;
}
.intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 85px;
}
.section-heading h2 {
  margin-top:20px;
}
.intro-copy {
  font-size:18px;
  color:var(--slate);
  align-self:end;
  line-height:1.8;
  max-width:520px;
}
.feature-grid {
  grid-column:1/-1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:12px;
}
.feature-card {
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  display:flex;
  flex-direction:column;
  background:rgb(255 255 255 / .3);
}
.feature-icon {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  background:var(--soft);
  font-size:26px;
  border-radius:14px;
  margin-bottom:36px;
}
.feature-card h3 {
  max-width:245px;
}
.feature-card p {
  font-size:14px;
  color:var(--slate);
  line-height:1.8;
  margin-top:18px;
  margin-bottom:24px;
}
.feature-card .text-link {
  margin-top:auto;
  font-size:12px;
}
.tour-section {
  background:#eaf0e3;
  border-block:1px solid var(--line);
}
.tour-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:80px;
}
.tour-copy h2 {
  margin-top:20px;
}
.tour-controls {
  display:flex;
  flex-direction:column;
  margin-top:30px;
  gap:8px;
}
.tour-controls button {
  display:flex;
  text-align:left;
  align-items:start;
  gap:19px;
  border:1px solid transparent;
  border-radius:18px;
  background:none;
  padding:18px 21px;
  width:100%;
  transition:background .18s;
}
.tour-controls button:hover {
  background:rgb(255 255 255 / .5);
}
.tour-controls button[aria-pressed=true] {
  background:var(--salt);
  border-color:#d4dfc8;
}
.step-number {
  color:var(--tide);
  font-size:11px;
  font-weight:600;
  line-height:1.8;
  padding-top:3px;
}
.tour-controls strong {
  display:block;
  font-weight:600;
  font-size:17px;
  letter-spacing:-.03em;
}
.step-description {
  display:block;
  color:var(--slate);
  font-size:12px;
  margin-top:5px;
  max-width:285px;
  line-height:1.7;
}
.step-arrow {
  margin-left:auto;
  opacity:0;
  font-size:22px;
  line-height:1.4;
}
.tour-controls button[aria-pressed=true] .step-arrow {
  opacity:1;
}
.tour-display {
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  text-align:center;
  background:var(--salt);
  border-radius:36px;
  padding:27px 28px 22px;
  border:1px solid #dbe5d0;
}
.tour-tag {
  font-size:8px;
  letter-spacing:.16em;
  font-weight:600;
  margin-bottom:20px;
  color:var(--slate);
}
.tour-phone {
  width:247px;
  border-radius:31px;
  box-shadow:0 12px 24px -10px rgb(16 44 45 / .25);
}
.tour-display figcaption {
  font-size:11px;
  font-weight:600;
  margin-top:22px;
  max-width:290px;
  min-height:36px;
}
.tour-display .fine-print {
  font-size:9px;
  margin-top:5px;
}
.progress-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:95px;
  align-items:center;
}
.progress-art {
  position:relative;
  background:var(--soft);
  border-radius:36px;
  height:630px;
  overflow:hidden;
  padding:26px 32px;
}
.mini-label {
  font-size:9px;
  font-weight:600;
  letter-spacing:.12em;
}
.progress-phone {
  width:265px;
  transform:rotate(-5deg);
  margin:35px auto 0;
}
.progress-sticker {
  position:absolute;
  right:20px;
  bottom:55px;
  background:var(--lime);
  padding:23px 26px;
  border-radius:16px;
  transform:rotate(6deg);
  font-size:17px;
  line-height:1.5;
  box-shadow:0 14px 20px -15px #738460;
}
.progress-sticker strong {
  font-weight:700;
}
.progress-sticker>span {
  display:block;
  font-size:34px;
  line-height:1.3;
}
.progress-copy h2 {
  margin-top:20px;
}
.check-list {
  padding:0;
  list-style:none;
  margin:28px 0;
  display:grid;
  gap:15px;
}
.check-list li {
  position:relative;
  padding-left:29px;
  font-size:14px;
  line-height:1.65;
}
.check-list li::before {
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  color:var(--tide);
  font-weight:700;
}
.progress-copy .fine-print {
  max-width:470px;
}
.privacy-section {
  background:var(--ink);
  color:var(--salt);
  padding:104px 0;
}
.privacy-layout {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:100px;
  align-items:center;
}
.privacy-section .eyebrow {
  color:var(--lime);
}
.privacy-section h2 {
  margin-top:25px;
  font-size:clamp(36px,4vw,54px);
  line-height:1.15;
}
.privacy-section h2 em {
  color:var(--lime);
}
.privacy-section p:not(.eyebrow) {
  color:#c1d1c9;
  font-size:15px;
  line-height:1.9;
  margin-top:27px;
  max-width:520px;
}
.privacy-section .text-link {
  margin-top:26px;
  color:var(--lime);
}
.privacy-note {
  background:#1c3a3a;
  padding:36px;
  border-radius:28px;
  border:1px solid #36534f;
}
.privacy-glyph {
  font-size:54px;
  color:var(--lime);
  line-height:1;
  display:block;
  margin-bottom:27px;
}
.privacy-note h3 {
  font-size:27px;
}
.privacy-note p:not(.eyebrow) {
  margin-top:16px;
  font-size:13px;
}
.privacy-note .divider {
  height:1px;
  background:#36534f;
  margin:25px 0;
}
.privacy-note a {
  display:inline-block;
  color:var(--salt);
  font-size:12px;
  font-weight:600;
  margin-top:20px;
}
.privacy-section :focus-visible {
  outline-color:var(--lime);
}
.centered {
  text-align:center;
}
.centered .section-lead {
  margin-inline:auto;
}
.billing-switch {
  display:flex;
  justify-content:center;
  width:fit-content;
  margin:34px auto;
  padding:5px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:99px;
  gap:3px;
}
.billing-switch button {
  border:0;
  background:transparent;
  border-radius:99px;
  font-size:12px;
  font-weight:600;
  padding:11px 18px;
  min-height:42px;
}
.billing-switch button[aria-pressed=true] {
  background:var(--white);
  box-shadow:0 2px 5px rgb(16 44 45 / .09);
}
.billing-switch button span {
  font-size:9px;
  color:var(--tide);
  margin-left:9px;
}
.pricing-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  max-width:965px;
  margin:auto;
  gap:23px;
}
.price-card {
  border:1px solid var(--line);
  border-radius:28px;
  padding:35px;
  display:flex;
  flex-direction:column;
  background:rgb(255 255 255 / .35);
}
.price-card h3 {
  font-size:25px;
  margin-top:18px;
}
.price-card .price {
  font-size:54px;
  line-height:1.2;
  letter-spacing:-.06em;
  font-weight:700;
  margin-top:24px;
  color:var(--ink);
  font-variant-numeric:tabular-nums;
}
.price-card .price span {
  font-size:12px;
  font-weight:400;
  letter-spacing:0;
  color:var(--slate);
}
.price-card .price #pro-price {
  font:inherit;
  color:inherit;
  letter-spacing:inherit;
}
.price-card p:not(.eyebrow):not(.price):not(.fine-print) {
  font-size:13px;
  line-height:1.7;
  color:var(--slate);
  margin-top:11px;
}
.price-card .check-list {
  gap:13px;
  margin-bottom:32px;
}
.price-card .check-list li {
  font-size:13px;
}
.price-card .button {
  margin-top:auto;
}
.price-card .fine-print {
  font-size:10px;
  text-align:center;
  margin-top:18px;
  min-height:34px;
}
.pro-card {
  background:#edf2dd;
  border-color:#cbd9b3;
}
.price-label-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.small-badge {
  font-size:7px;
  font-weight:700;
  letter-spacing:.06em;
  border:1px solid #bacb99;
  border-radius:99px;
  padding:5px 8px;
}
.pricing-terms {
  max-width:825px;
  margin:27px auto 0;
  font-size:10px;
  color:var(--slate);
  text-align:center;
  line-height:1.8;
}
.faq-section {
  display:grid;
  grid-template-columns:.85fr 1.2fr;
  gap:95px;
  border-top:1px solid var(--line);
}
.faq-section h2 {
  margin-top:20px;
}
.faq-section .text-link {
  margin-top:25px;
}
.faq-list details {
  border-bottom:1px solid var(--line);
}
.faq-list details:first-child {
  border-top:1px solid var(--line);
}
.faq-list summary {
  position:relative;
  cursor:pointer;
  list-style:none;
  padding:23px 35px 23px 0;
  font-size:15px;
  line-height:1.55;
  font-weight:600;
  letter-spacing:-.02em;
}
.faq-list summary::-webkit-details-marker {
  display:none;
}
.faq-list summary::after {
  content:'+';
  position:absolute;
  right:2px;
  top:22px;
  font-size:22px;
  font-weight:400;
  color:var(--tide);
  line-height:1;
}
.faq-list details[open] summary::after {
  content:'−';
}
.faq-list details p {
  font-size:13px;
  color:var(--slate);
  line-height:1.9;
  padding-bottom:25px;
  max-width:590px;
}
.final-cta {
  background:var(--lime);
  border-radius:35px;
  padding:65px 75px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  margin-bottom:45px;
}
.final-cta h2 {
  margin-top:20px;
  font-size:58px;
}
.final-cta p:not(.eyebrow) {
  font-size:14px;
  margin-top:23px;
}
.final-action {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:19px;
  flex-shrink:0;
}
.final-action img {
  width:72px;
  border-radius:16px;
  box-shadow:0 8px 18px -8px #69783a;
}
.final-action>span {
  font-size:10px;
}
.site-footer {
  padding-top:28px;
  padding-bottom:30px;
}
.footer-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding-bottom:26px;
}
.footer-top .brand {
  width:161px;
}
.footer-top p {
  font-size:13px;
  color:var(--slate);
}
.footer-top .text-link {
  font-size:12px;
}
.footer-bottom {
  display:flex;
  gap:25px;
  align-items:center;
  justify-content:space-between;
  padding-top:24px;
  border-top:1px solid var(--line);
  font-size:10px;
  color:var(--slate);
}
.footer-bottom nav {
  display:flex;
  gap:24px;
}
.footer-bottom a {
  text-decoration:none;
}
.footer-bottom a:hover {
  text-decoration:underline;
}
.page-intro {
  padding:86px 0 52px;
}
.page-intro h1 {
  font-size:clamp(42px,5.5vw,72px);
  max-width:1000px;
  margin-top:23px;
}
.page-intro .section-lead {
  max-width:700px;
}
.legal-copy {
  max-width:800px;
  padding-bottom:85px;
}
.legal-copy h2 {
  font-size:25px;
  letter-spacing:-.035em;
  margin-top:42px;
  margin-bottom:17px;
}
.legal-copy p {
  font-size:15px;
  line-height:1.95;
  color:var(--slate);
  margin-top:16px;
}
.legal-copy a {
  color:var(--tide);
}
.policy-summary {
  padding:27px 31px;
  background:var(--soft);
  border-radius:20px;
  margin-bottom:45px;
}
.policy-summary strong {
  font-size:18px;
  font-weight:600;
  letter-spacing:-.025em;
}
.policy-summary p {
  font-size:14px;
  margin-top:10px;
}
.page-privacy .page-intro,.page-terms .page-intro {
  max-width:1000px;
}
.page-privacy .legal-copy,.page-terms .legal-copy {
  margin-left:max(48px,calc((100% - 1000px)/2));
}
.support-grid {
  display:grid;
  grid-template-columns:.95fr 1.25fr;
  gap:85px;
  padding:15px 0 100px;
}
.support-contact {
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:28px;
  padding:36px;
  align-self:start;
}
.support-contact h2 {
  font-size:35px;
}
.support-contact p {
  font-size:15px;
  color:var(--slate);
  line-height:1.9;
  margin-top:23px;
}
.support-contact .button {
  font-size:13px;
  gap:15px;
  margin-top:25px;
  word-break:break-word;
}
.support-contact .fine-print {
  font-size:12px;
  margin-top:27px;
}
.download-page {
  max-width:840px;
  text-align:center;
  min-height:680px;
  padding:65px 0 90px;
}
.download-page .eyebrow {
  margin-bottom:23px;
}
.download-icon {
  width:87px;
  border-radius:21px;
  margin:0 auto 30px;
}
.download-page h1 {
  font-size:clamp(44px,5.4vw,70px);
  max-width:800px;
  margin:auto;
}
.download-page .section-lead {
  margin:26px auto;
  max-width:610px;
}
.download-page .fine-print {
  margin:20px auto 14px;
}
.download-page>.button {
  margin-top:15px;
}
.store-buttons {
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin:30px 0;
}
.store-action {
  border:1px solid var(--ink);
  border-radius:13px;
  background:var(--ink);
  color:var(--salt);
  padding:14px 28px;
  text-align:left;
  text-decoration:none;
  min-width:210px;
}
.store-action small {
  display:block;
  font-size:10px;
}
.store-action strong {
  display:block;
  font-size:23px;
  letter-spacing:-.04em;
  font-weight:600;
  line-height:1.5;
}
.store-action.pending {
  background:var(--soft);
  color:var(--ink);
  border-color:var(--line);
}
.store-action.pending small {
  color:var(--slate);
}
@media(min-width:1450px) {
  .hero h1 {
    font-size:91px;
  }
  .hero {
    min-height:775px;
  }
  .hero-art {
    min-height:680px;
  }
  .hero-phone-front {
    width:275px;
    left:29px;
  }
  .hero-phone-back {
    width:250px;
    right:10px;
  }
  .hero-note {
    bottom:40px;
  }
  .orbit-one {
    width:600px;
    height:600px;
  }
}
@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .desktop-nav {
    gap:21px;
  }
  .nav-wrap {
    gap:18px;
  }
  .brand {
    width:163px;
  }
  .hero {
    grid-template-columns:1.03fr 1fr;
    min-height:650px;
  }
  .hero h1 {
    font-size:65px;
  }
  .hero-description {
    font-size:15px;
  }
  .hero-art {
    min-height:570px;
  }
  .hero-phone-front {
    width:220px;
    left:8px;
  }
  .hero-phone-back {
    width:196px;
    right:2px;
  }
  .hero-note {
    bottom:46px;
    right:0;
    padding:12px 16px;
    font-size:10px;
  }
  .orbit-one {
    width:450px;
    height:500px;
    left:-8px;
  }
  .orbit-two {
    width:440px;
    height:310px;
  }
  .art-label {
    right:12px;
    font-size:8px;
  }
  .screen-disclaimer {
    font-size:7px;
  }
  .intro {
    gap:40px 55px;
  }
  .feature-card {
    padding:25px;
  }
  .feature-card h3 {
    font-size:22px;
  }
  .tour-layout {
    gap:45px;
  }
  .tour-controls button {
    padding:16px 13px;
  }
  .tour-controls strong {
    font-size:15px;
  }
  .progress-section {
    gap:55px;
  }
  .privacy-layout {
    gap:60px;
  }
  .faq-section {
    gap:60px;
  }
  .final-cta {
    padding:55px;
  }
  .final-cta h2 {
    font-size:49px;
  }
  .price-card {
    padding:29px;
  }
  .small-badge {
    font-size:6px;
  }
  .page-privacy .legal-copy,.page-terms .legal-copy {
    margin-left:auto;
  }
}
@media(max-width:820px) {
  .desktop-nav {
    display:none;
  }
  .menu-toggle {
    display:flex;
  }
  .nav-wrap {
    min-height:76px;
  }
  .hero {
    grid-template-columns:minmax(0,1fr);
    padding-top:47px;
    padding-bottom:35px;
    text-align:center;
    gap:26px;
  }
  .hero-copy {
    padding:0;
  }
  .hero h1 {
    font-size:73px;
    max-width:710px;
    margin:22px auto 0;
  }
  .hero-description {
    font-size:17px;
    max-width:510px;
    margin:23px auto 0;
  }
  .hero-actions,.hero-facts {
    justify-content:center;
  }
  .hero-art {
    width:495px;
    max-width:100%;
    min-height:590px;
    margin:auto;
  }
  .hero-phone-front {
    width:240px;
    left:34px;
    top:34px;
  }
  .hero-phone-back {
    width:215px;
    right:34px;
    top:82px;
  }
  .orbit-one {
    width:100%;
    height:540px;
    left:0;
    top:-5px;
  }
  .orbit-two {
    width:95%;
    height:320px;
    left:0;
    top:130px;
  }
  .hero-note {
    right:19px;
    bottom:42px;
    text-align:left;
    font-size:12px;
  }
  .art-label {
    right:30px;
    top:5px;
  }
  .principles {
    font-size:10px;
    gap:12px;
  }
  .principles span {
    gap:9px;
  }
  .principles i {
    flex-shrink:0;
  }
  .section-space {
    padding-block:80px;
  }
  .intro {
    grid-template-columns:1fr;
    gap:30px;
  }
  .intro-copy {
    max-width:620px;
    font-size:17px;
  }
  .feature-grid {
    grid-template-columns:1fr;
    gap:15px;
    margin-top:6px;
  }
  .feature-card {
    position:relative;
    padding:30px 32px 30px 105px;
    min-height:175px;
  }
  .feature-icon {
    position:absolute;
    left:30px;
    top:30px;
    margin:0;
  }
  .feature-card h3 {
    max-width:none;
    font-size:24px;
  }
  .feature-card p {
    max-width:600px;
    font-size:14px;
    margin:15px 0;
  }
  .feature-card .text-link {
    margin:0;
  }
  .tour-layout {
    gap:35px;
    grid-template-columns:1fr 1fr;
  }
  .tour-copy h2 {
    font-size:36px;
  }
  .tour-copy .section-lead {
    font-size:15px;
  }
  .tour-controls {
    gap:4px;
  }
  .tour-controls button {
    padding:13px 9px;
    gap:11px;
  }
  .step-description {
    font-size:11px;
  }
  .tour-controls strong {
    font-size:13px;
  }
  .step-arrow {
    display:none;
  }
  .tour-display {
    padding:24px 12px 18px;
    border-radius:28px;
  }
  .tour-phone {
    width:210px;
    border:6px solid var(--ink);
    border-radius:28px;
  }
  .tour-tag {
    font-size:7px;
  }
  .tour-display figcaption {
    font-size:10px;
    max-width:205px;
  }
  .tour-display .fine-print {
    font-size:8px;
  }
  .progress-section {
    gap:40px;
    grid-template-columns:1fr 1fr;
  }
  .progress-art {
    height:550px;
    padding:23px 19px;
  }
  .progress-phone {
    width:215px;
    margin-top:39px;
  }
  .mini-label {
    font-size:8px;
    line-height:1.8;
  }
  .progress-sticker {
    right:12px;
    font-size:14px;
    padding:18px 20px;
    bottom:45px;
  }
  .progress-copy h2 {
    font-size:36px;
  }
  .progress-copy .section-lead {
    font-size:15px;
  }
  .check-list li {
    font-size:13px;
  }
  .privacy-layout {
    grid-template-columns:1fr;
    gap:40px;
  }
  .privacy-section h2 {
    font-size:45px;
  }
  .privacy-section p:not(.eyebrow) {
    max-width:650px;
  }
  .privacy-section {
    padding-block:75px;
  }
  .privacy-note {
    max-width:none;
    display:block;
  }
  .privacy-glyph {
    margin-bottom:20px;
  }
  .privacy-note p:not(.eyebrow) {
    font-size:14px;
  }
  .price-card {
    padding:25px;
  }
  .price-card h3 {
    font-size:23px;
  }
  .price-card .price {
    font-size:46px;
  }
  .price-label-row {
    flex-wrap:wrap;
  }
  .small-badge {
    display:none;
  }
  .price-card .check-list li {
    font-size:12px;
  }
  .faq-section {
    grid-template-columns:1fr;
    gap:36px;
  }
  .final-cta {
    padding:40px;
    gap:25px;
  }
  .final-cta h2 {
    font-size:41px;
  }
  .final-cta p:not(.eyebrow) {
    max-width:310px;
  }
  .final-action .button {
    font-size:12px;
    padding:14px 18px;
    gap:18px;
  }
  .final-action img {
    width:60px;
  }
  .footer-top {
    gap:20px;
    flex-wrap:wrap;
  }
  .footer-top p {
    font-size:11px;
  }
  .footer-bottom {
    flex-wrap:wrap;
    font-size:9px;
    gap:18px;
  }
  .footer-bottom>span:last-child {
    display:none;
  }
  .support-grid {
    grid-template-columns:1fr;
    gap:35px;
  }
  .support-contact {
    max-width:600px;
  }
  .page-intro {
    padding-top:65px;
  }
  .legal-copy {
    width:calc(100% - 64px);
  }
}
@media(max-width:540px) {
  html {
    scroll-padding-top:95px;
  }
  .wrap {
    width:calc(100% - 40px);
  }
  .nav-wrap {
    width:calc(100% - 32px);
    min-height:72px;
    gap:10px;
  }
  .brand {
    width:137px;
  }
  .nav-actions {
    gap:9px;
  }
  .nav-actions .button-small {
    font-size:10px;
    gap:8px;
    min-height:41px;
    padding:10px 12px;
  }
  .nav-actions .button-small>span {
    font-size:16px;
  }
  .menu-toggle {
    width:40px;
    height:40px;
  }
  .hero {
    padding-top:37px;
    gap:29px;
  }
  .hero .eyebrow {
    font-size:9px;
  }
  .hero h1 {
    font-size:clamp(42px,11.4vw,61px);
    letter-spacing:-.06em;
    line-height:1.04;
  }
  .hero-description {
    font-size:14px;
    line-height:1.85;
    max-width:380px;
    margin-top:20px;
  }
  .desktop-break {
    display:none;
  }
  .hero-actions {
    gap:8px 17px;
    margin-top:24px;
  }
  .hero-actions .button {
    font-size:12px;
    padding:13px 20px;
    min-height:48px;
    gap:21px;
  }
  .hero-actions .text-link {
    font-size:10px;
    gap:7px;
  }
  .hero-facts {
    font-size:9px;
    gap:11px;
    margin-top:20px;
  }
  .hero-facts span+span::before {
    margin-right:11px;
  }
  .hero-art {
    min-height:495px;
    width:355px;
  }
  .hero-phone-front {
    width:192px;
    left:15px;
    top:29px;
    border-radius:28px;
    border-width:6px;
  }
  .hero-phone-back {
    width:172px;
    right:6px;
    top:74px;
    border-radius:25px;
    border-width:6px;
  }
  .orbit-one {
    height:440px;
  }
  .orbit-two {
    height:285px;
    top:106px;
    width:98%;
  }
  .art-label {
    font-size:7px;
    right:17px;
    top:0;
  }
  .hero-note {
    font-size:10px;
    padding:12px 14px;
    gap:10px;
    bottom:45px;
    right:-1px;
    border-radius:11px;
  }
  .note-icon {
    width:35px;
    height:35px;
    font-size:23px;
  }
  .screen-disclaimer {
    font-size:6px;
    letter-spacing:.1em;
    bottom:5px;
  }
  .principles {
    padding:18px 0;
    align-items:start;
    gap:10px;
    font-size:9px;
    line-height:1.6;
  }
  .principles span {
    flex:1;
    display:block;
    text-align:center;
  }
  .principles i {
    margin:0 auto 8px;
    width:23px;
    height:23px;
    font-size:8px;
  }
  .section-space {
    padding-block:61px;
  }
  h2 {
    font-size:36px;
  }
  .eyebrow {
    font-size:9px;
  }
  .intro {
    gap:22px;
  }
  .intro-copy {
    font-size:15px;
  }
  .feature-grid {
    gap:13px;
  }
  .feature-card {
    padding:25px;
    min-height:0;
  }
  .feature-icon {
    position:static;
    margin:0 0 22px;
    width:41px;
    height:41px;
    font-size:23px;
  }
  .feature-card h3 {
    font-size:23px;
    max-width:265px;
  }
  .feature-card p {
    font-size:13px;
    line-height:1.9;
  }
  .feature-card .text-link {
    font-size:11px;
  }
  .tour-layout {
    grid-template-columns:1fr;
    gap:28px;
  }
  .tour-copy h2 {
    font-size:36px;
  }
  .tour-copy .section-lead {
    font-size:15px;
    margin-top:20px;
  }
  .tour-controls {
    margin-top:25px;
    gap:7px;
  }
  .tour-controls button {
    padding:15px 18px;
    gap:18px;
  }
  .tour-controls strong {
    font-size:15px;
  }
  .step-description {
    font-size:11px;
    max-width:235px;
  }
  .step-arrow {
    display:block;
  }
  .tour-display {
    max-width:370px;
    width:100%;
    margin:auto;
    padding:24px 20px 21px;
  }
  .tour-tag {
    font-size:8px;
  }
  .tour-phone {
    width:221px;
  }
  .tour-display figcaption {
    font-size:11px;
    max-width:265px;
  }
  .tour-display .fine-print {
    font-size:9px;
  }
  .progress-section {
    grid-template-columns:1fr;
    gap:36px;
  }
  .progress-copy {
    order:-1;
  }
  .progress-copy h2 {
    font-size:36px;
  }
  .progress-art {
    height:520px;
    max-width:390px;
    width:100%;
    margin:auto;
    padding:25px;
  }
  .progress-phone {
    width:230px;
    margin-top:30px;
  }
  .progress-sticker {
    right:19px;
    bottom:38px;
    font-size:15px;
  }
  .mini-label {
    font-size:9px;
  }
  .check-list {
    gap:13px;
  }
  .privacy-section {
    padding-block:60px;
  }
  .privacy-layout {
    gap:32px;
  }
  .privacy-section h2 {
    font-size:36px;
    line-height:1.18;
  }
  .privacy-section p:not(.eyebrow) {
    font-size:14px;
    margin-top:22px;
  }
  .privacy-section .text-link {
    font-size:12px;
  }
  .privacy-note {
    padding:28px;
  }
  .privacy-note p:not(.eyebrow) {
    font-size:12px;
    margin-top:16px;
  }
  .privacy-note h3 {
    font-size:25px;
  }
  .section-lead {
    font-size:15px;
    line-height:1.8;
  }
  .billing-switch {
    margin-block:28px;
  }
  .billing-switch button {
    font-size:11px;
    padding:9px 16px;
  }
  .pricing-grid {
    grid-template-columns:1fr;
    gap:18px;
    max-width:390px;
  }
  .price-card {
    padding:29px;
  }
  .price-card .check-list li {
    font-size:13px;
  }
  .price-card .price {
    font-size:51px;
  }
  .price-card h3 {
    font-size:25px;
  }
  .small-badge {
    display:block;
    font-size:6px;
  }
  .price-card .fine-print {
    min-height:0;
  }
  .pricing-terms {
    font-size:9px;
    line-height:1.9;
  }
  .faq-section {
    gap:30px;
  }
  .faq-list summary {
    font-size:14px;
    padding-top:21px;
    padding-bottom:21px;
  }
  .faq-list details p {
    font-size:13px;
  }
  .final-cta {
    padding:36px 28px;
    flex-direction:column;
    align-items:flex-start;
    border-radius:26px;
    gap:29px;
    margin-bottom:28px;
  }
  .final-cta h2 {
    font-size:41px;
  }
  .final-cta p:not(.eyebrow) {
    font-size:13px;
    max-width:290px;
    margin-top:19px;
  }
  .final-action {
    display:grid;
    grid-template-columns:47px auto;
    gap:12px 17px;
    align-items:center;
  }
  .final-action img {
    width:47px;
    border-radius:12px;
    grid-row:1/3;
  }
  .final-action>span {
    font-size:9px;
    text-align:center;
  }
  .final-action .button {
    min-height:46px;
    font-size:12px;
  }
  .footer-top {
    gap:9px 20px;
    padding-bottom:21px;
  }
  .footer-top .brand {
    width:137px;
  }
  .footer-top p {
    order:3;
    width:100%;
    font-size:11px;
  }
  .footer-top .text-link {
    font-size:11px;
    margin-left:auto;
  }
  .footer-bottom {
    font-size:9px;
    gap:15px;
  }
  .footer-bottom nav {
    gap:18px;
  }
  .site-footer {
    padding-top:18px;
    padding-bottom:27px;
  }
  .page-intro {
    padding:48px 0 35px;
  }
  .page-intro h1 {
    font-size:43px;
  }
  .page-intro .section-lead {
    font-size:14px;
  }
  .legal-copy {
    width:calc(100% - 40px);
    padding-bottom:55px;
  }
  .legal-copy h2 {
    font-size:24px;
    margin-top:33px;
  }
  .legal-copy p {
    font-size:14px;
  }
  .policy-summary {
    padding:23px;
    margin-bottom:33px;
  }
  .policy-summary p {
    font-size:13px;
  }
  .support-grid {
    padding-bottom:65px;
    gap:35px;
  }
  .support-contact {
    padding:28px;
  }
  .support-contact p {
    font-size:14px;
  }
  .support-contact .button {
    font-size:12px;
    padding:12px 18px;
    gap:14px;
  }
  .download-page {
    padding:43px 0 65px;
    min-height:680px;
  }
  .download-page h1 {
    font-size:45px;
  }
  .download-page .eyebrow {
    font-size:9px;
  }
  .download-icon {
    width:73px;
    border-radius:18px;
  }
  .download-page .section-lead {
    font-size:14px;
    margin:24px auto;
  }
  .store-buttons {
    gap:13px;
  }
  .store-action {
    min-width:220px;
    padding:14px 25px;
  }
  .store-action strong {
    font-size:22px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
  .button:hover {
    transform:none;
  }
}
@media print {
  .site-header,.site-footer,.hero-art,.tour-display,.progress-art,.billing-switch {
    display:none;
  }
  body {
    background:white;
    color:black;
  }
  .wrap {
    width:100%;
  }
  .section-space {
    padding:25px 0;
  }
  .hero,.intro,.tour-layout,.progress-section,.privacy-layout,.faq-section {
    display:block;
  }
  .privacy-section {
    background:white;
    color:black;
    padding:25px 0;
  }
  .privacy-section p:not(.eyebrow),.privacy-section em {
    color:black;
  }
  .legal-copy {
    margin:auto!important;
  }
  .price-card {
    break-inside:avoid;
  }
  .final-cta {
    display:none;
  }
}
