/* ========================================================================== 
   Khaya Web Studio — Design System & Styles
   ========================================================================== */

@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("../assets/fonts/baloo-2-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/dm-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../assets/fonts/nunito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #101418;
  --ink-soft: #262b27;
  --muted: #647078;
  --paper: #f3efe4;
  --chalk: #f6f1e4;
  --chalk-dim: #cfc9b8;
  --marigold: #e8a33d;
  --sky: #5c93a3;
  --rust: #c05a3a;
  --white: #ffffff;
  --radius: 10px;
  --sans: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

a {
  color: inherit;
}

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

.landing-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--marigold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--marigold);
  display: inline-block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header-hero-wrapper {
  height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  container: hero-shell / size;
}

nav.site-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 2.4svh, 22px) 0;
  width: min(1340px, calc(100% - clamp(32px, 4vw, 64px)));
  margin: 0 auto;
  flex: 0 0 auto;
}

.site-nav .logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  text-decoration: none;
  color: var(--chalk);
  font-family: var(--display);
  font-size: clamp(0.98rem, 0.82rem + 0.5cqi, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text {
  white-space: nowrap;
}

.logo-mark {
  width: clamp(32px, 3cqi, 36px);
  height: clamp(32px, 3cqi, 36px);
  flex: 0 0 auto;
}

.logo-text strong {
  color: var(--marigold);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(246, 241, 228, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--chalk);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.is-menu-open .nav-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav.is-menu-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-menu-open .nav-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links>a:not(.nav-cta) {
  color: var(--chalk-dim);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links>a:not(.nav-cta):hover {
  color: var(--chalk);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--marigold);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, filter 0.15s ease;
}

.nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ==========================================================================
   Full-Viewport Hero Section
   ========================================================================== */

.hero {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 79% 48%, rgba(232, 163, 61, 0.34) 0%, rgba(174, 105, 31, 0.16) 42%, transparent 72%),
    radial-gradient(ellipse 42% 58% at 61% 76%, rgba(92, 147, 163, 0.12) 0%, transparent 72%),
    linear-gradient(90deg, #0d1114 0%, #101315 33%, #17140f 55%, #24180d 78%, #19130e 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  width: max-content;
  min-width: min(282px, 100%);
  max-width: 100%;
  gap: clamp(6px, 1.4cqi, 9px);
  padding: clamp(5px, 1cqb, 6px) clamp(11px, 2.2cqi, 14px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--chalk-dim);
  font-size: clamp(0.6rem, 1.9cqi, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  backdrop-filter: blur(8px);
  font-family: var(--sans);
  cursor: default;
  opacity: 1;
  appearance: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.badge-pulse {
  display: grid;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  place-items: center;
}

.badge-pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marigold);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.25);
  animation: pulseDot 2s infinite;
}

[data-demo-state="completed"] .hero-badge {
  color: var(--ink);
  border-color: rgba(255, 210, 111, 0.82);
  background: var(--marigold);
  box-shadow: 0 10px 28px rgba(232, 163, 61, 0.24);
  cursor: pointer;
}

[data-demo-state="completed"] .badge-pulse::before {
  content: "↻";
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  animation: none;
}

[data-demo-state="completed"] .hero-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.hero-badge:focus-visible {
  outline: 3px solid rgba(255, 210, 111, 0.7);
  outline-offset: 3px;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero .landing-wrap {
  position: relative;
  z-index: 2;
  width: min(1340px, calc(100% - clamp(32px, 4vw, 64px)));
  height: 100%;
}

.hero h1 {
  font-size: clamp(1.45rem, min(10cqi, 11cqb), 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  max-width: 580px;
  color: var(--chalk);
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

.hero h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--chalk);
  white-space: nowrap;
}

.hero h1 em svg {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  overflow: visible;
}

.hero p.sub {
  font-family: var(--sans);
  max-width: 560px;
  font-size: clamp(0.68rem, min(2.8cqi, 4cqb), 1.12rem);
  color: var(--chalk-dim);
  margin: 0;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-demo-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1 1 0;
  width: 0;
  height: 100%;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}

.hero-copy-content {
  display: flex;
  width: 100%;
  height: auto;
  max-height: min(590px, 100%);
  aspect-ratio: 592 / 590;
  flex-direction: column;
  justify-content: space-between;
  container: hero-copy / size;
}

.hero-demo-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 0;
  width: 0;
  height: 100%;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  align-items: center;
  justify-content: flex-end;
  container: hero-visual / size;
}

.hero-demo-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 50%;
  width: min(92%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 173, 66, 0.34), rgba(184, 111, 30, 0.13) 44%, rgba(92, 147, 163, 0.07) 58%, transparent 74%);
  filter: blur(18px);
  transform: translateX(-50%);
}

