:root {
  color-scheme: dark;
  --bg: #090811;
  --bg-soft: #100e1b;
  --surface: rgba(20, 17, 34, 0.78);
  --surface-strong: #171328;
  --surface-light: #211b35;
  --ink: #f8f5ff;
  --muted: #b8b0c9;
  --subtle: #837b95;
  --line: rgba(255, 255, 255, 0.11);
  --line-hot: rgba(219, 117, 255, 0.5);
  --pink: #ff5ebd;
  --violet: #a768ff;
  --purple: #7738ff;
  --cyan: #54e6e3;
  --lime: #bcff66;
  --yellow: #ffe072;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(111, 49, 255, 0.17), transparent 34rem),
    linear-gradient(180deg, #0a0912 0%, #090811 46%, #0c0a14 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #0b0911;
  background: var(--cyan);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.page-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.13;
  pointer-events: none;
}

.ambient-one {
  top: 15vh;
  right: -12rem;
  background: var(--pink);
}

.ambient-two {
  top: 120vh;
  left: -18rem;
  background: var(--cyan);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 8, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px) saturate(150%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 74px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 94, 189, 0.17), rgba(84, 230, 227, 0.08));
  box-shadow: inset 0 0 18px rgba(167, 104, 255, 0.12);
}

.brand-mark span {
  border-radius: 2px;
  background: var(--ink);
}

.brand-mark span:nth-child(2) {
  background: var(--pink);
}

.brand-mark span:nth-child(3) {
  background: var(--cyan);
}

.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 9px 24px rgba(216, 63, 69, 0.2);
}

.brand-wordmark {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.brand-wordmark span {
  color: var(--pink);
}

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

.primary-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transform: scaleX(0);
  transition: transform 160ms ease;
}

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

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-more {
  position: relative;
}

.nav-more summary {
  position: relative;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
  transition: color 160ms ease;
}

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

.nav-more summary::after {
  content: "⌄";
  margin-left: 5px;
  color: var(--pink);
}

.nav-more[open] summary,
.nav-more summary:hover,
.nav-more summary:focus-visible {
  color: var(--ink);
}

.nav-more-menu {
  position: absolute;
  top: calc(100% + 18px);
  right: -14px;
  display: grid;
  width: 210px;
  gap: 3px;
  padding: 9px;
  border: 1px solid rgba(47, 37, 47, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 55px rgba(79, 48, 54, 0.16);
}

.nav-more-menu a {
  padding: 10px 11px;
  border-radius: 10px;
}

.nav-more-menu a::after {
  display: none;
}

.nav-more-menu a:hover,
.nav-more-menu a:focus-visible {
  color: var(--pink);
  background: #fff4f4;
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.button-glow,
.button-primary {
  color: #100a17;
  background: linear-gradient(115deg, #ff7bc7, #c17cff 55%, #63e6e2);
  box-shadow: 0 10px 35px rgba(181, 89, 255, 0.23);
}

.button-glow:hover,
.button-primary:hover {
  box-shadow: 0 14px 45px rgba(181, 89, 255, 0.36);
}

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

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  padding-top: 152px;
  padding-bottom: 50px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 80px;
  left: calc(50% - 670px);
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255, 255, 255, 0.015), 0 0 0 116px rgba(255, 255, 255, 0.01);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  align-items: center;
  gap: 70px;
  min-height: 660px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  color: #d6cce8;
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(188, 255, 102, 0.1), 0 0 16px var(--lime);
}

.hero h1,
.section-heading h2,
.workflow-copy h2,
.privacy-copy h2,
.download-copy h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 6.2vw, 6.4rem);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #ff8bd0 2%, #b88aff 47%, #63ebe5 95%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-row span {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.trust-row strong {
  color: var(--ink);
  font-size: 1rem;
}

.hero-stage {
  position: relative;
  min-height: 630px;
  isolation: isolate;
}

.stage-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.orbit-one {
  top: -30px;
  right: -60px;
  width: 570px;
  height: 570px;
}

.orbit-two {
  top: 57px;
  right: 30px;
  width: 390px;
  height: 390px;
  border-style: dashed;
  transform: rotate(-12deg);
}

.browser-frame {
  position: absolute;
  top: 65px;
  right: -26px;
  width: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: #f3f6f9;
  box-shadow: var(--shadow), 0 0 110px rgba(128, 62, 255, 0.18);
  transform: rotate(1.2deg);
}

.browser-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  height: 42px;
  padding: 0 14px;
  color: #aaa4b1;
  background: #17131f;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #625b6e;
}

.browser-dots span:first-child {
  background: var(--pink);
}

.browser-address {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-status {
  color: #e3dcec;
  font-weight: 900;
}

.browser-status span {
  color: var(--lime);
}

.store-canvas {
  position: relative;
  height: 476px;
  overflow: hidden;
}

.store-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.store-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 52%, rgba(108, 37, 148, 0.08));
  pointer-events: none;
}

.float-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(18, 14, 30, 0.91);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.price-card {
  right: 325px;
  bottom: 5px;
  width: 250px;
  padding: 18px;
  border-radius: 20px;
  transform: rotate(-3deg);
}

