@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/BricolageGrotesque-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/BricolageGrotesque-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/BricolageGrotesque-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/HankenGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/HankenGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/HankenGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/HankenGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --page: #fdfcfb;
  --paper: #ffffff;
  --ink: #2d3532;
  --body: #4a5a52;
  --muted: #7c8782;
  --sage: #5f7d6d;
  --sage-dark: #46584f;
  --sage-soft: #e8ede9;
  --sage-wash: #f3f6f2;
  --tan: #d1bba7;
  --tan-ink: #5c4d3e;
  --line: #e5eae6;
  --danger: #bc6c74;
  --clay: #be7b4f;
  --display: "Bricolage Grotesque", ui-rounded, system-ui, sans-serif;
  --sans: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --shell: 1200px;
  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(88px, 11vw, 156px);
  --soft-shadow: 0 18px 54px rgba(45, 53, 50, 0.08);
  --phone-shadow: 0 32px 68px rgba(45, 53, 50, 0.18), 0 8px 24px rgba(45, 53, 50, 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font: 18px/1.62 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.landing-page {
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

button,
summary {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: #dbe6df;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.skip-link:focus {
  transform: none;
}

.site-shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p {
  margin: 0;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.landing-page h1 span,
.landing-page h2 span {
  color: var(--sage);
}

.landing-page h2 {
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 700;
}

.landing-page h3 {
  font-size: clamp(29px, 3.4vw, 45px);
  font-weight: 700;
}

.eyebrow {
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 234, 230, 0.8);
  background: rgba(253, 252, 251, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}

.site-brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font: 700 23px/1 var(--display);
  letter-spacing: -0.035em;
  text-decoration: none;
}

.site-brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(45, 53, 50, 0.12);
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
}

.site-nav-links a {
  color: var(--body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav-links a:hover {
  color: var(--sage);
}

.site-nav > .site-nav-inner > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--sage);
  color: var(--page);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 13px 30px rgba(95, 125, 109, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--sage-dark);
  box-shadow: 0 17px 36px rgba(95, 125, 109, 0.3);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 15px;
  font-size: 14px;
  box-shadow: none;
}

.button-store {
  min-height: 64px;
  padding: 12px 25px;
  border-radius: 20px;
}

.button-store > svg {
  width: 22px;
  height: 27px;
  flex: none;
  fill: currentColor;
}

.button-store > span {
  display: grid;
  gap: 3px;
  text-align: left;
}

.button-store small {
  color: rgba(253, 252, 251, 0.74);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.button-store strong {
  color: var(--page);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1;
}

.button-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sage-dark);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.button-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.button-link:hover svg {
  transform: translateX(4px);
}

.button:focus-visible,
.button-link:focus-visible,
.site-nav a:focus-visible,
.site-footer a:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(95, 125, 109, 0.34);
  outline-offset: 4px;
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: min(830px, calc(100svh - 78px));
  padding: clamp(44px, 6vw, 86px) 0 30px;
  background:
    radial-gradient(circle at 77% 29%, rgba(232, 237, 233, 0.9), transparent 25%),
    linear-gradient(180deg, rgba(232, 237, 233, 0.45), rgba(253, 252, 251, 0) 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 5.4vw, 76px);
  font-weight: 700;
}

.hero h1 span {
  display: inline;
}

.hero-lede {
  max-width: 600px;
  margin-top: 28px !important;
  color: var(--body);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.52;
}

.hero-actions {
  margin-top: 33px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust li::before {
  width: 7px;
  height: 7px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 48vw, 650px);
}

.device {
  position: relative;
  margin: 0;
  border: clamp(6px, 0.65vw, 9px) solid var(--ink);
  border-radius: clamp(30px, 3vw, 48px);
  background: var(--paper);
  box-shadow: var(--phone-shadow);
  overflow: hidden;
}

