:root {
  color-scheme: light dark;
  --brand: #9b4f34;
  --brand-strong: #7a3925;
  --brand-soft: #ffd8cc;
  --brand-softer: #fff0eb;
  --background: #fff9f7;
  --background-alt: #fff3ef;
  --surface: #fffdfc;
  --surface-raised: #ffffff;
  --text: #2c1c18;
  --text-muted: #6a514a;
  --border: #ead7d1;
  --border-strong: #d8bbb2;
  --success: #256346;
  --success-soft: #d9f2e4;
  --warning: #765a00;
  --warning-soft: #ffecb8;
  --shadow-sm: 0 1px 2px rgb(54 25 17 / 5%), 0 8px 24px rgb(54 25 17 / 5%);
  --shadow-device: 0 28px 80px rgb(65 29 19 / 20%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --shell: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--brand-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--text);
  color: var(--surface);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.narrow-shell {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgb(255 249 247 / 88%);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 22px rgb(54 25 17 / 4%);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand img {
  width: 36px;
  height: 36px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 620;
  text-decoration: none;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--brand-softer);
  color: var(--brand-strong);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 99;
  padding: 14px 20px 30px;
  background: var(--background);
}

.mobile-menu-inner {
  display: grid;
  gap: 6px;
  width: min(100%, 520px);
  margin-inline: auto;
}

.mobile-menu .nav-link {
  justify-content: space-between;
  padding: 13px 16px;
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(122 57 37 / 14%);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--brand-strong);
  color: #fff;
  box-shadow: 0 11px 26px rgb(122 57 37 / 20%);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--brand-strong);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--brand-softer);
  color: var(--brand-strong);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.88rem;
}

.button.is-pending {
  background: var(--brand-strong);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) 0 clamp(82px, 10vw, 132px);
}

.hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 216 204 / 64%) 0%, rgb(255 216 204 / 0%) 70%);
  content: "";
  right: -150px;
  top: -170px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 100px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--brand-strong);
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.6vw, 4.5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.16rem, 2vw, 1.38rem);
  letter-spacing: -0.025em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 30px;
  padding: 0;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 640;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  content: "✓";
  font-size: 0.82rem;
  font-weight: 900;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.section-actions {
  margin-top: 26px;
}

.centered-actions {
  justify-content: center;
  margin-top: 30px;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.phone-glow {
  position: absolute;
  inset: 12% 3% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 216 204 / 70%), rgb(255 216 204 / 0%) 68%);
  filter: blur(12px);
}

.device {
  position: relative;
  z-index: 2;
  width: min(100%, 306px);
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 42px;
  background: #2d211e;
  box-shadow: var(--shadow-device);
  transform: rotate(2deg);
}

.device::before {
  position: absolute;
  z-index: 3;
  width: 82px;
  height: 19px;
  border-radius: 0 0 13px 13px;
  background: #2d211e;
  content: "";
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}

.device-screen {
  overflow: hidden;
  border-radius: 33px;
  background: #fff8f6;
}

.device-screen img {
  width: 100%;
  aspect-ratio: 9 / 20;
  object-fit: cover;
}

.floating-notification {
  position: absolute;
  z-index: 5;
  display: grid;
  width: min(310px, 78vw);
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 19px;
  background: rgb(255 253 252 / 94%);
  box-shadow: var(--shadow-sm);
  left: -52px;
  top: 68px;
  backdrop-filter: blur(12px);
  animation: notification-float 5s ease-in-out infinite;
}

.floating-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.floating-icon svg {
  width: 21px;
  height: 21px;
}

.floating-notification strong,
.floating-notification span {
  display: block;
  line-height: 1.35;
}

.floating-notification strong {
  font-size: 0.88rem;
}

.floating-notification span {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-notification time {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.saved-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgb(37 99 70 / 16%);
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 720;
  bottom: 70px;
  right: -15px;
}

.saved-chip::before {
  content: "✓";
  font-weight: 900;
}

@keyframes notification-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(38px, 5vw, 58px);
}

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

.section-heading p,
.section-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 2vw, 1.15rem);
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.step {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--text-muted);
}

.notification-card {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 17px;
  background: var(--brand-softer);
}

.notification-card .mini-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 850;
}

.notification-card strong,
.notification-card span {
  display: block;
  line-height: 1.35;
}

.notification-card strong {
  font-size: 0.86rem;
}

.notification-card span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.swipe-demo {
  position: relative;
  overflow: hidden;
}

.swipe-demo .notification-card {
  animation: swipe-away 5s ease-in-out infinite;
}

.swipe-line {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-soft);
  inset: auto 28px 41px;
}

@keyframes swipe-away {
  0%, 22%, 100% { opacity: 1; transform: translateX(0); }
  48%, 70% { opacity: 0; transform: translateX(115%); }
}

