:root {
  --paper: #faf8f3;
  --paper-soft: #f2eee6;
  --panel: #fffdf8;
  --white: #ffffff;
  --ink: #1b1b1d;
  --muted: #77716a;
  --faint: #eee9df;
  --green: #1c7a44;
  --green-2: #4e9e6a;
  --blue: #2f6bd8;
  --amber: #b85d12;
  --red: #c8472f;
  --max: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 66px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2 + 40px));
  background: rgba(250, 248, 243, 0.94);
  border-bottom: 1px solid rgba(27, 27, 29, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.brand img {
  display: block;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #6b6560;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a,
.text-link,
.guide-panel a,
.footer-links a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--green);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  font-weight: 600;
  border: 0;
}

.header-cta,
.primary-button {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(28, 122, 68, 0.24);
}

.header-cta {
  gap: 8px;
  padding: 0 20px;
  font-size: 14px;
}

.header-cta svg {
  width: 14px;
  height: 18px;
  fill: currentColor;
}

.header-cta.app-store-badge-link {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.secondary-button {
  background: #ece9e1;
  color: var(--ink);
}

.hero {
  padding: 80px 40px 96px;
  background: var(--paper);
  overflow: hidden;
}

.hero-compact-flow {
  padding-bottom: 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 272px;
  align-items: center;
  gap: 80px;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  padding: 7px 14px;
  background: #eaf5ee;
  border: 1px solid #c8e6d3;
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid #c8e6d3;
  border-radius: 999px;
  background: #eaf5ee;
  color: var(--green);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 590px;
  margin: 0 0 22px;
  font-size: clamp(44px, 6vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;
}

h1 span {
  display: block;
  color: var(--green);
}

.mobile-break {
  display: none;
}

.mobile-copy-break {
  display: none;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.1px;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.hero-lede {
  max-width: 480px;
  margin: 0 0 40px;
  color: #6b6560;
  font-size: 18px;
  line-height: 1.68;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  max-width: 100%;
  line-height: 0;
}

.app-store-badge {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 3;
  object-fit: contain;
}

.app-store-button {
  border-radius: 13px;
  filter: drop-shadow(0 18px 32px rgba(27, 27, 29, 0.18));
}

.app-store-button.light {
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.22));
}

.header-store-badge {
  width: 142px;
}

.pricing-store-badge {
  width: 190px;
  margin-top: auto;
}

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

.text-link:hover {
  transform: translateX(2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 620px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(27, 27, 29, 0.09);
}

.hero-stats div + div {
  border-left: 1px solid rgba(27, 27, 29, 0.08);
  padding-left: 30px;
}

.hero-stats strong {
  display: block;
  color: var(--green);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.hero-phone-wrap {
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.28));
}

.phone {
  padding: 4px;
  background: #121214;
  border-radius: 44px;
  overflow: hidden;
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.hero-phone {
  width: 300px;
  transform: rotate(-3deg);
}

.section,
.language-section,
.screen-stage,
.download-section,
.trust-strip,
.source-strip {
  padding: 80px 40px;
}

.section-white {
  background: var(--white);
}

.screen-stage {
  background: var(--paper);
}

.section-soft,
.language-section {
  background: var(--paper);
}

.trust-strip {
  background: var(--white);
  border-block: 1px solid rgba(27, 27, 29, 0.08);
}

.trust-strip p {
  max-width: var(--max);
  margin: 0 auto;
  color: #5f5952;
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}

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

.source-strip {
  padding-block: 22px;
  background: #edf5ef;
  border-bottom: 1px solid rgba(28, 122, 68, 0.14);
}

.source-strip p {
  max-width: var(--max);
  margin: 0 auto;
  color: #375143;
  font-size: 14px;
  line-height: 1.62;
  text-align: center;
}

.source-strip a,
.guide-article p a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-heading {
  max-width: 560px;
  margin: 0 auto 56px 0;
}

.section-heading.centered {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #6b6560;
  font-size: 17px;
  line-height: 1.65;
}

.section-heading.centered p:not(.eyebrow) {
  margin-inline: auto;
  max-width: 680px;
}

.language-section {
  min-height: 0;
  display: grid;
  align-content: center;
}

.hero + .language-section {
  padding-top: 32px;
}

.language-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 990px;
  margin: 0 auto;
}

.language-list span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(27, 27, 29, 0.08);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(27, 27, 29, 0.06);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.language-list b {
  font-size: 20px;
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.feature-panel {
  min-height: 280px;
  padding: 32px;
  border: 1px solid rgba(27, 27, 29, 0.08);
  border-radius: 20px;
  background: var(--paper);
}

.feature-panel p,
.guide-panel p,
.price-panel p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 13px;
  background: var(--green);
}

.feature-icon.book::before {
  content: "";
  width: 22px;
  height: 26px;
  border: 3px solid var(--white);
  border-left-width: 5px;
  border-radius: 4px;
}

.feature-icon.book::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 17px;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 7px 0 var(--white);
}

