:root {
  --bg: #f4efe8;
  --paper: #fbf8f3;
  --paper-2: #ede6dc;
  --ink: #1a1816;
  --ink-soft: #3a3530;
  --muted: #766f66;
  --line: #d9d0c2;
  --line-soft: #e7ded1;
  --accent: #d6542a;
  --accent-dark: #9e371e;
  --green: #3f6f42;
  --gold: #9b6a20;
  --mono: "Geist Mono", ui-monospace, monospace;
  --sans: "Geist", "Inter", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(214,84,42,.08), transparent 340px),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { border: 0; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(214,84,42,.45); }
  70% { box-shadow: 0 0 0 8px rgba(214,84,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,84,42,0); }
}
@keyframes orbitDrift {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@property --progress {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 91%;
}
@keyframes layerBreathe {
  0%, 100% { filter: brightness(1) saturate(1); }
  50%      { filter: brightness(1.18) saturate(1.22); }
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in oklab, var(--paper) 90%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 10px 24px -18px rgba(0,0,0,.8);
}
.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
}
.brand-name {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 700;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-price {
  padding: 9px 13px;
  border-radius: 9px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 22px;
  min-height: calc(100vh - 138px);
  align-items: stretch;
  padding: 20px 0 0;
}

.hero-copy,
.hero-visual,
.product-card,
.stats-section,
.pain-section,
.community-section,
.manual-section,
.app-solution-section,
.buy-section,
.included-section,
.faq-section,
.footer {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 26px;
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--ink-soft);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse 1.8s ease-out infinite;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(38px, 4.55vw, 58px);
  line-height: 1;
  font-weight: 550;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero h1::after {
  content: ".";
  color: var(--accent);
}
.hero p {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 17px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  transition: transform .16s ease, opacity .16s ease;
}
.primary-button {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 14px 28px -22px rgba(0,0,0,.75);
}
.primary-button:hover { transform: translateY(-1px); }
.primary-button span {
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
}
.secondary-link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid var(--line);
}
.secondary-button {
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
}
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.text-cta,
.contrast-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  width: fit-content;
  font-size: 14px;
  font-weight: 750;
}
.text-cta {
  color: var(--accent-dark);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 38%, var(--line));
}
.contrast-cta {
  padding: 11px 14px;
  border: 1px solid rgba(244,239,232,.14);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
}
.text-cta::after,
.contrast-cta::after {
  content: "→";
  font-family: var(--mono);
  font-size: 12px;
  transition: transform .18s ease;
}
.text-cta:hover::after,
.contrast-cta:hover::after {
  transform: translateX(3px);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 580px;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 74% 18%, rgba(214,84,42,.24), transparent 30%),
    radial-gradient(circle at 22% 78%, rgba(244,239,232,.08), transparent 31%),
    linear-gradient(135deg, rgba(26,24,22,.98), rgba(54,41,34,.94)),
    #1a1816;
  color: var(--bg);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244,239,232,.1);
  border-radius: 12px;
  pointer-events: none;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(244,239,232,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,232,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
  opacity: .55;
  pointer-events: none;
}
.storage-card {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 22px 22px 20px;
  border: 1px solid rgba(244,239,232,.13);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(244,239,232,.1), rgba(244,239,232,.035)),
    rgba(26,24,22,.42);
  box-shadow:
    0 38px 100px -58px rgba(0,0,0,.96),
    inset 0 1px 0 rgba(244,239,232,.1);
  backdrop-filter: blur(16px);
}
.storage-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(244,239,232,.66);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.storage-head strong {
  color: #fff;
  font-weight: 600;
}
.disk-stack {
  position: relative;
  width: min(310px, 78vw);
  aspect-ratio: 1;
  margin: 34px auto 30px;
  transform: perspective(760px) rotateX(58deg) rotateZ(-14deg);
  transform-style: preserve-3d;
}
.disk-layer,
.scan-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.disk-layer {
  width: 86%;
  aspect-ratio: 1;
  border: 1px solid rgba(244,239,232,.12);
  background:
    radial-gradient(circle at 42% 38%, rgba(244,239,232,.08) 0 25%, transparent 26%),
    conic-gradient(from 220deg, rgba(214,84,42,.22), rgba(244,239,232,.08), rgba(214,84,42,.34), rgba(244,239,232,.06), rgba(214,84,42,.22));
  box-shadow:
    0 28px 54px -34px rgba(0,0,0,.95),
    inset 0 0 38px rgba(0,0,0,.32);
}
.layer-back {
  width: 96%;
  transform: translate(-50%, -50%) translateZ(-46px) translateY(42px);
  opacity: .34;
  filter: blur(.3px);
  animation: layerBreathe 9s ease-in-out -1.5s infinite;
}
.layer-mid {
  width: 91%;
  transform: translate(-50%, -50%) translateZ(-22px) translateY(22px);
  opacity: .58;
  animation: layerBreathe 7s ease-in-out -3.4s infinite;
}
.layer-front {
  width: 86%;
  transform: translate(-50%, -50%) translateZ(-8px) translateY(6px);
  opacity: .82;
  animation: layerBreathe 8s ease-in-out -5.2s infinite;
}
.storage-ring {
  --progress: 91%;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(36px) rotateZ(14deg) rotateX(-58deg);
  background:
    radial-gradient(circle at center, rgba(26,24,22,.98) 0 45%, transparent 46%),
    conic-gradient(
      from -70deg,
      var(--accent) 0 calc(var(--progress) * 0.67),
      #a23d21 calc(var(--progress) * 0.67) var(--progress),
      rgba(244,239,232,.18) var(--progress) 100%
    );
  box-shadow:
    0 0 0 1px rgba(244,239,232,.14),
    0 0 58px rgba(214,84,42,.18),
    inset 0 0 0 13px rgba(26,24,22,.24),
    inset 0 0 32px rgba(0,0,0,.48);
}
.storage-ring::before,
.storage-ring::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}
.storage-ring::before {
  inset: 18%;
  border: 1px solid rgba(244,239,232,.1);
  background:
    radial-gradient(circle at center, rgba(244,239,232,.07), transparent 62%);
}
.storage-ring::after {
  inset: -9px;
  border: 1px solid rgba(214,84,42,.26);
  border-top-color: rgba(244,239,232,.22);
  filter: drop-shadow(0 0 18px rgba(214,84,42,.2));
}
.ring-readout {
  display: grid;
  gap: 2px;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(244,239,232,.065);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(244,239,232,.08);
}
.ring-readout strong {
  font-size: 43px;
  line-height: .9;
  font-weight: 750;
  letter-spacing: -0.04em;
}
.ring-readout small {
  color: rgba(244,239,232,.62);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scan-orbit {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(244,239,232,.1);
  border-left-color: rgba(214,84,42,.5);
  border-bottom-color: rgba(214,84,42,.24);
  transform: translate(-50%, -50%) translateZ(54px);
  animation: orbitDrift 18s linear infinite;
}
.orbit-two {
  width: 67%;
  border-color: rgba(244,239,232,.08);
  border-right-color: rgba(214,84,42,.54);
  animation-duration: 12s;
  animation-direction: reverse;
}
.storage-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(244,239,232,.12);
  overflow: hidden;
}
.storage-track span {
  position: absolute;
  inset-block: 0;
  border-radius: inherit;
}
.used-space {
  left: 0;
  width: 64%;
  background: rgba(244,239,232,.34);
}
.hidden-waste {
  left: 64%;
  width: 27%;
  background: var(--accent);
}
.storage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: rgba(244,239,232,.6);
  font-size: 12px;
}
.storage-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.storage-legend i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(244,239,232,.34);
}
.storage-legend span:last-child i {
  background: var(--accent);
}
.floating-files {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.floating-files span {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(244,239,232,.12);
  border-radius: 10px;
  background: rgba(26,24,22,.36);
  color: rgba(244,239,232,.62);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  box-shadow: 0 20px 44px -36px rgba(0,0,0,.9);
  backdrop-filter: blur(10px);
}
.floating-files span:nth-child(1) { left: 8%; top: 19%; }
.floating-files span:nth-child(2) { right: 7%; top: 22%; }
.floating-files span:nth-child(3) { left: 10%; bottom: 24%; }
.floating-files span:nth-child(4) { right: 6%; bottom: 31%; }
.floating-files span:nth-child(5) { left: 23%; top: 8%; }
.floating-files span:nth-child(6) { right: 25%; bottom: 10%; }
.hero-warning {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  width: min(230px, calc(100% - 44px));
  padding: 16px;
  border: 1px solid rgba(214,84,42,.42);
  border-radius: 14px;
  background: rgba(214,84,42,.12);
  backdrop-filter: blur(12px);
}
.hero-warning span {
  display: block;
  color: rgba(244,239,232,.62);
  font-size: 12px;
}
.hero-warning strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 34px;
  letter-spacing: -0.04em;
}
.hero-warning p {
  margin-top: 7px;
  color: rgba(244,239,232,.68);
  font-size: 12px;
  line-height: 1.45;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line-soft);
}
.stat-card {
  min-height: 150px;
  padding: 24px;
  background: var(--paper);
}
.stat-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
}
.stat-card strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.stat-card p {
  max-width: 220px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.pain-section {
  --pain-progress: 0%;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(214,84,42,.13), transparent 35%),
    linear-gradient(120deg, rgba(251,248,243,.92), rgba(237,230,220,.62)),
    var(--paper);
}
.pain-copy {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 10px 0;
}
.pain-copy h2 {
  max-width: 620px;
  margin-top: 8px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: .98;
  font-weight: 560;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.pain-copy p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}