.demo-narration {
  display: grid;
  grid-template-rows: auto minmax(2.7em, 1fr) 3px;
  width: 100%;
  height: clamp(58px, 18cqb, 94px);
  max-width: 560px;
  gap: clamp(2px, 0.7cqb, 4px);
  padding: clamp(8px, 2cqb, 12px) clamp(10px, 2.2cqi, 14px);
  border: 1px solid rgba(246, 241, 228, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.demo-phase-label {
  color: var(--marigold);
  font-size: clamp(0.52rem, min(1.7cqi, 2cqb), 0.65rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-phase-title {
  color: var(--chalk);
  font-family: var(--display);
  font-size: clamp(0.72rem, min(2.7cqi, 3.4cqb), 1.05rem);
  line-height: 1.35;
}

.demo-progress {
  height: 3px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(246, 241, 228, 0.14);
}

.demo-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--marigold), #ffd26f);
}

[data-demo-chapter].is-in-view .demo-progress i {
  animation: demoProgress 15s linear forwards;
}

[data-demo-chapter].is-complete .demo-progress i {
  width: 100%;
}

@keyframes demoProgress {
  to {
    width: 100%;
  }
}

.btn-primary {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  background: var(--marigold);
  color: var(--ink);
  padding: clamp(12px, 1.5svh, 14px) clamp(18px, 2.2vw, 24px);
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

@container hero-shell (max-width: 760px) {
  .nav-menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    z-index: 20;
    top: calc(100% - 4px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 48px));
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(246, 241, 228, 0.14);
    border-radius: 14px;
    background: rgba(16, 20, 24, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links>a:not(.nav-cta),
  .nav-cta {
    display: block;
    width: 100%;
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 0.88rem;
  }

  .nav-links>a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }
}

@container hero-shell (orientation: portrait) {
  .hero-bg-glow {
    background:
      radial-gradient(ellipse 88% 50% at 50% 73%, rgba(232, 163, 61, 0.29) 0%, rgba(174, 105, 31, 0.13) 48%, transparent 76%),
      radial-gradient(ellipse 80% 42% at 50% 88%, rgba(92, 147, 163, 0.09) 0%, transparent 72%),
      linear-gradient(180deg, #0d1114 0%, #101315 38%, #21170e 72%, #15120f 100%);
  }

  .hero .landing-wrap {
    width: 100%;
  }

  .hero-demo-layout {
    flex-direction: column;
    gap: 0;
  }

  .hero-copy,
  .hero-demo-visual {
    flex: 1 1 50%;
    width: 100%;
    height: 50%;
  }

  .hero-copy {
    align-items: center;
    padding: clamp(7px, 1.4cqb, 12px) 16px;
    padding-bottom: calc(clamp(7px, 1.4cqb, 12px) + 10px);
  }

  .hero-copy-content {
    max-width: 560px;
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    text-align: center;
  }

  .hero-badge,
  .hero h1,
  .hero p.sub,
  .demo-narration {
    margin-inline: auto;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-demo-visual {
    justify-content: center;
  }
}

/* ==========================================================================
   Live Animation Demo Phones
   ========================================================================== */

[data-demo-chapter].is-paused *,
[data-demo-chapter].is-paused *::before,
[data-demo-chapter].is-paused *::after {
  animation-play-state: paused !important;
  transition: none !important;
}

/* Equal-sized, side-by-side Dual Phone layout */
.dual-phone-visual,
.benefit-canvas,
.like-canvas,
.pricing-canvas {
  /* Keep iOS from inflating miniature UI text independently of its canvas. */
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

.dual-phone-visual {
  --demo-phone-layout-width: 592px;
  --demo-phone-layout-height: 590px;
  --demo-phone-scale: min(1, calc(100cqw / var(--demo-phone-layout-width)), calc(100cqh / var(--demo-phone-layout-height)));
  display: flex;
  justify-self: center;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  width: var(--demo-phone-layout-width);
  height: var(--demo-phone-layout-height);
  max-width: none;
  zoom: var(--demo-phone-scale);
}

.phone-stage {
  position: relative;
  width: 282px;
  height: 590px;
  display: flex;
  justify-content: center;
  flex: 0 0 282px;
}

.owner-stage,
.visitor-stage {
  position: relative;
  width: 282px;
  height: 590px;
  margin: 0;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
}

.phone-shadow {
  position: absolute;
  bottom: 25px;
  width: 230px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 25, 23, 0.18);
  filter: blur(14px);
}

.phone {
  position: relative;
  width: 282px;
  height: 590px;
  padding: 10px;
  border: 2px solid #343c3c;
  border-radius: 46px;
  background: #111616;
  box-shadow: inset 0 0 0 2px #090c0c, 0 28px 56px rgba(14, 22, 19, 0.22);
  transform: none;
}

.chapter-phone {
  height: 590px;
  transform: none;
}

.phone::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 112px;
  width: 4px;
  height: 68px;
  border-radius: 0 4px 4px 0;
  background: #293030;
}

.phone::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 124px;
  width: 4px;
  height: 42px;
  border-radius: 4px 0 0 4px;
  background: #293030;
  box-shadow: 0 55px 0 #293030;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #fffaf1;
  color: #21261f;
  position: relative;
  font-family: "Nunito", sans-serif;
}

.island,
.screen-bar,
.screen-home {
  display: none;
}

/* ==========================================================================
   Owner Mobile Interface
   ========================================================================== */

.owner-mobile {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #edf2f5;
}

.owner-mobile-nav {
  display: grid;
  height: 52px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-bottom: 3px solid #ffd43b;
  background: #fff;
}

.owner-mobile-nav img {
  width: 32px;
  height: 32px;
}

.owner-mobile-nav strong {
  color: #00635d;
  font: 800 0.68rem "Baloo 2", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.owner-mobile-nav button {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #173f61;
  font: 800 0.58rem "Nunito", sans-serif;
  cursor: pointer;
}

.owner-mobile-nav button.is-tapped {
  animation: exitEditTap 0.65s ease;
}

@keyframes exitEditTap {
  50% {
    transform: scale(0.92);
    background: #0a6258;
  }
}

.owner-edit-banner {
  display: grid;
  min-height: 30px;
  grid-template-columns: 7px auto 1fr;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  color: #124d48;
  border-bottom: 1px solid #bcdcd7;
  background: #e4f3ef;
  font-size: 0.48rem;
}

.owner-edit-banner i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #078e78;
  box-shadow: 0 0 0 4px rgba(7, 142, 120, 0.13);
}

.owner-edit-banner strong {
  font-weight: 800;
}

.owner-edit-banner span {
  color: #60807b;
  text-align: right;
}

.owner-mobile-content {
  height: calc(100% - 82px);
  overflow: hidden;
  padding: 8px 9px 16px;
}

.owner-product-card {
  position: relative;
  overflow: hidden;
  padding: 0 9px 10px;
  border: 2px solid #00796f;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(35, 54, 70, 0.1);
}

.owner-new-ribbon {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  padding: 7px 11px;
  border-radius: 0 0 10px 0;
  color: #fff;
  background: #173f61;
  font: 800 0.7rem "Baloo 2", sans-serif;
}

.owner-delete {
  position: absolute;
  z-index: 9;
  top: 7px;
  right: 7px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #c6382e;
  font: 400 1.15rem/1 var(--sans);
}

.owner-product-photo {
  position: relative;
  height: 215px;
  margin: 0 -9px;
  overflow: hidden;
  background: #d1a970;
}

.owner-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  animation: ownerPhotoIn 0.65s ease both;
}

.owner-product-photo picture,
.crop-canvas picture,
.khaya-card-photo picture,
.benefit-product-photo picture,
.like-product-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes ownerPhotoIn {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
}

.owner-photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  color: #352f29;
  background: linear-gradient(180deg, #d1a970 0 58%, #283b4b 100%);
}

.owner-photo-placeholder span {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 2.3rem;
}

.owner-photo-placeholder strong {
  font: 800 0.96rem "Baloo 2", sans-serif;
}

.owner-product-photo>button {
  position: absolute;
  z-index: 7;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.owner-product-photo button span {
  display: none;
}

.owner-product-photo button span::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.owner-product-photo button span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 5px;
  left: 4px;
  top: -6px;
  border-radius: 3px 3px 0 0;
  background: #fff;
}

.owner-product-photo button.is-tapped {
  animation: ownerPhotoTap 0.6s ease;
}

@keyframes ownerPhotoTap {
  50% {
    background: rgba(90, 124, 34, 0.82);
    transform: scale(0.97);
  }
}

.owner-product-card label {
  display: grid;
  gap: 2px;
  margin-top: 6px;
  color: #667078;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.owner-product-card input,
.owner-product-card textarea {
  width: 100%;
  padding: 0 7px;
  border: 1px solid #9eacb8;
  border-radius: 6px;
  color: #17202b;
  background: #fff;
  font: 800 0.62rem "Nunito", sans-serif;
}

.owner-product-card input {
  height: 28px;
}

.owner-product-card textarea {
  height: 44px;
  padding-top: 6px;
  resize: none;
  font-weight: 700;
  line-height: 1.3;
}

.owner-product-card input.is-typing,
.owner-product-card textarea.is-typing {
  border-color: #00796f;
  box-shadow: 0 0 0 3px rgba(0, 121, 111, 0.16);
}

/* Photo Source Sheet */
.photo-source-sheet {
  position: absolute;
  z-index: 30;
  inset: auto 8px 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(251, 251, 250, 0.97);
  box-shadow: 0 -10px 30px rgba(12, 26, 36, 0.22);
  animation: sourceSheetUp 0.45s ease both;
}

@keyframes sourceSheetUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
}

.photo-source-sheet strong {
  display: block;
  padding: 2px 5px 9px;
  color: #17334e;
  font-size: 0.68rem;
  text-align: center;
}

.photo-source-sheet button {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 0;
  border-top: 1px solid #dce1e4;
  color: #185c9a;
  background: transparent;
  font: 800 0.65rem "Nunito", sans-serif;
  cursor: pointer;
}

.photo-source-sheet button span {
  width: 20px;
  font-size: 0.9rem;
}

.photo-source-sheet button.is-tapped {
  border-radius: 8px;
  color: #fff;
  background: #185c9a;
  animation: sourceChoiceTap 0.55s ease;
}

@keyframes sourceChoiceTap {
  50% {
    transform: scale(0.96);
  }
}

.photo-source-sheet small {
  display: block;
  padding-top: 9px;
  border-top: 1px solid #dce1e4;
  color: #185c9a;
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
}

/* Photo Crop Modal */
.photo-crop-modal {
  position: absolute;
  z-index: 35;
  inset: 8px 7px;
  padding: 11px 10px;
  border: 3px solid #ffd347;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(12, 26, 36, 0.22);
  animation: cropModalIn 0.42s ease both;
}

@keyframes cropModalIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
}

