:root {
  --background: #0d0d0d;
  --foreground: #f5f5f5;
  --primary: #00ffd4;
  --primary-foreground: #0d0d0d;
  --secondary: #00705d;
  --muted: #b7b7b7;
  --surface: #1e1e1e;
  --surface-raised: #252525;
  --border: #333333;
  --border-subtle: #2a2a2a;
  --ring-accent: rgb(0 255 212 / 0.42);
  --ring-accent-inset: rgb(0 255 212 / 0.18);
  --ring-pill: rgb(0 255 212 / 0.48);
  --max-width: 72rem;
  --radius-card: 1.25rem;
  --radius-btn: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: 'Funnel Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-primary {
  color: var(--primary);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-title--sm {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.section-lead {
  margin: 0.75rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--background);
  padding-top: env(safe-area-inset-top, 0);
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.35);
}

@media (min-width: 768px) {
  .site-header {
    background: color-mix(in srgb, var(--background) 92%, transparent);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: none;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: 10.5rem;
  object-fit: contain;
}

.logo--footer {
  height: 1.75rem;
  opacity: 0.9;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__link {
  display: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 0.5rem;
  transition: color 0.15s;
}

.site-nav__link:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .site-nav__link {
    display: inline-block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

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

.btn--lg {
  min-height: 3.25rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--primary) 88%, white);
}

.btn--ghost {
  min-height: 2.5rem;
  padding: 0 1rem;
  border-color: var(--border);
  background: transparent;
  color: var(--foreground);
  font-size: 0.875rem;
}

.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
  background: rgb(255 255 255 / 0.03);
}

/* Cards */
.card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
}

.card__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.card__subtitle {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: min(50rem, 120vw);
  height: 24rem;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: radial-gradient(circle, rgb(0 255 212 / 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  min-width: 0;
}

.hero__copy {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero__title {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 1.25rem 0 0;
  max-width: min(36rem, 100%);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--muted);
  overflow-wrap: break-word;
}

.hero__actions {
  margin-top: 2rem;
}

.hero__bullets {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero__bullets::-webkit-scrollbar {
  display: none;
}

.hero__bullet {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(0.75rem, 2.8vw, 0.875rem);
  font-weight: 500;
  line-height: 1;
  color: var(--muted);
  white-space: nowrap;
}

.hero__bullet svg,
.hero__bullet i {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--primary);
  stroke-width: 2;
}

@media (min-width: 720px) {
  .hero__bullets {
    gap: 0;
    overflow-x: visible;
  }

  .hero__bullet {
    font-size: 0.875rem;
  }

  .hero__bullet:not(:last-child)::after {
    content: '|';
    margin-left: 1.25rem;
    font-weight: 400;
    color: var(--border);
  }
}

/* lineup.svg 420×860 — video hole tracks inner glass (lineup-screen-clip) */
.hero__visual {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}

.device-mockup {
  --canvas-w: 420;
  --canvas-h: 860;
  --glass-x: 8.38;
  --glass-y: 5.5;
  --glass-w: 403.24;
  --glass-h: 850;
  --glass-rx: 56.69;
  /* ~3px inset inside lineup.svg glass (8.5, 5.5, 410×850) — avoids bezel bleed only */
  --video-w: 404;
  --video-h: 844;
  --video-x: 10;
  --video-y: 8;
  --video-rx: 55;

  margin: 0;
  width: min(315px, 82vw);
}

.device-mockup__stage {
  position: relative;
  aspect-ratio: 420 / 860;
  filter: drop-shadow(0 0 48px rgb(0 255 212 / 0.14)) drop-shadow(0 28px 56px rgb(0 0 0 / 0.55));
}

/* App background behind video, inside frame glass */
.device-mockup__screen-bg {
  position: absolute;
  top: calc(var(--glass-y) / var(--canvas-h) * 100%);
  left: calc(var(--glass-x) / var(--canvas-w) * 100%);
  width: calc(var(--glass-w) / var(--canvas-w) * 100%);
  height: calc(var(--glass-h) / var(--canvas-h) * 100%);
  z-index: 1;
  background: var(--background);
  border-radius: calc(var(--glass-rx) / var(--glass-w) * 100%)
    / calc(var(--glass-rx) / var(--glass-h) * 100%);
}

.device-mockup__screen {
  position: absolute;
  top: calc(var(--video-y) / var(--canvas-h) * 100%);
  left: calc(var(--video-x) / var(--canvas-w) * 100%);
  width: calc(var(--video-w) / var(--canvas-w) * 100%);
  height: calc(var(--video-h) / var(--canvas-h) * 100%);
  z-index: 2;
  pointer-events: none;
}

.device-mockup__clip {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: auto;
  isolation: isolate;
  contain: paint;
  transform: translateZ(0);
  background: var(--background);
  border-radius: calc(var(--video-rx) / var(--video-w) * 100%)
    / calc(var(--video-rx) / var(--video-h) * 100%);
}

/* Thin inner ring — hides sub-pixel bleed at rounded corners only */
.device-mockup__clip::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 2px solid var(--background);
  border-radius: inherit;
  box-sizing: border-box;
  pointer-events: none;
}

.device-mockup__video {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  object-position: center center;
  background: var(--background);
  transform: scale(var(--hero-video-scale, 0.95));
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.device-mockup__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.25rem;
  text-align: center;
  background: var(--background);
  transition: opacity 0.35s ease;
}

.device-mockup__placeholder svg {
  width: 55%;
  max-width: 10rem;
  opacity: 0.85;
}

.device-mockup__placeholder p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
}