.float-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #120b1a;
  border-radius: 7px;
  background: var(--cyan);
  font-size: 0.8rem;
}

.price-card > strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1;
}

.price-card > small {
  display: block;
  margin-top: 7px;
  color: var(--subtle);
  font-size: 0.66rem;
}

.currency-switch {
  display: flex;
  gap: 5px;
  margin-top: 15px;
}

.currency-button {
  flex: 1;
  padding: 7px 4px;
  color: var(--subtle);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.63rem;
  font-weight: 850;
  cursor: pointer;
}

.currency-button:hover,
.currency-button:focus-visible,
.currency-button.active {
  color: #120b1a;
  border-color: transparent;
  background: var(--cyan);
}

.match-card {
  right: -4px;
  bottom: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 270px;
  padding: 14px 16px;
  gap: 11px;
  border-radius: 18px;
  transform: rotate(2deg);
}

.pulse-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #160a1a;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 24px rgba(255, 94, 189, 0.4);
}

.match-card small,
.match-card strong {
  display: block;
}

.match-card small {
  color: var(--subtle);
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.match-card strong {
  margin-top: 2px;
  font-size: 0.82rem;
}

.match-score {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
}

.dependency-card {
  top: 15px;
  left: -52px;
  width: 250px;
  padding: 16px;
  border-radius: 18px;
  transform: rotate(-2.5deg);
}

.dependency-top,
.dependency-line {
  display: flex;
  align-items: center;
}

.dependency-top {
  justify-content: space-between;
  padding-bottom: 11px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-good {
  color: var(--lime);
}

.dependency-line {
  gap: 8px;
  padding-top: 10px;
  font-size: 0.72rem;
}

.dependency-line strong {
  flex: 1;
  font-size: 0.72rem;
}

.dependency-line small {
  color: var(--subtle);
  font-size: 0.61rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-dot.required {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

.status-dot.optional {
  background: var(--yellow);
}

.community-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding: 18px 0;
  color: #6e677d;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.community-strip span {
  display: flex;
  align-items: center;
  gap: 18px;
}

.community-strip span:not(:last-child)::after {
  content: "✦";
  color: #473f58;
}

.toolkit {
  position: relative;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--pink);
}

.section-heading h2,
.workflow-copy h2,
.privacy-copy h2,
.download-copy h2 {
  font-size: clamp(2.75rem, 5vw, 5.1rem);
}

.section-heading > p,
.workflow-intro,
.privacy-copy > p:last-child,
.download-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 390px 410px;
  gap: 18px;
}

.bento-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(28, 23, 45, 0.95), rgba(14, 12, 24, 0.95));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.bento-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.bento-currency {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: end;
  background:
    linear-gradient(140deg, rgba(92, 39, 160, 0.22), transparent 44%),
    linear-gradient(150deg, rgba(28, 23, 45, 0.98), rgba(14, 12, 24, 0.98));
}

.bento-currency::after {
  top: -70px;
  left: 100px;
  background: var(--violet);
}

.bento-match {
  grid-column: span 5;
  display: grid;
  grid-template-columns: 1fr 155px;
  align-items: end;
}

.bento-match::after {
  right: -80px;
  bottom: -80px;
  background: var(--pink);
}

.bento-dependencies {
  grid-column: span 5;
  display: grid;
  grid-template-rows: auto 1fr;
}

.bento-dependencies::after {
  top: 10px;
  right: -80px;
  background: var(--cyan);
}

.bento-library {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 94, 189, 0.12), transparent 17rem),
    linear-gradient(150deg, rgba(28, 23, 45, 0.98), rgba(14, 12, 24, 0.98));
}

.card-index {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #51495f;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.card-copy {
  align-self: end;
}

.card-icon {
  display: inline-grid;
  min-width: 46px;
  height: 46px;
  margin-bottom: 22px;
  padding: 0 10px;
  place-items: center;
  color: #100a17;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--pink), var(--violet));
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: 0 12px 25px rgba(167, 104, 255, 0.2);
}

.icon-heart {
  color: #15080f;
  background: var(--pink);
  font-size: 1.1rem;
}

