:root {
  --ink: #2c1818;
  --muted: #765b57;
  --soft: #9b7770;
  --line: #efd4cb;
  --paper: #fff6ec;
  --white: #ffffff;
  --peach: #ea7b7b;
  --red: #d25353;
  --wine: #9e3b3b;
  --cream: #ffead3;
  --blush: #fff0e8;
  --shadow: 0 28px 80px rgba(158, 59, 59, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 44px;
  padding: 0 max(22px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(158, 59, 59, 0.1);
  background: rgba(255, 246, 236, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.trust-strip,
.quantity-row,
.total-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: var(--white);
  background: var(--wine);
  font-size: 12px;
}

.nav-links {
  justify-self: center;
  gap: 30px;
  color: #60403d;
  font-size: 12px;
  font-weight: 500;
}

.login-trigger {
  justify-self: end;
  min-width: 74px;
  padding: 6px 13px;
  border: 1px solid rgba(158, 59, 59, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(210, 83, 83, 0.18);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 26%, rgba(255, 246, 236, 0.96), rgba(255, 234, 211, 0.82) 42%, rgba(255, 234, 211, 0.58) 70%, rgba(234, 123, 123, 0.18) 100%),
    var(--cream);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 246, 236, 0.9) 0%, rgba(255, 246, 236, 0.62) 28%, rgba(255, 234, 211, 0.24) 56%, rgba(255, 234, 211, 0) 82%),
    linear-gradient(180deg, rgba(255, 246, 236, 0.78) 0%, rgba(255, 241, 226, 0.58) 28%, rgba(255, 234, 211, 0.3) 54%, rgba(255, 224, 204, 0.14) 76%, rgba(158, 59, 59, 0.04) 100%),
    linear-gradient(90deg, rgba(255, 234, 211, 0.22), rgba(255, 240, 232, 0.03));
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 246, 236, 0.1), rgba(255, 234, 211, 0) 48%);
  backdrop-filter: blur(0.3px);
}