.device-mockup__placeholder code {
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-size: 0.6875rem;
  background: var(--surface);
  color: var(--primary);
}

.device-mockup__placeholder.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.device-mockup__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

/* Paths */
.paths {
  border-top: 1px solid var(--border-subtle);
}

.paths__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .paths__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.path-card__icon {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--foreground);
}

.path-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.75;
}

.path-card__icon img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.path-card__illustration {
  display: flex;
  align-items: flex-start;
  min-height: 4rem;
  margin-bottom: 1rem;
}

.path-card__illustration--compact {
  min-height: 4rem;
}

.path-card__svg-icon {
  display: block;
  width: 3.3rem;
  height: auto;
  object-fit: contain;
  /* Force uploaded monochrome SVGs to app cyan */
  filter: brightness(0) saturate(100%) invert(80%) sepia(84%) saturate(1798%) hue-rotate(112deg)
    brightness(106%) contrast(106%);
}

.path-card__svg-icon--large {
  width: 4rem;
}

.path-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Features */
.features {
  background: linear-gradient(180deg, transparent, rgb(0 255 212 / 0.02), transparent);
}

.features-zigzag {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-zigzag__item {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.feature-zigzag__visual {
  min-height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.feature-zigzag__copy {
  padding: 1.25rem 1.5rem 1.5rem;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-height: 0;
  height: auto;
}

.feature-zigzag__copy .card__title {
  color: var(--foreground);
}

.feature-copy-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9999px;
  border: 1px solid var(--ring-accent);
  background: rgb(13 13 13 / 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  box-shadow:
    inset 0 0 0 1px var(--ring-accent-inset),
    0 0 0 1px rgb(0 255 212 / 0.12),
    0 10px 22px -18px rgb(0 255 212 / 0.55);
}

.feature-copy-icon img {
  display: none;
}

.feature-copy-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--primary);
  stroke-width: 2;
}

@media (min-width: 900px) {
  .feature-zigzag__item {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 23rem;
  }

  .feature-zigzag__item .feature-zigzag__visual {
    border-bottom: 0;
    border-right: 1px solid var(--border);
    min-height: 23rem;
  }

  .feature-zigzag__copy {
    min-height: 23rem;
  }

  .feature-zigzag__item--right .feature-zigzag__visual {
    order: 2;
    border-right: 0;
    border-left: 1px solid var(--border);
  }
}

@media (max-width: 899px) {
  .feature-zigzag__item {
    grid-template-rows: auto auto;
  }

  .feature-zigzag__item--right .feature-zigzag__visual {
    order: 0;
  }

  .feature-zigzag__item--right .feature-zigzag__copy {
    order: 0;
  }
}

.mock-templates-loop {
  position: relative;
  width: 18rem;
  height: 18rem;
  max-width: 100%;
  max-height: 100%;
}

.mock-template-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(4px) scale(0.98);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.mock-template-item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mock-template-item svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}

.mock-template-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mock-template-item text {
  fill: var(--primary);
  font-size: 11px;
  font-weight: 600;
  font-family: 'Funnel Sans', ui-sans-serif, system-ui, sans-serif;
  text-anchor: middle;
  dominant-baseline: middle;
  letter-spacing: 0;
  paint-order: stroke fill;
  stroke: color-mix(in srgb, var(--background) 55%, transparent);
  stroke-width: 0.45px;
  stroke-linejoin: round;
}

.mock-template-item > span {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--primary);
  background: color-mix(in srgb, var(--background) 72%, transparent);
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
}

.mock-template-item--more {
  gap: 0;
}

.mock-template-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.38rem 0.7rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--background) 72%, transparent);
}

.mock-template-more__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 45%, transparent);
}

.mock-template-more__text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.mock-template-item--more.is-active .mock-template-more__dot {
  animation: dot-blink 0.5s ease-in-out 4;
}

@keyframes dot-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.75);
  }
}

.mock-canvas {
  position: relative;
  width: 18rem;
  height: 18rem;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--background);
  overflow: hidden;
}

.mock-canvas__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.6;
}

.mock-canvas__line {
  position: relative;
  width: 100%;
  height: 100%;
}

.mock-canvas__seg {
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.mock-canvas__seg--1 {
  animation-name: seg-draw-1;
}

.mock-canvas__seg--2 {
  animation-name: seg-draw-2;
}

.mock-canvas__seg--3 {
  animation-name: seg-draw-3;
}

.mock-canvas__seg--4 {
  animation-name: seg-draw-4;
}

.mock-canvas__point {
  fill: var(--background);
  stroke: var(--primary);
  stroke-width: 2;
  opacity: 0;
  transform-origin: center;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.mock-canvas__point--1 {
  animation-name: point-pop-1;
}

.mock-canvas__point--2 {
  animation-name: point-pop-2;
}

.mock-canvas__point--3 {
  animation-name: point-pop-3;
}

.mock-canvas__point--4 {
  animation-name: point-pop-4;
}

.mock-canvas__point--5 {
  animation-name: point-pop-5;
  fill: var(--primary);
}

.mock-canvas__cursor {
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: cursor-move 10s linear infinite;
}

.mock-canvas__cursor-core {
  position: absolute;
  inset: 0.15rem;
  border-radius: 9999px;
  background: var(--primary);
}

.mock-canvas__cursor-ring {
  position: absolute;
  inset: -0.15rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--primary) 65%, transparent);
  animation: cursor-click 10s linear infinite;
}