.limitation-note {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin: 30px auto 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--brand-softer);
  color: var(--brand-strong);
  font-size: 0.94rem;
}

.privacy-layout {
  display: grid;
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.trust-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.trust-card-icon,
.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.trust-card-icon svg,
.feature-icon svg {
  width: 22px;
  height: 22px;
}

.trust-card p,
.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.privacy-visual {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
}

.flow {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
}

.flow-node {
  display: grid;
  min-height: 116px;
  place-items: center;
  padding: 18px 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--brand-softer);
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 700;
  text-align: center;
}

.flow-node svg {
  width: 28px;
  height: 28px;
  margin-bottom: 9px;
  color: var(--brand);
}

.flow-arrow {
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
}

.no-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.no-cloud span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 720;
}

.features-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.screens-showcase {
  display: grid;
  align-items: end;
  gap: 18px;
  margin-top: 60px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-card {
  position: relative;
  overflow: hidden;
  max-height: 610px;
  padding: 16px 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--brand-softer);
}

.screen-card:nth-child(2) {
  transform: translateY(-22px);
}

.screen-card img {
  width: 100%;
  border: 1px solid rgb(44 28 24 / 8%);
  border-radius: 20px 20px 0 0;
}

.screen-label {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.apps-layout {
  display: grid;
  align-items: center;
  gap: 58px;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
}

.app-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.app-chip {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-raised);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
  box-shadow: 0 3px 10px rgb(54 25 17 / 4%);
}

.app-chip::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  content: attr(data-mark);
  font-size: 0.72rem;
  font-weight: 850;
}

.disclaimer {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.pricing-card.pro {
  border-color: var(--brand);
  background: linear-gradient(150deg, var(--surface), var(--brand-softer));
  box-shadow: var(--shadow-sm);
}

.pricing-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.pricing-kicker h3 {
  margin: 0;
  font-size: 1.55rem;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card > p {
  margin: 0 0 22px;
  color: var(--text-muted);
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
}

.feature-list li::before {
  flex: 0 0 auto;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.pricing-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.87rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 160ms ease, background 160ms ease;
}

.faq-list details[open] {
  border-color: var(--border-strong);
  background: var(--surface-raised);
}

.faq-list summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  color: var(--text);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-softer);
  color: var(--brand-strong);
  content: "+";
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 730px;
  padding: 0 20px 20px;
  color: var(--text-muted);
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  padding: clamp(70px, 9vw, 110px) 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 78px);
  border-radius: var(--radius-xl);
  background: var(--brand-strong);
  color: #fff8f6;
  text-align: center;
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: "";
}

.cta-panel::before {
  left: -120px;
  top: -160px;
}

.cta-panel::after {
  right: -130px;
  bottom: -180px;
}

.cta-panel h2 {
  position: relative;
  max-width: 760px;
  margin: 0 auto 16px;
  color: #fff8f6;
}

.cta-panel p {
  position: relative;
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgb(255 248 246 / 78%);
  font-size: 1.06rem;
}

.cta-panel .button {
  position: relative;
  background: #fff8f6;
  color: var(--brand-strong);
  box-shadow: none;
}

.cta-panel .button:hover {
  background: #fff;
  color: var(--brand-strong);
}

.cta-panel .microcopy {
  margin-top: 14px;
  color: rgb(255 248 246 / 72%);
  font-size: 0.8rem;
}

.site-footer {
  padding: 60px 0 26px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(130px, 0.65fr));
}

.footer-brand p {
  max-width: 330px;
  margin: 15px 0 0;
  color: var(--text-muted);
}

.footer-column h2 {
  margin-bottom: 13px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.91rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-strong);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.page-hero {
  padding: clamp(62px, 8vw, 96px) 0 clamp(48px, 7vw, 76px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--brand-softer), var(--background));
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.article-layout {
  display: grid;
  align-items: start;
  gap: 56px;
  padding: clamp(58px, 8vw, 92px) 0;
  grid-template-columns: 230px minmax(0, 760px);
}

.article-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.article-nav h2 {
  margin-bottom: 13px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-nav ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-nav a {
  display: block;
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.35;
  text-decoration: none;
}

.article-nav a:hover {
  color: var(--brand-strong);
}

.article {
  min-width: 0;
}

.article section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.article section + section {
  margin-top: 48px;
  padding-top: 8px;
}

.article h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.article h3 {
  margin: 28px 0 10px;
  font-size: 1.12rem;
}

.article p,
.article li {
  color: var(--text-muted);
}

.article p {
  margin: 0 0 16px;
}

.article ul,
.article ol {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 22px;
}

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

.callout {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--brand-softer);
}

.callout p:last-child {
  margin-bottom: 0;
}