.card-copy h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.card-copy p {
  max-width: 360px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.rate-stack {
  display: grid;
  align-self: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(7, 6, 12, 0.45);
  transform: rotate(2deg);
}

.rate-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.rate-stack span {
  color: var(--subtle);
  font-size: 0.72rem;
}

.rate-stack strong {
  font-size: 1rem;
}

.image-card {
  position: relative;
  overflow: hidden;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: #f0eff4;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.match-image {
  transform: rotate(2.5deg) translateY(26px);
}

.match-image img {
  width: 100%;
  height: 284px;
  object-fit: cover;
  object-position: top center;
}

.image-chip {
  position: absolute;
  top: 12px;
  right: 10px;
  padding: 7px 9px;
  color: #150816;
  border-radius: 999px;
  background: var(--lime);
  font-size: 0.54rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.dependency-list {
  display: grid;
  gap: 8px;
  align-self: end;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dependency-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.tool-logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #110c18;
  border-radius: 10px;
  font-size: 0.62rem;
  font-weight: 950;
}

.tool-logo.lil {
  background: var(--pink);
}

.tool-logo.ma {
  background: var(--cyan);
}

.tool-logo.vrc {
  background: var(--yellow);
}

.dependency-list strong,
.dependency-list small {
  display: block;
}

.dependency-list strong {
  font-size: 0.8rem;
}

.dependency-list small {
  margin-top: 1px;
  color: var(--subtle);
  font-size: 0.62rem;
}

.tool-state {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.state-required {
  color: #ff99d1;
  border-color: rgba(255, 94, 189, 0.3);
  background: rgba(255, 94, 189, 0.08);
}

.state-optional {
  color: #fff09f;
  border-color: rgba(255, 224, 114, 0.25);
  background: rgba(255, 224, 114, 0.07);
}

.state-mentioned {
  color: #94efec;
  border-color: rgba(84, 230, 227, 0.25);
  background: rgba(84, 230, 227, 0.07);
}

.search-demo {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(7, 6, 12, 0.45);
}

.search-field,
.search-result,
.export-row {
  display: grid;
  align-items: center;
}

.search-field {
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  padding: 12px 14px;
  color: var(--subtle);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.7rem;
}

kbd {
  padding: 3px 6px;
  color: #d6cedf;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.55rem;
  box-shadow: none;
}

.search-result {
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.result-thumb {
  width: 39px;
  height: 39px;
  border-radius: 10px;
  background: linear-gradient(145deg, #c177ff, #ff7eba);
}

.result-two {
  background: linear-gradient(145deg, #5ce3dc, #7656ff);
}

.search-result strong,
.search-result small {
  display: block;
}

.search-result strong {
  font-size: 0.72rem;
}

.search-result small {
  margin-top: 2px;
  color: var(--subtle);
  font-size: 0.59rem;
}

.search-result > span:last-child {
  color: var(--subtle);
}

.export-row {
  grid-template-columns: 1fr auto;
  padding: 8px 3px 1px;
  color: var(--subtle);
  font-size: 0.61rem;
}

.export-row button {
  padding: 7px 10px;
  color: #110b18;
  border: 0;
  border-radius: 8px;
  background: var(--cyan);
  font-size: 0.6rem;
  font-weight: 900;
  cursor: pointer;
}

.workflow {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 12%, rgba(255, 255, 255, 0.018) 88%, transparent);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 92px;
}

.workflow-visual {
  min-width: 0;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 94, 189, 0.14), rgba(84, 230, 227, 0.08));
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.visual-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(71, 24, 114, 0.17);
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: 23px;
}

.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px 0;
  color: #71697f;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.workflow-intro {
  margin-top: 27px;
}

.workflow-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-steps > li > span {
  color: var(--pink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.65rem;
}

.workflow-steps strong {
  font-size: 0.9rem;
}

.workflow-steps p {
  margin: 4px 0 0;
  color: var(--subtle);
  font-size: 0.78rem;
}

.section-heading.compact {
  margin-bottom: 38px;
}

.section-heading.compact h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mini-feature {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mini-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 121, 255, 0.32);
  background: rgba(167, 104, 255, 0.06);
}

.mini-feature > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(84, 230, 227, 0.2);
  border-radius: 11px;
  background: rgba(84, 230, 227, 0.06);
  font-size: 1rem;
}

.mini-feature:nth-child(2n) > span {
  color: var(--pink);
  border-color: rgba(255, 94, 189, 0.2);
  background: rgba(255, 94, 189, 0.06);
}

.mini-feature h3 {
  margin: 22px 0 0;
  font-size: 0.95rem;
}

.mini-feature p {
  margin: 5px 0 0;
  color: var(--subtle);
  font-size: 0.76rem;
}

.privacy-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr 0.7fr;
  align-items: center;
  gap: 46px;
  overflow: hidden;
  padding: 52px;
  border: 1px solid rgba(188, 255, 102, 0.17);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 2% 0%, rgba(188, 255, 102, 0.08), transparent 22rem),
    linear-gradient(135deg, rgba(23, 27, 25, 0.88), rgba(15, 14, 24, 0.96));
}

.privacy-panel::after {
  content: "LOCAL / PRIVATE / YOURS";
  position: absolute;
  right: -40px;
  bottom: -18px;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
}

.privacy-sigil {
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(188, 255, 102, 0.3);
  border-radius: 50%;
  background: rgba(188, 255, 102, 0.04);
  box-shadow: 0 0 0 11px rgba(188, 255, 102, 0.025), inset 0 0 28px rgba(188, 255, 102, 0.04);
}

.privacy-sigil span {
  color: var(--lime);
  font-size: 2.8rem;
  font-weight: 950;
  line-height: 1;
}

.privacy-sigil small {
  margin-top: 5px;
  color: #c8d3bb;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.privacy-copy {
  position: relative;
  z-index: 1;
}

.privacy-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.privacy-copy > p:last-child {
  max-width: 650px;
  margin-top: 21px;
  font-size: 0.88rem;
}

.privacy-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #d4d0dc;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  font-weight: 750;
}

.privacy-points span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #12200b;
  border-radius: 50%;
  background: var(--lime);
  font-size: 0.65rem;
  font-weight: 950;
}