.hero-content {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 102px 0 44vh;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

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

h1 {
  margin: 0 auto 16px;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 24px;
  color: #60403d;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
  font-weight: 500;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.primary,
.checkout {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(210, 83, 83, 0.24);
}

.primary:hover,
.checkout:hover {
  background: var(--wine);
}

.secondary {
  color: var(--wine);
  border: 1px solid rgba(158, 59, 59, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero-stats div {
  min-width: 112px;
  padding: 12px 16px;
  border: 1px solid rgba(158, 59, 59, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  display: inline;
  font-size: 17px;
  font-weight: 700;
}

.hero-stats dd {
  display: inline;
  margin: 0 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.trust-strip {
  justify-content: center;
  gap: clamp(18px, 5vw, 76px);
  min-height: 58px;
  padding: 14px 20px;
  color: var(--wine);
  background: var(--white);
  border-block: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-intro {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-intro.compact {
  max-width: 760px;
}

.text-link {
  color: #0066cc;
  font-size: 21px;
  font-weight: 500;
}

.text-link::after {
  content: " ›";
}

.inside-section {
  width: 100%;
  min-height: 760px;
  display: grid;
  align-content: space-between;
  padding: 92px max(16px, calc((100% - 1180px) / 2)) 0;
  overflow: hidden;
  color: var(--white);
  background: #000;
}

.inside-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.inside-copy h2 {
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.04;
}

.inside-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.42;
  font-weight: 600;
}

.inside-visual {
  width: min(1180px, 100%);
  min-height: clamp(360px, 46vw, 560px);
  margin: 70px auto 64px;
  perspective: 1400px;
}

.inside-flip {
  position: relative;
  min-height: inherit;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
  transform-style: preserve-3d;
  transition: transform 0.68s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.inside-flip.is-flipped {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .inside-visual:hover .inside-flip,
  .inside-flip:focus-visible {
    transform: rotateY(180deg);
  }
}

.inside-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
  backface-visibility: hidden;
}

.inside-front {
  background: #000;
}

.inside-front img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.inside-back {
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 123, 123, 0.24), transparent 34%),
    linear-gradient(135deg, #080505, #190b0b 58%, #050505);
  transform: rotateY(180deg);
}

.inside-specs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.inside-specs article {
  min-height: 220px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.inside-specs h3 {
  min-height: 54px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(15px, 1.45vw, 22px);
  line-height: 1.12;
}

.inside-specs p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.45;
  font-weight: 600;
}

.inside-specs p:first-of-type {
  color: rgba(255, 255, 255, 0.72);
}

.product-band {
  width: 100%;
  padding-top: 58px;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-grid article,
.reviews-grid figure,
.purchase-card {
  border: 1px solid rgba(158, 59, 59, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(158, 59, 59, 0.08);
}

.product-grid article {
  min-height: 298px;
  padding: 32px;
}

.product-grid p,
.feature-copy p,
.buy-copy p,
blockquote {
  color: var(--muted);
  line-height: 1.68;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-preview {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(320px, 610px);
  align-items: center;
  justify-content: center;
  gap: min(8vw, 112px);
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: #2c1818;
  color: var(--white);
}

.phone-shell {
  width: min(100%, 380px);
  min-height: 650px;
  margin: 0 auto;
  padding: 38px 22px 24px;
  border: 10px solid #1b0d0d;
  border-radius: 38px;
  background: linear-gradient(160deg, #fff9f1, #ffead3 58%, #ea7b7b);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.36);
}

.phone-top {
  width: 92px;
  height: 6px;
  margin: 0 auto 34px;
  border-radius: 999px;
  background: #2c1818;
}

.app-card,
.metric-row > div {
  border: 1px solid rgba(158, 59, 59, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 22px rgba(158, 59, 59, 0.08);
}

.app-card {
  padding: 18px;
}

.app-card span,
.metric-row span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.app-card strong,
.metric-row strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.activity-graph {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 18px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 234, 211, 0.5)),
    linear-gradient(90deg, rgba(158, 59, 59, 0.08), rgba(234, 123, 123, 0.18));
}

.activity-graph span {
  flex: 1;
  height: var(--level);
  min-height: 26px;
  border-radius: 999px 999px 7px 7px;
  background: linear-gradient(180deg, var(--peach), var(--red));
  box-shadow: 0 10px 22px rgba(210, 83, 83, 0.18);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 12px 0;
}

.metric-row > div {
  padding: 18px;
}

.status-carousel {
  border-color: rgba(210, 83, 83, 0.22);
}

.carousel-head,
.carousel-controls,
.status-dots {
  display: flex;
  align-items: center;
}

.carousel-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.carousel-head span {
  margin-bottom: 0;
}

.carousel-controls {
  gap: 6px;
}

.carousel-controls button,
.status-dots button {
  border: 0;
  cursor: pointer;
}

.carousel-controls button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--wine);
  background: var(--cream);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.status-slides {
  position: relative;
  min-height: 126px;
}

.status-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  opacity: 0;
  transform: translateX(14px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.status-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.status-orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.status-orb.green {
  background: #4bd66a;
  box-shadow: 0 0 24px rgba(75, 214, 106, 0.78);
}

.status-orb.yellow {
  background: #ffc947;
  box-shadow: 0 0 24px rgba(255, 201, 71, 0.82);
}

.status-orb.red {
  background: #e23d3d;
  box-shadow: 0 0 24px rgba(226, 61, 61, 0.82);
}

.status-slide p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.status-dots {
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
}

.status-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(96, 64, 61, 0.28);
}

.status-dots button.active {
  width: 18px;
  border-radius: 999px;
  background: var(--red);
}

.feature-copy {
  max-width: 610px;
}

.app-preview .eyebrow {
  color: var(--peach);
}

.app-preview h2 {
  color: var(--cream);
}

.app-preview .feature-copy p {
  color: #f4d9cf;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--cream);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--peach);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.compare-disclosure {
  margin: 12px 0;
}

.compare-toggle {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 9px 8px 18px;
  border: 1px solid rgba(210, 83, 83, 0.22);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 234, 211, 0.88);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(158, 59, 59, 0.12);
}

.compare-toggle:hover {
  background: #fff3e2;
}

.plus-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 20px rgba(210, 83, 83, 0.22);
}

.plus-mark::before,
.plus-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease;
}

.plus-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.compare-toggle[aria-expanded="true"] .plus-mark::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.compare-details {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(158, 59, 59, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 22px rgba(158, 59, 59, 0.08);
}

.compare-details h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.12;
}

.why-points {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.36;
  font-weight: 600;
}

.why-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reviews-grid figure {
  margin: 0;
  min-height: 220px;
  padding: 32px;
}

blockquote {
  margin: 0 0 28px;
  font-size: 18px;
}

figcaption {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.buy-section {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(320px, 450px);
  gap: min(8vw, 88px);
  align-items: center;
  justify-content: center;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.buy-copy p {
  font-size: 18px;
}

.delivery-note {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--wine);
  font-weight: 600;
}

.purchase-card {
  padding: 26px;
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 22px;
  border: 0;
}

legend {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.plan-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.plan-option.active {
  border-color: var(--red);
  background: var(--blush);
}

.plan-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.plan-option strong,
.plan-option small {
  display: block;
}

.plan-option small {
  margin-top: 4px;
  color: var(--muted);
}

.quantity-row,
.total-row {
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.stepper {
  display: grid;
  grid-template-columns: 42px 48px 42px;
  align-items: center;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.stepper button {
  height: 100%;
  border: 0;
  background: var(--white);
  cursor: pointer;
  color: var(--wine);
  font-size: 20px;
  font-weight: 600;
}

.stepper output {
  text-align: center;
}

.total-row strong {
  color: var(--wine);
  font-size: 30px;
  font-weight: 700;
}

.checkout {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  font-size: 17px;
}

.fine-print {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer {
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(44, 24, 24, 0.42);
  backdrop-filter: blur(16px);
}

.login-modal[hidden] {
  display: none;
}

.login-panel {
  position: relative;
  width: min(430px, 100%);
  padding: 34px;
  border: 1px solid rgba(158, 59, 59, 0.16);
  border-radius: 28px;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 0%, rgba(234, 123, 123, 0.18), transparent 36%),
    rgba(255, 246, 236, 0.94);
  box-shadow: 0 30px 90px rgba(44, 24, 24, 0.26);
}

.login-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.72);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.login-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--wine);
  background: var(--cream);
  font-size: 12px;
  font-weight: 700;
}

.login-panel h2 {
  margin-bottom: 10px;
  font-size: 36px;
}

.login-panel p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.login-form {
  display: grid;
  gap: 10px;
}

.login-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.login-form input {
  width: 100%;
  margin-bottom: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(158, 59, 59, 0.18);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
}

.login-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(210, 83, 83, 0.12);
}

.login-form textarea,
.community-composer textarea,
.community-composer input,
.support-search input {
  font: inherit;
}

.login-submit {
  margin-top: 6px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.login-panel small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0.5s);
  will-change: opacity, transform;
}

[data-reveal].is-visible,
[data-reveal]:target {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-item] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0.5s) + var(--item-delay, 0s));
}

.is-visible [data-reveal-item],
[data-reveal]:target [data-reveal-item] {
  opacity: 1;
  transform: translateY(0);
}

.subpage-main,
.support-main {
  min-height: calc(100vh - 80px);
  padding-top: 44px;
}

.subpage-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 70px;
  text-align: center;
}