@keyframes seg-draw-1 {
  0%,
  26% {
    stroke-dashoffset: 160;
  }
  34%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes seg-draw-2 {
  0%,
  40% {
    stroke-dashoffset: 160;
  }
  48%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes seg-draw-3 {
  0%,
  54% {
    stroke-dashoffset: 160;
  }
  62%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes seg-draw-4 {
  0%,
  68% {
    stroke-dashoffset: 160;
  }
  76%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes point-pop-1 {
  0%,
  11% {
    opacity: 0;
    transform: scale(0.4);
  }
  14%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes point-pop-2 {
  0%,
  25% {
    opacity: 0;
    transform: scale(0.4);
  }
  28%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes point-pop-3 {
  0%,
  39% {
    opacity: 0;
    transform: scale(0.4);
  }
  42%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes point-pop-4 {
  0%,
  53% {
    opacity: 0;
    transform: scale(0.4);
  }
  56%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes point-pop-5 {
  0%,
  67% {
    opacity: 0;
    transform: scale(0.4);
  }
  70%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cursor-move {
  0%,
  8% {
    left: 40%;
    top: 87.27%;
  }
  22% {
    left: 26.36%;
    top: 73.64%;
  }
  36% {
    left: 26.36%;
    top: 26.36%;
  }
  50% {
    left: 67.27%;
    top: 26.36%;
  }
  64% {
    left: 80.9%;
    top: 40%;
  }
  100% {
    left: 80.9%;
    top: 40%;
  }
}

@keyframes cursor-click {
  0%,
  11%,
  25%,
  39%,
  53%,
  67%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  13%,
  27%,
  41%,
  55%,
  69% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.mock-favourites {
  width: 18rem;
  height: 18rem;
  max-width: 100%;
  max-height: 100%;
  padding: 0.2rem 0;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.mock-favourites__track {
  display: flex;
  flex-direction: column;
  animation: favourites-scroll 18s linear infinite;
}

.mock-favourites__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  margin-bottom: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--background);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.mock-favourites__star {
  color: var(--primary);
  font-size: 0.875rem;
}

.mock-favourites__name {
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes favourites-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.feature-placeholder {
  width: 100%;
  max-width: 18rem;
  min-height: 18rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  gap: 0.75rem;
}

.feature-placeholder__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--primary) 45%, var(--border));
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-placeholder__badge--whatsapp {
  color: #25d366;
  border-color: color-mix(in srgb, #25d366 45%, var(--border));
}

.feature-placeholder h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--foreground);
}

.feature-placeholder p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.shop-sheet-preview {
  width: 100%;
  max-width: 21rem;
  min-height: 18rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--background) 92%, white 8%),
    color-mix(in srgb, var(--background) 98%, black 2%)
  );
  padding: 0.95rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.7rem;
}

.shop-sheet-preview__head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.shop-sheet-preview__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--primary) 45%, var(--border));
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.shop-sheet-preview__title {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.shop-sheet-preview__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.shop-sheet-preview__metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 0.45rem;
  background: color-mix(in srgb, var(--background) 80%, transparent);
  padding: 0.35rem 0.4rem;
  min-height: 2.35rem;
}

.shop-sheet-preview__metric-key {
  font-size: 0.62rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--foreground);
}

.shop-sheet-preview__metric-value {
  font-size: 0.62rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--muted);
}

.shop-sheet-preview__drawing {
  border: 1px dashed color-mix(in srgb, var(--primary) 28%, var(--border));
  border-radius: 0.62rem;
  background:
    linear-gradient(transparent 95%, rgb(0 255 212 / 0.08) 96%),
    linear-gradient(90deg, transparent 95%, rgb(0 255 212 / 0.08) 96%);
  background-size: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.shop-sheet-preview__drawing img {
  width: min(12.5rem, 100%);
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(84%) saturate(1798%) hue-rotate(112deg)
    brightness(106%) contrast(106%);
}

/* WhatsApp share animation demo */
.mock-whatsapp {
  --wa-cycle: 12s;
  --wa-green: #25d366;
  --wa-green-glow: rgb(37 211 102 / 0.35);
  position: relative;
  width: 18rem;
  height: 18rem;
  max-width: 100%;
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border));
  border-radius: 1rem;
  background:
    radial-gradient(120% 80% at 50% 0%, rgb(0 255 212 / 0.08), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 40%, var(--background)), var(--background));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.04),
    0 18px 40px -28px rgb(0 0 0 / 0.85);
  overflow: hidden;
  isolation: isolate;
}