.pain-callout {
  display: grid;
  gap: 5px;
  max-width: 520px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: color-mix(in oklab, var(--paper) 78%, transparent);
}
.pain-callout strong {
  font-size: 14px;
}
.pain-callout span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.pain-board {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 10px 0 10px 34px;
}
.pain-meter {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 8px;
  width: 3px;
  border-radius: 999px;
  background: var(--line-soft);
  overflow: hidden;
}
.pain-meter span {
  display: block;
  width: 100%;
  height: var(--pain-progress);
  border-radius: inherit;
  background: var(--accent);
  transition: height .22s ease;
}
.waste-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 132px;
  gap: 16px;
  align-items: center;
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--paper-2);
  opacity: .58;
  transform: translateY(20px) scale(.985);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.22, 1, .36, 1),
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}
.pain-section.is-visible .waste-card {
  transform: translateY(0) scale(.985);
}
.pain-section.is-visible .waste-card:nth-of-type(2) { transition-delay: .06s; }
.pain-section.is-visible .waste-card:nth-of-type(3) { transition-delay: .14s; }
.pain-section.is-visible .waste-card:nth-of-type(4) { transition-delay: .22s; }
.waste-card.is-active {
  border-color: color-mix(in oklab, var(--accent) 45%, var(--line));
  background: color-mix(in oklab, var(--accent) 8%, var(--paper));
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 24px 56px -46px rgba(158,55,30,.8);
}
.waste-index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--paper);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}
.waste-card strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.waste-card p {
  max-width: 420px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.waste-card b {
  justify-self: end;
  max-width: 122px;
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.community-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  min-height: 430px;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251,248,243,.96), rgba(237,230,220,.72)),
    var(--paper);
}
.community-section::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214,84,42,.16);
  border-radius: 12px;
  pointer-events: none;
}
.community-section::after {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 70px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(214,84,42,.28), transparent);
}
.community-copy,
.manual-copy,
.app-solution-copy {
  position: relative;
  z-index: 1;
}
.community-copy h2,
.manual-section h2,
.app-solution-copy h2 {
  max-width: 680px;
  margin-top: 8px;
  font-size: clamp(31px, 4.2vw, 52px);
  line-height: .98;
  font-weight: 560;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.community-copy p,
.manual-copy p,
.app-solution-copy p {
  max-width: 590px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}
.community-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.community-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(251,248,243,.78);
  box-shadow: 0 22px 52px -48px rgba(26,24,22,.8);
}
.community-grid article:nth-child(2) {
  transform: translateX(18px);
  background: rgba(237,230,220,.82);
}
.community-grid article:nth-child(3) {
  transform: translateX(-18px);
}
.community-grid span,
.manual-steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}
.community-grid strong {
  display: block;
  min-width: 0;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.community-grid p {
  min-width: 0;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.community-grid strong,
.community-grid p {
  grid-column: 2;
}

.manual-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(26,24,22,.96), rgba(46,34,28,.96)),
    #1a1816;
  color: var(--bg);
}
.manual-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,84,42,.6), transparent);
}
.manual-section .eyebrow {
  color: rgba(244,239,232,.58);
}
.manual-copy p {
  color: rgba(244,239,232,.68);
}
.manual-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.manual-steps div {
  min-height: 154px;
  padding: 18px;
  border: 1px solid rgba(244,239,232,.12);
  border-radius: 14px;
  background: rgba(244,239,232,.055);
}
.manual-steps div:nth-child(2),
.manual-steps div:nth-child(3) {
  background: rgba(214,84,42,.11);
}
.manual-steps span {
  background: rgba(244,239,232,.1);
}
.manual-steps p {
  margin-top: 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.app-solution-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(63,111,66,.12), transparent 34%),
    linear-gradient(135deg, rgba(251,248,243,.98), rgba(237,230,220,.72)),
    var(--paper);
}
.app-solution-section::before {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 56px);
  top: clamp(26px, 5vw, 54px);
  bottom: clamp(26px, 5vw, 54px);
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--green));
}
.app-solution-copy {
  padding-left: 22px;
}
.app-solution-demo {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-width: 0;
}
.product-card.solution-preview {
  padding: 12px;
  border-color: color-mix(in oklab, var(--accent) 28%, var(--line));
  background:
    radial-gradient(circle at 88% 6%, rgba(214,84,42,.13), transparent 34%),
    var(--paper-2);
}
.product-card.solution-preview .product-window {
  border-radius: 15px;
  box-shadow: 0 24px 70px -48px rgba(0,0,0,.95);
}
.product-card.solution-preview .scan-panel {
  margin: 14px;
  padding: 15px;
}
.product-card.solution-preview .result-stack {
  gap: 7px;
  padding: 0 14px 14px;
}
.product-card.solution-preview .result-line {
  padding: 10px;
}
.product-card.solution-preview .clean-summary {
  margin: 0 14px 14px;
  padding: 14px;
}
.product-card.solution-preview .clean-summary strong {
  font-size: 24px;
}