.crop-editor-eyebrow {
  display: block;
  color: #006c65;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-crop-modal>strong {
  display: block;
  margin-top: 3px;
  color: #17334e;
  font: 800 0.88rem/1.1 "Baloo 2", sans-serif;
}

.photo-crop-modal>p {
  margin: 3px 0 6px;
  color: #586170;
  font-size: 0.5rem;
  line-height: 1.35;
}

.crop-canvas {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border: 3px solid #17334e;
  border-radius: 9px;
}

.crop-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(0.88) translateY(7px);
  transition: transform 1.25s cubic-bezier(0.2, 0.75, 0.2, 1), object-position 1.25s ease;
}

.crop-canvas img.is-positioned {
  object-position: center 32%;
  transform: none;
}

.crop-canvas span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 33%, rgba(255, 255, 255, 0.65) 33.4%, transparent 34%, transparent 66%, rgba(255, 255, 255, 0.65) 66.4%, transparent 67%),
    linear-gradient(transparent 33%, rgba(255, 255, 255, 0.65) 33.4%, transparent 34%, transparent 66%, rgba(255, 255, 255, 0.65) 66.4%, transparent 67%);
}

.crop-zoom-label {
  display: block;
  margin-top: 5px;
  color: #17334e;
  font-size: 0.54rem;
  text-align: center;
}

.crop-controls {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 6px;
  align-items: center;
  margin-top: 3px;
}

.crop-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid #b9c6cc;
  border-radius: 50%;
  color: #17334e;
  background: #f5f7f7;
  font-weight: 800;
  cursor: pointer;
}

.crop-controls i {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #dce2e4;
}

.crop-controls b {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: #2f6f73;
}

.crop-controls b.is-zooming {
  animation: zoomAdjust 1.1s ease forwards;
}

@keyframes zoomAdjust {
  to {
    width: 67%;
  }
}

.crop-hint {
  display: block;
  margin-top: 5px;
  color: #586170;
  font-size: 0.46rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.crop-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6px;
  margin-top: 8px;
}

.crop-actions button {
  min-height: 32px;
  border: 1px solid #ccd5d8;
  border-radius: 999px;
  color: #45535a;
  background: #fff;
  font: 800 0.56rem "Nunito", sans-serif;
  cursor: pointer;
}

.crop-actions button:last-child {
  color: #fff;
  border-color: #4f7a3d;
  background: #4f7a3d;
}

.crop-actions button.is-tapped {
  animation: usePhotoTap 0.6s ease;
}

@keyframes usePhotoTap {
  50% {
    transform: scale(0.93);
    background: #2f5b2c;
  }
}

/* ==========================================================================
   Visitor Mobile Interface
   ========================================================================== */

.khaya-visitor {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: #243044;
  background: #eef3f6;
  font-family: "Nunito", sans-serif;
}

.khaya-nav {
  position: relative;
  z-index: 10;
  display: flex;
  height: 52px;
  align-items: center;
  padding: 6px 12px;
  border-bottom: 3px solid #efd66b;
  background: #fff;
}

.khaya-home {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
}

.khaya-home img {
  width: 100%;
  height: 100%;
}

.khaya-brand {
  display: grid;
  margin-left: 6px;
  line-height: 1;
}

.khaya-brand strong {
  color: #17334e;
  font: 800 0.84rem/1 "Baloo 2", sans-serif;
}

.khaya-brand small {
  margin-top: 2px;
  color: #3e774c;
  font-size: 0.48rem;
  font-weight: 800;
}

.khaya-menu {
  display: grid;
  gap: 4px;
  margin-left: auto;
}

.khaya-menu i {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: #17334e;
}

.khaya-menu-view {
  height: calc(100% - 52px);
  overflow: hidden;
  padding: 10px 10px 18px;
  background: linear-gradient(180deg, #eef3f6 0%, #f6fafc 100%);
}

.khaya-heading {
  text-align: center;
}

.khaya-heading>span {
  color: #2e6a56;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.khaya-heading>strong {
  display: block;
  margin-top: 2px;
  color: #17334e;
  font: 800 1.05rem/1 "Baloo 2", sans-serif;
}

.khaya-heading>p {
  margin: 2px auto 8px;
  color: #626a73;
  font-size: 0.49rem;
  line-height: 1.3;
}

.khaya-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 78, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(35, 54, 70, 0.12);
}

.khaya-card.is-live-updated {
  animation: liveCardUpdate 0.8s ease;
}

@keyframes liveCardUpdate {
  40% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(201, 245, 92, 0.65);
  }
}

.live-new-item.is-receiving {
  box-shadow: 0 0 0 6px rgba(201, 245, 92, 0.35), 0 8px 18px rgba(35, 54, 70, 0.12);
}

.khaya-card-photo {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: #3e678e;
}

.live-new-item .khaya-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  object-position: center 32%;
  transition: opacity 0.55s ease, transform 0.9s ease;
}

.live-new-item.has-photo .khaya-card-photo img {
  opacity: 1;
  transform: none;
}

.visitor-photo-placeholder {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  color: #567080;
  background: #dfe8ed;
  font-size: 0.54rem;
  font-weight: 800;
}

.visitor-photo-placeholder i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #cbd9e0;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.32);
  animation: visitorLoading 1.2s ease infinite;
}

@keyframes visitorLoading {
  50% {
    opacity: 0.5;
    transform: scale(0.9);
  }
}

.live-new-item .khaya-card-photo h3 {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  max-width: 83%;
  margin: 0;
  padding: 7px 11px;
  border-radius: 0 0 11px 0;
  color: #fff;
  background: transparent;
  font: 800 0.67rem/1.15 "Baloo 2", sans-serif;
  transition: background 0.45s ease, transform 0.45s ease;
}

.live-new-item.has-name .khaya-card-photo h3 {
  background: #173f61;
  animation: visitorFieldIn 0.55s ease;
}

.khaya-card-body {
  padding: 10px 12px;
}