.mock-whatsapp__glow {
  position: absolute;
  inset: -30% -20% auto;
  height: 55%;
  background: radial-gradient(ellipse at center, rgb(0 255 212 / 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mock-whatsapp__viewport {
  position: relative;
  height: calc(100% - 2.35rem);
  z-index: 1;
}

.mock-whatsapp__scene {
  position: absolute;
  inset: 0;
  padding: 0.85rem 0.8rem 0.35rem;
  opacity: 0;
  pointer-events: none;
}

.mock-whatsapp__scene--export {
  animation: wa-scene-export var(--wa-cycle) linear infinite;
}

.mock-whatsapp__scene--picker {
  animation: wa-scene-picker var(--wa-cycle) linear infinite;
}

.mock-whatsapp__scene--sent {
  display: flex;
  flex-direction: column;
  animation: wa-scene-sent var(--wa-cycle) linear infinite;
}

.mock-whatsapp__app {
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--border));
  border-radius: 1rem;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--surface-raised) 88%, transparent), transparent),
    color-mix(in srgb, var(--surface) 55%, var(--background));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.85rem;
}

.mock-whatsapp__app-preview {
  width: 8rem;
  height: 5.75rem;
  border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border));
  border-radius: 0.85rem;
  background:
    linear-gradient(transparent 95%, rgb(0 255 212 / 0.06) 96%),
    linear-gradient(90deg, transparent 95%, rgb(0 255 212 / 0.06) 96%);
  background-size: 0.85rem 0.85rem;
  box-shadow:
    inset 0 0 0 1px rgb(0 255 212 / 0.06),
    0 10px 24px -18px rgb(0 255 212 / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
}

.mock-whatsapp__app-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(84%) saturate(1798%) hue-rotate(112deg)
    brightness(106%) contrast(106%);
}

.mock-whatsapp__export {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 7rem;
  padding: 0.48rem 0.95rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--primary) 50%, var(--border));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--primary) 22%, var(--background)),
    color-mix(in srgb, var(--primary) 8%, var(--background))
  );
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px -16px rgb(0 255 212 / 0.55);
  animation: wa-export-pulse var(--wa-cycle) linear infinite;
}

.mock-whatsapp__export svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 2.25;
}

.mock-whatsapp__tap {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  left: 50%;
  top: 72%;
  border-radius: 9999px;
  border: 2px solid var(--primary);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  animation: wa-tap-ring var(--wa-cycle) linear infinite;
}

.mock-whatsapp__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.45);
  opacity: 0;
  animation: wa-backdrop-fade var(--wa-cycle) linear infinite;
}

.mock-whatsapp__picker {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  border: 1px solid color-mix(in srgb, var(--foreground) 8%, var(--border));
  border-bottom: 0;
  border-radius: 1.15rem 1.15rem 0 0;
  background: color-mix(in srgb, var(--surface-raised) 92%, transparent);
  backdrop-filter: blur(14px);
  padding: 0.5rem 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow:
    0 -8px 32px -12px rgb(0 0 0 / 0.65),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  animation: wa-picker-rise var(--wa-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.mock-whatsapp__picker-handle {
  display: block;
  width: 2.1rem;
  height: 0.22rem;
  margin: 0.15rem auto 0.35rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--muted) 55%, transparent);
}

.mock-whatsapp__picker-title {
  margin: 0 0 0.2rem;
  padding: 0 0.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.mock-whatsapp__picker-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.6rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  color: var(--muted);
  transition: background 0.2s ease;
}

.mock-whatsapp__picker-label {
  flex: 1;
  font-weight: 600;
}

.mock-whatsapp__picker-chip {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.14rem 0.38rem;
  border-radius: 9999px;
  color: var(--wa-green);
  border: 1px solid color-mix(in srgb, var(--wa-green) 45%, transparent);
  background: color-mix(in srgb, var(--wa-green) 12%, transparent);
  opacity: 0;
  animation: wa-chip-pop var(--wa-cycle) linear infinite;
}

.mock-whatsapp__picker-row--wa {
  color: var(--foreground);
  animation: wa-picker-highlight var(--wa-cycle) linear infinite;
}

.mock-whatsapp__picker-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -10px rgb(0 0 0 / 0.8);
}

.mock-whatsapp__picker-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.25;
}

