:root {
  --bg: #0B1A12;
  --bg-2: #0F2218;
  --panel: rgba(255, 255, 255, 0.05);
  --glass: rgba(20, 30, 26, 0.55);
  --glass-border: rgba(255, 255, 255, 0.16);
  --border: rgba(255, 255, 255, 0.11);
  --ink: #F2F5F0;
  --muted: #A9B8AD;
  --green: #5FD68C;
  --green-ink: #0B1A12;
  --sans: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --hand: 'Caveat', 'Bradley Hand', 'Segoe Script', cursive;
  --radius: 18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.15em;
  background: currentColor;
  -webkit-mask: var(--ic) center / contain no-repeat;
  mask: var(--ic) center / contain no-repeat;
}
[data-i="owl"] { --ic: url(/assets/icons/owl.svg?v=owl-flat); }
[data-i="repeller"] { --ic: url(/assets/icons/repeller.svg); }
[data-i="security-camera"] { --ic: url(/assets/icons/security-camera.svg); }
[data-i="shield"] { --ic: url(/assets/icons/shield.svg); }
[data-i="shield-check"] { --ic: url(/assets/icons/shield-check.svg); }
[data-i="solar"] { --ic: url(/assets/icons/solar.svg); }
[data-i="pet-safe"] { --ic: url(/assets/icons/pet-safe.svg); }
[data-i="setup"] { --ic: url(/assets/icons/setup.svg); }
[data-i="privacy"] { --ic: url(/assets/icons/privacy.svg); }
[data-i="pets"] { --ic: url(/assets/icons/pets.svg); }
[data-i="kind"] { --ic: url(/assets/icons/kind.svg); }
[data-i="arrow"] { --ic: url(/assets/icons/arrow.svg); }
[data-i="instagram"] { --ic: url(/assets/icons/instagram.svg); }
[data-i="x"] { --ic: url(/assets/icons/x.svg); }
[data-i="sound"] { --ic: url(/assets/icons/sound.svg); }
[data-i="play"] { --ic: url(/assets/icons/play.svg); }
[data-i="muted"] { --ic: url(/assets/icons/muted.svg); }
[data-i="share"] { --ic: url(/assets/icons/share.svg); }
[data-i="chevron"] { --ic: url(/assets/icons/chevron.svg); }
[data-i="paw"] { --ic: url(/assets/icons/paw.svg?v=2); }
[data-i="bird"] { --ic: url(/assets/icons/bird.svg?v=3); }
[data-i="cat"] { --ic: url(/assets/icons/cat.svg?v=2); }
[data-i="clock"] { --ic: url(/assets/icons/clock.svg); }
[data-i="photos"] { --ic: url(/assets/icons/photos.svg); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.container.narrow { max-width: 760px; }

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  text-wrap: balance;
}

h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.sec-head { text-align: center; margin-bottom: 44px; }
.sec-head.left { text-align: left; }
.sec-head .lead {
  margin: 16px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  text-wrap: pretty;
}
.sec-head.left .lead { margin-left: 0; }

[hidden] { display: none !important; }
section { padding: 88px 0; }
section[id] { scroll-margin-top: 24px; }
section.alt { background: var(--bg-2); }