.device::before {
  position: absolute;
  top: 1.3%;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 3.1%;
  border-radius: 999px;
  background: #090b0a;
  transform: translateX(-50%);
  content: "";
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-hero-left,
.device-hero-right {
  position: absolute;
  width: clamp(220px, 20.5vw, 290px);
  aspect-ratio: 1206 / 2622;
}

.device-hero-left {
  top: 2%;
  left: 4%;
  z-index: 2;
  transform: rotate(-4.2deg);
}

.device-hero-right {
  top: 10%;
  right: 1%;
  z-index: 1;
  transform: rotate(4.3deg);
}

.hero-bramble {
  position: absolute;
  right: 24%;
  bottom: 0;
  z-index: 4;
  width: clamp(190px, 18vw, 260px);
  filter: drop-shadow(0 18px 16px rgba(45, 53, 50, 0.13));
}

.bramble-note {
  position: absolute;
  z-index: 5;
  max-width: 245px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: var(--soft-shadow);
}

.hero-visual > .bramble-note {
  right: 0;
  bottom: 8%;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(95, 125, 109, 0.26);
  border-radius: 50%;
}

.orbit-one {
  width: 410px;
  height: 410px;
  top: 12%;
  left: 8%;
}

.orbit-two {
  width: 270px;
  height: 270px;
  right: 4%;
  bottom: 8%;
}

.progress-rule {
  height: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero > .progress-rule {
  margin-top: 32px;
}

.progress-rule i {
  width: 12px;
  height: 12px;
  flex: none;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(95, 125, 109, 0.12);
}

.progress-rule span {
  width: clamp(12px, 2.8vw, 38px);
  height: 4px;
  border-radius: 99px;
  background: var(--line);
}

.loop-section {
  padding: var(--section) 0 0;
}

.section-heading {
  max-width: 820px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 20px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--body);
  font-size: 20px;
}

.loop-rail {
  position: relative;
  margin: clamp(52px, 7vw, 86px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.loop-rail::before {
  position: absolute;
  top: 15px;
  right: 4%;
  left: 4%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 13px, transparent 13px 22px);
  content: "";
}

.loop-rail li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--body);
  font-size: 15px;
}

.loop-rail span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  background: var(--page);
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
}

.story-row {
  min-height: 720px;
  padding: clamp(82px, 10vw, 138px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  border-bottom: 1px solid var(--line);
}

.story-row-reverse .story-copy {
  order: 2;
}

.story-row-reverse .story-art {
  order: 1;
}

.story-copy {
  max-width: 520px;
}

.story-number {
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin-top: 20px;
}

.story-copy > p:not(.story-number) {
  margin-top: 23px;
  color: var(--body);
  font-size: 19px;
}

.story-copy .soft-note {
  padding-left: 19px;
  border-left: 3px solid var(--tan);
  color: var(--tan-ink);
  font-size: 16px;
}

.story-art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.story-art::before {
  position: absolute;
  width: min(100%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sage-soft);
  content: "";
}

.device-story {
  z-index: 2;
  width: clamp(230px, 25vw, 320px);
  aspect-ratio: 1206 / 2622;
}

.watercolor-icon,
.story-bramble {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 15px 18px rgba(45, 53, 50, 0.08));
}

.watercolor-icon {
  width: 92px;
}

.story-art-shield > .watercolor-icon {
  top: 8%;
  right: 8%;
}

.story-bramble-calm {
  right: 0;
  bottom: -3%;
  width: 220px;
}

.watercolor-share {
  top: 4%;
  left: 4%;
}

.watercolor-moon {
  right: 1%;
  bottom: 6%;
}

.story-art-holds .device {
  transform: rotate(2.2deg);
}

.story-art-decide::after {
  position: absolute;
  top: 8%;
  right: 7%;
  width: 90px;
  height: 90px;
  border: 2px dashed rgba(209, 187, 167, 0.68);
  border-radius: 50%;
  content: "";
}

.science-section {
  padding: var(--section) 0;
  background: var(--sage-soft);
}

.science-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.science-title h2 {
  margin-top: 22px;
}

.science-copy {
  padding-top: 35px;
  color: var(--body);
}

.science-lede {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.science-copy > p + p {
  margin-top: 24px;
}

.citations {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}

.citations::before {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  content: "Further reading";
}

.citations a {
  width: max-content;
  max-width: 100%;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 600;
  text-underline-offset: 4px;
}

.science-mascot {
  position: relative;
  grid-column: 1 / -1;
  min-height: 210px;
  margin-top: -10px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.science-mascot img {
  width: 230px;
}

.science-mascot p {
  max-width: 260px;
  margin: 0 0 42px -26px;
  padding: 15px 18px;
  border: 1px solid rgba(95, 125, 109, 0.2);
  border-radius: 20px 20px 20px 5px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--body);
  font-size: 15px;
  font-weight: 600;
}

.wins-section {
  padding: var(--section) 0;
}

.wins-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.wins-copy h2 {
  margin-top: 21px;
}

.wins-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 26px;
  color: var(--body);
  font-size: 20px;
}