.mock-whatsapp__picker-icon--mail {
  background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
  color: #c8c8c8;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.mock-whatsapp__picker-icon--wa {
  background: linear-gradient(180deg, #2dde6a, #1da851);
  color: #fff;
  border: 1px solid color-mix(in srgb, #fff 18%, transparent);
}

.mock-whatsapp__chat-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-color: #0b141a;
  background-image: radial-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 14px 14px;
}

.mock-whatsapp__chat-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.mock-whatsapp__avatar {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2dde6a, #128c7e);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2px rgb(37 211 102 / 0.2);
}

.mock-whatsapp__chat-title {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e9edef;
  letter-spacing: -0.01em;
}

.mock-whatsapp__bubble {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: min(100%, 12.75rem);
  border-radius: 0.75rem 0.75rem 0.15rem 0.75rem;
  background: linear-gradient(180deg, #0a7f66, #005c4b);
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateY(0.65rem) scale(0.94);
  opacity: 0;
  box-shadow:
    0 12px 28px -18px rgb(0 0 0 / 0.9),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
  animation: wa-bubble-in var(--wa-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.mock-whatsapp__bubble-file {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.35rem;
  border-radius: 0.55rem;
  background: rgb(0 0 0 / 0.2);
  border: 1px solid rgb(255 255 255 / 0.06);
}

.mock-whatsapp__bubble-badge {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, #2dde6a, #1da851);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px -8px rgb(0 0 0 / 0.6);
}

.mock-whatsapp__bubble-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.mock-whatsapp__bubble-copy strong {
  font-size: 0.6rem;
  line-height: 1.2;
  color: #e9edef;
  font-weight: 600;
}

.mock-whatsapp__bubble-copy small {
  font-size: 0.52rem;
  color: rgb(233 237 239 / 0.62);
}

.mock-whatsapp__bubble-thumb {
  border-radius: 0.5rem;
  background: rgb(0 0 0 / 0.28);
  border: 1px solid rgb(255 255 255 / 0.05);
  padding: 0.3rem;
  display: flex;
  justify-content: center;
}

.mock-whatsapp__bubble-thumb img {
  width: min(7.5rem, 100%);
  height: auto;
  max-height: 3.6rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(84%) saturate(1798%) hue-rotate(112deg)
    brightness(106%) contrast(106%);
}

.mock-whatsapp__bubble-meta {
  align-self: flex-end;
  font-size: 0.52rem;
  color: rgb(233 237 239 / 0.55);
}

.mock-whatsapp__ticks {
  color: #53bdeb;
  animation: wa-ticks-pop var(--wa-cycle) linear infinite;
}

.mock-whatsapp__steps {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.5rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--background) 72%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.mock-whatsapp__step {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-size: 0.56rem;
  line-height: 1;
  padding: 0.28rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  opacity: 0.5;
  font-weight: 600;
}

.mock-whatsapp__step svg {
  width: 0.68rem;
  height: 0.68rem;
  stroke-width: 2.25;
  opacity: 0.85;
}

.mock-whatsapp__step--1 {
  animation: wa-step-1 var(--wa-cycle) linear infinite;
}

.mock-whatsapp__step--2 {
  animation: wa-step-2 var(--wa-cycle) linear infinite;
}

.mock-whatsapp__step--3 {
  animation: wa-step-3 var(--wa-cycle) linear infinite;
}

@keyframes wa-scene-export {
  0%,
  4% {
    opacity: 0;
  }
  8%,
  30% {
    opacity: 1;
  }
  36%,
  100% {
    opacity: 0;
  }
}

@keyframes wa-scene-picker {
  0%,
  30% {
    opacity: 0;
  }
  36%,
  62% {
    opacity: 1;
  }
  68%,
  100% {
    opacity: 0;
  }
}

@keyframes wa-scene-sent {
  0%,
  62% {
    opacity: 0;
  }
  68%,
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes wa-backdrop-fade {
  0%,
  30% {
    opacity: 0;
  }
  36%,
  62% {
    opacity: 1;
  }
  68%,
  100% {
    opacity: 0;
  }
}

@keyframes wa-chip-pop {
  0%,
  42% {
    opacity: 0;
    transform: translateX(4px);
  }
  48%,
  58% {
    opacity: 1;
    transform: translateX(0);
  }
  62%,
  100% {
    opacity: 0;
    transform: translateX(4px);
  }
}

@keyframes wa-export-pulse {
  0%,
  12% {
    box-shadow: 0 10px 22px -16px rgb(0 255 212 / 0.55);
    transform: scale(1);
  }
  16%,
  24% {
    box-shadow:
      0 10px 22px -16px rgb(0 255 212 / 0.55),
      0 0 0 4px color-mix(in srgb, var(--primary) 28%, transparent);
    transform: scale(1.04);
  }
  28%,
  100% {
    box-shadow: 0 10px 22px -16px rgb(0 255 212 / 0.55);
    transform: scale(1);
  }
}

@keyframes wa-tap-ring {
  0%,
  14% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  24%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

@keyframes wa-picker-rise {
  0%,
  32% {
    transform: translateY(1.1rem);
  }
  38%,
  62% {
    transform: translateY(0);
  }
  68%,
  100% {
    transform: translateY(1.1rem);
  }
}

@keyframes wa-picker-highlight {
  0%,
  38% {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }
  42%,
  58% {
    border-color: color-mix(in srgb, var(--wa-green) 55%, var(--border));
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--wa-green) 16%, transparent),
      color-mix(in srgb, var(--wa-green) 6%, transparent)
    );
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--wa-green) 20%, transparent),
      0 10px 24px -16px var(--wa-green-glow);
  }
  62%,
  100% {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }
}

@keyframes wa-bubble-in {
  0%,
  66% {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.92);
  }
  72%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-0.2rem) scale(0.98);
  }
}

@keyframes wa-ticks-pop {
  0%,
  78% {
    opacity: 0;
    transform: scale(0.6);
  }
  82%,
  96% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}