.subpage-hero h1,
.contact-panel h1,
.support-search-panel h1 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.03;
}

.explore-page h1 {
  font-size: clamp(31px, 4.2vw, 59px);
}

.contact-panel h1 {
  font-size: clamp(26px, 3.6vw, 50px);
}

.explore-page .eyebrow {
  margin-bottom: 34px;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
}

.subpage-hero > p:not(.eyebrow),
.contact-panel > p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.video-frame {
  position: relative;
  width: min(980px, 100%);
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid rgba(158, 59, 59, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 246, 236, 0.2), rgba(210, 83, 83, 0.12)),
    #130909;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.donation-ad {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  align-items: center;
  gap: clamp(22px, 4vw, 44px);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(158, 59, 59, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(158, 59, 59, 0.12);
  text-align: left;
}

.donation-ad img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  object-position: 46% bottom;
}

.donation-ad div {
  padding: 28px 34px 28px 0;
}

.donation-ad span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--wine);
  background: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

.donation-ad h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.donation-ad p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.45;
  font-weight: 600;
}

.community-hero {
  padding-bottom: 38px;
}

.community-hero .community-jump {
  margin-top: 10px;
}

.community-layout {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) 1.18fr;
  gap: 22px;
  margin: 0 auto;
  padding: 0 0 88px;
}

.community-composer,
.community-post,
.contact-card {
  border: 1px solid rgba(158, 59, 59, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 60px rgba(158, 59, 59, 0.11);
}

.community-composer {
  align-self: start;
  position: sticky;
  top: 72px;
  padding: 28px;
}

.community-composer h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
}

.community-message {
  color: var(--muted);
  line-height: 1.45;
}

.community-composer label {
  display: block;
  margin: 18px 0 8px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}

.community-composer input,
.community-composer textarea {
  width: 100%;
  border: 1px solid rgba(158, 59, 59, 0.18);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 246, 236, 0.75);
  outline: none;
  resize: vertical;
}

.photo-upload {
  position: relative;
  min-height: 168px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px dashed rgba(210, 83, 83, 0.42);
  border-radius: 22px;
  color: var(--wine);
  background:
    radial-gradient(circle at 50% 20%, rgba(234, 123, 123, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 234, 211, 0.78), rgba(255, 255, 255, 0.78));
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.photo-upload::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 30px;
  font-weight: 500;
  box-shadow: 0 18px 36px rgba(210, 83, 83, 0.24);
}

.photo-upload:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 59, 59, 0.62);
  box-shadow: 0 20px 50px rgba(158, 59, 59, 0.12);
}

.photo-upload input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-upload span {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 11px 17px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(158, 59, 59, 0.08);
}

.photo-upload img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-upload img:not([hidden]) + span,
.photo-upload:has(img:not([hidden]))::before {
  display: none;
}

.anonymous-toggle {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0 !important;
  color: var(--muted) !important;
  cursor: pointer;
}

.anonymous-toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.composer-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 10px 0 2px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.community-feed-wrap {
  display: grid;
  gap: 16px;
  align-self: start;
  border: 1px solid rgba(158, 59, 59, 0.1);
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 234, 211, 0.72), rgba(255, 255, 255, 0.54)),
    rgba(255, 246, 236, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 24px 70px rgba(158, 59, 59, 0.08);
}