.support-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.support-card:hover {
  border-color: var(--brand);
  color: var(--text);
  transform: translateY(-2px);
}

.support-card h2,
.support-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.support-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.support-topics {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.support-topics details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.support-topics summary {
  min-height: 58px;
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
}

.support-topic-body {
  padding: 0 20px 22px;
  color: var(--text-muted);
}

.support-topic-body p:last-child,
.support-topic-body ol:last-child,
.support-topic-body ul:last-child {
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--brand-softer);
  grid-template-columns: 1fr auto;
}

.contact-panel h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.contact-panel p {
  margin: 0;
  color: var(--text-muted);
}

.availability {
  padding: 22px;
  border: 1px solid var(--warning);
  border-radius: var(--radius-md);
  background: var(--warning-soft);
  color: #443300;
}

.availability h2 {
  margin-bottom: 7px;
  color: #443300;
  font-size: 1.2rem;
}

.availability p {
  margin: 0;
  color: #584400;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.not-found-inner {
  max-width: 580px;
}

.not-found-code {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.not-found h1 {
  margin-bottom: 16px;
}

.not-found p {
  margin: 0 0 28px;
  color: var(--text-muted);
}

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

@media (max-width: 1020px) {
  .hero-grid {
    gap: 46px;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.64fr);
  }

  .floating-notification {
    left: -20px;
  }

  .saved-chip {
    right: -4px;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-layout,
  .apps-layout {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    max-width: 760px;
  }

  .app-cloud {
    max-width: 760px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
  }
}

@media (max-width: 859px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

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

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

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

  .device {
    width: min(76vw, 300px);
  }

  .floating-notification {
    left: max(0px, calc(50% - 240px));
  }

  .saved-chip {
    right: max(0px, calc(50% - 226px));
  }

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

  .step {
    min-height: auto;
  }

  .screens-showcase {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(240px, 310px));
    justify-content: start;
    scroll-snap-type: x mandatory;
  }

  .screen-card {
    scroll-snap-align: start;
  }

  .screen-card:nth-child(2) {
    transform: none;
  }

  .article-layout {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .article-nav {
    position: static;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
  }

  .article-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 66px;
  }

  .shell,
  .narrow-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .hero {
    padding-top: 54px;
  }

  .hero::before {
    width: 380px;
    height: 380px;
  }

  .eyebrow {
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .trust-list {
    display: grid;
    gap: 10px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

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

  .device {
    width: min(72vw, 274px);
  }

  .floating-notification {
    width: min(300px, 88vw);
    left: 0;
    top: 52px;
  }

  .saved-chip {
    right: 0;
    bottom: 46px;
  }

  .trust-cards,
  .features-grid,
  .pricing-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .privacy-visual {
    padding: 24px 18px;
  }

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

  .flow-node {
    min-height: 96px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .app-cloud {
    justify-content: flex-start;
    padding: 24px;
  }

  .screens-showcase {
    margin-right: -16px;
    padding-right: 16px;
  }

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

  .footer-column.contact {
    grid-column: 1 / -1;
  }

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

  .article-nav ul {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .contact-panel .button {
    width: 100%;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --brand: #e2a28b;
    --brand-strong: #f0b7a2;
    --brand-soft: #643a2e;
    --brand-softer: #2b211f;
    --background: #171210;
    --background-alt: #1f1816;
    --surface: #211a18;
    --surface-raised: #2a211e;
    --text: #f5e9e5;
    --text-muted: #c8b5af;
    --border: #493732;
    --border-strong: #725247;
    --success: #9bd5b4;
    --success-soft: #173b2a;
    --warning: #f0c95c;
    --warning-soft: #3f330f;
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 16%), 0 12px 30px rgb(0 0 0 / 18%);
    --shadow-device: 0 30px 90px rgb(0 0 0 / 48%);
  }

  .site-header {
    background: rgb(23 18 16 / 88%);
  }

  .button {
    background: #9b4f34;
    color: #fff;
  }

  .button:hover {
    background: #a3573c;
  }

  .button.is-pending,
  .button.is-pending:hover {
    background: #f0b7a2;
    color: #2c1c18;
  }

  .floating-notification {
    border-color: var(--border);
    background: rgb(42 33 30 / 94%);
  }

  .device {
    border-color: #5f4841;
    background: #080605;
  }

  .device::before {
    background: #080605;
  }

  .cta-panel {
    background: #6f3828;
  }

  .cta-panel .button,
  .cta-panel .button:hover {
    color: #6f3828;
  }

  .availability,
  .availability h2,
  .availability p {
    color: #ffeca9;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .article-nav,
  .final-cta,
  .button-row {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .page-hero,
  .article-layout {
    padding: 24px 0;
  }

  .article-layout {
    display: block;
  }

  .article p,
  .article li,
  .page-hero p {
    color: #222;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
