:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --surface-soft: #f0ece4;
  --sand: #e9e0d2;
  --sand-deep: #d7c6ac;
  --text: #182033;
  --muted: #6f7584;
  --line: #e7e2d9;
  --accent: #cfb790;
  --navy: #111c31;
  --navy-2: #07121f;
  --shadow: 0 30px 80px rgba(15, 24, 42, 0.12);
  --soft-shadow: 0 15px 40px rgba(15, 24, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 241, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 32, 51, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(24, 32, 51, 0.18);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(24, 32, 51, 0.18);
}

.brand-mark::after { inset: 10px; }

.main-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a,
.login-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(24, 32, 51, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 28, 49, 0.16);
}

.btn-light {
  background: var(--surface);
  border: 1px solid rgba(24, 32, 51, 0.12);
  color: var(--text);
}

.btn-small {
  padding: 12px 20px;
  font-size: 14px;
}

.hero { padding: 72px 0 88px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #efe8dc;
  color: #5e5a55;
  font-size: 13px;
  font-weight: 600;
}

.eyebrow::before {
  content: "◌";
  font-size: 14px;
}

.hero h1,
.business-types h2,
.stats-band h2,
.final-cta h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 0;
}

.hero h1 {
  font-size: clamp(56px, 8vw, 84px);
  max-width: 560px;
  margin-top: 24px;
}

.hero-copy > p {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.avatars {
  display: flex;
  padding-left: 6px;
}

.avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -6px;
  background: linear-gradient(135deg, #d5c2a0, #24314f);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-card {
  position: relative;
  width: min(100%, 620px);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(24, 32, 51, 0.08);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(24, 32, 51, 0.05);
}

.dots { display: flex; gap: 7px; }

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

.address-bar {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f7f5f1;
  color: #9aa1af;
  font-size: 12px;
  flex: 1;
}

.browser-body {
  padding: 28px 26px 24px;
  background: linear-gradient(180deg, #fdfdfd 0%, #f6f5f2 100%);
}

.ui-line {
  height: 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.line-dark { background: #23314e; }
.line-mid { background: #b8c0cd; }
.line-light { background: #dfe4ea; }
.short { width: 120px; }
.medium { width: 210px; }
.long { width: 280px; }

.ui-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: -28px 0 20px;
}

.ui-nav span {
  width: 52px;
  height: 14px;
  border-radius: 999px;
  background: #eceff3;
}

.ui-nav .active { background: #d5c0a0; }

.ui-chip {
  width: 72px;
  height: 22px;
  border-radius: 999px;
  background: #b89c70;
  margin: 8px 0 28px;
}

.ui-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.ui-card {
  height: 68px;
  border-radius: 14px;
  background: #f3f4f6;
  border: 1px solid rgba(24, 32, 51, 0.04);
}

.ui-card.tint { background: #f5ebef; }

.browser-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #313e55;
  color: #fff;
  padding: 12px 14px;
}

.drag-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 180px;
}

.drag-box strong,
.drag-box span { display: block; }

.drag-box strong { font-size: 12px; }

.drag-box span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

.drag-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #eef2f7;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.footer-toggle {
  width: 76px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.footer-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 32px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.floating-pill {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid rgba(24, 32, 51, 0.08);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #62708a;
}

.publish-pill {
  top: 36px;
  right: 12px;
}

.mobile-pill {
  right: -18px;
  top: 192px;
}

.logo-strip {
  padding: 28px 0 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 100%);
}

.logo-strip-header {
  text-align: center;
  margin-bottom: 24px;
}

.logo-strip-header p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7e6b;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: logo-scroll 26s linear infinite;
}

.logo-marquee:hover .logo-track { animation-play-state: paused; }

.logo-card {
  min-width: 184px;
  height: 86px;
  padding: 0 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 32, 51, 0.08);
  box-shadow: 0 10px 30px rgba(15, 24, 42, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.logo-ref {
  max-width: 120px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.business-types {
  background: #ede6da;
  padding: 92px 0 108px;
}

.narrow-center,
.cta-content,
.stats-content { text-align: center; }

.business-types h2,
.final-cta h2 {
  font-size: clamp(46px, 5vw, 64px);
}

.business-types p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.type-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.type-card {
  background: #f8f7f5;
  border-radius: 24px;
  border: 1px solid rgba(24, 32, 51, 0.06);
  text-align: left;
  padding: 24px;
  min-height: 360px;
  box-shadow: 0 12px 34px rgba(15, 24, 42, 0.04);
}

.type-blob {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(24, 32, 51, 0.12);
  background: #ddd6ca;
}

.type-blob::before,
.type-blob::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.type-blob::before {
  background:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,0.55), transparent 22%),
    radial-gradient(circle at 74% 30%, rgba(255,255,255,0.2), transparent 20%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.02), rgba(10, 16, 28, 0.18));
  z-index: 1;
}

.type-blob::after {
  inset: auto 18px 16px auto;
  width: 62px;
  height: 62px;
  border-radius: 50% 50% 43% 57% / 53% 37% 63% 47%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.blob-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blob-label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
  color: #22304a;
  letter-spacing: 0.02em;
}

.cafe-blob { border-radius: 36% 64% 58% 42% / 45% 39% 61% 55%; }
.yoga-blob { border-radius: 58% 42% 46% 54% / 39% 54% 46% 61%; }
.dog-blob  { border-radius: 44% 56% 62% 38% / 54% 40% 60% 46%; }

.type-card h3 {
  margin: 22px 0 8px;
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.type-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 28ch;
}

.stats-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(51, 79, 136, 0.25), transparent 34%),
    linear-gradient(180deg, #081325 0%, #07111f 100%);
  padding: 108px 0 112px;
  color: #fff;
}

.stars span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(190, 203, 229, 0.18);
}