.feed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px;
}

.feed-heading span {
  color: var(--wine);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
}

.feed-heading strong {
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.community-feed {
  columns: 2 260px;
  column-gap: 18px;
  min-height: 420px;
}

.community-post {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  padding: 22px;
  break-inside: avoid;
  transform: rotate(-0.7deg);
  transform-origin: 50% 20%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.community-post::after {
  content: "";
  position: absolute;
  inset: 10px 10px auto auto;
  width: 42px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 234, 211, 0.72);
  transform: rotate(6deg);
}

.community-post:nth-child(2n) {
  transform: rotate(0.8deg);
}

.community-post:nth-child(3n) {
  transform: rotate(-1.1deg);
}

.community-post:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 30px 80px rgba(158, 59, 59, 0.16);
}

.community-post span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--wine);
  background: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

.community-post h3 {
  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.08;
}

.post-photo {
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream);
  aspect-ratio: 4 / 3;
}

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

.demo-photo {
  border: 1px solid rgba(158, 59, 59, 0.1);
}

.demo-photo.one {
  background:
    radial-gradient(circle at 26% 32%, rgba(255, 255, 255, 0.9) 0 12%, transparent 13%),
    radial-gradient(circle at 68% 44%, rgba(210, 83, 83, 0.5) 0 14%, transparent 15%),
    linear-gradient(135deg, #ffead3, #ea7b7b);
}

.demo-photo.two {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.82) 0 10%, transparent 11%),
    linear-gradient(135deg, #fff6ec, #d25353);
}

.demo-photo.three {
  background:
    radial-gradient(circle at 38% 34%, rgba(158, 59, 59, 0.56) 0 11%, transparent 12%),
    linear-gradient(135deg, #fff0e8, #ffe0c2);
}

.community-post p {
  max-width: 660px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.community-post small {
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
}

.support-main {
  background:
    radial-gradient(circle at 50% 0%, rgba(158, 59, 59, 0.18), transparent 34%),
    #000;
}

.support-page {
  background: #000;
}

.support-main + .site-footer {
  color: rgba(255, 255, 255, 0.5);
  background: #000;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.support-search-panel {
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
  padding: 68px 0 96px;
  text-align: center;
}

.support-search-panel h1 {
  margin-bottom: 58px;
  color: var(--white);
  font-size: clamp(29px, 3.5vw, 48px);
  font-weight: 700;
}

.support-search {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(1120px, 100%);
  min-height: 72px;
  margin: 0 auto;
  border: 1.5px solid #d4d5db;
  border-radius: 15px;
  padding: 0 22px;
  background: var(--white);
}

.support-search svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  stroke: #c8c9cf;
  stroke-width: 1.7;
  fill: none;
}

.support-search input {
  width: 100%;
  border: 0;
  color: #202124;
  font-size: clamp(20px, 2vw, 28px);
  outline: none;
}

.support-search input::placeholder {
  color: #8d8e95;
}

.support-results {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px auto 0;
  text-align: left;
}

.support-result {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
}

.support-result strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.support-result span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.45;
}

.support-note {
  width: min(760px, 100%);
  margin: 26px auto 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  line-height: 1.5;
}

.contact-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 96px;
  text-align: center;
}

.contact-main {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 234, 211, 0.72), transparent 34%),
    var(--paper);
}

.contact-main + .site-footer {
  background: var(--paper);
}