@keyframes wa-step-1 {
  0%,
  8% {
    opacity: 1;
    color: var(--primary);
    background: color-mix(in srgb, var(--primary) 14%, transparent);
    border-color: color-mix(in srgb, var(--primary) 35%, transparent);
    box-shadow: 0 8px 18px -14px rgb(0 255 212 / 0.45);
  }
  30%,
  100% {
    opacity: 0.5;
    color: var(--muted);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
}

@keyframes wa-step-2 {
  0%,
  34% {
    opacity: 0.5;
    background: transparent;
    box-shadow: none;
  }
  38%,
  62% {
    opacity: 1;
    color: var(--wa-green);
    background: color-mix(in srgb, var(--wa-green) 14%, transparent);
    border-color: color-mix(in srgb, var(--wa-green) 40%, transparent);
    box-shadow: 0 8px 18px -14px var(--wa-green-glow);
  }
  66%,
  100% {
    opacity: 0.5;
    color: var(--muted);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
}

@keyframes wa-step-3 {
  0%,
  66% {
    opacity: 0.5;
    background: transparent;
    box-shadow: none;
  }
  70%,
  96% {
    opacity: 1;
    color: #53bdeb;
    background: color-mix(in srgb, #53bdeb 12%, transparent);
    border-color: color-mix(in srgb, #53bdeb 40%, transparent);
    box-shadow: 0 8px 18px -14px rgb(83 189 235 / 0.35);
  }
  100% {
    opacity: 0.5;
    background: transparent;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mock-whatsapp__scene,
  .mock-whatsapp__export,
  .mock-whatsapp__tap,
  .mock-whatsapp__backdrop,
  .mock-whatsapp__picker,
  .mock-whatsapp__picker-row--wa,
  .mock-whatsapp__picker-chip,
  .mock-whatsapp__bubble,
  .mock-whatsapp__ticks,
  .mock-whatsapp__step {
    animation: none !important;
  }

  .mock-whatsapp__backdrop {
    opacity: 0;
  }

  .mock-whatsapp__picker-chip {
    opacity: 1;
    transform: none;
  }

  .mock-whatsapp__scene--export,
  .mock-whatsapp__scene--picker {
    display: none;
  }

  .mock-whatsapp__scene--sent {
    opacity: 1;
  }

  .mock-whatsapp__bubble {
    opacity: 1;
    transform: none;
  }

  .mock-whatsapp__ticks {
    opacity: 1;
    transform: none;
  }

  .mock-whatsapp__step {
    opacity: 0.45;
  }

  .mock-whatsapp__step--3 {
    opacity: 1;
    color: #53bdeb;
    border-color: color-mix(in srgb, #53bdeb 45%, var(--border));
  }
}

@media (max-width: 520px) {
  .shop-sheet-preview__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Output */
.output__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .output__grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 25%, transparent);
}

.blueprint-sheet {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.35);
}

.blueprint-sheet__stripe {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-raised);
  font-size: 0.8125rem;
}

.blueprint-sheet__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.blueprint-sheet__drawing {
  padding: 1.5rem 1rem;
  background: #fff;
}

.blueprint-sheet__drawing svg {
  width: 100%;
  height: auto;
  display: block;
}

.blueprint-sheet__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

/* WhatsApp */
.whatsapp-card {
  display: grid;
  gap: 2rem;
  align-items: center;
  border-color: color-mix(in srgb, var(--primary) 25%, var(--border));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--secondary) 20%, var(--surface)),
    color-mix(in srgb, var(--surface) 80%, transparent)
  );
}

@media (min-width: 768px) {
  .whatsapp-card {
    grid-template-columns: 1.4fr 1fr;
    padding: 2rem 2.25rem;
  }
}

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, #25d366 40%, var(--border));
  background: color-mix(in srgb, #25d366 12%, var(--surface));
  color: #e8fff9;
  font-weight: 600;
  font-size: 0.9375rem;
}

.whatsapp-pill svg {
  color: #25d366;
}

/* Aha moment */
.section-head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 42rem;
}

.aha-quote.card {
  max-width: 44rem;
  margin: 2.5rem auto 0;
  padding: 2rem 1.75rem;
  text-align: center;
  border: none;
  background: transparent;
  box-shadow: none;
}

.aha-quote__text {
  margin: 0;
  padding: 0;
  border: none;
}

.aha-quote__text p {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 500;
  line-height: 1.55;
  font-style: italic;
  color: var(--foreground);
}

.aha-quote__attribution {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}

.aha-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .aha-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.aha-card {
  height: 100%;
  padding: 1.5rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.65rem;
  border-color: color-mix(in srgb, var(--primary) 14%, var(--border));
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--surface) 72%, transparent),
    color-mix(in srgb, var(--background) 94%, transparent)
  );
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.aha-card:hover {
  border-color: color-mix(in srgb, var(--primary) 32%, var(--border));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.05),
    0 16px 36px -28px rgb(0 255 212 / 0.22);
  transform: translateY(-2px);
}

.aha-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9999px;
  border: 1px solid var(--ring-accent);
  background: rgb(13 13 13 / 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 1px var(--ring-accent-inset),
    0 0 0 1px rgb(0 255 212 / 0.12),
    0 10px 22px -18px rgb(0 255 212 / 0.55);
}

.aha-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--primary);
  stroke-width: 2;
}

