:root {
  --cream: #f7f2e9;
  --cream-soft: #fbf8f2;
  --ink: #221a22;
  --ink-soft: #6b6270;
  --pink: #ea6f9d;
  --pink-deep: #e0568b;
  --coral: #f2916f;
  --pink-pale: #fbdfe9;
  --rose-solid: #e8618f;
  --white: #ffffff;
  --line: rgba(34, 26, 34, 0.08);
  --shadow-lg: 0 30px 60px -20px rgba(224, 86, 139, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(34, 26, 34, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

/* Decorative background blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.blob-1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -160px;
  background: radial-gradient(circle, #f7c7d7 0%, transparent 70%);
}
.blob-2 {
  width: 480px;
  height: 480px;
  top: 900px;
  left: -220px;
  background: radial-gradient(circle, #fcdcc3 0%, transparent 70%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 242, 233, 0.75);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-wordmark {
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.logo-wordmark b {
  font-weight: 800;
}

.mock-logo-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.mock-logo-wordmark {
  font-weight: 800;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: var(--white);
  padding: 16px 28px;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.btn-small {
  background: var(--ink);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-small:hover {
  opacity: 0.85;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 84px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow-dark {
  background: rgba(34, 26, 34, 0.06);
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 520px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.waitlist-form input[type="email"]:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-pale);
}
.waitlist-form input.error {
  border-color: #d64949;
  box-shadow: 0 0 0 4px rgba(214, 73, 73, 0.12);
}

/* Honeypot: kept in the layout (not display:none) so bots that skip hidden
   fields still fill it in, while real users never see or reach it. */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Hero visual: phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.phone {
  width: 300px;
  background: var(--ink);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.phone-screen {
  background: var(--cream-soft);
  border-radius: 30px;
  padding: 22px 16px 20px;
  overflow: hidden;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.pill {
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pill-pro {
  background: var(--pink-pale);
  color: var(--pink-deep);
}
.pill-stat {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.mock-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 4px 0 2px;
}

.mock-subtitle {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.mock-search {
  background: var(--white);
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mock-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.tab {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--white);
  color: var(--ink-soft);
}
.tab-active {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: var(--white);
}

.mock-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.mock-card-media {
  height: 130px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px;
}

.gradient-a {
  background: linear-gradient(150deg, #2b3a52 0%, #6a3f57 45%, #d97a4f 100%);
}
.gradient-b {
  background: linear-gradient(150deg, #1c2a44 0%, #3b5a7a 55%, #6fae6b 100%);
  height: 90px;
}

.bookmark {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mock-card-body {
  padding: 14px;
}

.tag-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.tag {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.tag-soft {
  background: var(--pink-pale);
  color: var(--pink-deep);
}
.tag-solid {
  background: var(--rose-solid);
  color: var(--white);
}
.tag.tiny {
  font-size: 0.62rem;
  padding: 4px 9px;
}

.mock-card-body h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
}

.mock-card-body p {
  margin: 0 0 12px;
  font-size: 0.72rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  background: var(--cream-soft);
  border-radius: 14px;
  padding: 10px 6px;
  margin-bottom: 12px;
}
.stat-row div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-row b {
  font-size: 0.85rem;
}
.stat-row span {
  font-size: 0.6rem;
  color: var(--ink-soft);
}

.mock-cta {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: var(--white);
  text-align: center;
  padding: 11px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
}

/* Floating cards around the phone */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
  z-index: 3;
  width: 190px;
}

.float-card-1 {
  top: 40px;
  right: -10px;
  animation: float-1 6s ease-in-out infinite;
}

.float-card-2 {
  bottom: 60px;
  left: -30px;
  animation: float-2 7s ease-in-out infinite;
}

.float-title {
  margin: 8px 0 6px;
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.25;
}

.float-stats {
  display: flex;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.float-hash-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.float-hash-row:last-child {
  margin-bottom: 0;
}

.chip {
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* Logos strip */
.logos-strip {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos-strip .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.logos-strip p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.logos-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.logos-row span {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.55;
}

/* Features */
.features {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2, .showcase-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Showcase */
.showcase {
  position: relative;
  z-index: 1;
  padding: 40px 0 100px;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.showcase-visual {
  display: flex;
  justify-content: center;
}

.caption-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  width: 320px;
}

.caption-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.copy-pill {
  background: var(--cream-soft);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.caption-post {
  background: var(--cream-soft);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}

.caption-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  flex-shrink: 0;
}

.caption-post-header b {
  display: block;
  font-size: 0.82rem;
}
.caption-post-header span {
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.caption-post-media {
  border-radius: 12px;
  margin-bottom: 10px;
}

.caption-post-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink);
}

.hashtag-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

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

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Waitlist CTA */
.waitlist-cta {
  position: relative;
  z-index: 1;
  margin: 0 24px 90px;
  padding: 70px 24px;
  border-radius: 36px;
  background: linear-gradient(135deg, #f6a5c0 0%, #f0917c 100%);
  text-align: center;
}

.waitlist-cta-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0 0 14px;
  font-weight: 800;
}

.waitlist-cta-inner > p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.waitlist-form-center {
  margin: 0 auto;
}

.waitlist-cta .btn-primary {
  background: var(--ink);
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.4);
}

.waitlist-cta .form-note {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner, .showcase-inner {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .waitlist-form {
    margin: 0 auto;
  }
  .hero-visual {
    min-height: 480px;
    margin-top: 20px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .waitlist-form {
    flex-direction: column;
  }
  .waitlist-form .btn-primary {
    width: 100%;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .float-card {
    display: none;
  }
  .phone {
    width: 260px;
  }
  .waitlist-cta {
    margin: 0 16px 60px;
    padding: 50px 20px;
  }
}
