:root {
  color-scheme: light;
  --ink: #18120e;
  --ink-2: #3a332d;
  --muted: #5c534b;
  --muted-2: #9a9088;
  --muted-3: #7a716a;
  --bg: #ffffff;
  --bg-warm: #fcfaf7;
  --line: #f0ebe5;
  --line-2: #e7e0d8;
  --accent: #f8501e;
  --accent-700: #e0440f;
  --accent-deep: #c9370a;
  --orange-glow: #ff7a45;
  --accent-bg: #fff1ea;
  --accent-bd: #ffe0cf;
  --dark-card: #231c16;
  --dark-line: #322a22;
  --dark-body: #b8afa6;
  --shadow-card: 0 30px 70px -26px rgba(24, 18, 14, 0.32), 0 6px 18px -8px rgba(24, 18, 14, 0.12);
  --shadow-cta: 0 10px 26px rgba(248, 80, 30, 0.34);
  --font: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #ffd9c7;
  color: var(--ink);
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(248, 80, 30, 0.32);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.primary-nav,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a:not(.nav-download),
.site-footer nav a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 600;
}

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

.nav-download {
  border-radius: 10px;
  background: var(--ink);
  color: #ffffff;
  padding: 10px 17px;
  font-size: 14px;
  font-weight: 700;
}

.nav-download:hover {
  background: #000000;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-button span + span {
  margin-top: -12px;
}

.hero {
  overflow: hidden;
  padding: 84px 0 76px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--accent-bd);
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent-deep);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
}

.hero-badge span,
.console-status span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  animation: rd-pulse 1.55s ease-in-out infinite;
}

.hero h1 {
  max-width: 950px;
  margin: 32px 0 0;
  font-size: clamp(40px, 6.4vw, 74px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.title-mobile {
  display: none;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-copy strong,
.method strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button-primary {
  background: var(--accent);
  box-shadow: var(--shadow-cta);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-700);
  box-shadow: 0 12px 30px rgba(248, 80, 30, 0.42);
}

.button-secondary {
  border: 1px solid var(--line-2);
  background: #ffffff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
}

.microcopy {
  margin: 17px 0 0;
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 600;
}

.console-card {
  position: relative;
  width: min(680px, 100%);
  overflow: hidden;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: var(--shadow-card);
  text-align: left;
  animation: rd-float 7s ease-in-out infinite;
}

.console-titlebar,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
}

.console-titlebar {
  border-bottom: 1px solid var(--line);
}

.traffic {
  display: flex;
  gap: 8px;
}

.traffic span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.traffic span:nth-child(1) {
  background: #ff5f57;
}

.traffic span:nth-child(2) {
  background: #ffbd2e;
}

.traffic span:nth-child(3) {
  background: #28c840;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 800;
}

.console-body {
  padding: 22px 22px 8px;
}

.reddit-row {
  display: grid;
  max-height: 58px;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  opacity: 1;
  animation: rd-row 7s ease-in-out infinite;
}

.row-two {
  animation-delay: 1.4s;
}

.row-three {
  animation-delay: 2.8s;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent-bg);
}

.row-copy {
  position: relative;
  min-width: 0;
}

.row-copy span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.row-copy p {
  overflow: hidden;
  margin: 4px 0 0;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-copy i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 21px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, #2a2420 0 22px, #3a332d 22px 26px);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: rd-redact 7s ease-in-out infinite;
}

.row-two .row-copy i {
  animation-delay: 1.4s;
}

.row-three .row-copy i {
  animation-delay: 2.8s;
}

.console-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.console-footer strong {
  color: var(--accent-deep);
  font-weight: 800;
}

.console-progress {
  height: 3px;
  background: #fff2ea;
}

.console-progress span {
  display: block;
  height: 100%;
  width: 14%;
  background: var(--accent);
  animation: rd-bar 7s ease-in-out infinite;
}

.console-scan {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(248, 80, 30, 0.12), transparent);
  opacity: 0;
  pointer-events: none;
  animation: rd-scan 7s ease-in-out infinite;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip .container {
  display: flex;
  min-height: 72px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
}

.trust-strip span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.value-props {
  padding-top: 86px;
}

.value-grid,
.privacy-grid,
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
}

.feature-card,
.privacy-grid article,
.roadmap-grid article,
.faq-list article {
  border: 1px solid var(--line);
  background: var(--bg-warm);
  box-shadow: 0 1px 0 rgba(24, 18, 14, 0.02);
}

.feature-card {
  min-height: 234px;
  border-radius: 16px;
  padding: 26px;
}

.icon-tile {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--accent-bd);
  border-radius: 13px;
  background: var(--accent-bg);
  color: var(--accent-deep);
}

.icon-tile svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-card h2,
.privacy-grid h3,
.roadmap-grid h3,
.faq-list h3,
.step-grid h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card p,
.privacy-grid p,
.roadmap-grid p,
.faq-list p,
.step-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.dark-band {
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
}

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

