:root {
  color-scheme: dark;
  --bg: #050806;
  --bg-soft: #0a100c;
  --surface: #101713;
  --surface-2: #151e18;
  --surface-3: #1c2720;
  --paper: #f6f8f5;
  --paper-2: #e9eee9;
  --ink: #f7faf7;
  --ink-dark: #0a120d;
  --muted: #a3aea6;
  --muted-dark: #5f6d63;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(9, 18, 12, 0.12);
  --green: #31d158;
  --green-bright: #57ed79;
  --green-deep: #16a83d;
  --green-wash: #dff8e5;
  --cyan: #28d7ed;
  --orange: #ff9f32;
  --yellow: #ffd60a;
  --danger: #ff685f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.18);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 40px;
  --radius-xl: 56px;
  --container: 1180px;
  --reading: 760px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 4%, rgba(49, 209, 88, 0.11), transparent 27rem),
    radial-gradient(circle at 4% 30%, rgba(40, 215, 237, 0.055), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.light-page {
  background: var(--paper);
  color: var(--ink-dark);
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--green);
  color: var(--ink-dark);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-dark);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.reading-width {
  width: min(var(--reading), 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(5, 8, 6, 0.82);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.light-page .site-header {
  border-bottom-color: var(--line-dark);
  background: rgba(246, 248, 245, 0.9);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  flex: 0 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(49, 209, 88, 0.28);
}

.light-page .brand-mark {
  border-color: rgba(5, 20, 10, 0.08);
}

.nav-links,
.footer-links,
.button-row,
.trust-row,
.meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links {
  gap: 4px;
}

.nav-links a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.light-page .nav-links a:not(.button) {
  color: var(--muted-dark);
}

.nav-links a:not(.button):hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.light-page .nav-links a:not(.button):hover {
  background: rgba(9, 18, 12, 0.06);
  color: var(--ink-dark);
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav[open] summary {
  background: var(--surface-2);
}

.mobile-nav-panel {
  position: absolute;
  top: 68px;
  right: 20px;
  width: min(300px, calc(100vw - 40px));
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0d140f;
  box-shadow: var(--shadow);
}

.mobile-nav-panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 0 14px;
  text-decoration: none;
  font-weight: 750;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 21px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  box-shadow: 0 16px 42px rgba(49, 209, 88, 0.24);
  color: #031006;
}

.button-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 20px 50px rgba(49, 209, 88, 0.3);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.light-page .button-secondary {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-dark);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 14px;
}

.icon-arrow {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.button:hover .icon-arrow,
.text-link:hover .icon-arrow {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.light-page .eyebrow {
  color: var(--green-deep);
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 920;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.no-break {
  white-space: nowrap;
}

.hero {
  padding: 62px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.86fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6.25vw, 88px);
}

.hero h1 em {
  display: block;
  color: var(--green);
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.button-row {
  gap: 12px;
}

.trust-row {
  gap: 9px;
  margin-top: 28px;
}

.trust-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: #c7d0c9;
  font-size: 12px;
  font-weight: 750;
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.hero-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  filter: saturate(0.95) contrast(1.03);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 6, 3, 0.06), rgba(2, 6, 3, 0.38) 70%, rgba(2, 6, 3, 0.8)),
    linear-gradient(90deg, rgba(3, 8, 5, 0.28), transparent 60%);
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  right: 25px;
  bottom: -80px;
  z-index: 2;
  width: min(244px, 49%);
  overflow: hidden;
  border: 8px solid #050705;
  border-radius: 42px;
  background: #020402;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: rotate(2.2deg);
}

.hero-phone img {
  width: 100%;
  aspect-ratio: 943 / 2048;
  object-fit: cover;
}

.hero-sticker {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(4, 9, 6, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-sticker strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.hero-sticker span {
  color: #bcc7bf;
  font-size: 13px;
  line-height: 1.35;
}

.conversion-band {
  padding-bottom: 98px;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
  background: var(--green);
  box-shadow: 0 30px 90px rgba(49, 209, 88, 0.18);
  color: var(--ink-dark);
}

.download-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4.3vw, 56px);
}

.download-panel p {
  max-width: 550px;
  margin-bottom: 0;
  color: rgba(3, 16, 6, 0.72);
  font-size: 17px;
  line-height: 1.5;
}

.store-download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.app-store-badge {
  display: inline-flex;
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(7, 35, 14, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(7, 35, 14, 0.24);
}

.app-store-badge img {
  display: block;
  width: 180px;
  height: auto;
}

.download-panel .store-note {
  margin: 0;
  color: rgba(3, 16, 6, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 108px 0;
}

.section-compact {
  padding: 78px 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink-dark);
}

.section-muted {
  background: var(--bg-soft);
}

.section-head {
  max-width: 790px;
  margin-bottom: 48px;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.section-title {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 66px);
}

.section-lede {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.section-light .section-lede {
  color: var(--muted-dark);
}

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

.proof-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
}

.proof-card:nth-child(2) {
  background: #0d1a17;
}

.proof-card:nth-child(3) {
  background: #19170d;
}

.proof-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(49, 209, 88, 0.12);
  color: var(--green);
}

.proof-card:nth-child(2) .proof-icon {
  background: rgba(40, 215, 237, 0.11);
  color: var(--cyan);
}

.proof-card:nth-child(3) .proof-icon {
  background: rgba(255, 214, 10, 0.11);
  color: var(--yellow);
}

.proof-icon svg {
  width: 24px;
  height: 24px;
}

.proof-card h3 {
  margin-bottom: 9px;
  font-size: 25px;
}

.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.screenshot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: center;
}