.aha-card__title {
  margin: 0;
  width: 100%;
  max-width: 16rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.aha-card .card__text {
  margin: 0;
  width: 100%;
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--muted);
}

/* Mid-page CTA */
.mid-cta {
  position: relative;
  padding: 4.5rem 0;
  text-align: center;
  overflow: hidden;
  border-block: 1px solid var(--border-subtle);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface) 35%, transparent),
    transparent 45%,
    color-mix(in srgb, var(--surface) 25%, transparent)
  );
}

.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, rgb(0 255 212 / 0.1), transparent 68%);
  pointer-events: none;
}

.mid-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  max-width: 42rem;
  margin: 0 auto;
}

.mid-cta__title {
  margin: 0;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.mid-cta__lead {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--muted);
}

.mid-cta__actions {
  margin-top: 0.35rem;
}

.btn--xl {
  min-height: 3.75rem;
  padding: 0 2rem;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 36px -14px rgb(0 255 212 / 0.5),
    inset 0 1px 0 rgb(255 255 255 / 0.2);
}

.btn--xl:hover {
  box-shadow:
    0 18px 40px -12px rgb(0 255 212 / 0.55),
    inset 0 1px 0 rgb(255 255 255 / 0.25);
}

.mid-cta__trust {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

/* Pricing */
.pricing {
  padding-top: 3rem;
  padding-bottom: 4.5rem;
}

.pricing .section-head {
  margin-inline: auto;
  text-align: center;
}

.pricing .section-lead {
  margin-inline: auto;
  max-width: 36rem;
}

.pricing-card {
  max-width: 28rem;
  margin: 0 auto;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  border-color: color-mix(in srgb, var(--primary) 22%, var(--border));
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--surface) 88%, transparent),
    color-mix(in srgb, var(--background) 96%, transparent)
  );
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.05),
    0 24px 48px -32px rgb(0 255 212 / 0.35);
}

.pricing-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.pricing-card__price {
  margin-top: 1.25rem;
}

.pricing-card__price-main {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem 0.35rem;
  line-height: 1.1;
}

.pricing-card__price-amount {
  font-size: clamp(2.25rem, 6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.pricing-card__price-period {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.pricing-card__price-follow {
  margin: 0.45rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card__subtitle {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.pricing-card__features {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-card__feature {
  display: grid;
  grid-template-columns: 1.125rem minmax(0, 1fr);
  align-items: center;
  column-gap: 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--foreground);
}

.pricing-card__feature-icon {
  width: 1.125rem;
  height: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__feature-icon i,
.pricing-card__feature-icon svg {
  width: 1.0625rem;
  height: 1.0625rem;
  color: rgb(0 255 212 / 0.52);
  stroke-width: 1.75;
}

.pricing-card__cta {
  margin-top: 1.5rem;
  min-height: 3.5rem;
  font-size: 1.0625rem;
  box-shadow:
    0 14px 36px -14px rgb(0 255 212 / 0.5),
    inset 0 1px 0 rgb(255 255 255 / 0.2);
}

.pricing-card__cta:hover {
  box-shadow:
    0 18px 40px -12px rgb(0 255 212 / 0.55),
    inset 0 1px 0 rgb(255 255 255 / 0.25);
}

.pricing-card__trust {
  margin: 1.15rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border-subtle);
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card__trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--muted);
  white-space: nowrap;
}

.pricing-card__trust-item i,
.pricing-card__trust-item svg {
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  color: rgb(0 255 212 / 0.55);
  stroke-width: 1.75;
}

@media (min-width: 640px) {
  .pricing-card {
    max-width: 36rem;
  }

  .pricing-card__trust {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.25rem;
  }

  .pricing-card__trust-item:not(:last-child) {
    position: relative;
    padding-right: 1.25rem;
  }

  .pricing-card__trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 0.85rem;
    transform: translateY(-50%);
    background: var(--border-subtle);
  }
}

/* Contact */
.contact {
  padding: 4.5rem 0 5rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

.contact .section-title {
  margin: 0;
  max-width: 16ch;
}

.contact__lead {
  margin: 0;
  max-width: 30rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact__email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.85rem 1.35rem;
  border-radius: 9999px;
  border: 1px solid var(--ring-pill);
  background: rgb(0 255 212 / 0.1);
  box-shadow: 0 0 0 1px rgb(0 255 212 / 0.14);
  color: var(--primary);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.contact__email svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.25;
  flex-shrink: 0;
}

.contact__email:hover {
  border-color: rgb(0 255 212 / 0.62);
  background: rgb(0 255 212 / 0.16);
  box-shadow: 0 0 0 1px rgb(0 255 212 / 0.22);
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.site-footer__link {
  padding: 0;
  border: none;
  background: none;
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.15s;
}

.site-footer__link:hover {
  color: var(--primary);
}

/* Legal dialog */
.legal-dialog {
  width: min(36rem, calc(100vw - 2rem));
  max-height: min(85dvh, calc(100dvh - 2rem));
  margin: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  color: var(--foreground);
  overflow: hidden;
}

.legal-dialog::backdrop {
  background: rgb(0 0 0 / 0.65);
}

.legal-dialog__inner {
  position: relative;
  box-sizing: border-box;
  max-height: min(85dvh, calc(100dvh - 2rem));
  padding: 1.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--muted) 55%, var(--border)) transparent;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal-dialog__inner::-webkit-scrollbar {
  width: 0.5rem;
}

.legal-dialog__inner::-webkit-scrollbar-track {
  background: transparent;
}

.legal-dialog__inner::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--muted) 45%, var(--border));
  background-clip: padding-box;
}

.legal-dialog__inner::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--muted) 65%, var(--border));
  background-clip: padding-box;
}