.contact-card {
  width: min(660px, 100%);
  margin: 44px auto 34px;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid rgba(158, 59, 59, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 26px 78px rgba(158, 59, 59, 0.12);
}

.contact-card h2 {
  margin-bottom: 24px;
  font-size: clamp(20px, 2.4vw, 29px);
}

.contact-card p {
  color: var(--muted);
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.52;
  font-weight: 600;
}

.contact-card a {
  color: var(--wine);
  font-weight: 700;
}

.copyright {
  max-width: 720px;
  margin: 0 auto;
  color: var(--soft);
  font-size: clamp(7px, 0.65vw, 9px);
  line-height: 1.42;
  font-weight: 500;
}

.buy-page,
.checkout-page {
  background: #f8f8fb;
}

.buy-main {
  padding: 84px max(22px, calc((100vw - 1440px) / 2)) 48px;
}

.buy-shell {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 420px);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.buy-gallery {
  position: sticky;
  top: 74px;
}

.buy-product-card {
  min-height: calc(100vh - 156px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 26px;
  background: #f1f1f5;
}

.buy-device {
  --device: #d25353;
  --device-dark: #9e3b3b;
  position: relative;
  width: min(48vw, 430px);
  aspect-ratio: 1 / 1;
  border-radius: 21%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 32%),
    var(--device);
  box-shadow:
    inset -22px -24px 48px rgba(0, 0, 0, 0.2),
    inset 18px 18px 34px rgba(255, 255, 255, 0.18),
    0 42px 88px rgba(44, 24, 24, 0.22);
}

.buy-device.white {
  --device: #f8f5ef;
  --device-dark: #ded7cd;
}

.buy-device.black {
  --device: #171619;
  --device-dark: #050505;
}

.device-light {
  position: absolute;
  top: 21%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 13px currentColor;
}

.red-light {
  left: 39%;
  color: #ff6d61;
  background: currentColor;
}

.green-light {
  right: 39%;
  color: #8dff9e;
  background: currentColor;
}

.device-camera {
  position: absolute;
  inset: 41% auto auto 50%;
  width: 58px;
  height: 58px;
  border: 8px solid rgba(0, 0, 0, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, #334 0 12%, #060608 13% 54%, #202022 55%);
  transform: translateX(-50%);
}

.device-shadow {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -12%;
  height: 22%;
  border-radius: 50%;
  background: rgba(44, 24, 24, 0.16);
  filter: blur(16px);
}

.buy-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.buy-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aaa;
}

.buy-dots span.active {
  background: #222;
}

.buy-panel {
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  padding: 120px 4px 44px;
  scrollbar-width: none;
}

.buy-panel::-webkit-scrollbar {
  display: none;
}

.buy-panel h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 54px);
}

.buy-lede {
  color: #777982;
  font-size: 19px;
  line-height: 1.45;
}

.buy-option-group {
  margin-top: 56px;
}

.buy-option-group h2 {
  margin-bottom: 22px;
  color: #1d1d1f;
  font-size: clamp(26px, 2.6vw, 36px);
}

.buy-option-group h2 span {
  color: #8c8d94;
}

.buy-label {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
}

.color-picker {
  display: flex;
  gap: 17px;
}

.color-picker button {
  width: 36px;
  height: 36px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.color-picker button:nth-child(2) {
  background: #f8f5ef;
}

.color-picker button:nth-child(3) {
  background: #171619;
}

.color-picker button.active {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(210, 83, 83, 0.14), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.buy-choice {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  margin-bottom: 16px;
  border: 1.5px solid #9a9aa0;
  border-radius: 16px;
  padding: 22px;
  background: var(--white);
  cursor: pointer;
}

.buy-choice.active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(210, 83, 83, 0.12);
}

.buy-choice input {
  position: absolute;
  opacity: 0;
}

.buy-choice strong {
  font-size: 22px;
}

.buy-choice span {
  color: #55565c;
}

.buy-choice b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  font-size: 20px;
}

.buy-feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buy-feature-list li {
  border-radius: 16px;
  padding: 15px 17px;
  color: #3f3432;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.box-preview {
  padding-bottom: 12px;
}

.box-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.box-items div {
  display: grid;
  place-items: center;
  min-height: 140px;
  border-radius: 18px;
  background: #f1f1f5;
  text-align: center;
}

.box-items p {
  margin: 10px 8px 0;
  color: #55565c;
  font-size: 12px;
  font-weight: 700;
}

.mini-device,
.mini-mount,
.mini-cable {
  display: block;
  width: 54px;
  height: 54px;
}

.mini-device {
  border-radius: 18px;
  background: var(--red);
}

.mini-mount {
  border: 8px solid #d8d8dd;
  border-radius: 50%;
}

.mini-cable {
  width: 10px;
  height: 64px;
  border-radius: 999px;
  background: #d8d8dd;
}

.buy-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  margin-top: 34px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--wine));
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(210, 83, 83, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.buy-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(210, 83, 83, 0.28);
}

.checkout-note {
  color: #777982;
  font-size: 13px;
  line-height: 1.45;
}

.checkout-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 90px 22px 48px;
}

.checkout-demo {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 34px;
  align-items: start;
}

.checkout-demo h1 {
  font-size: clamp(38px, 5vw, 70px);
}

.checkout-demo p {
  color: #777982;
  font-size: 20px;
  line-height: 1.45;
}

.checkout-form {
  display: grid;
  gap: 12px;
  border-radius: 24px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-form label {
  color: #3f3432;
  font-size: 13px;
  font-weight: 800;
}

.checkout-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d8dd;
  border-radius: 12px;
  padding: 0 13px;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--wine));
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(210, 83, 83, 0.2);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 16px;
  }

  .nav-links {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 16px 10px;
    border-bottom: 1px solid rgba(158, 59, 59, 0.1);
    background: rgba(255, 246, 236, 0.9);
    backdrop-filter: saturate(180%) blur(18px);
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    border: 1px solid rgba(158, 59, 59, 0.12);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
  }

  .hero-content {
    padding-top: 132px;
  }

  .hero-image {
    height: 100%;
    object-position: 26% bottom;
  }

  .product-grid,
  .reviews-grid,
  .buy-section,
  .app-preview {
    grid-template-columns: 1fr;
  }

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

  .feature-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .check-list {
    width: min(430px, 100%);
    margin-inline: auto;
    text-align: left;
  }

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

  .inside-visual {
    min-height: 720px;
  }

  .community-layout {
    grid-template-columns: 1fr;
  }

  .support-search-panel {
    width: min(100% - 32px, 920px);
  }

  .subpage-main,
  .support-main {
    padding-top: 88px;
  }

  .buy-shell,
  .checkout-demo {
    grid-template-columns: 1fr;
  }

  .buy-gallery {
    position: relative;
    top: auto;
  }

  .buy-product-card {
    min-height: 520px;
  }

  .buy-device {
    width: min(72vw, 360px);
  }

  .buy-panel {
    max-height: none;
    overflow: visible;
    padding-top: 24px;
  }