.download-section {
  padding-top: 30px;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: 66px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 94, 189, 0.21), transparent 25rem),
    radial-gradient(circle at 92% 98%, rgba(84, 230, 227, 0.14), transparent 23rem),
    #161123;
  box-shadow: var(--shadow);
}

.download-panel::before {
  content: "";
  position: absolute;
  top: -260px;
  left: 45%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.02), 0 0 0 110px rgba(255, 255, 255, 0.012);
}

.download-copy,
.browser-buttons {
  position: relative;
  z-index: 1;
}

.download-copy > p:last-child {
  margin-top: 22px;
  font-size: 0.88rem;
}

.browser-buttons {
  display: grid;
  gap: 10px;
}

.store-button {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.store-button:hover {
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
}

.store-button img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  color: var(--subtle);
  font-size: 0.59rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-button strong {
  margin-top: 2px;
  font-size: 0.84rem;
}

.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.footer-grid p {
  margin: 0;
  color: var(--subtle);
  font-size: 0.66rem;
}

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

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

.concept-label {
  color: #625a70;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    gap: 35px;
  }

  .browser-frame {
    right: -90px;
  }

  .dependency-card {
    left: -20px;
  }

  .price-card {
    right: 280px;
  }

  .workflow-grid {
    gap: 55px;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .section-pad {
    padding: 86px 0;
  }

  .site-header {
    background: rgba(9, 8, 17, 0.9);
  }

  .nav-shell {
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 22px;
    background: rgba(10, 8, 17, 0.97);
    backdrop-filter: blur(24px);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .hero {
    padding-top: 128px;
  }

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

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

  .hero-stage {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .browser-frame {
    right: 12px;
    width: calc(100% - 60px);
  }

  .dependency-card {
    left: 0;
  }

  .price-card {
    right: auto;
    left: 12px;
  }

  .match-card {
    right: 0;
  }

  .community-strip {
    overflow: hidden;
    justify-content: flex-start;
  }

  .section-heading,
  .workflow-grid,
  .privacy-panel,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
  }

  .section-heading > p {
    max-width: 600px;
  }

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

  .bento-currency,
  .bento-match,
  .bento-dependencies,
  .bento-library {
    grid-column: span 1;
    min-height: 430px;
  }

  .bento-currency,
  .bento-library {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .privacy-panel {
    gap: 30px;
  }

  .privacy-sigil {
    width: 105px;
    height: 105px;
  }

  .privacy-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .download-panel {
    padding: 52px;
  }

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

  .concept-label {
    justify-self: end;
  }
}

/* Real interface showcase */
.interface-showcase {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 85, 87, 0.1), transparent 24rem),
    linear-gradient(180deg, transparent, #fff8f8 18%, #fff8f8 82%, transparent);
}

.interface-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
}

.interface-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.interface-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.showcase-tabs {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.showcase-tab {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  text-align: left;
  border: 1px solid rgba(47, 37, 47, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.showcase-tab:hover {
  transform: translateX(3px);
  border-color: rgba(255, 85, 87, 0.32);
  background: #ffffff;
}

.showcase-tab:focus-visible {
  outline: 3px solid rgba(255, 85, 87, 0.25);
  outline-offset: 3px;
}

.showcase-tab.active {
  color: #ffffff;
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(217, 56, 62, 0.19);
}

.showcase-tab > span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--pink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.65rem;
}

.showcase-tab.active > span,
.showcase-tab.active small {
  color: rgba(255, 255, 255, 0.76);
}

.showcase-tab strong {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.showcase-tab small {
  margin-top: 2px;
  color: var(--subtle);
  font-size: 0.68rem;
}

.interface-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 37, 47, 0.13);
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 30px 75px rgba(83, 45, 50, 0.15);
}

.preview-chrome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 17px;
  color: #8f858f;
  border-bottom: 1px solid rgba(47, 37, 47, 0.1);
  background: #fffafa;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.preview-dots {
  display: flex;
  gap: 5px;
}

.preview-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dfd5d7;
}

.preview-dots i:first-child,
.preview-live {
  color: var(--pink);
  background: var(--pink);
}

.preview-live {
  justify-self: end;
  padding: 5px 7px;
  color: #ffffff;
  border-radius: 999px;
  line-height: 1;
}

.shot-panel {
  margin: 0;
  animation: shot-in 260ms ease both;
}

.shot-panel[hidden] {
  display: none;
}

.shot-canvas {
  display: grid;
  height: clamp(350px, 35vw, 525px);
  padding: clamp(14px, 2vw, 24px);
  place-items: center;
  background:
    linear-gradient(rgba(86, 70, 80, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 70, 80, 0.035) 1px, transparent 1px),
    #f4f7fa;
  background-size: 24px 24px;
}

.shot-canvas img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 35px rgba(49, 44, 52, 0.14);
}

.shot-canvas-portrait img {
  width: auto;
}

.shot-panel figcaption {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 24px;
  padding: 21px 24px 23px;
  border-top: 1px solid rgba(47, 37, 47, 0.09);
}

.shot-panel figcaption strong {
  font-size: 0.82rem;
}

.shot-panel figcaption span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