.feature-icon.globe::before {
  content: "◎";
  color: var(--white);
  font-size: 31px;
  line-height: 1;
}

.feature-icon.timer::before {
  content: "";
  width: 27px;
  height: 27px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.feature-icon.timer::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 15px;
  width: 9px;
  height: 11px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  border-bottom-left-radius: 2px;
}

.screen-stage {
  overflow: hidden;
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 250px));
  align-items: start;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 28px);
  max-width: var(--max);
  margin: 0 auto;
}

.screen-shot {
  margin: 0;
  text-align: center;
}

.screen-shot.offset {
  margin-top: 28px;
}

.screen-phone {
  position: relative;
  width: min(100%, 250px);
  margin: 0 auto;
  padding: 4px;
  border-radius: 44px;
  box-shadow: 0 24px 72px rgba(27, 27, 29, 0.22);
}

.screen-phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 78px;
  height: 25px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.screen-phone img {
  border-radius: 40px;
}

.screen-shot figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.section-ink {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-ink::after {
  content: "";
  position: absolute;
  right: clamp(20px, 6vw, 110px);
  top: 34px;
  bottom: 34px;
  width: min(42vw, 570px);
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.section-ink .eyebrow {
  color: var(--green-2);
}

.method-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: var(--max);
  margin: 0 auto;
}

.method-list {
  display: grid;
  gap: 36px;
  margin-top: 48px;
}

.method-list div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
}