.example-card {
  max-width: 500px;
  margin-top: 36px;
  padding: 22px 25px 22px 20px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.example-card img {
  width: 74px;
}

.example-card strong,
.example-card span {
  display: block;
}

.example-card strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.example-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.wins-art {
  position: relative;
  min-height: 700px;
}

.wins-art::before {
  position: absolute;
  inset: 8% 4% 5% 11%;
  border-radius: 50%;
  background: var(--sage-soft);
  content: "";
}

.device-wins {
  position: absolute;
  top: 0;
  left: 13%;
  width: clamp(250px, 27vw, 340px);
  aspect-ratio: 1206 / 2622;
  z-index: 2;
}

.wins-bramble {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 230px;
  filter: drop-shadow(0 18px 18px rgba(45, 53, 50, 0.1));
}

.wins-note {
  right: 4%;
  bottom: 28%;
}

.privacy-section {
  position: relative;
  padding: var(--section) 0;
  background: var(--sage-wash);
  overflow: hidden;
}

.privacy-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 8vw, 118px);
}

.privacy-copy {
  position: relative;
  z-index: 2;
}

.privacy-copy h2 {
  margin-top: 21px;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 25px;
  color: var(--body);
  font-size: 20px;
}

.privacy-copy .button-link {
  margin-top: 27px;
}

.privacy-list {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.privacy-list li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}

.privacy-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  grid-row: 1 / 3;
  border: 2px solid var(--sage);
  border-radius: 50%;
  content: "";
}