.section-heading.center {
  margin: 0 auto 46px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-heading h2,
.method h2,
.cta-card h2,
.article-page h1 {
  margin: 0;
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading > p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.section-heading.dark .eyebrow {
  color: var(--orange-glow);
}

.section-heading.dark > p:not(.eyebrow) {
  color: var(--dark-body);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
}

.step-grid article {
  min-height: 212px;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: var(--dark-card);
  padding: 28px;
}

.step-grid span {
  color: var(--orange-glow);
  font-size: 14px;
  font-weight: 800;
}

.step-grid h3 {
  color: #ffffff;
}

.step-grid p {
  color: var(--dark-body);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

.method p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.65;
}

.method-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-warm);
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.method-card div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 17px;
}

.method-card span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent-bg);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 800;
}

.method-card div:last-child span {
  background: var(--ink);
  color: #ffffff;
}

.method-card strong {
  align-self: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.method-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.method-card .redacted {
  color: var(--ink-2);
  letter-spacing: 0.05em;
}

.privacy-band,
.faq {
  border-top: 1px solid var(--line);
  background: var(--bg-warm);
}

.privacy-grid article,
.roadmap-grid article,
.faq-list article {
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;
}

.privacy-grid h3,
.roadmap-grid h3,
.faq-list h3 {
  margin-top: 0;
}

.roadmap-grid article {
  background: var(--bg-warm);
}

.roadmap-grid .muted-card {
  opacity: 0.78;
}

.status {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted-2);
  padding: 7px 10px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status.available {
  border-color: var(--accent-bd);
  background: var(--accent-bg);
  color: var(--accent-deep);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 22px 24px;
}

.final-cta {
  padding-top: 88px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink);
  color: #ffffff;
  padding: clamp(48px, 7vw, 72px) 24px;
  text-align: center;
}

.cta-card::before {
  position: absolute;
  top: -42%;
  left: 50%;
  width: min(620px, 88vw);
  height: min(420px, 56vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(248, 80, 30, 0.28), transparent 62%);
  content: "";
  transform: translateX(-50%);
}

.cta-card > * {
  position: relative;
}

.cta-card h2 {
  color: #ffffff;
}

.cta-card p {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--dark-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.cta-card .button {
  margin-top: 32px;
}

.cta-card span {
  display: block;
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 600;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px 32px;
}

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

.site-footer .resource-links {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 12px 18px;
  padding-top: 10px;
}

.site-footer .resource-links a {
  color: var(--muted-3);
  font-size: 13px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.article-main {
  padding: 72px 0 0;
}

.article-page {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 88px;
}

.article-page .crumb {
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-page .dek {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
}

.answer-block {
  margin: 34px 0;
  border: 1px solid var(--accent-bd);
  border-radius: 18px;
  background: var(--accent-bg);
  padding: 24px;
}

.answer-block p {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.article-page h2 {
  margin: 42px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.article-page p,
.article-page li {
  color: var(--muted);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.7;
}

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

.article-page ul,
.article-page ol {
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-page a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-cta {
  margin-top: 46px;
  border-radius: 20px;
  background: var(--ink);
  color: #ffffff;
  padding: 30px;
}

.article-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
}

.article-cta p {
  color: var(--dark-body);
}

.article-cta .button {
  margin-top: 22px;
  color: #ffffff;
  text-decoration: none;
}

.sources {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.sources h2 {
  margin-top: 0;
  font-size: 22px;
}

.is-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.is-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rd-redact {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  11% {
    transform: scaleX(1);
    opacity: 1;
  }
  24% {
    transform: scaleX(1);
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

@keyframes rd-row {
  0% {
    max-height: 58px;
    opacity: 1;
    margin-bottom: 12px;
  }
  24% {
    max-height: 58px;
    opacity: 1;
    margin-bottom: 12px;
  }
  31% {
    opacity: 0.5;
  }
  40% {
    max-height: 13px;
    opacity: 0.32;
    margin-bottom: 8px;
  }
  86% {
    max-height: 13px;
    opacity: 0.32;
    margin-bottom: 8px;
  }
  95%,
  100% {
    max-height: 58px;
    opacity: 1;
    margin-bottom: 12px;
  }
}

@keyframes rd-scan {
  0% {
    top: 14%;
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  48% {
    top: 74%;
    opacity: 0.85;
  }
  58%,
  100% {
    top: 14%;
    opacity: 0;
  }
}

@keyframes rd-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.82);
  }
}

@keyframes rd-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rd-bar {
  0%,
  100% {
    width: 14%;
  }
  50% {
    width: 78%;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 18px;
  }

  .menu-button {
    display: grid;
  }

  .site-header .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
    padding: 10px;
    backdrop-filter: blur(12px);
  }

  .site-header .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 44px;
    padding: 12px;
  }

  .nav-download {
    text-align: center;
  }

  .container,
  .narrow,
  .article-page {
    width: min(100% - 36px, 1120px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    max-width: 320px;
    font-size: clamp(32px, 9.6vw, 40px);
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-wrap: wrap;
    white-space: normal;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }

  .hero-copy {
    max-width: 292px;
    font-size: 15.8px;
    text-wrap: wrap;
  }

  .microcopy {
    max-width: 300px;
    line-height: 1.45;
    text-align: center;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    max-width: 320px;
  }

  .trust-strip .container {
    justify-content: center;
    padding: 18px 0;
    text-align: center;
  }

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

  .console-titlebar,
  .console-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}

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

  .is-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
