:root {
  --ink: #0b0e0c;
  --ink-soft: #121713;
  --paper: #f2f0e9;
  --paper-bright: #faf9f5;
  --muted: #7f877f;
  --line: rgba(11, 14, 12, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --acid: #c8ff75;
  --acid-deep: #98db42;
  --forest: #193826;
  --white: #ffffff;
  --radius-small: 10px;
  --radius-medium: 22px;
  --radius-large: 34px;
  --content-max: 1280px;
  --content-gutter: 48px;
  --display: "Arial Narrow", "Roboto Condensed", "Microsoft YaHei", sans-serif;
  --body: Inter, "Segoe UI", "Microsoft YaHei", system-ui, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.cursor-glow {
  position: fixed;
  top: -130px;
  left: -130px;
  z-index: 19;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: rgba(200, 255, 117, 0.18);
  filter: blur(38px);
  transition: opacity 180ms ease;
}

.section-shell {
  width: min(var(--content-max), calc(100vw - var(--content-gutter)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(var(--content-max), calc(100vw - 28px));
  min-height: 58px;
  padding: 7px 8px 7px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  color: var(--white);
  background: rgba(11, 14, 12, 0.72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--acid);
}

.brand-mark span {
  position: absolute;
  width: 7px;
  height: 14px;
  border-block: 2px solid var(--ink);
}

.brand-mark span:first-child {
  left: 6px;
  border-left: 2px solid var(--ink);
}

.brand-mark span:last-child {
  right: 6px;
  border-right: 2px solid var(--ink);
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--acid);
  font-size: 13px;
  font-weight: 760;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.language-option {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding-inline: 6px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 760;
  transition: color 180ms ease, background 180ms ease;
}

.language-option.is-active {
  color: var(--ink);
  background: var(--acid);
}

.arrow {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--acid);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(38px, 5vw, 76px);
  min-height: 860px;
  padding-top: 170px;
  padding-bottom: 90px;
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -3;
  width: 100vw;
  height: 100%;
  background:
    radial-gradient(circle at 80% 24%, rgba(75, 148, 96, 0.22), transparent 31%),
    radial-gradient(circle at 24% 0%, rgba(200, 255, 117, 0.09), transparent 24%),
    var(--ink);
  content: "";
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  height: 100%;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  content: "";
  transform: translateX(-50%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(200, 255, 117, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 160px;
  right: -120px;
  width: 590px;
  height: 590px;
}

.hero-orbit-two {
  top: 240px;
  right: -38px;
  width: 420px;
  height: 420px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: 40px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(200, 255, 117, 0.1);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
  content: "";
}

@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.4); }
  100% { opacity: 0; transform: scale(1.6); }
}

.hero h1 {
  max-width: 620px;
  margin: 28px 0 26px;
  font-family: var(--display);
  font-size: clamp(62px, 5.4vw, 96px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.085em;
}

.hero h1 span {
  color: var(--acid);
}

.hero-lead {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 760;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--acid);
}

.button-primary:hover {
  background: #d7ff9b;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.play-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(200, 255, 117, 0.12);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  margin-top: 68px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div {
  display: grid;
  gap: 4px;
}

.hero-proof strong {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 16px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.hero-stage {
  position: relative;
  align-self: center;
  min-height: 630px;
  perspective: 1400px;
}

.stage-label {
  position: absolute;
  z-index: 6;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.stage-label-top {
  top: -30px;
  right: 48px;
}

.stage-label-side {
  right: -85px;
  bottom: 180px;
  transform: rotate(90deg);
}

.browser-window {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: min(100%, 720px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  background: #f8f8f5;
  box-shadow: 0 70px 120px rgba(0, 0, 0, 0.48);
  transform: rotateY(-7deg) rotateX(2deg) rotateZ(1deg);
  transform-origin: center;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.hero-stage:hover .browser-window {
  transform: rotateY(-2deg) rotateX(0deg) rotateZ(0deg) translateY(-6px);
}

.browser-bar {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid #e1e2de;
  background: #edefea;
}

.traffic-lights {
  display: flex;
  gap: 5px;
}

.traffic-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8cac4;
}

.traffic-lights span:first-child { background: #ff7c68; }
.traffic-lights span:nth-child(2) { background: #ffd76c; }
.traffic-lights span:last-child { background: #92d27c; }

.browser-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 28px;
  border: 1px solid #dedfda;
  border-radius: 8px;
  color: #8d928c;
  background: #f8f8f6;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.address-lock {
  display: inline-block;
  width: 6px;
  height: 7px;
  border-radius: 2px;
  background: #879087;
}

.browser-menu {
  color: #9aa099;
  font-size: 12px;
}

.browser-feed {
  padding: 24px;
}

.post-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.avatar-a {
  background:
    radial-gradient(circle at 38% 34%, #f8cd91 0 12%, transparent 13%),
    linear-gradient(135deg, #20281f 30%, #547d55);
}

.post-profile div:last-child {
  display: grid;
  gap: 1px;
}

.post-profile strong {
  color: #161a17;
  font-size: 12px;
}

.post-profile span {
  color: #8d928d;
  font-size: 10px;
}

.post-intro {
  margin: 18px 0 14px;
  color: #353a36;
  font-size: 12px;
}

.detected-prompt {
  position: relative;
  padding: 18px 18px 16px;
  border: 1px solid #79a356;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0fae7, #ddf3c8);
  box-shadow: inset 3px 0 0 #5a893a, 0 8px 24px rgba(47, 93, 35, 0.12);
}

.detect-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border-radius: 5px;
  color: #3b6530;
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.detect-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #64a636;
}

.detected-prompt p {
  margin: 12px 0 14px;
  color: #263621;
  font-size: 12px;
  line-height: 1.75;
}

.detect-actions {
  display: flex;
  gap: 6px;
}

.detect-actions button {
  padding: 7px 11px;
  border: 1px solid rgba(45, 84, 35, 0.12);
  border-radius: 6px;
  color: #2f5527;
  background: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.detect-actions button:last-child {
  color: var(--white);
  background: #315f29;
}

.post-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  margin-top: 14px;
  border-radius: 13px;
  background: #111;
}

.post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-toast,
.floating-score {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(23, 31, 25, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.floating-toast {
  right: -30px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 270px;
  padding: 12px;
  border-radius: 12px;
  animation: float 4.5s ease-in-out infinite;
}

.toast-check {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 9px;
  color: var(--ink);
  background: var(--acid);
  font-size: 15px;
  font-weight: 900;
}

.floating-toast > span:last-child {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.floating-toast strong {
  color: var(--white);
  font-size: 11px;
}

.floating-score {
  top: 78px;
  left: -42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  width: 180px;
  padding: 12px;
  border-radius: 12px;
  animation: float 5.5s 0.8s ease-in-out infinite;
}

.floating-score span {
  align-self: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.floating-score strong {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 18px;
}

.floating-score div {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.floating-score i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--acid);
}

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

.signal-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
}

.ticker {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 14px 0;
  color: var(--ink);
  animation: ticker 26s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.ticker i {
  font-style: normal;
  font-size: 11px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.manifesto {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-kicker {
  color: var(--muted);
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  letter-spacing: 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(52px, 7vw, 96px);
  align-items: end;
  margin-top: 60px;
}

.manifesto h2,
.section-heading h2,
.metrics-copy h2,
.privacy-copy h2,
.install-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 5vw, 84px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.078em;
}

.manifesto h2 em {
  color: var(--forest);
  font-family: Georgia, "Songti SC", serif;
  font-weight: 400;
}

.manifesto h2 {
  line-height: 1.08;
}

.manifesto-copy {
  max-width: 520px;
  padding-bottom: 8px;
}

.manifesto-copy p {
  margin: 0 0 20px;
  color: #5f675f;
  font-size: 16px;
  line-height: 1.8;
}

.manifesto-copy a {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.workflow {
  position: relative;
  padding-bottom: 160px;
}

.workflow-rail {
  position: absolute;
  top: 0;
  bottom: 160px;
  left: 53px;
  width: 1px;
  background: var(--line);
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 106px minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: 36px;
  align-items: center;
  min-height: 420px;
  padding-block: 44px;
  border-top: 1px solid var(--line);
}

.workflow-step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
}

.step-copy {
  max-width: 420px;
}

.step-tag {
  color: #7e877e;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step-copy h3,
.bento-card h3 {
  margin: 20px 0 18px;
  font-family: var(--display);
  font-size: clamp(32px, 2.8vw, 48px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.065em;
}

.step-copy p,
.bento-card p {
  margin: 0;
  color: #6b736b;
  font-size: 14px;
  line-height: 1.8;
}

.step-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper-bright);
}

.scan-visual {
  display: grid;
  align-content: center;
  padding: 48px;
  background:
    linear-gradient(rgba(11, 14, 12, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 14, 12, 0.035) 1px, transparent 1px),
    var(--paper-bright);
  background-size: 26px 26px;
}

.scan-visual p {
  position: relative;
  z-index: 2;
  max-width: 570px;
  margin: 0;
  padding: 18px;
  border: 1px solid #7ba358;
  border-radius: 10px;
  color: #263c22;
  background: linear-gradient(180deg, #eff9e9, #dff0d0);
  box-shadow: inset 3px 0 #5c8e3e;
  font-size: 15px;
  line-height: 1.8;
}

.scan-visual > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-top: 16px;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
}

.scan-visual > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10%;
  z-index: 3;
  width: 2px;
  background: var(--acid-deep);
  box-shadow: 0 0 30px 12px rgba(152, 219, 66, 0.16);
  animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { left: 8%; opacity: 0; }
  18%, 82% { opacity: 1; }
  50% { left: 92%; }
}

.capture-visual {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 50px;
  background: #171c18;
}

.capture-line {
  height: 13px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.capture-line-a { width: 88%; }
.capture-line-b {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(200, 255, 117, 0.62);
  background: rgba(200, 255, 117, 0.16);
  box-shadow: inset 3px 0 var(--acid);
}
.capture-line-c { width: 68%; }

.mini-tooltip {
  position: absolute;
  top: 60px;
  right: 48px;
  z-index: 3;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  animation: float 4s ease-in-out infinite;
}

.mini-tooltip button {
  padding: 7px 12px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: #edf0eb;
  font-size: 9px;
  font-weight: 760;
}

.mini-tooltip button:last-child {
  color: var(--acid);
  background: var(--ink);
}

.capture-source {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.reuse-visual {
  overflow: visible;
  background: #dfe6d8;
}

.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(320px, 70%);
  height: 230px;
  border: 1px solid rgba(11, 14, 12, 0.13);
  border-radius: 16px;
  background: var(--paper-bright);
  box-shadow: 0 24px 44px rgba(33, 54, 39, 0.14);
}

.stack-back {
  transform: translate(-40%, -58%) rotate(9deg);
  opacity: 0.5;
}

.stack-middle {
  transform: translate(-55%, -52%) rotate(-7deg);
  opacity: 0.72;
}

.stack-front {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 18px;
  transform: translate(-50%, -50%);
  animation: stackFloat 5s ease-in-out infinite;
}

@keyframes stackFloat {
  50% { transform: translate(-50%, -54%); }
}

.stack-front span {
  align-self: center;
  width: max-content;
  padding: 5px 7px;
  border-radius: 5px;
  color: #4c5a4f;
  background: #eef0ec;
  font-size: 9px;
  font-weight: 750;
}

.stack-front strong {
  align-self: center;
  color: #777e77;
  font-family: var(--mono);
  font-size: 9px;
}

.stack-thumb {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

.stack-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 800px;
  font-size: clamp(52px, 5.2vw, 86px);
}

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

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper-bright);
}

.bento-card h3 {
  max-width: 560px;
  font-size: clamp(34px, 3vw, 52px);
}

.bento-card p {
  max-width: 520px;
}

.card-index {
  color: #7c837c;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.bento-large {
  grid-column: span 7;
  min-height: 610px;
}

.precision-ui {
  display: grid;
  gap: 8px;
  margin-top: 46px;
}

.precision-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.52);
}

.precision-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  font-weight: 800;
}

.precision-icon.is-yes {
  color: var(--forest);
  background: var(--acid);
}

.precision-icon.is-no {
  color: #8a918b;
  background: #e4e6e2;
}

.precision-row div {
  display: grid;
  gap: 3px;
}

.precision-row strong {
  font-size: 12px;
}

.precision-row span {
  color: #8b918b;
  font-size: 9px;
}

.precision-row b {
  min-width: 42px;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--acid);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bento-accent {
  grid-column: span 5;
  color: var(--ink);
  background: var(--acid);
}

.bento-accent p {
  color: rgba(11, 14, 12, 0.58);
}

.privacy-ring {
  position: absolute;
  right: -50px;
  bottom: -60px;
  display: grid;
  place-items: center;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(11, 14, 12, 0.22);
  border-radius: 50%;
}

.privacy-ring::before,
.privacy-ring::after {
  position: absolute;
  border: 1px solid rgba(11, 14, 12, 0.16);
  border-radius: 50%;
  content: "";
}

.privacy-ring::before { inset: 24px; }
.privacy-ring::after { inset: 52px; }

.privacy-ring span {
  z-index: 2;
  font-family: var(--display);
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.08em;
  transform: translateY(-10px);
}

.privacy-ring small {
  position: absolute;
  z-index: 2;
  margin-top: 76px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.bento-dark {
  grid-column: span 5;
  min-height: 500px;
  color: var(--white);
  background: var(--ink);
}

.bento-dark .card-index {
  color: rgba(255, 255, 255, 0.4);
}

.type-cloud {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.type-cloud span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--mono);
  font-size: 9px;
}

.type-cloud span:nth-child(2),
.type-cloud span:nth-child(5) {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.bento-wide {
  grid-column: span 7;
  min-height: 500px;
  background: #e3e8de;
}

.library-copy {
  max-width: 420px;
}

.library-mini {
  position: absolute;
  right: -30px;
  bottom: -35px;
  width: 66%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px 0 0 0;
  background: var(--paper-bright);
  box-shadow: -20px -20px 55px rgba(45, 66, 51, 0.1);
  transform: rotate(-2deg);
}

.library-mini-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.library-mini-head strong {
  font-size: 11px;
}

.library-mini-head span {
  color: #909790;
  font-family: var(--mono);
  font-size: 8px;
}

.library-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.library-item {
  display: grid;
  gap: 7px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.library-item > span {
  width: max-content;
  padding: 3px 5px;
  border-radius: 4px;
  color: #6d746d;
  background: #f0f1ee;
  font-size: 6px;
  font-weight: 700;
}

.library-item p {
  overflow: hidden;
  margin: 0;
  color: #696f69;
  font-size: 6px;
  line-height: 1.5;
  white-space: nowrap;
}

.art {
  display: block;
  width: 100%;
  height: 100px;
  border-radius: 5px;
  object-fit: cover;
}

.art-a { object-position: center; }
.art-b { object-position: 20% center; }
.art-c { object-position: 80% center; }

.bento-review {
  grid-column: span 7;
  min-height: 500px;
  color: var(--white);
  background: var(--forest);
}

.bento-review .card-index {
  color: rgba(255, 255, 255, 0.42);
}

.bento-review p {
  color: rgba(255, 255, 255, 0.58);
}

.review-copy {
  max-width: 650px;
}

.provider-cloud {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.provider-cloud span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--mono);
  font-size: 9px;
}

.provider-cloud span:nth-child(1),
.provider-cloud span:nth-child(4),
.provider-cloud span:nth-child(10) {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.bento-control {
  grid-column: span 5;
  min-height: 500px;
  background: #ddd8cc;
}

.control-list {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 8px;
}

.control-list span {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(11, 14, 12, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 9px;
}

.control-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 4px rgba(45, 74, 52, 0.12);
}

.control-list b {
  color: #70766f;
  font-size: 8px;
}

.metrics {
  color: var(--white);
  background: var(--ink);
}

.metrics-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  align-items: center;
  min-height: 760px;
  padding-block: 120px;
}

.metrics-copy h2 {
  margin-top: 28px;
  font-size: clamp(50px, 4.8vw, 78px);
}

.metrics-copy p {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.85;
}

.metrics .section-kicker {
  color: rgba(255, 255, 255, 0.4);
}

.metrics .section-kicker span {
  color: var(--acid);
  border-color: rgba(255, 255, 255, 0.15);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.metric {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.metric span {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(56px, 4.8vw, 80px);
  letter-spacing: -0.075em;
}

.metric i {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  height: 2px;
  background: var(--acid);
}

.privacy {
  padding-top: 150px;
  padding-bottom: 150px;
}

.privacy-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  overflow: hidden;
  min-height: 680px;
  padding: 70px;
  border-radius: var(--radius-large);
  color: var(--white);
  background: var(--forest);
}

.privacy-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 80% 50%, black, transparent 68%);
}

.privacy-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.privacy-copy h2 {
  margin-top: 28px;
  font-size: clamp(50px, 5vw, 82px);
}

.privacy-copy p {
  max-width: 530px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.8;
}

.privacy-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  max-width: 520px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.privacy-copy li > span:first-child {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  color: var(--ink);
  background: var(--acid);
  font-size: 10px;
  font-weight: 900;
}

.privacy .section-kicker {
  color: rgba(255, 255, 255, 0.42);
}

.privacy .section-kicker span {
  color: var(--acid);
  border-color: rgba(255, 255, 255, 0.16);
}

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

.vault-orbit {
  position: absolute;
  border: 1px solid rgba(200, 255, 117, 0.28);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.vault-orbit::before,
.vault-orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
  content: "";
}

.orbit-a {
  width: 400px;
  height: 400px;
}

.orbit-a::before { top: 35px; left: 78px; }
.orbit-a::after { right: 20px; bottom: 102px; }

.orbit-b {
  width: 285px;
  height: 285px;
  animation-direction: reverse;
  animation-duration: 12s;
}

.orbit-b::before { top: -4px; left: 50%; }
.orbit-b::after { right: 32px; bottom: 44px; }

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.vault-core {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 5px;
  width: 220px;
  height: 220px;
  padding: 28px;
  border: 1px solid rgba(200, 255, 117, 0.4);
  border-radius: 50%;
  background: rgba(11, 14, 12, 0.38);
  box-shadow: inset 0 0 60px rgba(200, 255, 117, 0.08), 0 0 80px rgba(200, 255, 117, 0.1);
  text-align: center;
}

.vault-core strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.06em;
}

.vault-bracket {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 30px;
}

.vault-core small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.install {
  padding-top: 40px;
  padding-bottom: 160px;
}

.install-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.install-heading h2 {
  max-width: 980px;
  margin-top: 30px;
}

.install-heading p {
  max-width: 600px;
  margin: 28px auto 0;
  color: #6e766e;
  font-size: 14px;
  line-height: 1.8;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 70px;
}

.install-step {
  min-height: 250px;
  padding: 24px;
  border-top: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.18);
}

.install-step span {
  font-family: var(--mono);
  font-size: 10px;
}

.install-step h3 {
  margin: 76px 0 12px;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.05em;
}

.install-step p {
  max-width: 320px;
  margin: 0;
  color: #707870;
  font-size: 12px;
  line-height: 1.7;
}

.install-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 80px;
  padding: 24px 24px 24px 30px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
}

.install-cta div {
  display: grid;
  gap: 5px;
}

.install-cta > div > span {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.install-cta strong {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.button-light {
  flex: 0 0 auto;
}

.install-store-button {
  min-width: 250px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 1;
  cursor: pointer;
}

.install-store-button:hover {
  background: var(--acid);
  transform: none;
}

.install-store-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.55;
}

.site-footer {
  overflow: hidden;
  padding: 80px 0 20px;
  color: var(--white);
  background: var(--ink);
}

.footer-wordmark {
  position: relative;
  width: min(var(--content-max), calc(100vw - var(--content-gutter)));
  margin-inline: auto;
  font-family: var(--display);
  font-size: clamp(100px, 14vw, 210px);
  font-weight: 820;
  line-height: 0.72;
  letter-spacing: -0.1em;
  white-space: nowrap;
}

.footer-wordmark span {
  position: absolute;
  top: -0.2em;
  margin-left: 0.1em;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.4em;
  letter-spacing: 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  width: min(var(--content-max), calc(100vw - var(--content-gutter)));
  margin: 60px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-bottom > div:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1);
}

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 170px;
  }

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

  .hero-stage {
    width: min(820px, 94%);
    margin: 30px auto 0;
  }

  .browser-window {
    margin-inline: auto;
  }

  .workflow-step {
    grid-template-columns: 82px 1fr;
  }

  .step-visual {
    grid-column: 2;
  }

  .workflow-rail {
    left: 29px;
  }

  .bento-large,
  .bento-accent,
  .bento-dark,
  .bento-wide,
  .bento-review,
  .bento-control {
    grid-column: span 6;
  }

  .metrics-inner {
    grid-template-columns: 1fr;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --content-gutter: 28px;
  }

  .section-shell {
    width: min(calc(100% - var(--content-gutter)), 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 70px;
  }

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

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

  .browser-feed {
    padding: 14px;
  }

  .post-image {
    height: 190px;
  }

  .floating-score {
    top: -24px;
    left: 12px;
  }

  .floating-toast {
    right: 8px;
    bottom: 22px;
  }

  .stage-label {
    display: none;
  }

  .manifesto,
  .feature-section,
  .privacy {
    padding-block: 100px;
  }

  .manifesto-grid,
  .metrics-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto h2,
  .section-heading h2,
  .metrics-copy h2,
  .privacy-copy h2,
  .install-heading h2 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .workflow-step {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }

  .workflow-rail {
    left: 23px;
  }

  .step-number {
    width: 46px;
    height: 46px;
  }

  .step-copy h3,
  .bento-card h3 {
    font-size: 34px;
  }

  .step-visual {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .scan-visual,
  .capture-visual {
    padding: 28px;
  }

  .section-heading {
    display: grid;
  }

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

  .bento-large,
  .bento-accent,
  .bento-dark,
  .bento-wide,
  .bento-review,
  .bento-control {
    grid-column: auto;
  }

  .bento-card {
    min-height: 450px;
  }

  .library-mini {
    right: -12px;
    width: 92%;
  }

  .provider-cloud,
  .control-list {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

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

  .metric {
    min-height: 200px;
  }

  .privacy-panel {
    padding: 32px 22px;
  }

  .privacy-copy ul {
    grid-template-columns: 1fr;
  }

  .privacy-vault {
    min-height: 390px;
    transform: scale(0.86);
  }

  .install {
    padding-bottom: 100px;
  }

  .install-cta {
    display: grid;
  }

  .button-light {
    width: 100%;
  }

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

  .footer-bottom > div:last-child {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
  }

  .header-cta span:first-child {
    display: none;
  }

  .header-cta {
    padding: 8px;
  }

  .header-actions {
    gap: 5px;
  }

  .language-toggle {
    padding: 3px;
  }

  .language-option {
    min-width: 27px;
    height: 27px;
    padding-inline: 4px;
    font-size: 10px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-stage {
    width: 100%;
    min-height: 450px;
  }

  .browser-window {
    transform: none;
  }

  .browser-bar {
    grid-template-columns: 48px 1fr 20px;
    gap: 6px;
    padding: 0 8px;
  }

  .detected-prompt p {
    font-size: 10px;
  }

  .post-image {
    height: 150px;
  }

  .floating-score {
    display: none;
  }

  .floating-toast {
    right: 4px;
    bottom: -12px;
    width: 230px;
  }

  .manifesto h2,
  .section-heading h2,
  .metrics-copy h2,
  .privacy-copy h2,
  .install-heading h2 {
    font-size: 42px;
  }

  .bento-card {
    padding: 20px;
  }

  .library-mini-grid {
    grid-template-columns: repeat(3, 130px);
    overflow: hidden;
  }

  .footer-wordmark {
    font-size: 34vw;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