.privacy-list strong {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.privacy-list span {
  color: var(--body);
  font-size: 15px;
}

.privacy-bramble {
  position: absolute;
  right: -270px;
  bottom: -260px;
  width: 600px;
  opacity: 0.2;
}

.pricing-section {
  padding: var(--section) 0;
}

.pricing-layout {
  margin-top: clamp(58px, 8vw, 94px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 15px;
}

.plan {
  position: relative;
  min-height: 335px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(45, 53, 50, 0.05);
}

.plan-yearly {
  border-color: var(--sage);
  box-shadow: 0 18px 50px rgba(95, 125, 109, 0.12);
}

.plan-label {
  min-height: 18px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan:not(.plan-yearly)::before {
  display: block;
  min-height: 18px;
  content: "";
}

.plan h3 {
  margin-top: 28px;
  font-size: 28px;
}

.plan-price {
  margin-top: 28px !important;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-price span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.plan > p:last-child {
  margin-top: auto;
  padding-top: 26px;
  color: var(--body);
  font-size: 14px;
}

.pricing-art {
  position: relative;
  min-height: 590px;
}

.pricing-art::before {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--sage-soft);
  content: "";
}

.device-paywall {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 265px;
  aspect-ratio: 1206 / 2622;
  transform: rotate(-2deg);
}

.pricing-art > img {
  position: absolute;
  right: -25px;
  bottom: 0;
  z-index: 3;
  width: 180px;
  filter: drop-shadow(0 18px 16px rgba(45, 53, 50, 0.1));
}

.apple-note {
  margin-top: 22px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.apple-note svg {
  width: 17px;
  height: 20px;
  fill: currentColor;
}

.faq-section {
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232, 237, 233, 0.48), rgba(253, 252, 251, 0));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
  align-items: start;
  gap: clamp(50px, 9vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-top: 21px;
  font-size: clamp(42px, 5vw, 67px);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 45px 25px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 16px;
  height: 2px;
  background: var(--sage);
  transition: transform 180ms ease;
  content: "";
}

.faq-list summary::after {
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 620px;
  padding: 0 45px 25px 0;
  color: var(--body);
}

.launch-section {
  padding: clamp(90px, 12vw, 170px) 0;
}

.launch-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.launch-inner .progress-rule {
  margin-bottom: 36px;
}

.launch-inner h2 {
  max-width: 800px;
}

.launch-inner > p {
  max-width: 580px;
  margin-top: 25px;
  color: var(--body);
  font-size: 20px;
}

.launch-inner .button {
  margin-top: 34px;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--page);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px 40px;
}

.site-footer .site-brand {
  color: var(--page);
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer nav a,
.footer-email {
  color: #ccd5d0;
  font-size: 14px;
  text-decoration: none;
}

.footer-email {
  width: max-content;
}

.site-footer nav a:hover,
.footer-email:hover {
  color: var(--page);
}

.site-footer-grid > p {
  justify-self: end;
  color: #93a19a;
  font-size: 14px;
}

/* Shared editorial shell for the blog, support, privacy, and 404 pages. */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(229, 234, 230, 0.82);
  background: rgba(253, 252, 251, 0.91);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1120px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

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

.brand-name {
  font: 700 21px/1 var(--display);
  letter-spacing: -0.03em;
}

.nav-link {
  color: var(--body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--sage);
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.post-meta {
  margin-bottom: 13px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.post-title,
.index-head h1,
.legal h1 {
  margin: 0 0 22px;
  font: 700 clamp(42px, 6vw, 64px)/1.02 var(--display);
  letter-spacing: -0.04em;
}

.prose {
  color: var(--body);
}

.prose h2 {
  margin: 62px 0 16px;
  color: var(--ink);
  font: 700 clamp(29px, 4vw, 39px)/1.12 var(--display);
  letter-spacing: -0.03em;
}

.prose h3 {
  margin: 40px 0 11px;
  color: var(--ink);
  font: 700 24px/1.22 var(--display);
  letter-spacing: -0.02em;
}

.prose p {
  margin: 0 0 23px;
}

.prose ul,
.prose ol {
  margin: 0 0 25px;
  padding-left: 25px;
}

.prose li {
  margin: 0 0 10px;
}

.prose strong {
  color: var(--ink);
}

.prose a {
  color: var(--sage);
  font-weight: 700;
  text-underline-offset: 3px;
}

.prose blockquote {
  margin: 0 0 28px;
  padding: 21px 24px;
  border: 1px solid #cedbd2;
  border-left: 5px solid var(--sage);
  border-radius: 0 20px 20px 0;
  background: var(--sage-soft);
  color: var(--ink);
}

.prose blockquote p {
  margin: 0;
}

.prose hr {
  margin: 50px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.prose code {
  padding: 2px 5px;
  border-radius: 6px;
  background: var(--sage-soft);
  font-size: 0.9em;
}

.prose table {
  width: 100%;
  margin: 0 0 28px;
  border-collapse: collapse;
  font-size: 16px;
}

.prose th,
.prose td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th {
  color: var(--ink);
  font-weight: 700;
}

.cta-card {
  margin: 70px 0 12px;
  padding: 38px;
  border: 1px solid #cbd9d0;
  border-radius: 26px;
  background: var(--sage-soft);
  text-align: center;
}

.cta-card h3 {
  margin: 0 0 10px;
  font: 700 clamp(29px, 4vw, 38px)/1.08 var(--display);
  letter-spacing: -0.035em;
}

.cta-card p {
  max-width: 470px;
  margin: 0 auto 24px;
  color: var(--body);
  font-size: 16px;
}

.appbtn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px;
  border-radius: 15px;
  background: var(--sage);
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 9px 24px rgba(95, 125, 109, 0.24);
}

.appbtn:hover {
  background: var(--sage-dark);
}

.appbtn svg {
  width: 20px;
  height: 22px;
}

.appbtn-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-align: left;
}

.appbtn-txt small {
  margin-bottom: 3px;
  font-size: 10px;
  opacity: 0.72;
}

.appbtn-txt strong {
  color: var(--paper);
  font-size: 17px;
}

.disclaimer {
  margin: 56px 0 -32px;
  padding: 18px 20px;
  border-left: 3px solid var(--tan);
  border-radius: 0 13px 13px 0;
  background: #fbf8f4;
  color: var(--body);
  font-size: 14px;
}

.disclaimer strong {
  color: var(--ink);
}

.footer {
  margin-top: 88px;
  padding: 32px 24px;
  background: var(--ink);
  color: var(--page);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer .brand {
  color: var(--page);
}

.footer .brand-name {
  font-size: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #c9d2cd;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--page);
}

.footer-links .copy {
  color: #91a097;
}

.index-head {
  max-width: 880px;
  margin: 0 auto;
  padding: 98px 24px 28px;
  text-align: center;
  background: radial-gradient(circle at 50% 0, rgba(95, 125, 109, 0.16), transparent 62%);
}

.index-head h1 {
  margin-bottom: 18px;
}

.index-head p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--body);
  font-size: 20px;
}

.cards {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 24px 0;
  display: grid;
  gap: 18px;
}

.card {
  padding: 31px 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(45, 53, 50, 0.045);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.card:hover {
  box-shadow: 0 17px 40px rgba(45, 53, 50, 0.08);
  transform: translateY(-2px);
}

.card.pillar {
  border-color: #afc0b5;
  background: var(--sage-wash);
}

.card .kicker {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card h2 {
  margin: 0 0 11px;
  font: 700 27px/1.17 var(--display);
  letter-spacing: -0.028em;
}

.card h2 a,
.card .read {
  text-decoration: none;
}

.card h2 a:hover {
  color: var(--sage);
}

.card p {
  margin: 0 0 16px;
  color: var(--body);
  font-size: 16px;
}

.card .read {
  color: var(--sage);
  font-size: 15px;
  font-weight: 700;
}

.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 84px 24px 20px;
}

.legal > .eyebrow {
  margin: 0 0 16px;
}

.legal .lede {
  margin: 0;
  color: var(--body);
  font-size: 21px;
}

.legal h2 {
  margin: 54px 0 12px;
  font: 700 31px/1.15 var(--display);
  letter-spacing: -0.027em;
}

.legal h3 {
  margin: 31px 0 8px;
  font: 700 22px/1.2 var(--display);
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  color: var(--body);
}

.legal ul {
  padding-left: 25px;
}

.legal a {
  color: var(--sage);
  font-weight: 700;
}

.notice {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid #cfdbd3;
  border-radius: 19px;
  background: var(--sage-soft);
  color: var(--body);
}

.notice strong {
  color: var(--ink);
}

.contact-card {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.contact-card h2 {
  margin: 0 0 8px;
}

.contact-card a {
  font: 700 23px/1.25 var(--display);
}

@media (max-width: 1050px) {
  .site-nav-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav-links {
    display: none;
  }

  .site-nav > .site-nav-inner > .button {
    display: none;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    color: var(--ink);
  }

  .nav-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    padding: 10px var(--gutter) 22px;
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 11px 0;
    color: var(--body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }

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

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

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

  .device-hero-left,
  .device-hero-right {
    width: 290px;
  }

  .device-hero-left {
    left: 8%;
  }

  .device-hero-right {
    right: 8%;
  }

  .hero-bramble {
    right: 31%;
    width: 250px;
  }

  .story-row {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: 50px;
  }

  .wins-grid,
  .privacy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .wins-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }

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

  .plan {
    min-height: 0;
  }

  .plan > p:last-child {
    margin-top: 20px;
  }

  .pricing-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 17px;
  }

  .site-nav-inner {
    min-height: 66px;
  }

  .site-brand {
    font-size: 21px;
  }

  .site-brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 0;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(47px, 13.3vw, 72px);
  }

  .hero-lede {
    margin-top: 22px !important;
    font-size: 19px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .device-hero-left,
  .device-hero-right {
    width: min(43vw, 270px);
  }

  .device-hero-left {
    left: 4%;
  }

  .device-hero-right {
    right: 4%;
  }

  .hero-bramble {
    right: 25%;
    width: min(42vw, 240px);
  }

  .hero-visual > .bramble-note {
    right: 0;
    bottom: 6%;
    max-width: 210px;
  }

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

  .loop-rail {
    display: none;
  }

  .story-row,
  .story-row-reverse {
    min-height: 0;
    padding: 80px 0;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .story-row-reverse .story-copy,
  .story-row-reverse .story-art {
    order: initial;
  }

  .story-art {
    min-height: 530px;
  }

  .science-grid,
  .wins-grid,
  .privacy-grid,
  .pricing-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .science-grid,
  .wins-grid,
  .privacy-grid {
    gap: 54px;
  }

  .science-copy {
    padding-top: 0;
  }

  .science-mascot {
    margin-top: 0;
  }

  .wins-art {
    min-height: 650px;
  }

  .privacy-list {
    max-width: 600px;
  }

  .privacy-bramble {
    right: -280px;
  }

  .pricing-layout {
    gap: 70px;
  }

  .pricing-art {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .faq-heading {
    position: static;
  }

  .faq-list {
    margin-top: 12px;
  }

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

  .site-footer nav,
  .site-footer-grid > p {
    justify-self: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 20px;
    --section: 86px;
  }

  .landing-page h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .landing-page h3 {
    font-size: 31px;
  }

  .hero {
    background:
      radial-gradient(circle at 70% 40%, rgba(232, 237, 233, 0.8), transparent 25%),
      linear-gradient(180deg, rgba(232, 237, 233, 0.4), transparent 36%);
  }

  .hero h1 {
    font-size: clamp(47px, 13.8vw, 59px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-store {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 12px;
  }

  .device {
    border-width: 5px;
    border-radius: 29px;
  }

  .device-hero-left,
  .device-hero-right {
    width: 45vw;
    max-width: 205px;
  }

  .device-hero-left {
    top: 5%;
    left: 0;
  }

  .device-hero-right {
    top: 10%;
    right: 0;
  }

  .hero-bramble {
    right: 25%;
    bottom: 2%;
    width: 45vw;
  }

  .hero-visual > .bramble-note {
    right: 0;
    bottom: 0;
    max-width: 180px;
    font-size: 12px;
  }

  .orbit-one {
    width: 280px;
    height: 280px;
    top: 14%;
  }

  .orbit-two {
    display: none;
  }

  .hero > .progress-rule {
    margin-top: 10px;
  }

  .section-heading > p:last-child,
  .wins-copy > p:not(.eyebrow),
  .privacy-copy > p:not(.eyebrow),
  .launch-inner > p {
    font-size: 18px;
  }

  .story-copy > p:not(.story-number) {
    font-size: 18px;
  }

  .story-art {
    min-height: 460px;
  }

  .device-story {
    width: 222px;
  }

  .story-bramble-calm {
    width: 170px;
  }

  .watercolor-icon {
    width: 70px;
  }

  .science-mascot {
    min-height: 160px;
  }

  .science-mascot img {
    width: 180px;
  }

  .science-mascot p {
    margin: 0 0 25px -30px;
    font-size: 13px;
  }

  .example-card {
    grid-template-columns: 58px 1fr;
    padding: 19px;
  }

  .example-card img {
    width: 58px;
  }

  .example-card strong {
    font-size: 17px;
  }

  .wins-art {
    min-height: 550px;
  }

  .device-wins {
    left: 2%;
    width: 245px;
  }

  .wins-bramble {
    right: -15px;
    width: 170px;
  }

  .wins-note {
    right: 0;
    bottom: 30%;
    max-width: 170px;
    font-size: 12px;
  }

  .privacy-bramble {
    right: -300px;
  }

  .plan {
    min-height: 0;
    padding: 28px 24px;
  }

  .pricing-art {
    min-height: 520px;
  }

  .device-paywall {
    width: 235px;
  }

  .pricing-art > img {
    width: 150px;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 21px;
  }

  .site-footer nav {
    display: grid;
  }

  .nav-inner {
    min-height: 64px;
    padding-inline: 18px;
  }

  .wrap {
    padding: 54px 18px 0;
  }

  .index-head {
    padding: 66px 18px 14px;
  }

  .cards {
    padding: 32px 18px 0;
  }

  .card {
    padding: 25px;
  }

  .card h2 {
    font-size: 24px;
  }

  .legal {
    padding: 58px 18px 12px;
  }

  .footer {
    margin-top: 64px;
  }

  .prose table {
    font-size: 14px;
  }

  .prose th,
  .prose td {
    padding: 9px 7px;
  }

  .cta-card {
    padding: 29px 22px;
  }

  .contact-card a {
    font-size: 20px;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bramble {
    animation: bramble-float 5.4s ease-in-out infinite;
  }

  .device-hero-left {
    animation: phone-left-float 6.4s ease-in-out infinite;
  }

  .device-hero-right {
    animation: phone-right-float 6.8s ease-in-out 0.35s infinite;
  }

  @keyframes bramble-float {
    0%,
    100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
  }

  @keyframes phone-left-float {
    0%,
    100% { transform: translateY(0) rotate(-4.2deg); }
    50% { transform: translateY(-7px) rotate(-3.5deg); }
  }

  @keyframes phone-right-float {
    0%,
    100% { transform: translateY(0) rotate(4.3deg); }
    50% { transform: translateY(-9px) rotate(3.6deg); }
  }
}

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

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