.stars span:nth-child(1) { top: 28px; left: 40px; width: 22px; height: 22px; }
.stars span:nth-child(2) { top: 86px; left: 240px; width: 8px; height: 8px; }
.stars span:nth-child(3) { top: 144px; left: 120px; width: 12px; height: 12px; }
.stars span:nth-child(4) { top: 208px; left: 320px; width: 18px; height: 18px; }
.stars span:nth-child(5) { top: 112px; right: 260px; width: 10px; height: 10px; }
.stars span:nth-child(6) { top: 36px; right: 96px; width: 20px; height: 20px; }
.stars span:nth-child(7) { top: 190px; right: 160px; width: 16px; height: 16px; }
.stars span:nth-child(8) { top: 236px; right: 42px; width: 18px; height: 18px; }
.stars span:nth-child(9) { top: 280px; left: 54px; width: 8px; height: 8px; }
.stars span:nth-child(10) { top: 332px; left: 280px; width: 10px; height: 10px; }
.stars span:nth-child(11) { top: 358px; right: 330px; width: 12px; height: 12px; }
.stars span:nth-child(12) { top: 314px; right: 520px; width: 8px; height: 8px; }
.stars span:nth-child(13) { top: 244px; left: 520px; width: 14px; height: 14px; }
.stars span:nth-child(14) { top: 400px; left: 160px; width: 9px; height: 9px; }
.stars span:nth-child(15) { top: 430px; right: 88px; width: 8px; height: 8px; }

.stats-band h2 { font-size: clamp(76px, 9vw, 112px); }

.stats-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.stat-card {
  min-width: 190px;
  padding: 22px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.stat-card strong,
.stat-card span { display: block; }

.stat-card strong {
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.stat-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: #ddd0bb;
  padding: 100px 0 108px;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.blob-left {
  width: 110px;
  height: 110px;
  left: -22px;
  bottom: -26px;
}

.blob-right {
  width: 220px;
  height: 220px;
  right: -54px;
  bottom: -80px;
}

.lead {
  margin: 16px 0 0;
  font-size: 21px;
  font-weight: 700;
  color: rgba(24, 32, 51, 0.9);
}

.sublead {
  margin: 12px 0 0;
  font-size: 16px;
  color: #736c63;
}

.big-cta {
  margin-top: 34px;
  padding-inline: 30px;
}

.fine-print {
  margin-top: 18px;
  font-size: 13px;
  color: #7e776d;
}

.site-footer {
  background: #f5f3ef;
  border-top: 1px solid rgba(24, 32, 51, 0.06);
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer p {
  margin: 0;
  color: #8a8f9b;
  font-size: 13px;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy,
  .hero-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-visual { min-height: 0; }
}

@media (max-width: 820px) {
  .main-nav { display: none; }

  .nav-wrap { min-height: 78px; }

  .hero { padding-top: 42px; }

  .hero h1 { font-size: clamp(46px, 14vw, 72px); }

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

  .stats-band { padding: 84px 0 90px; }

  .stats-band h2 { font-size: clamp(64px, 17vw, 88px); }
}

@media (max-width: 620px) {
  .container { width: min(var(--container), calc(100% - 28px)); }

  .nav-actions .login-link { display: none; }

  .btn,
  .btn-small { width: 100%; }

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

  .browser-body { padding-inline: 16px; }

  .browser-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .drag-box { width: 100%; }

  .footer-toggle { align-self: flex-end; }

  .floating-pill {
    position: static;
    display: inline-flex;
    margin-bottom: 10px;
  }
}