.screenshot-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.screenshot-copy .section-title {
  font-size: clamp(40px, 5vw, 64px);
}

.screenshot-note {
  margin-top: 24px;
  padding: 17px 19px;
  border-left: 3px solid var(--green);
  border-radius: 0 16px 16px 0;
  background: rgba(49, 209, 88, 0.07);
  color: #bfcbc1;
  font-size: 13px;
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.screen-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.screen-card:nth-child(2) {
  margin-top: 90px;
}

.screen-image-wrap {
  padding: 18px 18px 0;
}

.screen-image {
  width: 100%;
  overflow: hidden;
  border: 7px solid #060806;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background: #050705;
}

.screen-image img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  object-position: top;
}

.screen-card figcaption {
  padding: 21px 22px 24px;
}

.screen-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.screen-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  counter-increment: process;
}

.process-card::before {
  content: "0" counter(process);
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 52px;
  left: 26px;
  width: calc(100% - 52px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.process-card h3 {
  margin-bottom: 11px;
  font-size: 24px;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.58;
}

.illustration-callout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0a100c;
  color: var(--ink);
}

.illustration-callout img {
  width: 100%;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.3));
}

.illustration-callout h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.illustration-callout p {
  max-width: 620px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}

.privacy-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 42px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 15%, rgba(40, 215, 237, 0.15), transparent 19rem),
    linear-gradient(145deg, #0d1712, #09100c);
}

.privacy-feature .section-title {
  max-width: 720px;
  margin-bottom: 18px;
}

.privacy-feature p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.privacy-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(40, 215, 237, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(40, 215, 237, 0.045),
    0 0 0 70px rgba(40, 215, 237, 0.025);
}

.privacy-phone {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 264px;
  display: grid;
  place-items: center;
  border: 7px solid #050705;
  border-radius: 34px;
  background: linear-gradient(160deg, #0d2f24, #07110c);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
}

.privacy-phone svg {
  width: 58px;
  color: var(--cyan);
}

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

.guide-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.guide-card:hover {
  background: var(--surface-2);
  transform: translateY(-5px);
}

.guide-card-tag {
  margin-bottom: auto;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 68px 0 12px;
  font-size: 27px;
}

.guide-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-bright);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 850;
  letter-spacing: -0.025em;
}

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

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--green);
  font-size: 20px;
  font-weight: 500;
}

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

.faq-answer {
  max-width: 770px;
  padding: 0 0 28px;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 14px;
}

.faq-answer .text-link {
  color: var(--green-bright);
}

.final-cta {
  padding: 40px 0 110px;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 80px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 10%, rgba(49, 209, 88, 0.23), transparent 24rem),
    linear-gradient(145deg, #111b14, #080d0a);
}

.final-cta-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(49, 209, 88, 0.065);
  border-radius: 50%;
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 76px);
}

.final-cta p {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 19px;
}

.final-cta .button-row {
  position: relative;
  z-index: 2;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 36px;
}

