@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Kalam:wght@300;400&family=Nunito:wght@400;500;600;700;800&display=swap");

:root {
  --site-header-height: 84px;
  --page-gutter: max(16px, calc((100% - 1120px) / 2));
  --cream: #f2ede8;
  --bg: #faf8f5;
  --band-hero: #fbf7f4;
  --band-blush-soft: #fff3f2;
  --band-clay: #f7eee9;
  --band-founder: #fffaf7;
  --band-cta: #6f5147;
  --surface: #ffffff;
  --surface-soft: #f2ede8;
  --ink: #2e2e2e;
  --muted: #6b5f58;
  --brown: #7a5c4e;
  --brown-dark: #6b5044;
  --rose: #e8cece;
  --blush-strong: #e8b4b8;
  --cta-blush: var(--blush-strong);
  --cta-blush-hover: #dfa5aa;
  --blush-ink: #282828;
  --rose-soft: rgba(232, 206, 206, 0.28);
  --sage: #a3b899;
  --sage-soft: rgba(163, 184, 153, 0.22);
  --sage-ink: #4f6848;
  --border: rgba(122, 92, 78, 0.12);
  --shadow: 0 24px 70px rgba(71, 49, 38, 0.1);
  --app-font: "Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-padding-top: calc(var(--site-header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  padding-top: var(--site-header-height);
  background: var(--band-hero);
  color: var(--ink);
  font-family: var(--app-font);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: auto;
  min-width: 0;
  min-height: var(--site-header-height);
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  margin: 0 auto;
  padding: 12px max(16px, calc((100% - 1120px) / 2));
  background: rgba(248, 245, 240, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: visible;
  align-items: center;
  justify-content: center;
}

.brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-name {
  overflow: hidden;
  font-size: 18px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.8vw, 20px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

nav a:not(.nav-cta)::after {
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(122, 92, 78, 0), rgba(122, 92, 78, 0.72), rgba(122, 92, 78, 0));
  content: "";
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

nav a:focus {
  outline: none;
}

nav a:focus-visible {
  outline: 3px solid var(--blush-ink);
  outline-offset: 3px;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--brown-dark);
  transform: translateY(-1px);
}

nav a:not(.nav-cta):hover::after,
nav a:not(.nav-cta)[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--cta-blush);
  padding: 0 18px;
  color: var(--blush-ink);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(232, 180, 184, 0.32);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta[aria-current="page"] {
  background: var(--cta-blush-hover);
  box-shadow: 0 18px 34px rgba(232, 180, 184, 0.38);
  color: var(--blush-ink);
  transform: translateY(-1px);
}

.circle-value-section,
.section,
.founder-section,
.cta-band {
  scroll-margin-top: calc(var(--site-header-height) + 24px);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(28px, 6vw, 72px);
  width: 100%;
  min-height: min(760px, calc(100vh - var(--site-header-height)));
  align-items: center;
  margin: 0;
  padding: clamp(42px, 6vw, 72px) var(--page-gutter) clamp(56px, 7vw, 82px);
  background:
    radial-gradient(circle at 86% 9%, rgba(232, 206, 206, 0.28), transparent 28%),
    radial-gradient(circle at 12% 34%, rgba(163, 184, 153, 0.18), transparent 26%),
    var(--band-hero);
  box-shadow: 0 0 0 100vmax var(--band-hero);
  clip-path: inset(0 -100vmax);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.animated-ellipsis {
  display: inline-flex;
  width: 1.2em;
  justify-content: flex-start;
}

.animated-ellipsis span {
  animation: ellipsisPulse 1.45s ease-in-out infinite both;
}

.animated-ellipsis span:nth-child(2) {
  animation-delay: 0.16s;
}

.animated-ellipsis span:nth-child(3) {
  animation-delay: 0.32s;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 82px);
  font-weight: 800;
  line-height: 1.02;
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 34px;
}

.hero-cta-note {
  margin: -4px 0 0;
  color: rgba(107, 95, 88, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.primary-button {
  appearance: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--cta-blush);
  color: var(--blush-ink);
  padding: 0 34px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(232, 180, 184, 0.34);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.primary-button:hover {
  background: var(--cta-blush-hover);
  color: var(--blush-ink);
  box-shadow: 0 18px 38px rgba(232, 180, 184, 0.42);
  transform: translateY(-1px);
}

.secondary-button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 92, 78, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown-dark);
  padding: 0 28px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(122, 92, 78, 0.06);
}

.primary-button:focus,
.secondary-button:focus {
  outline: none;
}

.primary-button:focus-visible,
.secondary-button:focus-visible {
  outline: 3px solid var(--blush-ink);
  outline-offset: 4px;
}

.hero .primary-button {
  min-width: 340px;
  min-height: 72px;
  padding: 0 54px;
  font-size: 18px;
  isolation: isolate;
  box-shadow: 0 24px 46px rgba(71, 49, 38, 0.12);
}

.share-page-body {
  background: var(--band-hero);
}

.share-page-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100vh - var(--site-header-height));
  align-items: center;
  padding: clamp(46px, 6vw, 78px) var(--page-gutter) clamp(52px, 7vw, 86px);
  background:
    radial-gradient(circle at 88% 12%, rgba(232, 206, 206, 0.32), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(163, 184, 153, 0.18), transparent 31%),
    var(--band-hero);
  box-shadow: 0 0 0 100vmax var(--band-hero);
  clip-path: inset(0 -100vmax);
}