.visitor-live-description {
  min-height: 38px;
  margin: 0;
  color: #667078;
  font-size: 0.58rem;
  line-height: 1.4;
  opacity: 0.45;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.live-new-item.has-description .visitor-live-description {
  opacity: 1;
  animation: visitorFieldIn 0.55s ease;
}

@keyframes visitorFieldIn {
  from {
    opacity: 0.2;
    transform: translateY(8px);
  }
}

.khaya-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.khaya-price {
  display: grid;
  min-width: 46px;
  min-height: 36px;
  place-items: center;
  padding: 0 10px;
  border-radius: 12px;
  color: #17334e;
  background: #ffe887;
  font: 800 0.72rem "Baloo 2", sans-serif;
}

.visitor-live-price {
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.live-new-item.has-price .visitor-live-price {
  opacity: 1;
  animation: khayaPriceUpdate 0.6s ease;
}

@keyframes khayaPriceUpdate {
  45% {
    transform: scale(1.18);
    background: #efd05a;
  }
}

.khaya-like {
  display: inline-flex;
  min-width: 54px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  color: #a63a2e;
  background: #faefed;
  font: 800 0.67rem "Nunito", sans-serif;
}

.khaya-like span {
  font-size: 0.93rem;
}

.owner-finished-view {
  animation: ownerToVisitor 0.65s ease both;
  height: 100%;
}

@keyframes ownerToVisitor {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
}

/* ========================================================================== 
   Live Business Benefits
   ========================================================================== */

.live-benefits {
  position: relative;
  block-size: 100svh;
  overflow: hidden;
  background: #efe9d9;
  container: benefit-section / size;
}

.benefit-layout {
  block-size: 100%;
  display: flex;
}

.benefit-copy,
.benefit-visual-wrap {
  flex: 1 1 0;
  min-inline-size: 0;
  min-block-size: 0;
}

.benefit-copy {
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 82%, rgba(232, 163, 61, 0.12), transparent 30%),
    #efe9d9;
}

.benefit-copy-inner {
  inline-size: min(100%, 700px);
  margin-inline: auto;
  padding: clamp(26px, min(5cqi, 7cqb), 80px);
}

.benefit-copy .eyebrow {
  margin-block-end: clamp(12px, 2cqb, 20px);
}

.benefit-copy h2 {
  max-inline-size: 12ch;
  font-size: clamp(2.15rem, min(5.2cqi, 8cqb), 5rem);
  line-height: 1.02;
  font-weight: 800;
}

.benefit-intro {
  max-inline-size: 47ch;
  margin: clamp(18px, 3cqb, 32px) 0 0;
  color: #55564f;
  font-size: clamp(1rem, min(1.55cqi, 2.2cqb), 1.3rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.benefit-points {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(4px, 1cqi, 14px);
  margin-block-start: clamp(20px, 4cqb, 42px);
}

.benefit-points span {
  display: inline-flex;
  align-items: center;
  gap: clamp(3px, 0.8cqi, 8px);
  padding: 9px clamp(4px, 1cqi, 13px);
  border: 1px solid rgba(16, 20, 24, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
  font-size: clamp(0.55rem, 2.7cqi, 0.9rem);
  font-weight: 700;
  white-space: nowrap;
}

.benefit-points span::before {
  content: "";
  inline-size: clamp(4px, 0.9cqi, 7px);
  block-size: clamp(4px, 0.9cqi, 7px);
  flex: none;
  border-radius: 50%;
  background: var(--marigold);
}

.benefit-visual-wrap {
  background: var(--ink);
  container: benefit-visual / size;
}

.benefit-stage {
  position: relative;
  isolation: isolate;
  inline-size: 100%;
  block-size: 100%;
  min-block-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 45%, rgba(232, 163, 61, 0.3), transparent 34%),
    linear-gradient(145deg, #111619 5%, #201a14 62%, #35200f 100%);
}

.benefit-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(232, 163, 61, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.benefit-orbit-one {
  inline-size: 86cqi;
  aspect-ratio: 1;
}

.benefit-orbit-two {
  inline-size: 64cqi;
  aspect-ratio: 1;
  border-color: rgba(246, 241, 228, 0.1);
}

.benefit-product {
  position: relative;
  inline-size: min(72cqi, 65cqb);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 228, 0.3);
  border-radius: clamp(18px, 4cqi, 34px);
  background: var(--chalk);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  transition: box-shadow 0.45s ease;
}

.benefit-product-photo {
  position: relative;
  block-size: 66%;
  overflow: hidden;
  background: #d7d5cf;
}

.benefit-product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 24, 0);
  transition: background 0.45s ease;
}

.benefit-product-photo img {
  inline-size: 100%;
  block-size: 100%;
  display: block;
  object-fit: cover;
  object-position: center 62%;
  transition: filter 0.45s ease;
}

.benefit-stock-pill,
.benefit-sold-stamp {
  position: absolute;
  z-index: 2;
  inset-block-start: clamp(12px, 3cqi, 20px);
  inset-inline-start: clamp(12px, 3cqi, 20px);
  border-radius: 999px;
  font-weight: 800;
}

.benefit-stock-pill {
  padding: 8px 12px;
  color: #244315;
  background: #e4f6bf;
  font-size: clamp(0.7rem, 2.2cqi, 0.86rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.benefit-sold-stamp {
  padding: 9px 14px;
  color: var(--chalk);
  background: var(--rust);
  font-family: var(--display);
  font-size: clamp(0.82rem, 2.7cqi, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: rotate(-5deg) scale(0.7);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(.2, .9, .25, 1.3);
}

.benefit-product-copy {
  block-size: 34%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(13px, 3.6cqi, 24px);
  color: var(--ink);
}

.benefit-product-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 4.2cqi, 1.85rem);
  line-height: 1.1;
}

.benefit-product-copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-block-start: auto;
}

.benefit-product-copy strong {
  color: #173452;
  font-size: clamp(0.9rem, 2.9cqi, 1.2rem);
}

.benefit-product-copy em {
  color: #397022;
  font-size: clamp(0.62rem, 1.8cqi, 0.78rem);
  font-style: normal;
  font-weight: 800;
}

.benefit-owner-control,
.benefit-customer-status {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(246, 241, 228, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.benefit-owner-control {
  inset-inline-start: clamp(12px, 5cqi, 54px);
  inset-block-end: clamp(18px, 10cqb, 92px);
  inline-size: min(38cqi, 270px);
  padding: clamp(12px, 2.6cqi, 18px);
  border-radius: clamp(14px, 2.5cqi, 20px);
  color: var(--chalk);
  background: rgba(20, 25, 28, 0.9);
}

.benefit-owner-control > span,
.benefit-customer-status small {
  display: block;
  color: var(--marigold);
  font-size: clamp(0.56rem, 1.5cqi, 0.7rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.benefit-owner-control > strong {
  display: block;
  margin-block-start: 3px;
  font-size: clamp(0.72rem, 2cqi, 0.92rem);
}

.benefit-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: clamp(8px, 1.8cqi, 12px);
  overflow: hidden;
  border: 1px solid rgba(246, 241, 228, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.benefit-counter button {
  inline-size: 32%;
  padding: 5px;
  border: 0;
  color: var(--chalk);
  background: transparent;
  font: 800 clamp(1rem, 2.5cqi, 1.3rem) var(--sans);
}

.benefit-counter b {
  font-size: clamp(0.85rem, 2.4cqi, 1.05rem);
}

.benefit-owner-control small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--chalk-dim);
  font-size: clamp(0.58rem, 1.55cqi, 0.72rem);
}

.benefit-owner-control small i,
.benefit-live-dot {
  inline-size: 7px;
  block-size: 7px;
  flex: none;
  border-radius: 50%;
  background: #83b91f;
  box-shadow: 0 0 0 5px rgba(131, 185, 31, 0.12);
}

.benefit-customer-status {
  inset-block-start: clamp(20px, 11cqb, 100px);
  inset-inline-end: clamp(12px, 5cqi, 54px);
  display: flex;
  align-items: center;
  gap: 11px;
  padding: clamp(10px, 2.3cqi, 15px) clamp(12px, 2.8cqi, 18px);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(246, 241, 228, 0.94);
}

.benefit-customer-status small {
  color: #69727a;
}

.benefit-customer-status strong {
  display: block;
  font-size: clamp(0.68rem, 1.9cqi, 0.86rem);
  line-height: 1.15;
}

.benefit-sync-path {
  position: absolute;
  z-index: 3;
  inset-inline: 23%;
  inset-block-start: 50%;
  block-size: 2px;
  overflow: hidden;
  background: rgba(232, 163, 61, 0.18);
  transform: rotate(-18deg);
}

.benefit-sync-path i {
  display: block;
  inline-size: 28%;
  block-size: 100%;
  background: linear-gradient(90deg, transparent, var(--marigold), transparent);
  transform: translateX(-120%);
}

.benefit-stage.is-publishing .benefit-sync-path i {
  animation: benefitSync 0.65s ease;
}

.benefit-stage.is-publishing .benefit-product {
  box-shadow: 0 28px 90px rgba(232, 163, 61, 0.22);
}

.benefit-stage.is-tapping [data-benefit-minus] {
  color: var(--ink);
  background: var(--marigold);
  transform: scale(0.9);
}

.benefit-stage.is-sold-out .benefit-product-photo::after {
  background: rgba(16, 20, 24, 0.28);
}

.benefit-stage.is-sold-out .benefit-product-photo img {
  filter: saturate(0.45);
}

.benefit-stage.is-sold-out .benefit-stock-pill {
  opacity: 0;
  transform: translateY(-6px);
}

.benefit-stage.is-sold-out .benefit-sold-stamp {
  opacity: 1;
  transform: rotate(-5deg) scale(1);
}

.benefit-stage.is-sold-out .benefit-live-dot,
.benefit-stage.is-sold-out .benefit-owner-control small i {
  background: var(--rust);
  box-shadow: 0 0 0 5px rgba(192, 90, 58, 0.13);
}

@keyframes benefitSync {
  to { transform: translateX(460%); }
}

/* ========================================================================== 
   Custom Live Interactions
   ========================================================================== */

.custom-live {
  block-size: 100svh;
  overflow: hidden;
  background: var(--ink);
  container: custom-section / size;
}

.custom-live-layout {
  block-size: 100%;
  display: flex;
}

.custom-live-copy,
.custom-live-visual {
  flex: 1 1 0;
  min-inline-size: 0;
  min-block-size: 0;
}

.custom-live-copy {
  order: 2;
  display: flex;
  align-items: center;
  color: var(--chalk);
  background:
    radial-gradient(circle at 88% 16%, rgba(232, 163, 61, 0.13), transparent 28%),
    var(--ink);
}

.custom-live-copy-inner {
  inline-size: min(100%, 700px);
  margin-inline: auto;
  padding: clamp(26px, min(5cqi, 7cqb), 80px);
}

.custom-live-copy .eyebrow {
  margin-block-end: clamp(12px, 2cqb, 20px);
}

.custom-live-copy h2 {
  max-inline-size: 12ch;
  color: var(--chalk);
  font-size: clamp(2.15rem, min(5.15cqi, 7.8cqb), 5rem);
  font-weight: 800;
  line-height: 1.02;
}

.custom-live-copy p {
  max-inline-size: 47ch;
  margin: clamp(18px, 3cqb, 32px) 0 0;
  color: var(--chalk-dim);
  font-size: clamp(1rem, min(1.5cqi, 2.1cqb), 1.28rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.custom-live-note {
  inline-size: fit-content;
  display: flex;
  flex-direction: column;
  margin-block-start: clamp(22px, 4cqb, 42px);
  padding-inline-start: 16px;
  border-inline-start: 3px solid var(--marigold);
}

.custom-live-note span {
  color: #8f958e;
  font-size: clamp(0.68rem, 1cqi, 0.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.custom-live-note strong {
  margin-block-start: 2px;
  color: var(--marigold);
  font-family: var(--display);
  font-size: clamp(1rem, 1.7cqi, 1.35rem);
}

.custom-live-visual {
  order: 1;
  container: like-visual / size;
}

.like-stage {
  position: relative;
  isolation: isolate;
  inline-size: 100%;
  block-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 102, 164, 0.25), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(232, 163, 61, 0.28), transparent 34%),
    linear-gradient(145deg, #f3eadf 0%, #e9c9bb 58%, #dca06a 100%);
}

.like-stage-glow {
  position: absolute;
  z-index: -1;
  inline-size: 78cqi;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 247, 237, 0.54);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.58),
    0 0 90px rgba(255, 238, 216, 0.65);
}

.like-product-card {
  position: relative;
  z-index: 2;
  inline-size: min(62cqi, 61cqb);
  overflow: hidden;
  border: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: clamp(20px, 4.5cqi, 36px);
  background: #fffaf2;
  box-shadow: 0 30px 80px rgba(69, 39, 28, 0.28);
}

.like-product-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.like-product-photo img {
  inline-size: 100%;
  block-size: 100%;
  display: block;
  object-fit: cover;
}

.like-product-copy {
  padding: clamp(14px, 3.4cqi, 24px);
  color: var(--ink);
}

.like-product-copy > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.like-product-copy h3 {
  font-size: clamp(1.1rem, 3.7cqi, 1.75rem);
  line-height: 1.05;
}

.like-product-copy > div > strong {
  color: #173452;
  font-size: clamp(0.9rem, 2.7cqi, 1.16rem);
}

.like-product-copy p {
  margin: clamp(6px, 1.4cqi, 10px) 0 0;
  color: #62676a;
  font-size: clamp(0.67rem, 1.8cqi, 0.82rem);
}

.live-like-button {
  inline-size: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-block-start: clamp(11px, 2.4cqi, 17px);
  padding: clamp(9px, 2.1cqi, 13px);
  border: 1px solid #efc7cf;
  border-radius: 12px;
  color: #a8323c;
  background: #fff0f0;
  font: inherit;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, transform 0.18s ease;
}

.live-like-button > span {
  font-size: clamp(1.2rem, 3.4cqi, 1.55rem);
  line-height: 1;
}

.live-like-button b {
  font-size: clamp(0.88rem, 2.4cqi, 1.05rem);
}

.live-like-button small {
  margin-inline-start: 2px;
  color: #8a6568;
  font-size: clamp(0.62rem, 1.7cqi, 0.76rem);
}

.live-like-button:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 3px;
}

.like-stage.is-tapping .live-like-button {
  transform: scale(0.97);
}

.like-stage.is-liked .live-like-button {
  color: #fff;
  background: #c74756;
}

.like-stage.is-liked .live-like-button small {
  color: #ffe7e9;
}

.like-visitor,
.remote-like-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(16, 20, 24, 0.1);
  box-shadow: 0 14px 38px rgba(77, 43, 30, 0.18);
  backdrop-filter: blur(14px);
}

.like-visitor {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #4b3e38;
  background: rgba(255, 250, 242, 0.8);
  font-size: clamp(0.58rem, 1.5cqi, 0.72rem);
  font-weight: 800;
  transition: color 0.3s ease, background 0.3s ease, transform 0.35s ease;
}

.like-visitor::after {
  content: "♥";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  color: #c74756;
  font-size: clamp(0.85rem, 2.6cqi, 1.25rem);
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 3px 5px rgba(122, 39, 50, 0.25));
}

.like-visitor i {
  inline-size: 7px;
  block-size: 7px;
  flex: none;
  border-radius: 50%;
  background: #6b9f28;
  box-shadow: 0 0 0 4px rgba(107, 159, 40, 0.12);
}

.like-visitor-one {
  inset-block-start: 14cqb;
  inset-inline-start: 6cqi;
}

.like-visitor-two {
  inset-block-start: 28cqb;
  inset-inline-end: 5cqi;
}

.like-visitor-three {
  inset-block-end: 16cqb;
  inset-inline-start: 5cqi;
}

.like-stage.is-liked .like-visitor {
  color: #fff;
  background: rgba(199, 71, 86, 0.9);
  transform: translateY(-3px);
}

.like-stage.is-liked .like-visitor i {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.like-stage.is-liked .like-visitor::after {
  animation: visitorHeartPop 1s linear both;
}

.remote-like-card {
  inset-inline-end: clamp(12px, 5cqi, 46px);
  inset-block-end: clamp(18px, 8cqb, 72px);
  min-inline-size: min(34cqi, 220px);
  padding: clamp(11px, 2.5cqi, 17px);
  border-radius: clamp(14px, 2.6cqi, 20px);
  color: var(--chalk);
  background: rgba(16, 20, 24, 0.9);
}

.remote-like-card > span,
.remote-like-card small {
  display: block;
  color: #aeb4ae;
  font-size: clamp(0.55rem, 1.45cqi, 0.68rem);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.remote-like-card strong {
  display: block;
  margin-block: 4px;
  font-size: clamp(0.78rem, 2.1cqi, 0.98rem);
}

.remote-like-card strong i {
  color: #ff7181;
  font-style: normal;
}

.remote-like-card small {
  color: var(--marigold);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.like-ripple {
  position: absolute;
  z-index: 1;
  inset-inline-start: 50%;
  inset-block-start: 67%;
  inline-size: 18cqi;
  aspect-ratio: 1;
  border: 2px solid rgba(199, 71, 86, 0.58);
  border-radius: 50%;
  opacity: 0;
  translate: -50% -50%;
}

.like-stage.is-liked .like-ripple {
  animation: likeRipple 0.9s ease-out;
}

.floating-hearts {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
}

.floating-heart {
  position: absolute;
  color: #c74756;
  font-size: clamp(0.85rem, 2.8cqi, 1.35rem);
  opacity: 0;
  animation: floatHeart 1.35s ease-out var(--heart-delay) forwards;
}

@keyframes likeRipple {
  from { opacity: 0.7; transform: scale(0.5); }
  to { opacity: 0; transform: scale(4.2); }
}

@keyframes floatHeart {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6) rotate(0); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--heart-x), var(--heart-y)) scale(1.15) rotate(var(--heart-turn)); }
}

@keyframes visitorHeartPop {
  0% { opacity: 0; transform: translate(-50%, 5px) scale(0.55); }
  18% { opacity: 1; transform: translate(-50%, -3px) scale(0.95); }
  55% { opacity: 0.92; transform: translate(-50%, -19px) scale(1.08); }
  78% { opacity: 0.45; transform: translate(-50%, -30px) scale(1.12); }
  100% { opacity: 0; transform: translate(-50%, -42px) scale(1.16); }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing {
  block-size: 100svh;
  min-block-size: 0;
  overflow: hidden;
  color: var(--chalk);
  background: var(--ink);
  container: pricing-section / size;
}

.pricing-layout {
  block-size: 100%;
  display: flex;
}

.pricing-copy,
.pricing-offer {
  flex: 1 1 0;
  min-inline-size: 0;
  min-block-size: 0;
}

.pricing-copy {
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 92% 22%, rgba(232, 163, 61, 0.13), transparent 28%),
    var(--ink);
}

.pricing-copy-inner {
  inline-size: min(100%, 720px);
  margin-inline: auto;
  padding: clamp(28px, min(6cqi, 7cqb), 86px);
}

.pricing-copy .eyebrow {
  margin-block-end: clamp(12px, 2cqb, 20px);
  white-space: nowrap;
}

.pricing h2 {
  max-inline-size: 11ch;
  margin: 0;
  color: var(--chalk);
  font-size: clamp(2.2rem, min(5.4cqi, 7.6cqb), 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.pricing-copy-inner > p {
  max-inline-size: 48ch;
  margin: clamp(18px, 3cqb, 32px) 0 0;
  color: var(--chalk-dim);
  font-size: clamp(1rem, min(1.55cqi, 2.1cqb), 1.28rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.founding-availability {
  inline-size: min(100%, 520px);
  margin-block-start: clamp(24px, 5cqb, 50px);
  padding: clamp(16px, min(3cqi, 3cqb), 24px);
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: clamp(16px, 2.4cqi, 22px);
  background: rgba(255, 255, 255, 0.035);
}

.founding-availability-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.founding-availability-heading strong {
  color: var(--chalk);
  font-family: var(--display);
  font-size: clamp(1rem, 1.8cqi, 1.35rem);
}

.founding-availability-heading span {
  color: var(--marigold);
  font-size: clamp(0.68rem, 1.1cqi, 0.8rem);
  font-weight: 800;
}

.founding-spots {
  display: flex;
  gap: 9px;
  margin-block: clamp(12px, 2cqb, 18px);
}

.founding-spots i {
  position: relative;
  flex: 1 1 0;
  block-size: 6px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(232, 163, 61, 0.25);
}

.founding-spots i::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--marigold);
  box-shadow: 0 0 14px rgba(232, 163, 61, 0.55);
  animation: foundingPulse 3.6s ease-in-out infinite;
}

.founding-spots i:nth-child(2)::after {
  animation-delay: 0.35s;
}

.founding-spots i:nth-child(3)::after {
  animation-delay: 0.7s;
}

.founding-availability small {
  display: block;
  color: #929890;
  font-size: clamp(0.67rem, 1.05cqi, 0.78rem);
  line-height: 1.45;
}

.pricing-offer {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(24px, min(5cqi, 6cqb), 74px);
  background:
    linear-gradient(145deg, #f6efe2 0%, #ead6bc 100%);
}

.pricing-glow {
  position: absolute;
  z-index: -1;
  inline-size: min(72cqi, 66cqb);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(232, 163, 61, 0.3);
  filter: blur(28px);
  animation: pricingGlow 7s ease-in-out infinite alternate;
}

.price-card {
  position: relative;
  inline-size: min(100%, 500px);
  padding: clamp(24px, min(4.5cqi, 5cqb), 46px);
  border: 1px solid rgba(242, 237, 224, 0.13);
  border-radius: clamp(22px, 4cqi, 34px);
  color: var(--chalk);
  background: rgba(16, 20, 24, 0.97);
  box-shadow: 0 34px 90px rgba(76, 45, 24, 0.28);
}

.price-card .badge {
  display: block;
  margin-block-end: clamp(8px, 1.8cqb, 14px);
  color: var(--marigold);
  font-size: clamp(0.65rem, 1.25cqi, 0.78rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card .amount {
  color: var(--chalk);
  font-size: clamp(2.4rem, min(6.4cqi, 7.4cqb), 4.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-card .amount span {
  color: #9da29b;
  font-size: clamp(0.8rem, 1.7cqi, 1rem);
  font-weight: 600;
  letter-spacing: 0;
}

.price-card .price-intro {
  margin: clamp(12px, 2.5cqb, 20px) 0 0;
  color: var(--chalk-dim);
  font-size: clamp(0.85rem, min(1.6cqi, 1.9cqb), 1rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: clamp(16px, 3cqb, 26px) 0;
  color: #d8d3c6;
  font-size: clamp(0.78rem, min(1.45cqi, 1.7cqb), 0.95rem);
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: clamp(4px, 0.8cqb, 7px) 0;
}

.price-card li::before {
  content: "✓";
  color: var(--marigold);
  font-weight: 900;
}

.price-card-cta {
  display: block;
  inline-size: 100%;
  text-align: center;
}

.price-reassurance {
  display: block;
  margin-block-start: clamp(10px, 1.7cqb, 14px);
  color: #8f958e;
  font-size: clamp(0.65rem, 1.15cqi, 0.75rem);
  text-align: center;
}

@keyframes foundingPulse {
  0%, 100% { opacity: 0.5; transform: scaleX(0.92); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes pricingGlow {
  from { opacity: 0.6; transform: translate(-7%, -4%) scale(0.9); }
  to { opacity: 1; transform: translate(7%, 5%) scale(1.08); }
}

@container pricing-section (orientation: portrait) {
  .pricing-layout {
    flex-direction: column;
  }

  .pricing-copy,
  .pricing-offer {
    flex-basis: 50%;
  }

  .pricing-copy-inner {
    padding: clamp(14px, 5cqi, 30px);
    text-align: center;
  }

  .pricing-copy .eyebrow {
    justify-content: center;
    margin-block-end: clamp(7px, 1.3cqb, 12px);
  }

  .pricing h2 {
    max-inline-size: 14ch;
    margin-inline: auto;
    font-size: clamp(1.55rem, min(8cqi, 6.5cqb), 3.5rem);
  }

  .pricing-copy-inner > p {
    max-inline-size: 48ch;
    margin: clamp(8px, 1.5cqb, 14px) auto 0;
    font-size: clamp(0.7rem, min(3.2cqi, 1.9cqb), 0.98rem);
    line-height: 1.38;
  }

  .founding-availability {
    margin: clamp(10px, 1.8cqb, 16px) auto 0;
    padding: clamp(9px, 2.8cqi, 14px);
  }

  .founding-availability-heading strong {
    font-size: clamp(0.78rem, 3.5cqi, 1rem);
  }

  .founding-availability-heading span,
  .founding-availability small {
    font-size: clamp(0.56rem, 2.4cqi, 0.7rem);
  }

  .founding-spots {
    margin-block: 7px;
  }

  .pricing-offer {
    padding: clamp(10px, 3.4cqi, 22px);
  }

  .price-card {
    inline-size: min(100%, 470px);
    padding: clamp(14px, min(4cqi, 2.7cqb), 26px);
    border-radius: clamp(16px, 5cqi, 26px);
  }

  .price-card .badge {
    margin-block-end: 5px;
    font-size: clamp(0.56rem, 2.3cqi, 0.68rem);
  }

  .price-card .amount {
    font-size: clamp(2rem, min(10cqi, 6.8cqb), 3.4rem);
  }

  .price-card .price-intro {
    margin-block-start: 7px;
    font-size: clamp(0.66rem, min(2.9cqi, 1.8cqb), 0.84rem);
    line-height: 1.35;
  }

  .price-card ul {
    display: flex;
    flex-wrap: wrap;
    margin: 7px 0 9px;
    font-size: clamp(0.6rem, min(2.6cqi, 1.6cqb), 0.78rem);
  }

  .price-card li {
    flex: 1 1 50%;
    padding: 3px 4px 3px 0;
  }

  .price-card-cta {
    padding-block: clamp(9px, 1.8cqb, 12px);
    font-size: clamp(0.76rem, 3cqi, 0.9rem);
  }

  .price-reassurance {
    margin-block-start: 6px;
    font-size: clamp(0.55rem, 2.25cqi, 0.68rem);
  }
}

/* ========================================================================== 
   Container-first full-viewport sections

   Every section is two equal panels. Each panel owns its responsive type or
   a fixed reference composition, so descendants respond to their available
   panel rather than to the viewport or to unrelated page content.
   ========================================================================== */

.benefit-layout,
.custom-live-layout,
.pricing-layout {
  inline-size: 100%;
  block-size: 100%;
  display: flex;
  align-items: stretch;
}

.live-benefits,
.custom-live,
.pricing {
  /* Preserve readable copy on short phones instead of compressing the type. */
  block-size: max(100svh, 750px);
}

.benefit-copy,
.benefit-visual-wrap,
.custom-live-copy,
.custom-live-visual,
.pricing-copy,
.pricing-offer {
  flex: 1 1 50%;
  inline-size: 50%;
  block-size: 100%;
  min-inline-size: 0;
  min-block-size: 0;
}

.benefit-copy {
  container: benefit-copy / size;
}

.custom-live-copy {
  container: custom-copy / size;
}

.pricing-copy {
  container: pricing-copy / size;
}

.pricing-offer {
  container: pricing-visual / size;
}

.benefit-copy-inner,
.custom-live-copy-inner,
.pricing-copy-inner {
  inline-size: 100%;
  max-inline-size: 760px;
  max-block-size: 100%;
  margin: auto;
  padding: clamp(20px, min(7cqi, 7cqb), 78px);
}

.benefit-copy h2,
.custom-live-copy h2,
.pricing h2 {
  font-size: clamp(2rem, min(10.4cqi, 8cqb), 5rem);
}

.benefit-intro,
.custom-live-copy p,
.pricing-copy-inner > p {
  font-size: clamp(0.9rem, min(3.1cqi, 2.15cqb), 1.3rem);
}

.benefit-stage,
.like-stage,
.pricing-offer {
  padding: 0;
}

.benefit-canvas,
.like-canvas,
.pricing-canvas {
  --section-canvas-width: 592px;
  --section-canvas-height: 590px;
  position: relative;
  isolation: isolate;
  flex: none;
  inline-size: var(--section-canvas-width);
  block-size: var(--section-canvas-height);
  container-type: size;
  zoom: min(
    1,
    calc(100cqw / var(--section-canvas-width)),
    calc(100cqh / var(--section-canvas-height))
  );
}

.benefit-canvas {
  display: grid;
  place-items: center;
}

.benefit-canvas .benefit-orbit {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.benefit-canvas .benefit-customer-status {
  inset-block-start: 48px;
  inset-inline-end: 60px;
}

.like-canvas {
  display: grid;
  place-items: center;
  transform: translateX(20px);
}

.like-canvas .like-stage-glow {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.like-canvas .like-product-card {
  inline-size: 340px;
  transform: translateX(-78px);
}

.like-canvas .like-visitor-one {
  inset-block-start: 3px;
  inset-inline-start: 70px;
}

.like-canvas .like-visitor-two {
  inset-block-start: 201px;
  inset-inline-end: 110px;
}

.like-canvas .like-visitor-three {
  inset-block-end: 3px;
  inset-inline-start: 70px;
}

.like-canvas .remote-like-card {
  inset-inline-end: 90px;
  inset-block-end: 143px;
}

.benefit-stage,
.like-stage,
.pricing-offer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-owner-control {
  block-size: 142px;
  display: flex;
  flex-direction: column;
}

.benefit-owner-control small {
  min-block-size: 24px;
  margin-block-start: auto;
}

.benefit-owner-control small span,
.benefit-customer-status strong {
  white-space: nowrap;
}

.benefit-customer-status {
  inline-size: 194px;
  block-size: 72px;
}

.like-stage-glow {
  z-index: -1;
}

.remote-like-card {
  inline-size: 190px;
  min-inline-size: 0;
  block-size: 94px;
}

.pricing-canvas {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-glow {
  inline-size: 430px;
}

.price-card {
  inline-size: 500px;
  block-size: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@container benefit-section (orientation: portrait) {
  .benefit-layout {
    flex-direction: column;
  }

  .benefit-copy,
  .benefit-visual-wrap {
    flex: 1 1 50%;
    inline-size: 100%;
    block-size: 50%;
  }

  .benefit-copy-inner {
    padding: clamp(10px, min(4cqi, 4cqb), 24px);
    text-align: center;
  }

  .benefit-copy .eyebrow,
  .benefit-points {
    justify-content: center;
  }

  .benefit-copy h2,
  .benefit-intro {
    margin-inline: auto;
  }

  .benefit-copy h2 {
    font-size: clamp(2rem, 5.2cqi, 3rem);
  }

  .benefit-intro {
    margin-block-start: clamp(7px, 2.4cqb, 14px);
    font-size: clamp(0.9rem, 1.9cqi, 1.05rem);
    line-height: 1.42;
  }

  .benefit-points {
    flex-wrap: nowrap;
    gap: clamp(2px, 0.65cqi, 5px);
    margin-block-start: clamp(7px, 2.4cqb, 14px);
  }

  .benefit-points span {
    gap: clamp(3px, 0.7cqi, 5px);
    padding: 5px clamp(4px, 0.9cqi, 7px);
    font-size: clamp(0.55rem, 1.35cqi, 0.76rem);
  }

  .benefit-points span::before {
    inline-size: clamp(4px, 0.8cqi, 6px);
    block-size: clamp(4px, 0.8cqi, 6px);
  }

  .benefit-owner-control {
    inline-size: min(44cqi, 300px);
  }
}

@container custom-section (orientation: portrait) {
  .custom-live-layout {
    flex-direction: column;
  }

  .custom-live-copy,
  .custom-live-visual {
    flex: 1 1 50%;
    inline-size: 100%;
    block-size: 50%;
  }

  .custom-live-copy {
    order: 1;
  }

  .custom-live-visual {
    order: 2;
  }

  .like-canvas {
    zoom: min(
      0.92,
      calc(92cqw / var(--section-canvas-width)),
      calc(92cqh / var(--section-canvas-height))
    );
  }

  .custom-live-copy-inner {
    padding: clamp(12px, min(5cqi, 5cqb), 28px);
    text-align: center;
  }

  .custom-live-copy .eyebrow {
    justify-content: center;
  }

  .custom-live-copy h2,
  .custom-live-copy p,
  .custom-live-note {
    margin-inline: auto;
  }

  .custom-live-copy h2 {
    font-size: clamp(2rem, 5.2cqi, 3.1rem);
  }

  .custom-live-copy p {
    margin-block-start: clamp(8px, 2.5cqb, 15px);
    font-size: clamp(0.9rem, 1.9cqi, 1.05rem);
    line-height: 1.42;
  }

  .custom-live-note {
    align-items: center;
    margin-block-start: clamp(8px, 2.5cqb, 15px);
    padding: 0;
    border: 0;
  }

  .custom-live-note span {
    font-size: clamp(0.68rem, 0.5cqi, 0.8rem);
  }

  .custom-live-note strong {
    font-size: clamp(1rem, 0.85cqi, 1.35rem);
  }
}

@container pricing-section (orientation: portrait) {
  .pricing-layout {
    flex-direction: column;
  }

  .pricing-copy,
  .pricing-offer {
    flex: 1 1 50%;
    inline-size: 100%;
    block-size: 50%;
  }

  .pricing-copy-inner {
    padding: clamp(10px, min(4cqi, 4cqb), 24px);
    text-align: center;
  }

  .pricing-copy .eyebrow {
    justify-content: center;
    gap: clamp(5px, 1.5cqi, 8px);
    font-size: clamp(0.5rem, 3cqi, 0.8125rem);
    letter-spacing: clamp(0.035em, 0.18cqi, 0.08em);
    white-space: nowrap;
  }

  .pricing h2,
  .pricing-copy-inner > p {
    margin-inline: auto;
  }

  .pricing h2 {
    font-size: clamp(2rem, 5.2cqi, 3rem);
  }

  .pricing-copy-inner > p {
    margin-block-start: clamp(7px, 2.2cqb, 13px);
    font-size: clamp(0.9rem, 1.85cqi, 1.03rem);
    line-height: 1.4;
  }

  .founding-availability {
    margin-block-start: clamp(8px, 2.3cqb, 14px);
    padding: clamp(8px, min(2.5cqi, 2.5cqb), 13px);
  }

  .founding-availability-heading strong {
    font-size: clamp(1rem, 0.9cqi, 1.35rem);
  }

  .founding-availability-heading span {
    font-size: clamp(0.68rem, 0.55cqi, 0.8rem);
  }

  .founding-availability small {
    font-size: clamp(0.67rem, 0.525cqi, 0.78rem);
  }

  .price-card {
    padding: 30px;
  }

  .price-card .badge {
    margin-block-end: 10px;
    font-size: 12px;
  }

  .price-card .amount {
    font-size: 50px;
  }

  .price-card .amount span {
    font-size: 16px;
  }

  .price-card .price-intro {
    margin-block-start: 12px;
    font-size: 14px;
    line-height: 1.4;
  }

  .price-card ul {
    margin: 18px 0 20px;
    font-size: 13px;
  }

  .price-card li {
    gap: 8px;
    padding: 4px 8px 4px 0;
  }

  .price-card-cta {
    padding-block: 12px;
    font-size: 15px;
  }

  .price-reassurance {
    margin-block-start: 10px;
    font-size: 11px;
  }
}

.whatsapp-float {
  position: fixed;
  z-index: 100;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: grid;
  width: clamp(50px, 5vw, 58px);
  height: clamp(50px, 5vw, 58px);
  place-items: center;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, 0.48));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  filter: brightness(1.06) drop-shadow(0 11px 13px rgba(0, 0, 0, 0.52));
  transform: translateY(-2px) scale(1.03);
}

.whatsapp-float:focus-visible,
.nav-menu-toggle:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 3px;
}

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ========================================================================== 
   Responsive Breakpoints & Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .badge-pulse::before,
  .demo-progress i,
  .benefit-sync-path i,
  .like-ripple,
  .floating-heart,
  .like-visitor::after,
  .founding-spots i::after,
  .pricing-glow {
    animation: none;
  }

  .benefit-product,
  .benefit-product-photo::after,
  .benefit-product-photo img,
  .benefit-stock-pill,
  .benefit-sold-stamp {
    transition: none;
  }

  .live-like-button,
  .like-visitor {
    transition: none;
  }
}