.light-page .site-footer {
  border-top-color: var(--line-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(130px, 0.38fr));
  gap: 36px;
  padding-bottom: 44px;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.light-page .footer-brand p {
  color: var(--muted-dark);
}

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

.footer-column a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.light-page .footer-column a {
  color: var(--muted-dark);
}

.footer-column a:hover {
  color: var(--green-bright);
}

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

.light-page .footer-bottom {
  border-top-color: var(--line-dark);
  color: var(--muted-dark);
}

/* Guides hub and editorial pages */

.page-hero {
  padding: 82px 0 72px;
}

.page-hero.centered {
  text-align: center;
}

.page-hero.centered .page-lede,
.page-hero.centered .meta-row {
  margin-inline: auto;
  justify-content: center;
}

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 86px);
}

.page-hero.centered h1 {
  margin-inline: auto;
}

.page-lede {
  max-width: 750px;
  margin-bottom: 25px;
  color: var(--muted-dark);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
}

.meta-row {
  gap: 9px 16px;
  color: var(--muted-dark);
  font-size: 13px;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--muted-dark);
  font-size: 13px;
}

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

.breadcrumb a:hover {
  color: var(--green-deep);
}

.breadcrumb-separator {
  color: #aab3ac;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 110px;
}

.hub-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: #ffffff;
  color: var(--ink-dark);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hub-card:hover {
  box-shadow: 0 28px 70px rgba(20, 45, 27, 0.11);
  transform: translateY(-5px);
}

.hub-card .guide-card-tag {
  color: var(--green-deep);
}

.hub-card h2 {
  max-width: 520px;
  margin: auto 0 14px;
  font-size: clamp(29px, 3.3vw, 42px);
}

.hub-card p {
  max-width: 550px;
  margin-bottom: 26px;
  color: var(--muted-dark);
}

.hub-card .text-link {
  color: var(--green-deep);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr) minmax(210px, 0.5fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-bottom: 110px;
}

.article-toc,
.article-aside {
  position: sticky;
  top: 112px;
}

.article-toc h2,
.article-aside h2 {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  margin: 10px 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--green-deep);
}

.article-content {
  min-width: 0;
}

.direct-answer {
  margin-bottom: 54px;
  padding: 28px 30px;
  border-radius: 24px;
  background: var(--green-wash);
}

.direct-answer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.direct-answer p {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.56;
}

.article-content > p {
  font-size: 18px;
  line-height: 1.75;
}

.article-section {
  padding-top: 30px;
  margin-bottom: 30px;
  scroll-margin-top: 105px;
}

.article-section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 43px);
}

.article-section h3 {
  margin: 30px 0 12px;
  font-size: 23px;
}

.article-section p,
.article-section li {
  color: #344139;
  font-size: 17px;
  line-height: 1.76;
}

.article-section ul,
.article-section ol {
  padding-left: 24px;
}

.article-section li {
  margin-bottom: 10px;
}

.article-section a {
  color: #08792c;
  font-weight: 700;
}

.integration-card {
  margin: 50px 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius);
  background: #08100a;
  color: var(--ink);
}

.integration-card .eyebrow {
  margin-bottom: 14px;
}

.integration-card h2 {
  margin-bottom: 15px;
  font-size: clamp(31px, 4vw, 44px);
}

.integration-card p {
  color: var(--muted);
}

.integration-steps {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: integration;
}

.integration-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #d6ddd7;
  font-size: 15px;
  counter-increment: integration;
}

.integration-steps li::before {
  content: counter(integration);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #031006;
  font-size: 13px;
  font-weight: 900;
}

.safety-note {
  margin: 42px 0;
  padding: 23px 25px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: #fff2e3;
  color: #3c2a18;
}

.safety-note strong {
  display: block;
  margin-bottom: 5px;
}

.sources-list {
  padding-left: 20px;
}

.sources-list li {
  margin-bottom: 10px;
}

.article-faq {
  margin-top: 50px;
}

.article-faq h2 {
  font-size: 38px;
}

.article-faq .faq-list {
  border-top-color: var(--line-dark);
}

.article-faq .faq-item {
  border-bottom-color: var(--line-dark);
}

.article-faq .faq-item summary {
  font-size: 19px;
}

.article-faq .faq-item summary::after {
  background: rgba(8, 20, 12, 0.07);
  color: var(--green-deep);
}

.article-faq .faq-answer {
  color: var(--muted-dark);
}