.top {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: calc(22px + env(safe-area-inset-top)) 0 22px;
}
.top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand .ic { width: 30px; height: 35px; }
.lang { display: flex; gap: 4px; padding: 3px; border-radius: 999px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(8px); }
.lang a { padding: 5px 11px; border-radius: 999px; color: rgba(255, 255, 255, 0.75); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.lang a:hover { text-decoration: none; color: #fff; }
.lang a[aria-current] { background: #fff; color: var(--bg); }
.hero {
  position: relative;
  padding: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero picture, .hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero img.bg { object-fit: cover; object-position: 62% 50%; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 20, 13, 0.9) 0%, rgba(8, 20, 13, 0.74) 30%, rgba(8, 20, 13, 0.22) 58%, rgba(8, 20, 13, 0) 80%),
    linear-gradient(180deg, rgba(8, 20, 13, 0.55) 0%, rgba(8, 20, 13, 0) 30%, rgba(8, 20, 13, 0) 70%, var(--bg) 100%);
}
.hero .container { width: 100%; padding-top: 110px; padding-bottom: 72px; }
.hero .copy { max-width: 560px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(95, 214, 140, 0.22);
  animation: statusPulse 2.4s ease-in-out infinite;
}
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
}
.hero .sub {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  margin: 14px 0 18px;
  max-width: 440px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

.signup {
  display: flex;
  gap: 8px;
  max-width: 460px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.signup input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 12px 10px 12px 18px;
  font: inherit;
  font-size: 16px;
  color: #10241A;
  outline: none;
}
.signup input::placeholder { color: #5E6D62; }
.signup input:focus-visible { outline: 2px solid #23673F; outline-offset: -3px; border-radius: 999px; }
.signup .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.signup.error input { box-shadow: inset 0 0 0 2px #C7432F; border-radius: 999px; }
.signup.error input:focus-visible { outline-color: #C7432F; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--green-ink);
  font: inherit;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.btn:hover { background: #7BE3A3; transform: translateY(-1px); text-decoration: none; }
.btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.btn .ic { font-size: 16px; }
.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn.ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; }

.ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.offer {
  margin: 14px 0 0;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}

.values {
  display: flex;
  gap: 34px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.values li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 110px;
  white-space: nowrap;
  font-size: 13.5px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.85);
}
.values .ic { font-size: 30px; color: #fff; }

.hand {
  font-family: var(--hand);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}
.hero .hand {
  position: absolute;
  right: 6%;
  bottom: 14%;
  font-size: clamp(34px, 3.8vw, 50px);
  transform: rotate(-8deg);
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.vs {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 16px;
  table-layout: fixed;
}
.vs th, .vs td {
  padding: 16px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.vs thead th, .vs thead td { border-bottom-color: rgba(255, 255, 255, 0.2); }
.vs thead th {
  vertical-align: bottom;
  color: var(--muted);
  font-weight: 500;
  width: 20%;
}
.vs thead th.is-ours { color: var(--green); }
.vs thead .ic { font-size: 24px; }
.vs .name {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.3;
}
.vs thead th.is-ours .name { font-weight: 600; }
.vs tbody th {
  text-align: left;
  font-weight: 400;
  color: var(--ink);
  padding-left: 0;
  padding-right: 12px;
  text-wrap: balance;
}
.vs td.is-ours, .vs thead th.is-ours { background: rgba(95, 214, 140, 0.08); }
.vs thead th.is-ours { border-radius: 14px 14px 0 0; }
.vs tbody tr:last-child td.is-ours { border-radius: 0 0 14px 14px; }
.vs .yes::before, .vs .no::before { font-size: 18px; line-height: 1; }
.vs .yes::before { content: "\2713"; color: var(--green); font-weight: 700; }
.vs .no::before { content: "\2013"; color: var(--muted); opacity: 0.5; }

#feed {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 62px 0;
  --edge: max(28px, (100vw - 1120px) / 2 + 28px);
  --green: #9bea80;
  --muted: #c3c8d2;
  --glass-border: rgba(209, 218, 230, 0.42);
}
#feed::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -2;
  background: url(/assets/hero.webp) center 40% / cover no-repeat;
  filter: blur(5px) saturate(0.85);
}
#feed::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(24, 29, 35, 0.5) 14%, rgba(24, 29, 35, 0.68) 74%, var(--bg) 92%);
}
.feed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.feed-head .sec-head { margin-bottom: 0; }
.feed-head .sec-head .lead { max-width: 52ch; }
.feed-nav { display: flex; gap: 8px; flex-shrink: 0; }
.feed-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.feed-nav button:hover { background: rgba(255, 255, 255, 0.18); }
.feed-nav button:disabled { opacity: 0.3; cursor: default; }
.feed-nav .ic { font-size: 19px; }
.feed-nav button:first-child .ic { transform: rotate(180deg); }

.feed {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 4px var(--edge) 10px;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--edge);
  scrollbar-width: none;
}
.feed::-webkit-scrollbar { display: none; }
.post {
  flex: 0 0 min(430px, 84vw);
  scroll-snap-align: start;
  container-type: inline-size;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(36, 41, 49, 0.78);
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.post figure { margin: 0; }
.post .shot { position: relative; line-height: 0; }
.post img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 710;
  object-fit: cover;
  display: block;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.45em 0.9em 0.45em 0.7em;
  border-radius: 999px;
  font-size: clamp(10px, 3.1cqw, 13px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.badge .ic { font-size: 1.5em; }
.badge.deterred { background: #c94d3c; }
.post .note {
  position: absolute;
  left: 5cqw;
  bottom: 12cqw;
  margin: 0;
  font-size: clamp(19px, 8cqw, 38px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  transform: rotate(-4deg);
  transform-origin: left bottom;
  pointer-events: none;
}
.post .note .mark {
  display: flex;
  align-items: center;
  gap: 0.22em;
  margin-top: 0.05em;
}
.post .note svg {
  width: 2.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}
.post figcaption {
  position: relative;
  z-index: 1;
  padding: 10px 20px 18px;
}
.post figcaption::before {
  content: "";
  position: absolute;
  inset: -8px 0 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(57, 57, 57, 0.96), rgba(31, 37, 47, 0.97));
  -webkit-mask: url(/assets/caption-wave.svg) top / 100% 16px no-repeat, linear-gradient(#000, #000) bottom / 100% calc(100% - 16px) no-repeat;
  mask: url(/assets/caption-wave.svg) top / 100% 16px no-repeat, linear-gradient(#000, #000) bottom / 100% calc(100% - 16px) no-repeat;
  pointer-events: none;
}
.post .caption-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.post .who {
  display: flex;
  align-items: center;
  gap: 0.45em;
  font-size: clamp(15px, 4.7cqw, 20px);
  font-weight: 600;
}
.post .who .ic { font-size: 1.25em; }
.post .meta {
  display: flex;
  gap: 0.9em;
  margin-top: 0.45em;
  color: var(--muted);
  font-size: clamp(11.5px, 3.4cqw, 15px);
  line-height: 1.5;
}
.post .meta span { display: inline-flex; align-items: center; gap: 0.45em; white-space: nowrap; }
.post .meta span + span { padding-left: 0.9em; border-left: 1px solid var(--border); }
.post .meta .ic { font-size: 1.3em; color: #fff; }
.post.more { display: flex; background: rgba(255, 255, 255, 0.06); }
.post.more a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 28px;
  color: var(--ink);
}
.post.more a:hover { text-decoration: none; background: rgba(255, 255, 255, 0.05); }
.post.more .ic { font-size: 30px; color: var(--green); }
.post.more b { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.post.more span { color: var(--green); font-size: 14.5px; font-weight: 500; }

.demo-note { position: absolute; top: 14px; left: 14px; margin: 0; padding: 6px 10px; background: rgba(0, 0, 0, 0.65); border-radius: 999px; color: #fff; font: 12px/1.4 var(--sans); }

.why {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.why .render {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  position: sticky;
  top: 80px;
}
.why .render::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 214, 140, 0.22) 0%, rgba(95, 214, 140, 0) 70%);
}
.why .render picture { display: contents; }
.why .render img {
  position: relative;
  width: min(100%, 400px);
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
}
.perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.perk {
  padding: 22px 22px 20px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
}
.perk .ic { font-size: 32px; color: var(--green); margin-bottom: 14px; display: block; }
.perk h3 { margin: 0 0 5px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.perk p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

#proof { overflow: hidden; --edge: max(28px, (100vw - 1120px) / 2 + 28px); --glass-border: var(--border); }
.say {
  flex: 0 0 min(380px, 84vw);
  scroll-snap-align: start;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
}
.founder {
  margin: 26px 0 0;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(95, 214, 140, 0.4);
}
.founder blockquote { margin: 0; font-size: 15.5px; line-height: 1.5; text-wrap: pretty; }
.founder figcaption { margin: 9px 0 0; color: var(--muted); font-size: 14px; }
.say .stars {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
  color: #F2C94C;
  background: linear-gradient(90deg, currentColor calc(var(--n) * 20%), rgba(255, 255, 255, 0.18) calc(var(--n) * 20%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: max-content;
}
.say blockquote { margin: 0; font-size: 15.5px; line-height: 1.5; text-wrap: pretty; }
.say p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }

details { border-top: 1px solid var(--border); }
details:last-of-type { border-bottom: 1px solid var(--border); }
summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 40px 20px 0;
  font-size: 18px;
  font-weight: 500;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -4.5px;
  border-right: 1.6px solid var(--green);
  border-bottom: 1.6px solid var(--green);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.2s ease;
}
details[open] summary::after { transform: translateY(3px) rotate(-135deg); }
details p { margin: -6px 0 22px; max-width: 640px; color: var(--muted); font-size: 16px; line-height: 1.55; }

.waitlist {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(95, 214, 140, 0.16) 0%, rgba(95, 214, 140, 0) 60%),
    var(--bg-2);
}
.waitlist .price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 22px 0 0;
  color: var(--muted);
}
.waitlist .price .tag { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.waitlist .price b {
  color: var(--green);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.waitlist .testers { margin: 22px auto 0; max-width: 460px; color: var(--muted); font-size: 16px; text-wrap: pretty; }
.waitlist .signup { margin: 20px auto 0; }
.joined > .testers { display: none; }
.after { display: none; }
.after .lead { margin: 16px auto 0; max-width: 520px; color: var(--muted); font-size: 18px; text-wrap: pretty; }
.after .reminder { margin: 22px 0 28px; color: var(--muted); font-size: 14px; }
.after .reminder b { color: var(--green); font-weight: 600; }
.joined .after { display: block; }
.joined > h2, .joined > .price, .joined > .signup, .joined > .oops, .joined > .note { display: none; }
.waitlist .note { margin: 14px 0 0; font-size: 13.5px; color: var(--muted); }
.oops { margin: 14px 0 0; font-size: 14.5px; font-weight: 500; color: #FF9C8A; }

.social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}
.social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.social a:hover { border-color: var(--green); background: var(--panel); text-decoration: none; }
.social .ic { font-size: 18px; }

footer {
  padding: 32px 0 44px;
  color: var(--muted);
  font-size: 13.5px;
}
footer .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer p { margin: 0; }
footer a { color: var(--muted); }
footer a:hover { color: var(--green); }

#see { padding: 92px 0; }
.see {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.see > div { min-width: 0; container-type: inline-size; }
.clip {
  position: relative;
  container-type: inline-size;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  line-height: 0;
}
.clip video { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1.3;
}
.hud .box {
  position: absolute;
  border: 1.5px solid rgba(95, 214, 140, 0.95);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 0 20px rgba(95, 214, 140, 0.22);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hud .box.on { opacity: 1; }
.hud .box b {
  position: absolute;
  left: -1.5px;
  bottom: calc(100% + 3px);
  padding: 0.25em 0.45em;
  border-radius: 2px;
  background: rgba(95, 214, 140, 0.95);
  color: var(--green-ink);
  font-size: clamp(8px, 2.4cqw, 11px);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hud .caption {
  position: absolute;
  left: 14px;
  right: 70px;
  bottom: 14px;
  margin: 0;
  line-height: 1.3;
}
.hud .caption span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(12px, 4cqw, 16px);
  font-weight: 600;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.sound {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.sound .ic { font-size: 20px; }
.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.play .ic { font-size: 32px; margin-left: 5px; }
.clip video { cursor: pointer; }

.steps { counter-reset: step; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; padding: 0 0 24px 56px; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(95, 214, 140, 0.14);
  border: 1px solid rgba(95, 214, 140, 0.45);
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
}
.steps li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 44px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(var(--border), transparent);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { margin: 6px 0 5px; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.steps p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.55; text-wrap: pretty; }
#see h2 { font-size: clamp(21px, 6.4cqw, 46px); text-wrap: balance; }

@media (min-width: 641px) and (orientation: portrait) {
  .hero img.bg { object-position: 50% 50%; }
  .hero .copy { max-width: 640px; }
  .hero h1 { font-size: clamp(44px, 6.4vw, 72px); }
  .hero .sub { font-size: clamp(19px, 2.4vw, 26px); max-width: 360px; }
  .btn { padding: 16px 28px; font-size: 17px; }
  .offer { font-size: 16px; }
  .values li { font-size: 16px; }
  .values .ic { font-size: 36px; }
  .hero .hand { font-size: clamp(40px, 5vw, 64px); }
}

@media (max-width: 1000px) {
  .see { grid-template-columns: 1fr; gap: 32px; max-width: 620px; margin: 0 auto; }
  .clip { width: min(100%, 430px); margin: 0 auto; }
}

@media (max-width: 960px) {
  section { padding: 72px 0; }
  #see { padding: 72px 0; }
  .why { grid-template-columns: 1fr; gap: 28px; }
  .why .render { position: static; }
  .why .render img { width: min(52%, 280px); }
  .hero .hand {
    right: 6%;
    bottom: 20%;
    font-size: clamp(28px, 4.4vw, 38px);
  }
}

@media (max-width: 760px) {
  .feed-head { position: relative; }
  .feed-nav { position: absolute; right: 0; top: 24px; }
  .feed-head h2 { padding-right: 104px; }
  .post { flex: 0 0 min(86vw, 430px); }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 54px 0; }
  #see { padding: 36px 0 54px; }
  .clip { width: 100%; }
  #see h2, .feed-head h2 { font-size: clamp(21px, 6.4vw, 26px); }
  .why .render img { width: min(58%, 220px); }
  #feed { --edge: 20px; padding: 54px 0; }
  #proof { --edge: 20px; }
  #feed::before { background-image: url(/assets/hero-mobile.webp); }
  .sec-head { margin-bottom: 26px; }
  .eyebrow { letter-spacing: 0.22em; }
  .top { padding: calc(16px + env(safe-area-inset-top)) 0 16px; }
  .brand { font-size: 19px; }

  .hero { min-height: 100svh; align-items: stretch; }
  .hero img.bg { object-position: 80% 50%; }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(8, 20, 13, 0.94) 0%,
      rgba(8, 20, 13, 0.82) 26%,
      rgba(8, 20, 13, 0.4) 42%,
      rgba(8, 20, 13, 0.25) 54%,
      rgba(8, 20, 13, 0.7) 66%,
      rgba(8, 20, 13, 0.86) 88%,
      var(--bg) 100%);
  }
  .hero .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: calc(104px + env(safe-area-inset-top));
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .hero .copy, .hero .actions { flex-shrink: 0; }
  .hero .copy { max-width: none; }
  .hero h1 { font-size: clamp(30px, 8.4vw, 38px); }
  .hero .sub { font-size: 16px; margin: 10px 0 0; max-width: 330px; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6); }
  .hero .hand {
    right: 20px;
    bottom: 34%;
    font-size: 30px;
    text-align: right;
    transform: rotate(-6deg);
  }
  @media (max-height: 720px) { .hero .hand { display: none; } }
  .hero .actions { margin-top: 32px; }
  .ctas { flex-direction: column; align-items: stretch; }
  .ctas .btn { width: 100%; }
  .offer { text-align: center; max-width: none; font-size: 13.5px; }
  .signup { max-width: none; }
  .signup input { padding-left: 16px; }
  .btn { padding: 13px 18px; font-size: 15px; }
  .values { gap: 0; justify-content: space-between; margin-top: 28px; }
  .values li { flex: 1 1 0; max-width: 30%; align-items: center; text-align: center; font-size: 13px; }

  .vs { font-size: 14.5px; }
  .vs th, .vs td { padding: 13px 4px; }
  .vs .name { font-size: 11.5px; margin-top: 5px; }
  .vs thead th { width: 21%; }
  .vs thead .ic { font-size: 20px; }

  .feed-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .perks { grid-template-columns: 1fr 1fr; gap: 10px; }
  .perk { padding: 16px 14px; }
  .perk .ic { font-size: 24px; margin-bottom: 10px; }
  .perk h3 { margin-bottom: 4px; font-size: 15.5px; text-wrap: balance; }
  .perk p { font-size: 13.5px; line-height: 1.45; }
  .say, .founder { padding: 16px 18px; }
  .say blockquote, .founder blockquote { font-size: 14.5px; }
  summary { font-size: 16.5px; padding: 16px 36px 16px 0; }
  details p { font-size: 15px; margin-bottom: 18px; }
  .sec-head .lead { font-size: 16px; }
  .waitlist .price b { font-size: 42px; }
  .social { gap: 10px; }
  .social a { padding: 9px 14px; font-size: 14px; }
  .after .btn { width: 100%; }
  footer .container { justify-content: center; text-align: center; }
}

@media (max-width: 379px) {
  .perks { grid-template-columns: 1fr; }
  .signup {
    flex-direction: column;
    gap: 6px;
    border-radius: 20px;
    padding: 7px;
  }
  .signup input { padding: 11px 14px; }
  .signup .btn { width: 100%; }
  .values li { font-size: 12.5px; }
  .vs thead th { width: 19%; }
  .vs th, .vs td { padding: 12px 2px; }
  .vs tbody th { padding-right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .btn:hover { transform: none; }
}
