:root {
  color-scheme: dark;
  --bg: #050507;
  --bg-soft: #0a0a0d;
  --surface: #151517;
  --surface-strong: #1d1d22;
  --text: #f5f5f7;
  --muted: #a1a1aa;
  --subtle: #70707a;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent: #ffcc45;
  --accent-strong: #ffd86f;
  --accent-text: #171100;
  --max: 1120px;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 16rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 42%, #000 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid rgba(255, 204, 69, 0.5);
  border-radius: 999px;
  padding: 0.62rem 0.82rem;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

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

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(255, 216, 111, 0.48);
  outline-offset: 4px;
}

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

h1 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(3.5rem, 11vw, 9.25rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(2.6rem, 7vw, 5.25rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.2;
}

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

code {
  overflow-wrap: anywhere;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 780px);
}

.section {
  padding: 7.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 7, 0.78);
  backdrop-filter: blur(22px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
}

.brand:hover {
  text-decoration: none;
}

.brand-icon {
  border-radius: 9px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.nav-links a {
  flex: 0 0 auto;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links .nav-download {
  min-height: 36px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 204, 69, 0.38);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(255, 204, 69, 0.14);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links .nav-download:hover {
  background: var(--accent-strong);
  color: var(--accent-text);
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.18rem;
  border: 1px solid rgba(255, 204, 69, 0.45);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow: 0 20px 56px rgba(255, 204, 69, 0.18);
}

.button:hover {
  background: var(--accent-strong);
  text-decoration: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: var(--muted);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 56px);
  padding: 5.2rem 0 4.2rem;
  background:
    linear-gradient(135deg, rgba(255, 204, 69, 0.08), transparent 31%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #050507 0%, #07070a 57%, #000 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
  pointer-events: none;
}

.hero-stage {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.platform-note,
.section-kicker {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-lede {
  max-width: 760px;
  margin: 1.55rem auto 0;
  color: #dedee3;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.14;
}

.hero-microcopy {
  margin: 1rem 0 0;
  color: var(--accent-strong);
  font-size: 0.96rem;
  font-weight: 900;
}

.bruh-flow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.24);
}

.keycap,
.reaction-pill,
.bruh-burst {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.keycap {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.32);
}

.reaction-pill {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.bruh-burst {
  background: var(--accent);
  color: var(--accent-text);
  transform: rotate(-2deg);
  box-shadow: 0 14px 34px rgba(255, 204, 69, 0.16);
}

.flow-step {
  color: var(--subtle);
  font-weight: 900;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(68vw, 520px);
  aspect-ratio: 1;
  margin: clamp(1.65rem, 3.4vw, 2.8rem) auto 0;
}

.product-stage::before {
  position: absolute;
  inset: 12%;
  content: "";
  border-radius: 36%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025));
  transform: rotate(-5deg);
}

.hero-icon {
  position: relative;
  width: min(68vw, 420px);
  border-radius: 30%;
  filter: drop-shadow(0 58px 112px rgba(0, 0, 0, 0.72));
}

.purchase-capsule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  padding: 0.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(24, 24, 28, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.purchase-note {
  max-width: 620px;
  margin: 0.95rem auto 0;
  color: var(--subtle);
  font-size: 0.92rem;
}

.price {
  padding: 0 0.75rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-chips li,
.status-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.trust-chips li {
  padding: 0.48rem 0.78rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p {
  max-width: 680px;
  font-size: 1.08rem;
}

.feature-overview {
  background: #000;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.card,
.policy-block,
.faq-item,
.privacy-grid article,
.truth-table article,
.purchase-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.card {
  position: relative;
  min-height: 132px;
  padding: 1.4rem;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card::after {
  position: absolute;
  right: 1.1rem;
  bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.045);
  content: attr(data-noise);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 204, 69, 0.28);
  background: linear-gradient(180deg, rgba(255, 204, 69, 0.105), rgba(255, 255, 255, 0.035));
}

.feature-code {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.32rem 0.5rem;
  border: 1px solid rgba(255, 204, 69, 0.28);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.card p,
.privacy-grid p,
.policy-block p,
.faq-item p,
.truth-table p {
  margin-bottom: 0;
}

.purchase-section {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 204, 69, 0.1), transparent 22rem),
    #050507;
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.purchase-panel h2 {
  max-width: 760px;
}

.purchase-panel p {
  max-width: 680px;
  margin-bottom: 1rem;
}

.purchase-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purchase-facts li {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.section-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  min-width: 250px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1rem;
  text-align: center;
}

.trust-section {
  background:
    linear-gradient(180deg, #050507 0%, #0b0b0f 100%);
  border-block: 1px solid var(--border);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: start;
}

.trust-copy p {
  max-width: 620px;
  font-size: 1.08rem;
}

.truth-table {
  display: grid;
  gap: 0.9rem;
}

.truth-table article {
  padding: 1.35rem;
}

.privacy-section {
  background: #000;
}

.legal-preview-section {
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 204, 69, 0.09), transparent 18rem),
    radial-gradient(circle at 86% 12%, rgba(167, 216, 255, 0.1), transparent 18rem),
    #000;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.legal-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.legal-preview-card,
.legal-detail {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.legal-preview-card {
  min-height: 230px;
  padding: 1.25rem;
}

.legal-preview-card h3 {
  margin-bottom: 0.75rem;
}

.legal-preview-card p {
  margin-bottom: 1.1rem;
}

.legal-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.32rem 0.54rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-grid article {
  padding: 1.35rem;
}

.not-collected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.1rem;
  padding: 0;
  list-style: none;
}

.not-collected-list li {
  padding: 0.38rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.privacy-grid h2 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: #050507;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid nav {
  display: flex;
  gap: 1rem;
}

.page-main {
  min-height: 72vh;
}

.page-hero {
  padding: 5.5rem 0 3rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.policy-block {
  padding: 1.5rem;
  overflow-wrap: anywhere;
}

.policy-block h2,
.faq h2 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.policy-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.legal-stack {
  gap: 0.85rem;
}

.legal-detail {
  overflow: hidden;
}

.legal-detail summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 72px;
  padding: 1.25rem 1.4rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.legal-detail summary::-webkit-details-marker {
  display: none;
}

.legal-detail summary::after {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  content: "+";
  color: var(--muted);
  font-size: 1.1rem;
  transition: transform 180ms ease, background 180ms ease;
}

.legal-detail[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.legal-detail summary span:first-child {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.legal-detail summary span:nth-child(2) {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.legal-detail-body {
  display: grid;
  gap: 0.85rem;
  padding: 0 1.4rem 1.35rem;
  animation: legal-open 180ms ease;
}

.legal-detail-body p {
  margin-bottom: 0;
}

@keyframes legal-open {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-block ul,
.policy-block ol {
  margin: 0;
  padding-left: 1.2rem;
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  text-align: center;
}

.not-found-icon {
  margin-bottom: 1.3rem;
  border-radius: 22px;
}

.not-found h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid .card:nth-child(2),
.truth-table article:nth-child(2),
.privacy-grid article:nth-child(2) {
  --reveal-delay: 70ms;
}

.feature-grid .card:nth-child(3),
.privacy-grid article:nth-child(3) {
  --reveal-delay: 140ms;
}

.feature-grid .card:nth-child(4) {
  --reveal-delay: 210ms;
}

.feature-grid .card:nth-child(5) {
  --reveal-delay: 280ms;
}

.feature-grid .card:nth-child(6) {
  --reveal-delay: 350ms;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }

  .card {
    transition: none;
  }

  .card:hover {
    transform: none;
  }
}

@media (max-width: 960px) {
  .nav {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .feature-grid,
  .privacy-grid,
  .legal-preview-grid,
  .trust-layout,
  .purchase-panel {
    grid-template-columns: 1fr;
  }

  .section-actions {
    min-width: 0;
  }
}

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

  .section {
    padding: 4.8rem 0;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 3.2rem;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-lede {
    margin-top: 1rem;
    font-size: 1.28rem;
  }

  .hero-microcopy {
    font-size: 0.92rem;
  }

  .bruh-flow {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.38rem;
    border-radius: var(--radius-sm);
  }

  .keycap,
  .reaction-pill,
  .bruh-burst {
    min-height: 32px;
    font-size: 0.78rem;
  }

  .product-stage {
    width: min(66vw, 250px);
    margin-top: 1.6rem;
  }

  .hero-icon {
    width: min(64vw, 235px);
  }

  .purchase-capsule {
    width: 100%;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-top: 1.35rem;
  }

  .purchase-capsule .button,
  .section-actions .button,
  .status-pill {
    width: 100%;
  }

  .trust-chips li {
    width: 100%;
  }

  .purchase-facts,
  .not-collected-list {
    flex-direction: column;
  }

  .purchase-facts li,
  .not-collected-list li {
    width: 100%;
  }

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

  .feature-grid .card,
  .truth-table article,
  .privacy-grid article {
    --reveal-delay: 0ms;
  }

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

/* Light meme polish layer: warm, sticker-like, and still review-safe. */
:root {
  color-scheme: light;
  --bg: #fff7e8;
  --bg-soft: #fff0c9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #18130d;
  --muted: #5d564d;
  --subtle: #7a7063;
  --border: rgba(42, 30, 16, 0.13);
  --border-strong: rgba(42, 30, 16, 0.2);
  --accent: #ffd645;
  --accent-strong: #ffbf2f;
  --accent-text: #191106;
  --peach: #ff9c7d;
  --sky: #a7d8ff;
  --lime: #d6ed72;
  --ink: #18130d;
  --shadow: 0 28px 70px rgba(105, 72, 23, 0.16);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), transparent 20rem),
    radial-gradient(circle at 8% 10%, rgba(255, 156, 125, 0.2), transparent 18rem),
    radial-gradient(circle at 92% 18%, rgba(167, 216, 255, 0.24), transparent 20rem),
    linear-gradient(180deg, var(--bg) 0%, #fffaf0 46%, #f7efe1 100%);
  color: var(--text);
}

a {
  color: #245cc4;
}

a:focus-visible,
.button:focus-visible {
  outline-color: rgba(36, 92, 196, 0.52);
}

h1,
h2,
h3 {
  color: var(--text);
}

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

.skip-link {
  border-color: rgba(24, 19, 13, 0.18);
  box-shadow: 0 18px 42px rgba(105, 72, 23, 0.22);
}

.site-header {
  border-bottom-color: rgba(42, 30, 16, 0.1);
  background: rgba(255, 247, 232, 0.78);
  box-shadow: 0 12px 32px rgba(105, 72, 23, 0.07);
}

.brand,
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.brand-icon {
  box-shadow: 0 9px 24px rgba(105, 72, 23, 0.2);
}

.nav-links a {
  color: #4f473d;
}

.nav-links a.nav-download {
  min-height: 42px;
  padding: 0.65rem 1.35rem;
  border: 1px solid rgba(219, 169, 35, 0.45);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffdf62 0%, #ffd43d 100%);
  color: #17110b;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255, 204, 69, 0.22);
}

.nav-links a.nav-download:hover,
.nav-links a.nav-download:focus-visible {
  background: linear-gradient(180deg, #ffe77d 0%, #ffcf24 100%);
  color: #17110b;
  text-decoration: none;
}

.button {
  border-color: rgba(24, 19, 13, 0.12);
  background: var(--ink);
  color: #fffdf8;
  box-shadow: 0 18px 36px rgba(24, 19, 13, 0.18);
}

.button:hover {
  background: #302418;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  border-color: var(--border-strong);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.64);
}

.hero {
  min-height: auto;
  padding: 4.2rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.88), rgba(255, 244, 215, 0.6)),
    url("../images/hero-collage.png") center / cover no-repeat;
}

.hero::before {
  background-image:
    linear-gradient(rgba(24, 19, 13, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 19, 13, 0.03) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 70%);
}

.hero-stage {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  grid-template-areas:
    "copy product"
    "actions product"
    "chips product";
  align-items: center;
  justify-items: stretch;
  gap: 1rem 2.3rem;
  min-height: min(760px, calc(100vh - 86px));
  padding: clamp(1.4rem, 3.6vw, 3rem);
  border: 1px solid rgba(42, 30, 16, 0.12);
  border-radius: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 251, 240, 0.8) 48%, rgba(255, 255, 255, 0.48) 100%);
  box-shadow: 0 34px 100px rgba(105, 72, 23, 0.18);
  text-align: left;
  backdrop-filter: blur(8px);
}

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

.platform-note,
.section-kicker {
  color: #735c33;
}

h1 {
  color: var(--text);
  font-size: clamp(3.4rem, 7.2vw, 6.8rem);
  line-height: 0.88;
}

h2 {
  color: var(--text);
}

.hero-lede {
  max-width: 640px;
  margin-inline: 0;
  color: #2b2218;
}

.hero-microcopy {
  color: #d55d38;
}

.bruh-flow {
  justify-content: flex-start;
  border-color: rgba(24, 19, 13, 0.11);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 16px 38px rgba(105, 72, 23, 0.13);
}

.hero-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(42, 30, 16, 0.14);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-action:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-action-primary {
  background: #fff;
  box-shadow:
    inset 0 -4px 0 rgba(105, 72, 23, 0.11),
    0 18px 36px rgba(105, 72, 23, 0.12);
}

.hero-action-primary:hover {
  border-color: rgba(42, 30, 16, 0.22);
  box-shadow:
    inset 0 -4px 0 rgba(105, 72, 23, 0.13),
    0 22px 44px rgba(105, 72, 23, 0.16);
}

.hero-action-secondary {
  background: rgba(255, 246, 215, 0.68);
  color: #5f4c2a;
  box-shadow: 0 12px 28px rgba(105, 72, 23, 0.08);
}

.hero-action-secondary::before {
  width: 0.58rem;
  height: 0.58rem;
  margin-right: 0.48rem;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(214, 237, 114, 0.28);
  content: "";
}

.keycap {
  border-color: rgba(24, 19, 13, 0.14);
  background: linear-gradient(180deg, #fff 0%, #f4eadb 100%);
  box-shadow: inset 0 -3px 0 rgba(92, 68, 35, 0.16);
}

.reaction-pill {
  color: #51483d;
  background: #e8f4ff;
}

.bruh-burst {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(255, 191, 47, 0.28);
}

.flow-step {
  color: #8a7c6b;
}

.product-stage {
  grid-area: product;
  width: min(100%, 430px);
  isolation: isolate;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: clamp(68px, 18vw, 128px);
  background: transparent;
  box-shadow: none;
}

.product-stage::before {
  display: none;
}

.product-stage::after {
  display: none;
}

.hero-icon {
  z-index: 1;
  width: min(100%, 390px);
  border-radius: clamp(58px, 16vw, 118px);
  border: 1px solid rgba(139, 111, 62, 0.14);
  background: rgba(255, 255, 252, 0.96);
  filter: none;
  box-shadow:
    0 28px 62px rgba(105, 72, 23, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.72);
}

.purchase-capsule {
  grid-area: purchase;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  border-color: rgba(42, 30, 16, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(105, 72, 23, 0.13);
}

.purchase-note {
  grid-area: note;
  max-width: 560px;
  margin-inline: 0;
  color: #6a5e4e;
}

.price {
  color: var(--text);
}

.trust-chips {
  grid-area: chips;
  justify-content: flex-start;
}

.trust-chips li,
.status-pill,
.purchase-facts li,
.not-collected-list li {
  border-color: rgba(42, 30, 16, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: #4e453a;
}

.section {
  padding: 6.5rem 0;
}

.feature-overview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 246, 226, 0.86)),
    #fff6e2;
}

.section-heading p {
  color: #5c5146;
}

.card,
.policy-block,
.faq-item,
.privacy-grid article,
.truth-table article,
.purchase-panel {
  border-color: rgba(42, 30, 16, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(105, 72, 23, 0.09);
}

.card {
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 244, 0.82));
}

.card:nth-child(1),
.card:nth-child(5) {
  background: #fff5c9;
}

.card:nth-child(2) {
  background: #dff1ff;
  transform: rotate(-0.6deg);
}

.card:nth-child(3),
.card:nth-child(6) {
  background: #eef8b7;
}

.card:nth-child(4) {
  background: #ffe0d4;
  transform: rotate(0.6deg);
}

.card::after {
  color: rgba(24, 19, 13, 0.07);
}

.card:hover {
  transform: translateY(-4px) rotate(0deg);
  border-color: rgba(24, 19, 13, 0.24);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
}

.feature-code {
  border-color: rgba(24, 19, 13, 0.16);
  background: rgba(255, 255, 255, 0.56);
  color: #15110b;
}

.purchase-section {
  background:
    linear-gradient(180deg, #fff6e2 0%, #f8eddb 100%);
}

.purchase-panel {
  background:
    linear-gradient(135deg, rgba(255, 214, 69, 0.24), rgba(255, 255, 255, 0.88) 44%, rgba(167, 216, 255, 0.22));
}

.trust-section {
  border-block-color: rgba(42, 30, 16, 0.11);
  background:
    linear-gradient(180deg, #f8eddb 0%, #fffaf1 100%);
}

.truth-table article {
  background: #fff;
}

.truth-table article:first-child {
  border-left: 6px solid var(--sky);
}

.truth-table article:nth-child(2) {
  border-left: 6px solid var(--lime);
}

.privacy-section {
  background: #fffaf1;
}

.legal-preview-section {
  background:
    linear-gradient(180deg, #fffaf1 0%, #f8eddb 100%);
}

.privacy-grid article {
  background: rgba(255, 255, 255, 0.84);
}

.legal-preview-card,
.legal-detail {
  border-color: rgba(42, 30, 16, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 50px rgba(105, 72, 23, 0.09);
}

.legal-preview-card:nth-child(1) {
  background: #fff5c9;
}

.legal-preview-card:nth-child(2) {
  background: #dff1ff;
}

.legal-preview-card:nth-child(3) {
  background: #eef8b7;
}

.legal-preview-card:nth-child(4) {
  background: #ffe0d4;
}

.legal-label {
  border-color: rgba(24, 19, 13, 0.16);
  background: rgba(255, 255, 255, 0.56);
  color: #15110b;
}

.legal-detail summary::after {
  border-color: rgba(42, 30, 16, 0.16);
  background: rgba(255, 255, 255, 0.58);
  color: #4e453a;
}

.site-footer {
  border-top-color: rgba(42, 30, 16, 0.11);
  background: #fff4dc;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.92), rgba(255, 244, 215, 0.56)),
    url("../images/hero-collage.png") center / cover no-repeat;
}

.page-hero .platform-note {
  margin-bottom: 0.65rem;
}

.page-hero h1 {
  margin-bottom: 0.9rem;
  line-height: 0.94;
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  line-height: 1.48;
}

.page-hero .button {
  margin-top: 1.1rem;
}

.policy-block,
.faq-item {
  background: rgba(255, 255, 255, 0.86);
}

.not-found {
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.9), rgba(255, 244, 215, 0.66)),
    url("../images/hero-collage.png") center / cover no-repeat;
}

.not-found-icon {
  box-shadow: 0 18px 42px rgba(105, 72, 23, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .card:nth-child(2),
  .card:nth-child(4),
  .card:hover {
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "product"
      "actions"
      "chips";
    text-align: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .bruh-flow,
  .hero-actions,
  .trust-chips {
    justify-content: center;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 1rem 0 2.6rem;
  }

  .hero-stage {
    min-height: auto;
    padding: 1.05rem;
    border-radius: 26px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.65rem);
  }

  .hero-lede {
    font-size: 1.2rem;
  }

  .product-stage {
    width: min(64vw, 250px);
    border-radius: clamp(44px, 18vw, 82px);
  }

  .hero-icon {
    width: min(100%, 230px);
    border-radius: clamp(42px, 16vw, 76px);
  }

  .hero-actions {
    width: 100%;
    gap: 0.55rem;
  }

  .hero-action {
    flex: 1 1 100%;
    min-height: 46px;
  }

  .legal-detail summary {
    grid-template-columns: minmax(0, 1fr) 2rem;
    padding: 1.05rem;
  }

  .legal-detail-body {
    padding: 0 1.05rem 1.05rem;
  }

  .bruh-flow {
    background: rgba(255, 255, 255, 0.84);
  }

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