@keyframes shot-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .interface-grid {
    grid-template-columns: 1fr;
  }

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

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

  .shot-canvas {
    height: clamp(320px, 61vw, 520px);
  }
}

@media (max-width: 560px) {
  .showcase-tabs {
    grid-template-columns: 1fr;
  }

  .preview-chrome {
    grid-template-columns: 1fr auto;
  }

  .preview-chrome > span:nth-child(2) {
    display: none;
  }

  .shot-canvas {
    height: 330px;
    padding: 10px;
  }

  .shot-panel figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-lg: 28px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .brand-wordmark {
    font-size: 0.69rem;
  }

  .hero {
    padding-top: 114px;
    padding-bottom: 25px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.59rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .trust-row {
    gap: 16px;
    font-size: 0.62rem;
  }

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

  .browser-frame {
    top: 72px;
    right: -36px;
    width: calc(100% + 18px);
  }

  .store-canvas {
    height: 360px;
  }

  .dependency-card {
    top: 3px;
    left: 0;
    width: 220px;
  }

  .match-card {
    right: -18px;
    bottom: 10px;
    width: 245px;
  }

  .price-card {
    bottom: -45px;
    left: 0;
    width: 205px;
  }

  .price-card > strong {
    font-size: 1.65rem;
  }

  .community-strip {
    margin-top: 72px;
    font-size: 0.57rem;
  }

  .community-strip span:nth-child(n + 3) {
    display: none;
  }

  .section-heading h2,
  .workflow-copy h2,
  .privacy-copy h2,
  .download-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

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

  .bento-card {
    min-height: 420px;
    padding: 24px;
  }

  .bento-currency,
  .bento-match,
  .bento-dependencies,
  .bento-library {
    grid-column: span 1;
  }

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

  .card-copy h3 {
    font-size: 2rem;
  }

  .match-image img {
    height: 260px;
  }

  .visual-frame {
    padding: 5px;
    border-radius: 22px;
  }

  .visual-frame img {
    min-height: 390px;
    aspect-ratio: auto;
    object-position: center;
    border-radius: 17px;
  }

  .visual-caption {
    padding-inline: 5px;
    font-size: 0.51rem;
  }

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

  .mini-feature {
    min-height: 150px;
  }

  .privacy-panel,
  .download-panel {
    padding: 32px 24px;
  }

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

  .download-section {
    padding-top: 0;
  }

  .store-button {
    grid-template-columns: 40px 1fr auto;
  }

  .store-button img {
    width: 40px;
    height: 40px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .concept-label {
    justify-self: start;
  }
}

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

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

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

/* Signature light direction ------------------------------------------------- */

:root {
  color-scheme: light;
  --bg: #fffdfd;
  --bg-soft: #fff4f4;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-light: #fff0f0;
  --ink: #242128;
  --muted: #625d68;
  --subtle: #8f8792;
  --line: rgba(47, 37, 47, 0.12);
  --line-hot: rgba(255, 85, 87, 0.42);
  --pink: #ff5557;
  --violet: #ff8587;
  --purple: #d83f45;
  --cyan: #42aaa7;
  --lime: #6fbd53;
  --yellow: #e7ac36;
  --shadow: 0 24px 70px rgba(83, 45, 50, 0.14);
}

body {
  background:
    radial-gradient(circle at 88% 3%, rgba(255, 85, 87, 0.13), transparent 29rem),
    radial-gradient(circle at 4% 33%, rgba(255, 197, 198, 0.25), transparent 24rem),
    linear-gradient(180deg, #fffdfd 0%, #ffffff 45%, #fffafa 100%);
}

.page-noise {
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(65, 47, 57, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 47, 57, 0.035) 1px, transparent 1px);
}

.ambient {
  opacity: 0.08;
}

.ambient-one,
.ambient-two {
  background: var(--pink);
}

.site-header {
  background: rgba(255, 253, 253, 0.86);
  border-bottom-color: rgba(47, 37, 47, 0.09);
}

.brand-mark {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 0 8px 22px rgba(255, 85, 87, 0.2);
}

.brand-mark span,
.brand-mark span:nth-child(3) {
  background: #ffffff;
}

.brand-mark span:nth-child(2) {
  background: #2b252c;
}

.primary-nav a {
  color: #6e6772;
}

.primary-nav a::after {
  background: var(--pink);
}

.button-glow,
.button-primary {
  color: #ffffff;
  background: var(--pink);
  box-shadow: 0 12px 30px rgba(255, 85, 87, 0.25);
}

.button-glow:hover,
.button-primary:hover {
  background: #ef474d;
  box-shadow: 0 16px 38px rgba(255, 85, 87, 0.32);
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(47, 37, 47, 0.14);
}

.button-quiet:hover {
  background: #ffffff;
  border-color: rgba(255, 85, 87, 0.4);
}

.hero::before,
.stage-orbit {
  border-color: rgba(255, 85, 87, 0.13);
}

.hero::before {
  box-shadow: 0 0 0 58px rgba(255, 85, 87, 0.025), 0 0 0 116px rgba(255, 85, 87, 0.015);
}

.eyebrow {
  color: #9e3d44;
  border-color: rgba(255, 85, 87, 0.2);
  background: rgba(255, 85, 87, 0.06);
}

.live-dot {
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 85, 87, 0.1), 0 0 14px rgba(255, 85, 87, 0.45);
}

.hero h1 span {
  background: linear-gradient(100deg, #ff5557 4%, #ef474d 48%, #ff8b8d 96%);
  background-clip: text;
  -webkit-background-clip: text;
}

.trust-row strong {
  color: var(--pink);
}

.browser-frame {
  border-color: rgba(75, 55, 66, 0.18);
  box-shadow: var(--shadow), 0 0 85px rgba(255, 85, 87, 0.12);
}

.browser-bar {
  color: #d0c8d0;
  background: #2a252d;
}

.browser-status span {
  color: #ff8f91;
}

.float-card {
  border-color: rgba(64, 46, 57, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 50px rgba(74, 42, 50, 0.16), inset 0 1px rgba(255, 255, 255, 0.8);
}

.mini-icon,
.pulse-icon {
  color: #ffffff;
  background: var(--pink);
  box-shadow: 0 0 22px rgba(255, 85, 87, 0.24);
}

.currency-button {
  color: #7d737f;
  border-color: rgba(47, 37, 47, 0.13);
  background: #fffafa;
}

.currency-button:hover,
.currency-button:focus-visible,
.currency-button.active {
  color: #ffffff;
  background: var(--pink);
}

.match-score,
.status-good {
  color: #d83f45;
}

.dependency-top {
  border-bottom-color: rgba(47, 37, 47, 0.1);
}

.status-dot.required {
  background: var(--pink);
  box-shadow: 0 0 9px rgba(255, 85, 87, 0.45);
}

.community-strip {
  color: #a096a2;
  border-top-color: rgba(47, 37, 47, 0.1);
  border-bottom-color: rgba(47, 37, 47, 0.1);
}

.community-strip span:not(:last-child)::after {
  color: var(--pink);
}

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

.bento-card {
  border-color: rgba(47, 37, 47, 0.12);
  background: linear-gradient(150deg, #ffffff, #fffafa);
  box-shadow: 0 20px 55px rgba(79, 48, 54, 0.09), inset 0 1px #ffffff;
}

.bento-currency {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 85, 87, 0.12), transparent 18rem),
    linear-gradient(150deg, #ffffff, #fff8f8);
}

.bento-currency::after,
.bento-match::after,
.bento-dependencies::after {
  background: var(--pink);
}

.bento-library {
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 85, 87, 0.12), transparent 17rem),
    linear-gradient(150deg, #ffffff, #fff8f8);
}

.card-index {
  color: #c4bbc4;
}

.card-icon,
.icon-heart {
  color: #ffffff;
  background: var(--pink);
  box-shadow: 0 12px 25px rgba(255, 85, 87, 0.18);
}

.rate-stack,
.search-demo {
  border-color: rgba(47, 37, 47, 0.11);
  background: #fff5f5;
}

.rate-stack div,
.search-result {
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(75, 45, 51, 0.05);
}

.image-card {
  border-color: rgba(47, 37, 47, 0.14);
  box-shadow: 0 18px 44px rgba(75, 45, 51, 0.15);
}

.image-chip {
  color: #ffffff;
  background: var(--pink);
}

.dependency-list li {
  border-color: rgba(47, 37, 47, 0.09);
  background: #fffafa;
}

.tool-logo.lil,
.tool-logo.ma {
  color: #ffffff;
  background: var(--pink);
}

.tool-logo.vrc {
  color: #ffffff;
  background: #332d35;
}

.state-required {
  color: #d83f45;
  border-color: rgba(255, 85, 87, 0.25);
  background: rgba(255, 85, 87, 0.07);
}

.state-optional {
  color: #9a6b13;
  border-color: rgba(231, 172, 54, 0.28);
  background: rgba(231, 172, 54, 0.08);
}

.state-mentioned {
  color: #327d7a;
  border-color: rgba(66, 170, 167, 0.28);
  background: rgba(66, 170, 167, 0.07);
}

.search-field {
  border-color: rgba(47, 37, 47, 0.11);
  background: #ffffff;
}

kbd {
  color: #6e6672;
  border-color: rgba(47, 37, 47, 0.12);
  background: #fff5f5;
}

.result-thumb {
  background: linear-gradient(145deg, #ff5557, #ff9a9b);
}

.result-two {
  background: linear-gradient(145deg, #2e2931, #ff6f71);
}

.export-row button {
  color: #ffffff;
  background: var(--pink);
}

.workflow {
  background: linear-gradient(180deg, transparent, #fff6f6 12%, #fff6f6 88%, transparent);
}

.visual-frame {
  border-color: rgba(255, 85, 87, 0.22);
  background: linear-gradient(135deg, rgba(255, 85, 87, 0.18), rgba(255, 255, 255, 0.9));
  box-shadow: 0 28px 65px rgba(85, 48, 55, 0.15);
}

.visual-frame::before {
  box-shadow: inset 0 0 55px rgba(255, 85, 87, 0.06);
}

.workflow-steps,
.workflow-steps li {
  border-color: rgba(47, 37, 47, 0.11);
}

.mini-feature {
  border-color: rgba(47, 37, 47, 0.11);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(78, 46, 53, 0.05);
}

.mini-feature:hover {
  border-color: rgba(255, 85, 87, 0.35);
  background: #fff7f7;
}

.mini-feature > span,
.mini-feature:nth-child(2n) > span {
  color: var(--pink);
  border-color: rgba(255, 85, 87, 0.2);
  background: rgba(255, 85, 87, 0.07);
}

.privacy-panel {
  border-color: #ff5557;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.22), transparent 22rem),
    linear-gradient(135deg, #ff5557, #ec474d);
  box-shadow: 0 26px 65px rgba(213, 59, 65, 0.22);
}

.privacy-panel::after {
  color: rgba(255, 255, 255, 0.08);
}

.privacy-sigil {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 11px rgba(255, 255, 255, 0.06), inset 0 0 28px rgba(255, 255, 255, 0.08);
}

.privacy-sigil span,
.privacy-sigil small,
.privacy-copy h2,
.privacy-copy .section-kicker {
  color: #ffffff;
}

.privacy-copy > p:last-child {
  color: rgba(255, 255, 255, 0.87);
}

.privacy-points li {
  color: #33252b;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.93);
}

.privacy-points span {
  color: #ffffff;
  background: var(--pink);
}

.download-panel {
  border-color: rgba(255, 85, 87, 0.2);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 85, 87, 0.15), transparent 25rem),
    radial-gradient(circle at 95% 100%, rgba(255, 85, 87, 0.08), transparent 23rem),
    #ffffff;
  box-shadow: 0 26px 70px rgba(83, 45, 50, 0.13);
}

.download-panel::before {
  border-color: rgba(255, 85, 87, 0.12);
  box-shadow: 0 0 0 55px rgba(255, 85, 87, 0.025), 0 0 0 110px rgba(255, 85, 87, 0.015);
}

.store-button {
  border-color: rgba(47, 37, 47, 0.11);
  background: #fff8f8;
}

.store-button:hover {
  border-color: rgba(255, 85, 87, 0.34);
  background: #ffffff;
}

.site-footer {
  border-top-color: rgba(47, 37, 47, 0.1);
  background: #ffffff;
}

@media (max-width: 920px) {
  .site-header {
    background: rgba(255, 253, 253, 0.94);
  }

  .menu-toggle {
    color: var(--ink);
    border-color: rgba(47, 37, 47, 0.13);
    background: #ffffff;
  }

  .primary-nav {
    background: rgba(255, 253, 253, 0.98);
  }

  .primary-nav a {
    border-bottom-color: rgba(47, 37, 47, 0.1);
  }
}

/* Flask website integration */
.reboot-home .hero-copy {
  display: block;
  padding: 0;
  border-radius: 0;
}

.reboot-home .hero h1 {
  width: 100%;
  font-size: clamp(3.35rem, 5.55vw, 6rem);
  text-wrap: wrap;
}

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

.reboot-home .language-dropdown {
  z-index: 4;
}

.reboot-home .language-dropdown summary {
  min-height: 40px;
  padding: 0 12px;
  border-color: rgba(47, 37, 47, 0.12);
  background: #ffffff;
}

.reboot-home .language-dropdown-menu {
  border-color: rgba(47, 37, 47, 0.12);
  box-shadow: 0 18px 42px rgba(83, 45, 50, 0.14);
}

.reboot-trust-note {
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 750;
}

.community-proof {
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 84px;
  border-top: 1px solid rgba(47, 37, 47, 0.08);
  border-bottom: 1px solid rgba(47, 37, 47, 0.08);
  background: #ffffff;
}

.community-proof .reviews-marquee {
  margin-top: 45px;
}

.community-proof .review-card {
  flex: 0 0 min(560px, 88vw);
  min-width: 0;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(47, 37, 47, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(83, 45, 50, 0.1);
}

.community-proof .review-card img {
  border-radius: 15px;
}

.community-proof .review-card a {
  display: block;
  border-radius: 15px;
}

.community-proof .review-card a:focus-visible {
  outline: 3px solid rgba(255, 85, 87, 0.35);
  outline-offset: 4px;
}

.workflow-guide-link {
  width: max-content;
  margin-top: 26px;
}

.currency-cloud {
  padding-top: 78px;
  background:
    radial-gradient(circle at 10% 80%, rgba(255, 85, 87, 0.08), transparent 19rem),
    #ffffff;
}

.reboot-currency-list {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 8px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.reboot-currency-list li {
  display: grid;
  min-height: 50px;
  place-items: center;
  color: #5c515b;
  border: 1px solid rgba(47, 37, 47, 0.1);
  border-radius: 13px;
  background: #fffafa;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.reboot-currency-list li:hover {
  transform: translateY(-3px);
  color: #ffffff;
  border-color: var(--pink);
  background: var(--pink);
}

.reboot-home .download-panel {
  grid-template-columns: 0.72fr 1.28fr;
}

.reboot-home .browser-buttons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reboot-home .store-button:last-child {
  grid-column: 1 / -1;
}

.reboot-home .store-button {
  min-width: 0;
}

.reboot-home .store-button strong {
  overflow: hidden;
  text-overflow: ellipsis;
}

.reboot-faq {
  padding-top: 70px;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 100px);
}

.faq-list {
  border-top: 1px solid rgba(47, 37, 47, 0.12);
}

.faq-list details {
  padding: 0;
  border-bottom: 1px solid rgba(47, 37, 47, 0.12);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: var(--pink);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 72ch;
  margin: -5px 48px 24px 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.home-footer-grid {
  grid-template-columns: 1.15fr 0.75fr 1.25fr;
  align-items: start;
}

.home-footer-grid > div:first-child p {
  margin-top: 18px;
}

.home-footer-grid .footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-footer-grid .footer-links a,
.footer-impressum a,
.footer-legal a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
}

.footer-impressum strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.footer-impressum p {
  margin: 10px 0;
  line-height: 1.65;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(47, 37, 47, 0.1);
  color: var(--subtle);
  font-size: 0.66rem;
}

@media (max-width: 1120px) {
  .reboot-currency-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-actions {
    grid-column: 3;
    gap: 7px;
  }

  .primary-nav.open {
    top: 74px;
  }

  .nav-more {
    width: 100%;
  }

  .nav-more summary {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(47, 37, 47, 0.1);
    font-size: 1rem;
  }

  .nav-more-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    border-radius: 13px;
    box-shadow: none;
  }

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

  .reboot-home .download-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .reboot-home .language-dropdown summary {
    min-height: 38px;
  }

  .reboot-currency-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reboot-home .browser-buttons {
    grid-template-columns: 1fr;
  }

  .reboot-home .store-button:last-child {
    grid-column: auto;
  }

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

  .footer-legal {
    grid-column: auto;
    flex-direction: column;
  }
}

/* 2026-07-15 feature, privacy, and download refinements ------------------ */
.feature-grid-complete .mini-feature {
  min-height: 164px;
  padding: 19px;
}

.feature-grid-complete .mini-feature > span {
  width: 38px;
  height: 38px;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.08rem;
  line-height: 1;
}

.feature-grid-complete .mini-feature h3 {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.2;
}

.feature-grid-complete .mini-feature p {
  font-size: 0.72rem;
  line-height: 1.52;
}

.card-icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.privacy-panel::after {
  content: "LOCAL · PRIVATE · YOURS";
  z-index: 0;
  right: auto;
  bottom: 16px;
  left: 50%;
  width: max-content;
  color: rgba(255, 255, 255, 0.11);
  font-size: clamp(1.18rem, 6.4vw, 5.6rem);
  letter-spacing: -0.02em;
  transform: translateX(-50%);
}

.privacy-panel > * {
  position: relative;
  z-index: 1;
}

.reboot-home .download-panel {
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 5vw, 64px);
  padding: clamp(42px, 5.2vw, 64px);
}

.reboot-home .browser-buttons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reboot-home .store-button {
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  gap: 12px;
  min-height: 76px;
  padding: 12px 14px;
  border-radius: 16px;
}

.reboot-home .store-button:hover {
  transform: translateY(-3px);
}

.store-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(47, 37, 47, 0.09);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(78, 46, 53, 0.08);
}

.store-button .store-mark img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  border-radius: 0;
}

.store-mark-pair {
  position: relative;
}

.store-button .store-mark-pair img:first-child {
  width: 25px;
  height: 25px;
  transform: translate(-3px, -2px);
}

.store-button .store-mark-pair img:last-child {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 16px;
  height: 16px;
  padding: 2px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 2px 7px rgba(47, 37, 47, 0.16);
}

.store-label {
  min-width: 0;
}

.reboot-home .store-button strong {
  overflow: visible;
  color: var(--ink);
  font-size: 0.79rem;
  line-height: 1.25;
  text-overflow: clip;
}

.store-arrow {
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 920px) {
  .reboot-home .download-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .privacy-panel {
    padding-bottom: 70px;
  }

  .privacy-panel::after {
    bottom: 22px;
    color: rgba(255, 255, 255, 0.18);
    font-size: clamp(0.92rem, 4.2vw, 1.1rem);
    letter-spacing: 0.035em;
  }

  .reboot-home .browser-buttons {
    grid-template-columns: 1fr;
  }

  .reboot-home .store-button:last-child {
    grid-column: auto;
  }
}

/* Keep the shared header usable through the tablet breakpoint. */
@media (max-width: 1120px) {
  .reboot-home .nav-shell {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .reboot-home .menu-toggle {
    display: grid;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    color: var(--ink);
    border: 1px solid rgba(47, 37, 47, 0.13);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
  }

  .reboot-home .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .reboot-home .primary-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 22px;
    overflow-y: auto;
    background: rgba(255, 253, 253, 0.98);
    backdrop-filter: blur(24px);
  }

  .reboot-home .primary-nav.open {
    display: flex;
  }

  .reboot-home .primary-nav > a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(47, 37, 47, 0.1);
    font-size: 1rem;
  }

  .reboot-home .nav-more {
    width: 100%;
  }

  .reboot-home .nav-more summary {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(47, 37, 47, 0.1);
    font-size: 1rem;
  }

  .reboot-home .nav-more-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    border-radius: 13px;
    box-shadow: none;
  }
}