.method-list strong {
  color: var(--green);
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.method-list span {
  display: block;
  color: rgba(255, 255, 255, 0.47);
  font-size: 15px;
  line-height: 1.65;
}

.method-list b {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.method-phone-wrap {
  position: relative;
  justify-self: center;
}

.translation-tag {
  position: absolute;
  top: -28px;
  left: 0;
  z-index: 2;
  padding: 7px 16px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.method-phone {
  width: 300px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5);
}

.guides-section {
  overflow: hidden;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.guide-panel {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(27, 27, 29, 0.08);
  border-radius: 18px;
  background: var(--paper);
}

.guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.guide-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #eaf5ee;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.guide-meta small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
  white-space: nowrap;
}

.guide-panel p {
  margin: 14px 0 28px;
}

.guide-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.guide-panel a:hover {
  transform: translateX(2px);
}

.guide-blue .guide-meta span,
.guide-blue a {
  color: var(--blue);
}

.guide-blue .guide-meta span {
  background: #e8eef8;
}

.guide-amber .guide-meta span,
.guide-amber a {
  color: var(--amber);
}

.guide-amber .guide-meta span {
  background: #fef0e7;
}

.guide-dark {
  position: relative;
  grid-column: 1 / -1;
  min-height: 210px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.guide-dark::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(28, 122, 68, 0.18);
}

.guide-dark .guide-meta span {
  background: rgba(78, 158, 106, 0.15);
  color: var(--green-2);
}

.guide-dark .guide-meta small,
.guide-dark p {
  color: rgba(255, 255, 255, 0.46);
}

.guide-dark a {
  color: var(--green-2);
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.price-panel {
  padding: 36px;
  border: 1px solid rgba(27, 27, 29, 0.08);
  border-radius: 24px;
  background: var(--paper);
}

.featured-plan {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.plan-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured-plan .plan-label {
  color: var(--white);
}

.plan-label span {
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
}

.price {
  margin: 20px 0 4px;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price small,
.featured-plan p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 560;
}

.price-panel:not(.featured-plan) .price small {
  color: var(--muted);
}

.weekly-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  margin: 28px 0;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.weekly-price span,
.weekly-price em {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-style: normal;
}

.weekly-price strong {
  grid-row: span 2;
  align-self: center;
  font-size: 22px;
}

.weekly-price small {
  color: rgba(255, 255, 255, 0.42);
}

.price-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.price-panel li {
  position: relative;
  padding-left: 32px;
  line-height: 1.45;
}

.price-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eaf5ee;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.price-panel li.muted-warning {
  color: #9a8060;
}

.price-panel li.muted-warning::before {
  content: "!";
  background: #fef5e7;
  color: #b05a0f;
}

.price-panel li.disabled-feature {
  color: #b3ada2;
}

.price-panel li.disabled-feature::before {
  content: "×";
  background: #f0ede6;
  color: #b3ada2;
}

.featured-plan li::before {
  background: var(--green);
  color: var(--white);
}

.primary-button,
.secondary-button {
  width: 100%;
  min-height: 48px;
}

.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;
}

.faq-layout {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.faq-layout h2 {
  margin-bottom: 52px;
  text-align: center;
}

.faq-list {
  border-top: 0;
}

details {
  border-bottom: 1px solid rgba(27, 27, 29, 0.1);
  padding: 22px 0;
}

summary {
  position: relative;
  display: block;
  padding-right: 32px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: #6b6560;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

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

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.download-section {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--green);
  color: var(--white);
}

.download-section::before,
.download-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.download-section::before {
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
}

.download-section::after {
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.08);
}

.download-section > * {
  position: relative;
  z-index: 1;
}

.download-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.download-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 42px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.62;
}

.launch-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.download-text-link {
  color: var(--white);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 118px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  font-weight: 620;
}

.footer-disclaimer {
  flex: 0 0 100%;
  max-width: 920px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(27, 27, 29, 0.54);
  backdrop-filter: blur(18px);
}

.modal-backdrop[hidden] {
  display: none;
}

.waitlist-modal {
  position: relative;
  width: min(100%, 480px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ece9e1;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.modal-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(27, 27, 29, 0.16);
}

.modal-icon.apple-modal-icon {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
}

.modal-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.waitlist-modal h2 {
  margin-bottom: 14px;
  font-size: 31px;
  letter-spacing: -0.7px;
}

.waitlist-modal p {
  color: #6b6560;
  line-height: 1.62;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.waitlist-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(27, 27, 29, 0.12);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.waitlist-form input[type="email"]:focus {
  border-color: rgba(28, 122, 68, 0.56);
  box-shadow: 0 0 0 4px rgba(28, 122, 68, 0.12);
}

.waitlist-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.form-status.warning {
  color: var(--amber);
}

.modal-privacy {
  margin: 18px 0 0;
  font-size: 12.5px;
}

.article-header {
  padding: 76px 40px 48px;
  background: var(--paper);
}

.article-header-inner,
.guide-article {
  max-width: 820px;
  margin: 0 auto;
}

.article-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-header h1 {
  max-width: 760px;
  margin-bottom: 24px;
}

.article-header p {
  max-width: 680px;
  margin: 0;
  color: #6b6560;
  font-size: 18px;
  line-height: 1.7;
}

.guide-article {
  padding: 36px 40px 92px;
}

.guide-article nav {
  margin-bottom: 44px;
  padding: 24px;
  border: 1px solid rgba(27, 27, 29, 0.08);
  border-radius: 18px;
  background: var(--white);
}

.guide-article nav strong {
  display: block;
  margin-bottom: 14px;
}

.toc-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc-list a {
  color: var(--green);
  font-weight: 700;
}

.guide-article section {
  padding: 42px 0;
  border-top: 1px solid rgba(27, 27, 29, 0.08);
}

.guide-article h2 {
  margin-bottom: 18px;
}

.guide-article h3 {
  margin: 30px 0 10px;
}

.article-disclaimer {
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(28, 122, 68, 0.18);
  border-radius: 14px;
  background: #eaf5ee;
  color: #4f594f;
  font-size: 15px;
  line-height: 1.65;
}

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

.guide-article p,
.guide-article li {
  color: #5f5952;
  font-size: 17px;
  line-height: 1.75;
}

.guide-article ul,
.guide-article ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.article-cta {
  margin-top: 24px;
  padding: 28px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.article-cta a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-2);
  font-weight: 800;
}

.article-cta a.article-store-badge {
  width: 200px;
  color: inherit;
  font-weight: inherit;
}

.legal-note {
  padding: 18px 20px;
  border: 1px solid rgba(184, 93, 18, 0.22);
  border-radius: 14px;
  background: #fff7eb;
  color: #72502d;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    height: auto;
    gap: 12px 16px;
    padding-block: 10px;
    padding-inline: 20px;
  }

  .nav-links {
    order: 3;
    display: flex;
    flex-basis: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 7px 12px;
    border: 1px solid rgba(27, 27, 29, 0.08);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.78);
    color: #5f5952;
    font-size: 13px;
  }

  .nav-links a[aria-current="page"] {
    border-color: rgba(28, 122, 68, 0.22);
    background: #eaf5ee;
    color: var(--green);
    font-weight: 800;
  }

  .hero-inner,
  .method-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-phone-wrap {
    order: -1;
  }

  .hero-phone {
    width: 270px;
  }

  .feature-grid,
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-row {
    grid-template-columns: repeat(2, minmax(220px, 250px));
    justify-content: center;
  }

  .section-ink::after {
    inset: auto 20px 28px;
    width: auto;
    height: 44%;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 16px 11px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 32px;
    padding-inline: 24px;
    padding-bottom: 36px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    width: 100%;
    max-width: calc(100vw - 48px);
    margin-inline: auto;
    gap: 36px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 48px);
    overflow: hidden;
  }

  .hero-phone-wrap {
    grid-column: 1;
    justify-self: center;
    width: 100%;
    justify-content: center;
  }

  .hero-phone {
    width: min(100%, 250px);
    margin-inline: auto;
    padding: 4px;
    border-radius: 38px;
    transform: none;
  }

  .hero-phone img {
    border-radius: 34px;
  }

  h1 {
    max-width: 430px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .mobile-break {
    display: block;
  }

  .mobile-copy-break {
    display: block;
  }

  h2 {
    font-size: 28px;
    line-height: 1.12;
    max-width: 100%;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .hero-lede {
    display: block;
    width: 100%;
    max-width: 430px;
    font-size: 16.5px;
    line-height: 1.62;
    white-space: normal;
    text-wrap: wrap;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-lede em {
    overflow-wrap: anywhere;
  }

  .app-store-badge-link {
    width: min(196px, 100%);
  }

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

  .hero-actions .text-link {
    font-size: 15px;
  }

  .feature-grid,
  .screen-row,
  .guide-grid,
  .pricing-row {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    max-width: 430px;
    margin-top: 36px;
    padding-top: 30px;
  }

  .section,
  .language-section,
  .screen-stage,
  .download-section,
  .trust-strip,
  .source-strip {
    padding-inline: 24px;
  }

  .hero + .language-section {
    padding-top: 34px;
  }

  .section-heading,
  .section-heading.centered {
    width: 100%;
    max-width: calc(100vw - 48px);
    overflow: hidden;
  }

  .section-heading p:not(.eyebrow) {
    max-width: 300px;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .section-heading.centered p:not(.eyebrow) {
    margin-inline: auto;
  }

  .hero-stats div + div {
    border-left: 0;
    padding-left: 0;
  }

  .hero-stats strong {
    font-size: 26px;
  }

  .hero-stats span {
    font-size: 12px;
  }

  .language-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    max-width: calc(100vw - 48px);
  }

  .language-list span {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .feature-panel {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    min-height: auto;
    padding: 32px 28px;
  }

  .feature-panel p,
  .guide-panel p,
  .price-panel p,
  details p {
    max-width: 280px;
    font-size: 13.5px;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .feature-icon {
    margin-bottom: 30px;
  }

  .screen-shot.offset {
    margin-top: 0;
  }

  .screen-phone {
    width: min(100%, 250px);
    border-radius: 38px;
  }

  .screen-phone::before {
    top: 14px;
    width: 70px;
    height: 22px;
  }

  .screen-phone img {
    border-radius: 34px;
  }

  .method-list {
    gap: 34px;
    margin-top: 46px;
  }

  .method-list div {
    grid-template-columns: 58px 1fr;
  }

  .method-list strong {
    font-size: 34px;
  }

  .method-list span {
    font-size: 16px;
  }

  .method-phone {
    width: 250px;
  }

  .guide-panel,
  .price-panel {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 28px;
  }

  .guide-dark {
    min-height: 260px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .waitlist-modal {
    padding: 28px;
  }

  .waitlist-modal h2 {
    font-size: 27px;
  }

  .article-header,
  .guide-article {
    padding-inline: 24px;
  }

  .article-header h1 {
    font-size: clamp(38px, 10vw, 44px);
  }

  .guide-article p,
  .guide-article li {
    font-size: 15.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