.legal-dialog__inner p {
  margin: 0 0 1rem;
}

.legal-dialog__inner p:last-child {
  margin-bottom: 0;
}

.legal-dialog__heading {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--foreground);
}

.legal-dialog__list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

.legal-dialog__list li {
  margin-bottom: 0.75rem;
}

.legal-dialog__list li:last-child {
  margin-bottom: 0;
}

.legal-dialog__list strong {
  color: var(--foreground);
  font-weight: 600;
}

.legal-dialog__title {
  margin: 0 2rem 0.25rem 0;
  font-size: 1.25rem;
  color: var(--foreground);
}

.legal-dialog__meta {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
}

.legal-dialog__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--foreground);
  font-size: 1.25rem;
  line-height: 1;
}

.legal-dialog a {
  color: var(--primary);
}

.legal-dialog a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .container {
    padding-inline: max(1rem, env(safe-area-inset-left, 0px))
      max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero {
    padding: 1.75rem 0 2.75rem;
    overflow-x: clip;
  }

  .hero__grid {
    gap: 2rem;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
    line-height: 1.1;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero__actions {
    margin-top: 1.35rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__bullets {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
  }

  .hero__bullet {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .hero__bullet:not(:last-child)::after {
    content: none;
  }

  .section {
    padding-block: 3rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .features-zigzag {
    gap: 1rem;
  }

  .feature-zigzag__item.card {
    padding: 0;
    overflow: hidden;
  }

  .feature-zigzag__visual {
    min-height: auto;
    padding: 1rem 0.85rem;
    flex-shrink: 0;
  }

  .feature-zigzag__copy {
    min-height: auto;
    height: auto;
    padding: 1.15rem 1rem 1.3rem;
    gap: 0.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .feature-copy-icon {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 0.35rem;
  }

  .feature-zigzag__copy .card__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
    padding-right: 0.15rem;
  }

  .feature-zigzag__copy .card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .mock-canvas,
  .mock-whatsapp,
  .mock-templates-loop {
    width: min(17rem, 100%);
    max-width: 100%;
  }

  .mock-canvas {
    width: min(15.5rem, 100%);
    height: min(15.5rem, 72vw);
    max-height: 15.5rem;
    aspect-ratio: 1 / 1;
  }

  .mock-whatsapp {
    height: auto;
    min-height: 16.5rem;
    aspect-ratio: 1 / 1;
  }

  .shop-sheet-preview {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 0.75rem;
    gap: 0.55rem;
  }

  .shop-sheet-preview__drawing {
    padding: 0.45rem;
  }

  .shop-sheet-preview__specs {
    gap: 0.35rem;
  }

  .shop-sheet-preview__metric {
    padding: 0.32rem 0.38rem;
    min-height: auto;
  }

  .shop-sheet-preview__metric-key,
  .shop-sheet-preview__metric-value {
    font-size: 0.58rem;
    line-height: 1.3;
  }

  .mock-whatsapp__viewport {
    height: calc(100% - 2.6rem);
  }

  .mock-whatsapp__steps {
    left: 0.4rem;
    right: 0.4rem;
    bottom: 0.4rem;
    gap: 0.2rem;
    padding: 0.18rem;
  }

  .mock-whatsapp__step {
    padding: 0.24rem 0.38rem;
    font-size: 0.52rem;
  }
}

@media (max-width: 640px) {
  .site-nav .btn--ghost {
    display: none;
  }

  .site-header__inner {
    padding-block: 0.85rem;
  }

  .logo {
    max-width: 9.5rem;
    height: 2rem;
  }

  .mid-cta {
    padding: 3.25rem 0;
  }

  .mid-cta__inner {
    gap: 1.15rem;
  }

  .mid-cta__actions {
    width: 100%;
  }

  .mid-cta__actions .btn {
    width: 100%;
  }

  .pricing-card {
    padding: 1.65rem 1.25rem 1.5rem;
  }

  .pricing-card__price-main {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }

  .aha-quote {
    margin-top: 2rem;
    padding: 1.5rem 1.15rem;
  }

  .aha-grid {
    margin-top: 1.5rem;
  }

  /* Stronger rings on small screens (hairline + color-mix often vanish) */
  .feature-copy-icon,
  .aha-card__icon {
    border-width: 1.5px;
    border-color: rgb(0 255 212 / 0.55);
    box-shadow:
      inset 0 0 0 1px rgb(0 255 212 / 0.28),
      0 0 0 1px rgb(0 255 212 / 0.2),
      0 10px 22px -18px rgb(0 255 212 / 0.55);
  }

  .contact__email {
    border-width: 1.5px;
    border-color: rgb(0 255 212 / 0.58);
    box-shadow: 0 0 0 1px rgb(0 255 212 / 0.22);
  }
}
