:root {
  color-scheme: dark;
  --ink: #070b0d;
  --ink-soft: #0d1417;
  --paper: #11191c;
  --paper-soft: #151f23;
  --white: #f5f7f6;
  --muted: #9babad;
  --cyan: #2bd9e8;
  --lime: #b8f34a;
  --coral: #ff5a54;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(255, 255, 255, 0.12);
  --max: 1060px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line-dark);
}

.site-header.solid {
  position: relative;
  background: var(--ink);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.nav-group,
.primary-nav,
.lang-switch {
  display: flex;
  align-items: center;
}

.nav-group {
  gap: 24px;
}

.primary-nav {
  gap: 24px;
}

.primary-nav a {
  color: rgba(248, 251, 250, 0.78);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

.lang-switch {
  height: 34px;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  background: rgba(7, 16, 20, 0.58);
}

.lang-switch button {
  width: 36px;
  height: 26px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(248, 251, 250, 0.58);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(7, 16, 20, 0.74);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(560px, 68svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--ink);
  background-image: linear-gradient(90deg, rgba(4, 8, 10, 0.99) 0%, rgba(4, 8, 10, 0.82) 48%, rgba(4, 8, 10, 0.34) 100%), url("cybermemo-studio-hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.hero-inner,
.section-inner,
.legal-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 76px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 0.94;
  font-weight: 850;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(248, 251, 250, 0.78);
  font-size: 18px;
  line-height: 1.35;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--cyan);
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #63e8f1;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(7, 16, 20, 0.45);
  color: var(--white);
  backdrop-filter: blur(12px);
}

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

.button.light {
  border-color: var(--line-dark);
  background: #182226;
  color: var(--white);
}

.button-arrow {
  font-size: 19px;
  line-height: 1;
}

.space-top {
  margin-top: 22px;
}

.band {
  padding: 60px 0;
}

.band.light {
  background: var(--paper);
  color: var(--white);
}

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

.band.soft {
  background: var(--paper-soft);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}

.section-kicker {
  margin-bottom: 15px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.section-title {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.02;
  font-weight: 820;
}

.section-copy {
  max-width: 620px;
  color: rgba(248, 251, 250, 0.68);
  font-size: 17px;
}

.dark .section-copy {
  color: rgba(248, 251, 250, 0.66);
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.app-art {
  position: relative;
  aspect-ratio: 1;
}

.app-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22%;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}

.app-art::before,
.app-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.app-art::before {
  width: 34%;
  height: 8px;
  right: -8%;
  top: 18%;
  background: var(--coral);
  box-shadow: 0 0 22px rgba(255, 90, 84, 0.65);
}

.app-art::after {
  width: 8px;
  height: 32%;
  left: -6%;
  bottom: 12%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(43, 217, 232, 0.65);
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 24px;
}

.tag {
  padding: 6px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  color: rgba(248, 251, 250, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-grid,
.step-grid,
.studio-grid {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid currentColor;
  border-color: var(--line-dark);
}

.dark .feature-grid,
.dark .step-grid,
.dark .studio-grid {
  border-color: var(--line-dark);
}

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

.feature,
.step,
.studio-point {
  min-width: 0;
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.feature:not(:nth-child(3n + 1)),
.step:not(:first-child),
.studio-point:not(:first-child) {
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
}

.dark .feature,
.dark .step,
.dark .studio-point,
.dark .feature:not(:nth-child(3n + 1)),
.dark .step:not(:first-child),
.dark .studio-point:not(:first-child) {
  border-color: var(--line-dark);
}

.feature-index,
.step-index {
  display: block;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
}

.dark .feature-index,
.dark .step-index {
  color: var(--lime);
}

.feature h3,
.step h3,
.studio-point h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.feature p,
.step p,
.studio-point p {
  margin-bottom: 0;
  color: rgba(248, 251, 250, 0.64);
}

.dark .feature p,
.dark .step p,
.dark .studio-point p {
  color: rgba(248, 251, 250, 0.64);
}

.studio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#contact {
  padding: 28px 0;
}

.contact-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-email {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--white);
}

.site-footer {
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(248, 251, 250, 0.56);
  font-size: 12px;
}

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

.footer-links a {
  text-decoration: none;
}

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

.product-hero {
  position: relative;
  min-height: min(650px, 76svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background-color: #0b171b;
  background-image: linear-gradient(90deg, rgba(6, 13, 16, 0.99) 0%, rgba(6, 13, 16, 0.82) 42%, rgba(6, 13, 16, 0.18) 82%), url("stink-scanner-kind-pets-scan-20260905.png");
  background-position: center 52%;
  background-size: cover;
}

.product-hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 106px 0 48px;
  position: relative;
  z-index: 2;
}

.product-heading {
  max-width: 580px;
}

.product-lockup {
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 19px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.36);
}

.product-heading h1 {
  margin-bottom: 16px;
  font-size: 64px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: rgba(248, 251, 250, 0.7);
  font-size: 13px;
  font-weight: 750;
}

.availability::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 2px;
}

.proof-bar {
  background: #121c20;
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-item {
  padding: 16px 18px 16px 0;
}

.proof-item:not(:first-child) {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.proof-value {
  display: block;
  color: var(--lime);
  font-size: 24px;
  line-height: 1;
  font-weight: 850;
}

.proof-label {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.scan-showcase {
  padding: 38px 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(94, 255, 92, 0.16), transparent 30%),
    linear-gradient(180deg, #0b1317 0%, #101b20 100%);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.scan-showcase-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
}

.scan-showcase-copy {
  max-width: 440px;
}

.scan-showcase .section-kicker {
  color: var(--lime);
}

.scan-showcase .section-title {
  color: var(--white);
  font-size: 40px;
}

.scan-showcase .section-copy {
  color: rgba(248, 251, 250, 0.76);
}

.scan-showcase-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #05090b;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.scan-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(74, 255, 93, 0.72) 50%, transparent 51%),
    repeating-linear-gradient(0deg, rgba(74, 255, 93, 0.12) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.scan-showcase-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.scan-showcase-visual figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  color: rgba(248, 251, 250, 0.86);
  background: rgba(5, 9, 11, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.editorial-split .section-copy {
  margin-top: 9px;
}

.statement {
  padding: 54px 0;
  background: var(--ink-soft);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.statement blockquote {
  max-width: 990px;
  margin: 0;
  font-size: 38px;
  line-height: 1.03;
  font-weight: 830;
}

.legal-hero {
  padding: 102px 0 44px;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.legal-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 0.98;
}

.legal-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(248, 251, 250, 0.66);
  font-size: 16px;
}

.legal-main {
  padding: 52px 0 72px;
  background: var(--ink-soft);
  color: var(--white);
}

.legal-inner {
  max-width: 820px;
}

.legal-inner h2 {
  margin: 34px 0 10px;
  font-size: 21px;
}

.legal-inner h2:first-child {
  margin-top: 0;
}

.legal-inner p,
.legal-inner li {
  color: rgba(248, 251, 250, 0.7);
  font-size: 16px;
}

.legal-inner a {
  color: var(--cyan);
  font-weight: 750;
}

.support-callout {
  margin: 30px 0;
  padding: 22px 0;
  border-top: 2px solid var(--cyan);
  border-bottom: 1px solid var(--line-dark);
}

.support-email {
  display: inline-block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 820;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.faq {
  border-top: 1px solid var(--line-dark);
}

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

.faq summary {
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 760;
  list-style: none;
  position: relative;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-size: 25px;
  font-weight: 400;
}

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

.faq details p {
  max-width: 690px;
  padding: 0 42px 22px 0;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--ink);
}

.error-inner {
  width: min(720px, 100%);
}

.error-code {
  color: var(--coral);
  font-size: 14px;
  font-weight: 850;
}

.error-page h1 {
  font-size: 64px;
}

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

@media (max-width: 820px) {
  .nav-shell {
    height: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-group {
    position: fixed;
    inset: 60px 0 0;
    display: none;
    padding: 28px 20px;
    align-items: stretch;
    background: rgba(7, 16, 20, 0.98);
  }

  .nav-group.open {
    display: block;
  }

  .primary-nav {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line-dark);
  }

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

  .lang-switch {
    width: fit-content;
    margin-top: 24px;
  }

  .hero,
  .product-hero {
    min-height: 560px;
  }

  .hero {
    align-items: end;
    background-image: linear-gradient(0deg, rgba(4, 9, 12, 0.98) 0%, rgba(4, 9, 12, 0.72) 58%, rgba(4, 9, 12, 0.12) 100%), url("cybermemo-studio-hero.jpg");
    background-position: 68% center;
  }

  .hero-inner {
    padding: 92px 0 44px;
  }

  h1 {
    font-size: 50px;
  }

  .band {
    padding: 54px 0;
  }

  .app-showcase,
  .editorial-split {
    grid-template-columns: 1fr;
  }

  .app-art {
    width: min(68vw, 220px);
  }

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

  .feature:not(:nth-child(3n + 1)),
  .step:not(:first-child),
  .studio-point:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .contact-strip {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .product-hero {
    background-image: linear-gradient(0deg, rgba(6, 13, 16, 0.99) 0%, rgba(6, 13, 16, 0.72) 58%, rgba(6, 13, 16, 0.06) 100%), url("stink-scanner-kind-pets-scan-20260905.png");
    background-position: center 52%;
  }

  .product-hero-inner {
    padding-top: 94px;
  }

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

  .proof-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .scan-showcase-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .scan-showcase-copy {
    max-width: none;
  }

  .scan-showcase .section-title {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .hero-inner,
  .section-inner,
  .product-hero-inner,
  .proof-inner,
  .legal-inner,
  .footer-inner {
    width: min(100% - 30px, var(--max));
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    min-height: 540px;
  }

  .product-hero {
    min-height: 620px;
  }

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

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section-title {
    font-size: 30px;
  }

  .section-copy {
    font-size: 17px;
  }

  .app-art {
    width: min(68vw, 190px);
  }

  .feature,
  .step,
  .studio-point {
    padding-right: 0;
  }

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

  .product-lockup {
    width: 72px;
    height: 72px;
    border-radius: 17px;
  }

  .product-heading h1 {
    font-size: 44px;
  }

  .proof-value {
    font-size: 23px;
  }

  .proof-label {
    font-size: 10px;
  }

  .statement {
    padding: 44px 0;
  }

  .legal-hero {
    padding-top: 92px;
  }

  .support-email {
    font-size: 22px;
  }
}

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

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