.contact-main .contact-card {
  max-width: 620px;
  margin-inline: auto;
}
}

.onboarding-page,
.dashboard-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 234, 211, 0.95), rgba(255, 246, 236, 0.65) 36%, rgba(255, 246, 236, 0) 68%),
    var(--paper);
}

.onboarding-flow {
  min-height: 100vh;
  padding-top: 44px;
}

.onboarding-screen {
  display: none;
  min-height: calc(100vh - 44px);
  padding: 52px 22px;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.onboarding-screen.active {
  display: grid;
}

.onboarding-film {
  position: absolute;
  inset: auto 0 8%;
  overflow: hidden;
  opacity: 0.64;
  pointer-events: none;
}

.onboarding-strip {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: onboarding-drift 20s ease-in-out infinite alternate;
}

.onboarding-card {
  width: 240px;
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid rgba(158, 59, 59, 0.12);
  box-shadow: 0 26px 70px rgba(158, 59, 59, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 234, 211, 0.68)),
    url("assets/bowl-monitor-hero.png") center / cover;
}

.onboarding-card.photo-two {
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.86), rgba(234, 123, 123, 0.18)),
    url("assets/real-product-render.png") center / contain no-repeat,
    var(--cream);
}

.onboarding-card.photo-three {
  background:
    linear-gradient(145deg, rgba(255, 246, 236, 0.8), rgba(255, 255, 255, 0.62)),
    url("assets/sniffkitty-core-exploded.png") center / contain no-repeat,
    var(--white);
}

.onboarding-card.photo-four {
  background:
    linear-gradient(145deg, rgba(255, 234, 211, 0.62), rgba(255, 246, 236, 0.74)),
    url("assets/pawpulse-hero.png") center / cover;
}

@keyframes onboarding-drift {
  from {
    transform: translateX(12vw);
  }

  to {
    transform: translateX(-26vw);
  }
}

.onboarding-panel {
  width: min(460px, 100%);
  position: relative;
  z-index: 1;
  padding: 36px;
  border: 1px solid rgba(158, 59, 59, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(22px);
}

.onboarding-panel h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 68px);
}

.onboarding-panel p:not(.eyebrow):not(.form-note) {
  margin-inline: auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.form-panel {
  text-align: left;
}

.form-panel h1,
.form-panel > p,
.form-panel .eyebrow,
.welcome-panel {
  text-align: center;
}

.pet-preview {
  display: block;
  width: 108px;
  height: 108px;
  margin: 18px auto 24px;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(158, 59, 59, 0.14);
  box-shadow: 0 16px 42px rgba(158, 59, 59, 0.16);
}

.form-panel label {
  display: block;
  margin: 16px 0 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.form-panel input {
  width: 100%;
  border: 1px solid rgba(158, 59, 59, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.82);
  outline: none;
}

.form-panel input:focus {
  border-color: rgba(210, 83, 83, 0.62);
  box-shadow: 0 0 0 4px rgba(234, 123, 123, 0.13);
}

.form-note {
  margin: 12px 0 18px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.45;
}

.dashboard-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 60px;
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}

.dashboard-profile {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dashboard-profile img {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(158, 59, 59, 0.13);
  box-shadow: 0 16px 38px rgba(158, 59, 59, 0.14);
}

.dashboard-profile h1 {
  max-width: none;
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 56px);
}

.dashboard-profile p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.62fr);
  gap: 20px;
  align-items: start;
}

.dashboard-main,
.dashboard-side {
  display: grid;
  gap: 18px;
}

.dash-card {
  border: 1px solid rgba(158, 59, 59, 0.12);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 62px rgba(158, 59, 59, 0.1);
  backdrop-filter: blur(18px);
}

.dash-card > span,
.dash-card-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
}

.dash-card h2,
.dash-card-head h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
}

.dash-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.dash-pill {
  min-width: 92px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--wine);
  background: var(--cream);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.camera-box {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 360px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 44%, rgba(158, 59, 59, 0.26), rgba(44, 24, 24, 0.92) 64%),
    #241313;
}