.aside-card {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(13, 31, 18, 0.07);
}

.aside-card + .aside-card {
  margin-top: 14px;
}

.aside-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.aside-card p {
  margin-bottom: 17px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.55;
}

.aside-card a:not(.button) {
  display: block;
  margin: 10px 0;
  color: #176b32;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.guide-cta {
  margin-top: 64px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--ink-dark);
}

.guide-cta h2 {
  margin-bottom: 10px;
  font-size: 36px;
}

.guide-cta p {
  margin-bottom: 20px;
  color: rgba(3, 16, 6, 0.7);
}

.guide-cta .button {
  background: #071009;
  color: #fff;
}

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

.legal-shell h1 {
  font-size: clamp(45px, 7vw, 72px);
}

.legal-shell h2 {
  margin: 44px 0 15px;
  font-size: 30px;
}

.legal-shell p,
.legal-shell li {
  color: #3f4a42;
  font-size: 16px;
}

.not-found {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 14px;
  font-size: clamp(68px, 16vw, 160px);
  color: var(--green);
}

.not-found h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 54px);
}

.not-found p {
  max-width: 550px;
  margin: 0 auto 28px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 40px;
  }

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

  .hero-media {
    min-height: 580px;
  }

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

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

  .article-shell {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .article-aside {
    display: none;
  }
}

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

  .mobile-nav {
    display: block;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid,
  .download-panel,
  .section-head.split,
  .screenshot-layout,
  .privacy-feature,
  .illustration-callout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

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

  .hero-media {
    min-height: 610px;
  }

  .download-panel {
    gap: 25px;
  }

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

  .proof-card {
    min-height: 180px;
  }

  .screenshot-copy {
    position: static;
  }

  .privacy-visual {
    min-height: 280px;
  }

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

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

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

  .article-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: #fff;
  }

  .article-toc h2 {
    width: 100%;
    margin: 0 5px 4px;
  }

  .article-toc a {
    margin: 0;
    border-radius: 999px;
    padding: 7px 10px;
    background: #eff3ef;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    min-height: 68px;
  }

  .hero {
    padding: 31px 0 54px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .hero-lede {
    font-size: 18px;
  }

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

  .trust-row {
    gap: 7px;
  }

  .hero-media {
    min-height: 500px;
    border-radius: 36px;
  }

  .hero-phone {
    right: 16px;
    bottom: -58px;
    width: 47%;
    border-width: 6px;
    border-radius: 32px;
  }

  .hero-sticker {
    left: 16px;
    bottom: 16px;
    max-width: 190px;
    padding: 13px 14px;
  }

  .hero-sticker strong {
    font-size: 15px;
  }

  .hero-sticker span {
    font-size: 11px;
  }

  .conversion-band {
    padding-bottom: 72px;
  }

  .download-panel {
    padding: 29px 20px;
    border-radius: 30px;
  }

  .section,
  .section-compact {
    padding: 76px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(36px, 11vw, 50px);
  }

  .screenshot-rail {
    grid-template-columns: 1fr;
  }

  .screen-card:nth-child(2) {
    margin-top: 0;
  }

  .process-grid,
  .guides-grid,
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 240px;
  }

  .privacy-feature {
    padding: 31px 22px;
    border-radius: 36px;
  }

  .privacy-ring {
    width: 220px;
    height: 220px;
  }

  .guide-card {
    min-height: 265px;
  }

  .faq-item summary {
    min-height: 78px;
    font-size: 19px;
  }

  .final-cta {
    padding-bottom: 76px;
  }

  .final-cta-card {
    padding: 36px 23px;
    border-radius: 36px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

  .page-hero {
    padding: 54px 0 50px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hub-grid {
    padding-bottom: 76px;
  }

  .hub-card {
    min-height: 310px;
  }

  .article-shell {
    padding-bottom: 78px;
  }

  .direct-answer {
    padding: 23px 21px;
  }

  .direct-answer p,
  .article-content > p,
  .article-section p,
  .article-section li {
    font-size: 16px;
  }

  .integration-card {
    padding: 26px 21px;
  }

  .guide-cta {
    padding: 28px 22px;
  }
}

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

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

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

  body,
  body.light-page {
    background: #fff;
    color: #000;
  }

  .article-shell {
    display: block;
  }

  a {
    color: #000;
  }
}