.product-card {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(214,84,42,.16), transparent 40%),
    var(--paper-2);
}
.product-window {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  border: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
  border-radius: 18px;
  background: #161412;
  color: #f4efe8;
  box-shadow: 0 28px 80px -44px rgba(0,0,0,.9);
  overflow: hidden;
}
.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.window-dots { display: flex; gap: 6px; }
.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(244,239,232,.28);
}
.window-dots span:first-child { background: var(--accent); }
.window-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(244,239,232,.56);
}
.scan-panel {
  min-width: 0;
  margin: 18px;
  padding: 18px;
  border: 1px solid rgba(244,239,232,.1);
  border-radius: 14px;
  background: rgba(244,239,232,.06);
}
.scan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}
.scan-head span { color: rgba(244,239,232,.66); }
.scan-head strong { font-family: var(--mono); font-size: 12px; color: #f4efe8; }
.scan-track {
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(244,239,232,.12);
  overflow: hidden;
}
.scan-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .45s ease;
}
.scan-path {
  max-width: 100%;
  min-width: 0;
  margin-top: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(244,239,232,.62);
  font-family: var(--mono);
  font-size: 11px;
}
.result-stack {
  display: grid;
  gap: 8px;
  padding: 0 18px 18px;
}
.result-line {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(244,239,232,.08);
  border-radius: 12px;
  background: rgba(244,239,232,.04);
}
.result-line.hot { border-color: rgba(214,84,42,.45); background: rgba(214,84,42,.1); }
.result-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(244,239,232,.12);
  position: relative;
}
.result-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background: var(--accent);
}
.result-line strong {
  display: block;
  font-size: 13px;
  color: #fff;
}
.result-line small {
  display: block;
  margin-top: 3px;
  color: rgba(244,239,232,.54);
  font-size: 11px;
}
.result-line b {
  color: rgba(244,239,232,.72);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
}
.clean-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 18px 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f4efe8;
  color: var(--ink);
}
.clean-summary span {
  color: var(--muted);
  font-size: 12px;
}
.clean-summary strong {
  color: var(--accent);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.buy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
}
.buy-copy h2,
.included-head h2 {
  max-width: 640px;
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 560;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.buy-copy p {
  max-width: 610px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.62;
}
.buy-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 640px;
  margin-top: 22px;
}
.buy-assurances span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}
.checkout {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--paper-2);
}
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}
.price-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.price-line strong {
  color: var(--accent);
  font-size: 34px;
  letter-spacing: -0.035em;
}
.checkout-lead {
  margin: -2px 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
label {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}
input {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
}
input:focus { border-color: var(--accent); }
.checkout-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 8px;
}
.full { width: 100%; }
.dialog-actions[hidden] {
  display: none;
}
.checkout small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.included-section {
  padding: clamp(24px, 4vw, 38px);
}
.included-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.included-head .text-cta {
  flex: 0 0 auto;
  margin-bottom: 8px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--line-soft);
}
.included-grid article {
  min-height: 190px;
  padding: 22px;
  background: var(--paper);
}
.included-grid article span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--accent);
}
.included-grid h3 {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.included-grid p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-section {
  padding: clamp(24px, 4vw, 42px);
}
.faq-head {
  max-width: 640px;
  margin: 0 auto 22px;
  text-align: center;
}
.faq-head h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 560;
  letter-spacing: -0.035em;
}
.faq-list {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--paper-2);
  overflow: hidden;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--paper);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 18px;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 12px;
}
.footer a {
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer span:last-child {
  font-family: var(--mono);
  letter-spacing: .08em;
}

.pix-dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  margin: 0;
  padding: 0;
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0,0,0,.24);
  overflow: auto;
}
.pix-dialog::backdrop { background: rgba(26,24,22,.42); }
.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.dialog-head h2 {
  margin-top: 4px;
  font-size: 25px;
  letter-spacing: -0.02em;
}
.close-button {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 22px;
}
.pix-code {
  margin: 22px;
  min-height: 88px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  word-break: break-all;
}
.pix-qr {
  display: block;
  width: 192px;
  height: 192px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
}
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 22px 16px;
}
.download-button {
  display: flex;
  justify-content: center;
  margin: 0 22px 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.download-button[hidden],
.license-box[hidden],
.pix-qr[hidden] {
  display: none;
}
.license-box {
  margin: 0 22px 16px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--paper-2);
}
.license-box span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.license-box strong {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: .08em;
}
.license-box p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.license-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.license-actions .secondary-button {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 13px;
}
.dialog-note {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .hero,
  .pain-section,
  .community-section,
  .manual-section,
  .app-solution-section,
  .buy-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pain-copy {
    position: static;
  }
  .product-card { min-height: 560px; }
  .solution-preview { min-height: auto; }
  .included-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-shell { width: min(100% - 24px, 1180px); padding-top: 12px; }
  .topbar { align-items: flex-start; }
  .nav-actions { display: none; }
  .hero { padding: 12px 0; }
  .hero-copy { padding: 26px 22px; }
  .hero h1 {
    max-width: 100%;
    font-size: 35px;
  }
  .hero-visual {
    min-height: 520px;
    padding: 18px;
  }
  .hero-visual::before {
    inset: 12px;
  }
  .storage-card {
    padding: 18px;
  }
  .disk-stack {
    width: min(250px, 74vw);
    margin: 30px auto 28px;
  }
  .ring-readout {
    width: 94px;
    height: 94px;
  }
  .ring-readout strong {
    font-size: 34px;
  }
  .storage-head {
    flex-direction: column;
    gap: 5px;
  }
  .floating-files span {
    padding: 7px 9px;
    font-size: 9px;
  }
  .hero-warning {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
  .stats-section { grid-template-columns: 1fr; }
  .product-card { min-height: auto; padding: 14px; }
  .solution-preview { padding: 10px; }
  .product-window { max-width: 100%; }
  .scan-path {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.45;
  }
  .result-line { grid-template-columns: 28px 1fr; }
  .result-line b { grid-column: 2; }
  .buy-section,
  .pain-section,
  .community-section,
  .manual-section,
  .app-solution-section,
  .included-section { padding: 22px; }
  .manual-steps { grid-template-columns: 1fr; }
  .community-section::before,
  .community-section::after,
  .manual-section::before {
    display: none;
  }
  .community-grid article,
  .community-grid article:nth-child(2),
  .community-grid article:nth-child(3) {
    transform: none;
  }
  .community-grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }
  .community-grid span,
  .manual-steps span {
    width: 42px;
    height: 42px;
  }
  .app-solution-section::before {
    left: 22px;
    top: 22px;
    bottom: auto;
    width: 56px;
    height: 4px;
  }
  .app-solution-copy {
    padding-left: 0;
    padding-top: 12px;
  }
  .waste-card {
    grid-template-columns: 48px 1fr;
    align-items: start;
  }
  .waste-card b {
    grid-column: 2;
    justify-self: start;
    max-width: none;
    text-align: left;
  }
  .included-head,
  .footer { flex-direction: column; align-items: flex-start; }
  .checkout-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scan-orbit {
    animation: none;
  }
}