.camera-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.stream-placeholder {
  position: relative;
  z-index: 0;
  color: rgba(255, 246, 236, 0.64);
  font-size: 14px;
  font-weight: 600;
}

.has-stream .stream-placeholder {
  display: none;
}

.ai-box {
  display: none;
  position: absolute;
  z-index: 2;
  border: 2px solid var(--peach);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 246, 236, 0.7), 0 0 22px rgba(234, 123, 123, 0.42);
  pointer-events: none;
}

.ai-label {
  position: absolute;
  left: -2px;
  top: -30px;
  border-radius: 10px 10px 10px 0;
  padding: 6px 9px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.ai-corner {
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: var(--white);
  border-style: solid;
}

.ai-corner.tl {
  left: -4px;
  top: -4px;
  border-width: 2px 0 0 2px;
}

.ai-corner.tr {
  right: -4px;
  top: -4px;
  border-width: 2px 2px 0 0;
}

.ai-corner.bl {
  left: -4px;
  bottom: -4px;
  border-width: 0 0 2px 2px;
}

.ai-corner.br {
  right: -4px;
  bottom: -4px;
  border-width: 0 2px 2px 0;
}

#trendCanvas {
  display: block;
  width: 100%;
  min-height: 260px;
  border-radius: 18px;
  border: 1px solid rgba(158, 59, 59, 0.08);
  background: #fffaf4;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chart-legend i {
  width: 18px;
  height: 4px;
  border-radius: 999px;
}

.dashboard-metrics {
  margin-top: 0;
}

.dashboard-metrics .metric {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(158, 59, 59, 0.11);
  box-shadow: 0 16px 40px rgba(158, 59, 59, 0.08);
}

.dashboard-metrics .metric-value {
  color: var(--ink);
}

.alert {
  border-left: 6px solid rgba(118, 91, 87, 0.18);
}

.summary-normal {
  border-left-color: rgba(139, 152, 118, 0.72);
}

.summary-slight {
  border-left-color: rgba(221, 174, 82, 0.9);
  background: rgba(255, 250, 230, 0.8);
}

.summary-medium {
  border-left-color: var(--red);
  background: rgba(255, 240, 232, 0.86);
}

.summary-strong {
  border-left-color: var(--wine);
  background: rgba(255, 232, 232, 0.9);
}

.read-list {
  display: grid;
  gap: 12px;
}

.read-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.read-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: #8b9876;
  box-shadow: 0 0 0 5px rgba(139, 152, 118, 0.12);
}

.read-row.slight .read-dot {
  background: #ddae52;
  box-shadow: 0 0 0 5px rgba(221, 174, 82, 0.16);
}

.read-row.medium .read-dot {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(210, 83, 83, 0.14);
}

.read-row.strong .read-dot {
  background: var(--wine);
  box-shadow: 0 0 0 5px rgba(158, 59, 59, 0.18);
}