.share-page-copy {
  max-width: 620px;
}

.share-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.share-invite-status {
  margin: 18px 0 0;
  color: var(--brown-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.share-invite-status[hidden] {
  display: none;
}

.share-page-visual {
  position: relative;
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.share-page-visual::before {
  position: absolute;
  width: min(88%, 360px);
  height: min(58%, 250px);
  border-radius: 50%;
  background: rgba(232, 206, 206, 0.42);
  content: "";
  filter: blur(4px);
}

.share-page-visual img {
  position: relative;
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(71, 49, 38, 0.12));
}

.phone-preview {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  display: flex;
  width: min(100%, 316px);
  justify-content: center;
  justify-self: end;
  transform: none;
}

.local-video-preview {
  justify-self: center;
}

.hero-motion {
  --hero-motion-radius: clamp(28px, 4vw, 42px);
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: min(100%, 316px);
  aspect-ratio: 430 / 932;
  overflow: hidden;
  border-radius: var(--hero-motion-radius);
  border: 0;
  outline: 0;
  background: #faf9f6;
  box-shadow: none;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  clip-path: inset(0 round var(--hero-motion-radius));
}

.hero-motion::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(122, 92, 78, 0.18);
  border-radius: inherit;
}

.local-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: min(720px, calc(100vh - var(--site-header-height)));
  padding: clamp(44px, 6vw, 76px) var(--page-gutter) clamp(58px, 7vw, 86px);
  background:
    radial-gradient(circle at 80% 12%, rgba(232, 206, 206, 0.34), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(163, 184, 153, 0.16), transparent 30%),
    var(--band-hero);
  box-shadow: 0 0 0 100vmax var(--band-hero);
  clip-path: inset(0 -100vmax);
}

.local-hero-copy {
  max-width: 650px;
}

.local-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 22% 18%, rgba(246, 215, 204, 0.34), transparent 28%),
    rgba(255, 255, 255, 0.86);
  padding: clamp(24px, 4vw, 34px);
  text-align: center;
  box-shadow: var(--shadow);
}

.local-hero-card::before {
  position: absolute;
  top: 74px;
  left: 50%;
  width: min(74%, 320px);
  height: 112px;
  border-radius: 999px;
  background: rgba(248, 228, 216, 0.62);
  content: "";
  filter: blur(2px);
  transform: translateX(-50%);
}

.local-card-avatars {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 138px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.local-card-avatars img {
  width: clamp(76px, 9vw, 108px);
  height: clamp(76px, 9vw, 108px);
  border: 5px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(71, 49, 38, 0.12);
}

.local-card-avatars img + img {
  margin-left: -20px;
}

.local-card-avatars img:nth-child(2) {
  width: clamp(92px, 10vw, 128px);
  height: clamp(92px, 10vw, 128px);
  transform: translateY(-14px);
}

.local-hero-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.08;
}

.local-hero-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.local-chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.local-chip-row span,
.local-city-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 92, 78, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0 15px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.local-content-section,
.local-city-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.86fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: start;
  padding: 82px var(--page-gutter);
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.local-content-copy h2,
.local-city-section h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.1;
}

.local-content-copy p,
.local-city-section > p {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.local-list {
  display: grid;
  gap: 14px;
}

.local-list-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-radius: 26px;
  background: var(--band-clay);
  padding: 18px;
}

.local-list-item > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  font-size: 20px;
}

.local-list-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.local-list-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.48;
}

.local-city-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  background: var(--band-blush-soft);
  box-shadow: 0 0 0 100vmax var(--band-blush-soft);
}

.local-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.local-city-grid span {
  min-height: 52px;
  border-radius: 18px;
  color: var(--ink);
}

.local-faq-section {
  background: var(--band-founder);
  box-shadow: 0 0 0 100vmax var(--band-founder);
}

.guide-link-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  padding: 82px var(--page-gutter);
  background: var(--band-clay);
  box-shadow: 0 0 0 100vmax var(--band-clay);
  clip-path: inset(0 -100vmax);
}

.guide-link-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
}

.guide-link-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.guide-card-grid {
  display: grid;
  gap: 14px;
}

.guide-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(71, 49, 38, 0.08);
}

.guide-card span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--sage-soft);
  padding: 6px 10px;
  color: var(--sage-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.guide-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.52;
}

.local-cta-button {
  margin-top: 8px;
  background: var(--cta-blush);
}

.discover-phone {
  --phone-safe-area-height: clamp(44px, 4.3vw, 48px);
  --phone-screen-bg: #faf9f6;
  position: relative;
  z-index: 2;
  width: min(100%, 350px);
  aspect-ratio: 430 / 932;
  overflow: hidden;
  border: 10px solid #262626;
  border-radius: 62px;
  background: #262626;
  box-shadow:
    0 34px 76px rgba(71, 49, 38, 0.18),
    0 12px 26px rgba(71, 49, 38, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.discover-phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 6;
  width: 102px;
  height: 30px;
  border-radius: 999px;
  background: #1f1f1f;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.discover-phone::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: 50px;
  box-shadow: inset 0 0 0 1.5px rgba(38, 38, 38, 0.78);
}

.phone-status-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  height: var(--phone-safe-area-height);
  border-radius: 50px 50px 0 0;
  background: var(--phone-screen-bg);
}