.small-guide {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

@media (max-width: 920px) {
  .dashboard-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .camera-box {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .onboarding-flow {
    padding-top: 118px;
  }

  .onboarding-screen {
    min-height: calc(100vh - 118px);
    padding: 34px 14px;
  }

  .onboarding-film {
    inset: auto 0 4%;
  }

  .onboarding-card {
    width: 176px;
    border-radius: 22px;
  }

  .onboarding-panel {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .onboarding-panel h1 {
    font-size: 42px;
  }

  .onboarding-panel p:not(.eyebrow):not(.form-note) {
    font-size: 16px;
  }

  .dashboard-shell {
    width: calc(100% - 24px);
    padding-top: 150px;
  }

  .dashboard-profile {
    align-items: flex-start;
  }

  .dashboard-profile img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .dashboard-profile h1 {
    font-size: 34px;
  }

  .dash-card {
    padding: 16px;
    border-radius: 20px;
  }

  .dash-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .camera-box {
    min-height: 230px;
  }

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

  #trendCanvas {
    min-height: 220px;
  }
}

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

  [data-reveal],
  [data-reveal-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 46px;
  }

  .brand {
    font-size: 12px;
  }

  .login-trigger {
    min-width: 66px;
    padding-inline: 12px;
  }

  .nav-links {
    left: 0;
    right: 0;
    width: 100vw;
    justify-self: stretch;
    top: 46px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 108px));
    justify-content: start;
    gap: 8px;
    overflow: visible;
    padding: 8px 12px 10px;
  }

  .nav-links a {
    min-width: 0;
    width: 100%;
    max-width: 108px;
    min-height: 32px;
    display: grid;
    place-items: center;
    padding: 7px 8px;
    text-align: center;
    font-size: 10.5px;
    line-height: 1.05;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    width: min(362px, calc(100vw - 28px));
    padding: 156px 0 360px;
  }

  .hero-image {
    inset: auto auto 64px 50% !important;
    width: min(348px, calc(100% - 28px)) !important;
    max-width: none;
    height: 290px !important;
    display: block;
    object-fit: contain !important;
    object-position: center center !important;
    border: 1px solid rgba(158, 59, 59, 0.1);
    border-radius: 30px;
    background:
      radial-gradient(circle at 68% 32%, rgba(234, 123, 123, 0.2), transparent 34%),
      linear-gradient(145deg, rgba(255, 246, 236, 0.62), rgba(255, 234, 211, 0.82));
    box-shadow: 0 26px 70px rgba(158, 59, 59, 0.16);
    transform: translateX(-50%);
  }

  .hero-overlay {
    background:
      radial-gradient(ellipse at 50% 12%, rgba(255, 246, 236, 0.92) 0%, rgba(255, 246, 236, 0.58) 30%, rgba(255, 234, 211, 0.18) 56%, rgba(255, 234, 211, 0) 82%),
      linear-gradient(180deg, rgba(255, 246, 236, 0.76) 0%, rgba(255, 241, 226, 0.46) 30%, rgba(255, 234, 211, 0.14) 58%, rgba(255, 224, 204, 0.04) 100%);
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    max-width: 292px;
    font-size: 16px;
    line-height: 1.36;
    margin-bottom: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: min(318px, 100%);
    margin-inline: auto;
    margin-bottom: 18px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 15px;
  }

  .hero-stats div {
    width: auto;
    min-width: 0;
    padding: 10px 12px;
  }

  .hero-stats dt {
    font-size: 15px;
  }

  .hero-stats dd {
    margin-left: 4px;
    font-size: 11px;
  }

  .trust-strip {
    display: none;
  }

  .section {
    width: calc(100% - 28px);
    padding: 56px 0;
  }

  .product-band,
  .app-preview,
  .buy-section {
    padding-inline: 14px;
  }

  .inside-section {
    min-height: 560px;
    padding-top: 58px;
  }

  .inside-copy h2 {
    font-size: 34px;
  }

  .inside-copy p {
    font-size: 15px;
    line-height: 1.45;
  }

  .inside-visual {
    min-height: 720px;
    margin-top: 32px;
  }

  .inside-back {
    padding: 24px;
  }

  .inside-specs {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .inside-specs article {
    min-height: auto;
    padding-top: 16px;
  }

  .inside-specs h3 {
    min-height: 0;
    margin-bottom: 10px;
  }

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

  .product-grid article,
  .reviews-grid figure,
  .purchase-card {
    padding: 22px;
    border-radius: 20px;
  }

  .phone-shell {
    min-height: 540px;
    border-width: 8px;
    border-radius: 34px;
  }

  .compare-toggle {
    width: 100%;
    justify-content: space-between;
    padding-left: 22px;
    font-size: 19px;
  }

  .compare-details h3 {
    font-size: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .subpage-hero,
  .contact-panel {
    padding-top: 42px;
  }

  .subpage-main,
  .support-main {
    padding-top: 118px;
  }

  .subpage-hero h1,
  .contact-panel h1,
  .support-search-panel h1 {
    font-size: 38px;
  }

  .contact-panel h1 {
    font-size: 23px;
  }

  .contact-panel {
    width: calc(100% - 28px);
    padding-top: 62px;
  }

  .contact-card {
    margin-top: 30px;
    padding: 30px 22px;
  }

  .contact-card h2 {
    font-size: 19px;
  }

  .contact-card p {
    font-size: 12px;
  }

  .copyright {
    font-size: 7px;
  }

  .video-frame {
    border-radius: 18px;
  }

  .explore-page .eyebrow {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .donation-ad {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .donation-ad img {
    min-height: 210px;
    max-height: 260px;
  }

  .donation-ad div {
    padding: 0 22px 24px;
  }

  .community-layout {
    width: calc(100% - 28px);
    padding-bottom: 64px;
  }

  .feed-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .community-composer,
  .community-post,
  .contact-card {
    padding: 22px;
    border-radius: 18px;
  }

  .support-search-panel {
    width: calc(100% - 28px);
    padding-top: 58px;
  }

  .support-search-panel h1 {
    margin-bottom: 42px;
  }

  .support-search {
    min-height: 66px;
    border-radius: 14px;
    padding-inline: 18px;
  }

  .support-search svg {
    width: 26px;
    height: 26px;
  }

  .support-results {
    grid-template-columns: 1fr;
  }

  .buy-main {
    padding-top: 150px;
    padding-inline: 14px;
  }

  .checkout-main {
    padding-top: 150px;
  }

  .buy-product-card {
    min-height: 420px;
    border-radius: 22px;
  }

  .buy-panel h1 {
    font-size: 34px;
  }

  .buy-option-group {
    margin-top: 42px;
  }

  .buy-choice {
    grid-template-columns: 1fr;
  }

  .buy-choice b {
    grid-column: auto;
    grid-row: auto;
  }

  .box-items {
    grid-template-columns: 1fr;
  }

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