.app-prototype-frame {
  position: absolute;
  top: var(--phone-safe-area-height);
  right: -1px;
  bottom: -1px;
  left: -1px;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% - var(--phone-safe-area-height) + 2px);
  border: 0;
  background: var(--phone-screen-bg);
  border-radius: 0 0 50px 50px;
  clip-path: inset(0 round 0 0 50px 50px);
}

.app-demo-video {
  -webkit-appearance: none;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
  object-fit: cover;
  transform: translateZ(0);
}

.app-status {
  display: flex;
  height: 28px;
  align-items: end;
  justify-content: space-between;
  padding: 0 25px 4px;
  background: #f8f5f0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.app-status span:last-child {
  width: 52px;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #2e2e2e 0 36%, transparent 36% 48%, #2e2e2e 48% 72%, transparent 72% 82%, #2e2e2e 82% 100%);
  opacity: 0.72;
}

.discover-header {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: rgba(250, 248, 245, 0.94);
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.discover-filter {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-size: 17px;
}

.discover-filter::before,
.discover-filter::after {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.discover-filter::before {
  transform: translateY(-5px);
  box-shadow: 0 10px 0 var(--ink);
}

.discover-filter::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f8f5f0;
  box-shadow:
    -7px -5px 0 -2px #f8f5f0,
    -6px 5px 0 -2px #f8f5f0,
    -6px -5px 0 var(--ink),
    8px 5px 0 var(--ink);
}

.prototype-viewport {
  position: relative;
  height: calc(100% - 86px);
  overflow: hidden;
  padding: 0 14px 86px;
}

.profile-card-demo {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(139, 94, 60, 0.08);
}

.profile-card-scroll-demo {
  animation: appProfileFlow 13s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.demo-photo-panel {
  position: relative;
  min-height: 382px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background:
    linear-gradient(180deg, rgba(46, 46, 46, 0) 38%, rgba(46, 46, 46, 0.7) 100%),
    radial-gradient(circle at 48% 31%, #4b2f28 0 16%, transparent 17%),
    radial-gradient(circle at 48% 42%, #f2c9ab 0 12%, transparent 13%),
    radial-gradient(ellipse at 50% 69%, #f3d6c7 0 24%, transparent 25%),
    linear-gradient(135deg, #d8d0c4, #f2e2dc 44%, #c2cdbd);
}

.demo-photo-panel::before,
.demo-photo-panel::after {
  position: absolute;
  content: "";
}

.demo-photo-panel::before {
  left: 82px;
  top: 124px;
  width: 174px;
  height: 212px;
  border-radius: 48% 52% 22% 22%;
  background:
    radial-gradient(circle at 48% 8%, #2e2e2e 0 35px, transparent 36px),
    linear-gradient(180deg, #f6e5dc 0 36%, #c7d2c0 36% 100%);
  box-shadow: 68px 30px 0 -32px rgba(122, 92, 78, 0.2);
}

.demo-photo-panel::after {
  right: 46px;
  bottom: 62px;
  width: 92px;
  height: 120px;
  border-radius: 999px 999px 28px 28px;
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(8deg);
}

.demo-photo-dots {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.demo-photo-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.demo-photo-dots span:first-child {
  width: 40px;
  background: #fff;
}

.demo-person {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 1px 10px rgba(46, 46, 46, 0.32);
}

.demo-name-line {
  display: flex;
  align-items: center;
  gap: 9px;
}

.zodiac-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 10px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 600;
  text-shadow: none;
}

.demo-person strong {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.05;
}

.demo-person small {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
}

.profile-body-demo {
  padding: 24px 16px 148px;
  background: #fff;
}

.discover-vibe {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 44% 56% 48% 52% / 54% 44% 56% 46%;
  background: var(--rose-soft);
  padding: 28px 18px 32px;
  color: inherit;
  font: inherit;
  text-align: center;
}

.discover-vibe::before,
.discover-vibe::after {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown);
  font-size: 26px;
  line-height: 58px;
  content: "🎯";
  filter: drop-shadow(0 12px 22px rgba(71, 49, 38, 0.12));
}

.discover-vibe::before {
  top: -4px;
  left: 8px;
  transform: rotate(-12deg);
}

.discover-vibe::after {
  right: 12px;
  bottom: -10px;
  content: "💬";
  transform: rotate(11deg);
}

.discover-vibe span,
.discover-circle-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.discover-vibe strong {
  display: block;
  margin-top: 6px;
  color: #c38383;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}

.discover-bio {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.discover-section {
  margin: 34px 0 0;
}

.discover-section h3 {
  margin: 0 0 13px;
  font-size: 18px;
  font-weight: 700;
}

.soft-chip-row span {
  border-radius: 999px;
  border: 0;
  background: #f9f5f1;
  padding: 9px 12px;
  color: #746a63;
  font-size: 13px;
  font-weight: 500;
}

.looking-list li {
  align-items: center;
  color: #344054;
  font-size: 15px;
  font-weight: 500;
}

.discover-circle-card {
  margin: 34px 0 0;
  border-radius: 22px;
  background: rgba(163, 184, 153, 0.18);
  padding: 18px;
  box-shadow: none;
}

.paw-approval-badge {
  position: absolute;
  right: 20px;
  bottom: 72px;
  z-index: 4;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--brown);
  padding: 8px 18px 8px 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  opacity: 0;
  box-shadow: 0 18px 34px rgba(122, 92, 78, 0.28);
  transform: translateY(18px) scale(0.9);
  animation: pawApprovalCycle 13s ease-in-out infinite;
}

.paw-approval-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.circle-ready-sheet {
  position: absolute;
  right: 12px;
  bottom: 18px;
  left: 12px;
  z-index: 5;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  padding: 18px;
  text-align: center;
  opacity: 0;
  box-shadow: 0 24px 50px rgba(71, 49, 38, 0.18);
  transform: translateY(32px);
  animation: circleReadyCycle 13s ease-in-out infinite;
}

.ready-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 20px;
}

.circle-ready-sheet small,
.circle-ready-sheet strong,
.circle-ready-sheet p {
  display: block;
}

.circle-ready-sheet small {
  margin-top: 10px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.circle-ready-sheet strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
}

.circle-ready-sheet p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.chat-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brown);
  padding: 0 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.demo-bottom-nav {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 3;
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: space-around;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -12px 32px rgba(71, 49, 38, 0.08);
}

.demo-bottom-nav span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #908983;
  font-size: 23px;
}

.demo-paw-action {
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 12px 24px rgba(122, 92, 78, 0.26);
}

.demo-paw-action img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.discover-photo {
  position: relative;
  min-height: 372px;
  overflow: hidden;
  border-radius: 28px 28px 8px 8px;
  background:
    linear-gradient(180deg, rgba(46, 46, 46, 0) 28%, rgba(46, 46, 46, 0.58) 100%),
    radial-gradient(circle at 48% 28%, #e8cece 0 9%, transparent 10%),
    radial-gradient(circle at 56% 28%, #d6b79f 0 9%, transparent 10%),
    radial-gradient(circle at 52% 44%, #7a5c4e 0 18%, transparent 19%),
    linear-gradient(135deg, #f2ede8, #e8cece 44%, #a3b899);
}

.discover-photo::before,
.discover-photo::after {
  position: absolute;
  bottom: 98px;
  width: 86px;
  height: 128px;
  border-radius: 44px 44px 28px 28px;
  background: rgba(255, 255, 255, 0.58);
  content: "";
}

.discover-photo::before {
  left: 72px;
  transform: rotate(-7deg);
}

.discover-photo::after {
  right: 66px;
  transform: rotate(6deg);
}

.discover-person {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  color: #fff;
}

.discover-person span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 5px 9px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 600;
}

.discover-person strong,
.discover-person small {
  display: block;
}

.discover-person strong {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.discover-person small {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}

.discover-vibe {
  margin: 28px 8px 0;
  border-radius: 44% 56% 48% 52% / 54% 44% 56% 46%;
  background: var(--rose-soft);
  padding: 26px 18px 30px;
  text-align: center;
}

.discover-vibe small,
.discover-circle-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.discover-vibe strong {
  display: block;
  margin-top: 6px;
  color: #c38383;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}

.discover-bio {
  margin: 28px 8px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.discover-section {
  margin: 30px 8px 0;
}

.discover-section h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
}

.soft-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.soft-chip-row span {
  border-radius: 999px;
  background: var(--cream);
  padding: 8px 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.looking-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.looking-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.looking-list span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
}

.discover-circle-card {
  margin: 30px 8px 0;
  border-radius: 18px;
  background: rgba(163, 184, 153, 0.2);
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(163, 184, 153, 0.25);
}

.discover-circle-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.discover-circle-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.profile-body-demo .discover-vibe {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.profile-body-demo .discover-vibe span,
.profile-body-demo .discover-circle-card small {
  text-transform: none;
  letter-spacing: 0;
}

.profile-body-demo .discover-bio {
  margin: 24px 0 0;
  font-size: 18px;
}

.profile-body-demo .discover-section {
  margin: 34px 0 0;
}

.profile-body-demo .discover-section h3 {
  font-weight: 700;
}

.profile-body-demo .soft-chip-row span {
  border: 0;
  background: #fbf7f3;
  color: #746a63;
}

.profile-body-demo .looking-list li {
  color: #344054;
  font-weight: 500;
}

.profile-body-demo .discover-circle-card {
  margin: 34px 0 0;
  border-radius: 22px;
  background: rgba(163, 184, 153, 0.18);
  box-shadow: none;
}

.section,
.product-promise-section,
.circle-value-section,
.founder-section,
.faq-section,
.cta-band,
.site-footer {
  width: 100%;
  margin: 0;
}

.section {
  padding: 88px var(--page-gutter);
  background: var(--band-clay);
  box-shadow: 0 0 0 100vmax var(--band-clay);
  clip-path: inset(0 -100vmax);
}

.circle-value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
  padding: 84px var(--page-gutter) 88px;
  background: var(--band-blush-soft);
  box-shadow: 0 0 0 100vmax var(--band-blush-soft);
  clip-path: inset(0 -100vmax);
}

.circle-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.06;
}

.circle-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.circle-copy p strong {
  color: var(--ink);
  font-weight: 500;
}

.circle-diagram {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 44px;
  background:
    radial-gradient(circle at 20% 10%, rgba(246, 215, 204, 0.26), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(242, 237, 232, 0.62), transparent 30%),
    rgba(255, 255, 255, 0.84);
  padding: clamp(22px, 4vw, 34px);
  text-align: center;
  box-shadow: 0 26px 70px rgba(71, 49, 38, 0.08);
}

.circle-diagram::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.circle-diagram::before {
  left: 50%;
  top: 112px;
  width: min(74%, 330px);
  height: 130px;
  border-radius: 999px;
  background: rgba(248, 228, 216, 0.52);
  filter: blur(2px);
  transform: translateX(-50%);
}

.match-card-kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 249, 245, 0.92);
  padding: 9px 15px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(139, 94, 60, 0.08);
  border-radius: 999px;
}

.match-card-kicker span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  font-size: 12px;
}

.match-avatar-stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 214px;
  align-items: center;
  justify-content: center;
  margin: 12px auto 0;
}

.match-glow {
  position: absolute;
  left: 50%;
  top: 64px;
  width: min(88%, 360px);
  height: 148px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(248, 228, 216, 0.36), rgba(242, 237, 232, 0.58));
  transform: translateX(-50%);
}

.match-avatar {
  position: relative;
  z-index: 3;
  display: flex;
  width: 112px;
  flex-direction: column;
  align-items: center;
  margin: 0 -10px;
  animation: matchAvatarPop 5.5s ease-in-out infinite;
}

.match-avatar img,
.match-avatar-art {
  display: block;
  width: 92px;
  height: 92px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(139, 94, 60, 0.16);
}

.match-avatar-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, #fff8f2 0 26%, transparent 27%),
    linear-gradient(145deg, #efe5d8, #d6c4b6);
}

.match-avatar-art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 27px;
  width: 32px;
  height: 28px;
  border-radius: 50%;
  background: #f7d8bd;
  transform: translateX(-50%);
  box-shadow: 0 30px 0 16px #f7d8bd;
}

.match-avatar-art::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 32px;
  width: 46px;
  height: 34px;
  border-radius: 50% 50% 48% 48%;
  background: #5f4a40;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 92% 42%, 72% 30%, 60% 48%, 38% 28%, 24% 44%, 8% 34%);
}

.match-avatar-art span {
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 72px;
  height: 48px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(122, 92, 78, 0.06);
}

.match-avatar-art-sage {
  background:
    radial-gradient(circle at 50% 38%, #fff8f2 0 26%, transparent 27%),
    linear-gradient(145deg, #dfe9d8, #a3b899);
}

.match-avatar-art-rose {
  background:
    radial-gradient(circle at 50% 38%, #fff8f2 0 26%, transparent 27%),
    linear-gradient(145deg, #f2dddd, #e8cece);
}

.match-avatar-art-you {
  background:
    radial-gradient(circle at 50% 38%, #fff8f2 0 26%, transparent 27%),
    linear-gradient(145deg, #f6e7dc, #c9d7c0);
}

.match-avatar-art-you::after {
  background: #3c312d;
}

.match-avatar > span {
  max-width: 96px;
  margin-top: 9px;
  overflow: hidden;
  border: 1px solid #e8d8ce;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 8px 14px rgba(139, 94, 60, 0.08);
}

.avatar-center {
  z-index: 5;
  margin-top: -54px;
}

.avatar-center img,
.avatar-center .match-avatar-art {
  width: 104px;
  height: 104px;
}

.avatar-left,
.avatar-right {
  margin-top: 32px;
}

.avatar-left {
  transform: rotate(-3deg);
}

.avatar-right {
  transform: rotate(3deg);
  animation-delay: 0.18s;
}

.match-card-copy {
  position: relative;
  z-index: 2;
  margin-top: -2px;
}

.match-card-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.match-card-copy p {
  max-width: 330px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.match-commonality-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.match-commonality-row span {
  border-radius: 999px;
  background: #fff;
  padding: 9px 12px;
  color: #746a63;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(122, 92, 78, 0.08);
}

.match-chat-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--brown);
  padding: 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(139, 94, 60, 0.18);
}

.match-privacy-note {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: #9a948e;
  font-size: 12px;
  font-weight: 700;
}

.section-heading {
  max-width: 620px;
}

.section h2,
.product-promise-section h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 1.08;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.steps article {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  padding: 20px 22px 30px;
  box-shadow: 0 20px 48px rgba(71, 49, 38, 0.06);
}

.step-illustration {
  position: relative;
  display: flex;
  height: 268px;
  align-items: center;
  justify-content: center;
  margin: -8px -10px 30px;
  overflow: visible;
}

.step-illustration img {
  display: block;
  width: min(104%, 300px);
  max-height: 254px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(71, 49, 38, 0.08));
}

.step-illustration-goals {
  align-items: flex-end;
}

.step-illustration-goals img {
  transform: translateY(18px);
}

.step-illustration-chat img {
  animation: chatIllustrationFloat 5.4s ease-in-out infinite;
}

.goal-picker-demo,
.commonality-demo,
.chat-bubble-demo {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.goal-picker-demo span,
.commonality-demo span,
.chat-bubble-demo span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 86%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #6f594e;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(71, 49, 38, 0.12);
  backdrop-filter: blur(10px);
}

.goal-picker-demo span {
  top: 4px;
  left: 50%;
  min-height: 34px;
  padding: 0 14px;
  transform: translateX(-50%);
  opacity: 0;
  animation: goalPick 6.3s ease-in-out infinite;
}

.goal-picker-demo span:nth-child(1) {
  animation-delay: 0s;
}

.goal-picker-demo span:nth-child(2) {
  animation-delay: 2.1s;
}

.goal-picker-demo span:nth-child(3) {
  animation-delay: 4.2s;
}

.commonality-demo span {
  min-height: 32px;
  padding: 0 12px;
  color: #5f704f;
  animation: commonalityPulse 5.8s ease-in-out infinite;
}

.commonality-demo span:nth-child(1) {
  left: 2px;
  top: 32px;
  animation-delay: 0s;
}

.commonality-demo span:nth-child(2) {
  right: -2px;
  top: 94px;
  animation-delay: 0.72s;
}

.commonality-demo span:nth-child(3) {
  left: 28px;
  bottom: 8px;
  animation-delay: 1.44s;
}

.chat-bubble-demo span {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 18px 18px 18px 6px;
  color: #6d5549;
  animation: chatBubbleCycle 6s ease-in-out infinite;
}

.chat-bubble-demo span:nth-child(1) {
  left: 10px;
  top: 52px;
  animation-delay: 0s;
}

.chat-bubble-demo span:nth-child(2) {
  right: 2px;
  top: 104px;
  border-radius: 18px 18px 6px 18px;
  animation-delay: 1.2s;
}

.chat-bubble-demo span:nth-child(3) {
  left: 38px;
  bottom: 8px;
  animation-delay: 2.4s;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-icon {
  display: inline-flex;
  height: 42px;
  flex: 0 0 auto;
  width: fit-content;
  min-width: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-ink);
  font-size: 13px;
  font-weight: 800;
}

.steps h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
}

.steps p,
.product-promise-section p,
.cta-band p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.steps p {
  margin-top: 14px;
}

.product-promise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: start;
  padding: 76px max(clamp(20px, 5vw, 54px), var(--page-gutter));
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.promise-copy p {
  max-width: 540px;
  margin: 18px 0 0;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 88px;
  margin: 0;
  border-radius: 26px;
  background: var(--band-clay);
  padding: 16px 18px;
  color: var(--ink);
}

.feature-item h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.feature-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: center;
  padding: 96px var(--page-gutter) 88px;
  background: var(--band-founder);
  box-shadow: 0 0 0 100vmax var(--band-founder);
  clip-path: inset(0 -100vmax);
}

.founder-photo-wrap {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  justify-self: center;
}

.founder-photo-wrap::before {
  position: absolute;
  inset: 18px -16px -16px 18px;
  z-index: 0;
  border-radius: 50%;
  background: rgba(232, 206, 206, 0.32);
  content: "";
}

.founder-photo-wrap > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.founder-copy {
  max-width: 650px;
}

.founder-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.12;
}

.founder-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.62;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--cream);
  padding: 0 15px;
  color: var(--brown-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.social-link span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: 84px var(--page-gutter) 88px;
  background: var(--band-blush-soft);
  box-shadow: 0 0 0 100vmax var(--band-blush-soft);
  clip-path: inset(0 -100vmax);
}

.faq-copy {
  position: sticky;
  top: calc(var(--site-header-height) + 28px);
}

.faq-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.1;
}

.faq-copy p {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(111, 82, 70, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 18px 46px rgba(71, 49, 38, 0.06);
}

.faq-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.cta-band {
  margin-top: 0;
  margin-bottom: 0;
  background: var(--band-cta);
  padding: clamp(28px, 6vw, 58px) var(--page-gutter);
  text-align: center;
  box-shadow: 0 0 0 100vmax var(--band-cta);
  clip-path: inset(0 -100vmax);
}

.cta-band .eyebrow {
  color: rgba(255, 243, 242, 0.82);
}

.cta-band h2 {
  color: #fff;
}

.cta-band > p {
  color: rgba(255, 255, 255, 0.86);
}

.cta-band p {
  max-width: 560px;
  margin: 18px auto 26px;
}

.waitlist-form {
  scroll-margin-top: calc(var(--site-header-height) + 28px);
  width: min(100%, 640px);
  margin: 30px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 22px 54px rgba(43, 29, 23, 0.2);
}

.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 18px;
  text-align: left;
}

.waitlist-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.waitlist-field-full {
  grid-column: 1 / -1;
}

.waitlist-options {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(122, 92, 78, 0.12);
  border-radius: 24px;
  background: #fffaf8;
  padding: clamp(16px, 3vw, 20px);
}

.waitlist-options-header {
  display: grid;
  gap: 4px;
}

.waitlist-options-header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.waitlist-options-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.waitlist-options-fields {
  display: grid;
  gap: 14px;
}

.waitlist-field em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.waitlist-field-help {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.waitlist-field-error {
  color: #b83a57;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.waitlist-field input,
.waitlist-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(122, 92, 78, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  padding: 0 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.waitlist-field input::placeholder {
  color: rgba(107, 95, 88, 0.68);
}

.waitlist-field input:focus,
.waitlist-field select:focus {
  border-color: rgba(122, 92, 78, 0.42);
  box-shadow: 0 0 0 4px rgba(122, 92, 78, 0.1);
}

.waitlist-field input:user-invalid,
.waitlist-field select:user-invalid {
  border-color: rgba(184, 58, 87, 0.5);
  box-shadow: 0 0 0 4px rgba(184, 58, 87, 0.1);
}

.waitlist-field.is-invalid > span {
  color: #b83a57;
}

.waitlist-field.is-invalid input,
.waitlist-field.is-invalid select {
  border-color: rgba(184, 58, 87, 0.74);
  background: #fff4f7;
  box-shadow:
    0 0 0 4px rgba(184, 58, 87, 0.13),
    inset 0 0 0 1px rgba(184, 58, 87, 0.12);
}

.waitlist-field.is-invalid input:focus,
.waitlist-field.is-invalid select:focus {
  border-color: rgba(184, 58, 87, 0.86);
  box-shadow:
    0 0 0 5px rgba(184, 58, 87, 0.15),
    inset 0 0 0 1px rgba(184, 58, 87, 0.14);
}

.waitlist-validation-summary {
  width: min(100%, 500px);
  margin: 0 auto 16px;
  border: 1px solid rgba(184, 58, 87, 0.26);
  border-radius: 16px;
  background: #fff4f7;
  color: #b83a57;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  padding: 12px 14px;
  text-align: left;
}

.waitlist-form .primary-button {
  width: min(100%, 320px);
}

.waitlist-consent {
  max-width: 430px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.waitlist-form .primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.waitlist-error {
  width: min(100%, 420px);
  margin: 14px auto 0;
  color: #b83a57;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.waitlist-confirmation {
  position: relative;
  overflow: visible;
  width: min(100%, 560px);
  margin: 30px auto 0;
  border: 1px solid rgba(163, 184, 153, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 18px 44px rgba(71, 49, 38, 0.08);
  animation: waitlistConfirmPop 540ms cubic-bezier(0.19, 1, 0.22, 1) both;
  isolation: isolate;
}

.waitlist-confirmation::before {
  pointer-events: none;
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 38px;
  background:
    radial-gradient(circle at 28% 18%, rgba(232, 206, 206, 0.34), transparent 32%),
    radial-gradient(circle at 78% 70%, rgba(163, 184, 153, 0.3), transparent 34%);
  content: "";
  opacity: 0;
  animation: waitlistConfirmGlow 1180ms ease-out both;
}

.waitlist-confirmation[hidden] {
  display: none;
}

.waitlist-confirmation h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.waitlist-confirmation p {
  margin: 10px auto 0;
}

.waitlist-invite {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(122, 92, 78, 0.12);
}

.waitlist-invite p {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.waitlist-invite-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.waitlist-confirmation .invite-mom-button {
  min-width: min(100%, 250px);
}

.waitlist-invite .invite-mom-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.waitlist-invite .invite-mom-status[hidden] {
  display: none;
}

.waitlist-confetti {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: -18px;
  z-index: 2;
  width: min(620px, calc(100vw - 40px));
  height: 220px;
  overflow: visible;
  transform: translateX(-50%);
}

.waitlist-confetti-piece {
  position: absolute;
  left: 50%;
  top: 0;
  width: 10px;
  height: 14px;
  border-radius: 5px;
  background: var(--confetti-color);
  opacity: 0;
  transform: translate3d(var(--confetti-x), var(--confetti-y), 0) rotate(0deg);
  animation: waitlistConfettiFloat var(--confetti-duration) cubic-bezier(0.12, 0.72, 0.28, 1) var(--confetti-delay) forwards;
}

.waitlist-confetti-piece.is-circle {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.waitlist-confetti-piece.is-leaf {
  width: 12px;
  height: 8px;
  border-radius: 999px 0 999px 0;
}

.waitlist-confetti-piece.is-ribbon {
  border-radius: 3px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
  background: var(--band-cta);
  box-shadow: 0 0 0 100vmax var(--band-cta);
  clip-path: inset(0 -100vmax);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(-46%) rotate(-1deg);
  }

  50% {
    transform: translateY(-49%) rotate(1deg);
  }
}

@keyframes ellipsisPulse {
  0%,
  76%,
  100% {
    opacity: 0.28;
    transform: translateY(0);
  }

  28% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes waitlistConfirmPop {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

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

@keyframes waitlistConfirmGlow {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  36% {
    opacity: 1;
  }

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

@keyframes waitlistConfettiFloat {
  0% {
    opacity: 0;
    transform: translate3d(var(--confetti-x), var(--confetti-y), 0) rotate(0deg) scale(0.7);
  }

  14% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(
        calc(var(--confetti-x) + var(--confetti-drift)),
        178px,
        0
      )
      rotate(var(--confetti-rotation))
      scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-confirmation,
  .waitlist-confirmation::before,
  .animated-ellipsis span,
  .waitlist-confetti-piece {
    animation: none;
  }
}

@keyframes profileScroll {
  0%,
  20% {
    transform: translateY(0);
  }

  48%,
  64% {
    transform: translateY(-250px);
  }

  86%,
  100% {
    transform: translateY(-452px);
  }
}

@keyframes appProfileFlow {
  0%,
  16% {
    transform: translateY(0);
  }

  38%,
  52% {
    transform: translateY(-248px);
  }

  68%,
  100% {
    transform: translateY(-438px);
  }
}

@keyframes pawApprovalCycle {
  0%,
  51% {
    opacity: 0;
    transform: translateY(18px) scale(0.9);
  }

  58%,
  66% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  74%,
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
}

@keyframes circleReadyCycle {
  0%,
  68% {
    opacity: 0;
    transform: translateY(32px);
  }

  78%,
  94% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(71, 49, 38, 0.1);
  }

  50% {
    box-shadow: 0 22px 48px rgba(122, 92, 78, 0.16);
  }
}

@keyframes matchAvatarPop {
  0%,
  100% {
    filter: drop-shadow(0 10px 18px rgba(139, 94, 60, 0.08));
  }

  50% {
    filter: drop-shadow(0 16px 28px rgba(139, 94, 60, 0.13));
  }
}

@keyframes goalPick {
  0%,
  8%,
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.96);
  }

  14%,
  28% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    background: #f0eadf;
    color: #5f704f;
    box-shadow: 0 12px 28px rgba(95, 112, 79, 0.16);
  }

  34% {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px) scale(0.98);
  }
}

@keyframes commonalityPulse {
  0%,
  16%,
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }

  26%,
  58% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  72% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

@keyframes chatBubbleCycle {
  0%,
  16%,
  100% {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }

  28%,
  54% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  68% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
}

@keyframes chatIllustrationFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.02);
  }
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1180px) {
  nav {
    gap: 8px;
    font-size: 13px;
  }

  nav a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .nav-cta {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 760px) {
  nav a:not(.nav-cta) {
    display: none;
  }

}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 32px;
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .share-page-main {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .share-page-visual {
    min-height: 280px;
    order: -1;
  }

  h1 {
    font-size: clamp(46px, 7vw, 68px);
  }

  .phone-preview {
    width: min(100%, 300px);
  }

  .demo-photo-panel {
    min-height: 340px;
  }

  .profile-body-demo {
    padding-bottom: 132px;
  }

  .steps,
  .product-promise-section,
  .circle-value-section,
  .founder-section,
  .faq-section,
  .local-hero,
  .local-content-section,
  .local-city-section,
  .guide-link-section {
    grid-template-columns: 1fr;
  }

  .steps {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .section {
    padding: 58px var(--page-gutter);
  }

  .circle-value-section {
    padding: 58px var(--page-gutter);
    gap: 34px;
  }

  .circle-diagram {
    width: min(100%, 560px);
    min-height: 470px;
    justify-self: center;
  }

  .product-promise-section {
    gap: 34px;
  }

  .local-hero-card,
  .local-list,
  .local-city-grid {
    width: min(100%, 620px);
  }

  .local-hero-card,
  .local-list {
    justify-self: center;
  }

  .guide-link-section {
    gap: 24px;
  }

  .guide-card-grid {
    width: min(100%, 620px);
  }

  .founder-section {
    padding-top: 64px;
  }

  .faq-copy {
    position: static;
  }

  .founder-photo-wrap {
    justify-self: center;
    width: min(78vw, 300px);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px var(--page-gutter) 34px;
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  :root {
    --page-gutter: 24px;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 50px;
  }

  .phone-preview {
    width: clamp(240px, 42vw, 300px);
    justify-self: center;
  }

  .hero-motion {
    width: 100%;
    aspect-ratio: 430 / 932;
  }

  .hero-motion .app-demo-video {
    object-position: top center;
  }

  .lead {
    max-width: 620px;
  }
}

@media (max-width: 520px) {
  :root {
    --page-gutter: 20px;
  }

  .brand-name {
    font-size: 17px;
    display: none;
  }

  .site-header {
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .nav-cta {
    min-height: 44px;
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .lead {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .share-page-main {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .share-page-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .share-page-visual {
    min-height: 220px;
  }

  .share-page-visual img {
    width: min(82vw, 320px);
  }

  .hero .primary-button {
    min-width: 0;
    min-height: 60px;
    padding-right: 28px;
    padding-left: 28px;
    font-size: 16px;
  }

  .hero-cta-note {
    font-size: 14px;
  }

  .phone-preview {
    width: clamp(210px, 58vw, 250px);
  }

  .section,
  .circle-value-section,
  .product-promise-section,
  .founder-section,
  .faq-section,
  .local-hero,
  .local-content-section,
  .local-city-section,
  .guide-link-section {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .circle-copy h2,
  .promise-copy h2,
  .founder-copy h2,
  .faq-copy h2,
  .local-content-copy h2,
  .local-city-section h2,
  .guide-link-copy h2,
  .cta-band h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .circle-copy p,
  .promise-copy p,
  .founder-copy p,
  .faq-copy p,
  .local-content-copy p,
  .local-city-section > p,
  .guide-link-copy p,
  .cta-band > p {
    font-size: 16px;
  }

  .local-hero {
    gap: 34px;
  }

  .local-hero-card {
    border-radius: 28px;
  }

  .local-city-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-fields {
    grid-template-columns: 1fr;
  }

  .waitlist-options {
    padding: 14px;
  }

  .waitlist-form .primary-button {
    width: 100%;
  }

  .primary-button {
    width: 100%;
  }

  .secondary-button {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .discover-phone {
    width: min(100%, 360px);
    --phone-safe-area-height: 44px;
    border-width: 8px;
    border-radius: 54px;
  }

  .discover-phone::before {
    top: 10px;
    width: 96px;
    height: 28px;
  }

  .phone-status-bar {
    border-radius: 46px 46px 0 0;
  }

  .app-prototype-frame {
    border-radius: 0 0 46px 46px;
    clip-path: inset(0 round 0 0 46px 46px);
  }

  .circle-diagram {
    min-height: 410px;
    border-radius: 30px;
    padding: 24px 16px;
  }

  .match-avatar {
    width: 94px;
    margin: 0 -14px;
  }

  .match-avatar img,
  .match-avatar-art {
    width: 78px;
    height: 78px;
  }

  .avatar-center img,
  .avatar-center .match-avatar-art {
    width: 92px;
    height: 92px;
  }

  .step-title {
    align-items: flex-start;
  }

  .feature-item {
    border-radius: 24px;
  }

}
