/* ═══════════════════════════════════════════════════════
   CoFounder Dekho — Hybrid Design System
   assets/css/landing/style.css
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --cream: #f5f0e8;
  --cream-mid: #ede7d9;
  --cream-deep: #e4dac8;
  --sand: #d4c5a9;
  --ink: #1a1a1a;
  --ink-soft: #2a2720;
  --ink-light: #4a4540;
  --ink-muted: #7a7468;
  --text: #1a1a1a;
  --muted: #888;
  --indigo: #2d2b6b;
  --blue: #2d2b6b;
  --platform-blue: #4f7dff;
  --blue-lt: #4f7dff;
  --gold: #b8935a;
  --gold-light: #d4af7a;
  --accent: #e85d26;
  --orange: #e85d26;
  --accent-warm: #f0a500;
  --green: #2a7a4b;
  --bg: #ede8df;
  --border: #e2ddd4;
  --tag-bg: #f0ede8;
  --font: "DM Sans", sans-serif;
  --serif: "Fraunces", serif;
  --ph: 460px;
}

/* ── BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #fafaf7;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
}
.font-display {
  font-family: "Fraunces", "DM Serif Display", Georgia, serif;
}
.font-mono {
  font-family: "DM Mono", monospace;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 3px;
}

/* ── NAV ────────────────────────────────────────────── */
nav {
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 197, 169, 0.4);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(26, 26, 26, 0.07);
}
.nav-brand-name {
  color: var(--ink);
  letter-spacing: -0.2px;
}
.nav-link {
  color: var(--ink-light);
  text-decoration: none;
}
.ham-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.ham-bar-short {
  width: 14px;
}
.mob-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 98;
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 2px;
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
  background: transparent;
  display: block;
}
.mob-menu a:hover {
  background: var(--cream-mid);
}
.mob-divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 8px 0;
}
.mob-menu-cta {
  display: block !important;
  text-align: center !important;
  background: var(--ink) !important;
  color: white !important;
  border-radius: 10px !important;
  padding: 13px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  margin-top: 4px;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.2s !important;
}
.mob-menu-cta:hover {
  background: #2e2b24 !important;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.22);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--ink);
  color: white;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--ink);
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.btn-ghost-warm {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost-warm:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ── NEW HERO 2026 ───────────────────────────────────────────── */
.hero {
  --h-cream: #f7f5f0;
  --h-ink: #1a1a2e;
  --h-ink2: #374151;
  --h-muted: #6b7280;
  --h-indigo: #312e81;
  --h-green: #22c55e;
  --h-border: #d9d6ce;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--h-cream);
  padding: 130px 28px 0;
  min-height: 620px;
}

/* grain */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}

/* ── ANIMATED BG ── */
.bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── INNER ── */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* ── BADGE ── */
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  border: 1px solid var(--h-border);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--h-ink2);
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  animation: heroFadeUp 0.7s ease both;
}

.hero .badge-dot {
  width: 7px;
  height: 7px;
  background: var(--h-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
  animation: heroPulse 2.5s ease infinite;
}

@keyframes heroPulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.28);
  }
}

/* ── HEADLINE ── */
.hero .headline {
  font-family: "DM Serif Display", var(--serif);
  font-size: clamp(36px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--h-ink);
  margin-bottom: 20px;
  animation: heroFadeUp 0.7s 0.1s ease both;
}

.hero .headline em {
  font-style: italic;
  color: var(--h-indigo);
  position: relative;
}

.hero .headline em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--h-indigo), transparent);
  border-radius: 2px;
  opacity: 0.4;
}

/* ── SUB ── */
.hero .sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--h-muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 36px;
  animation: heroFadeUp 0.7s 0.2s ease both;
}

/* ── BUTTONS ── */
.hero .btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s 0.3s ease both;
}

.hero .btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 9999px;
  background: var(--h-ink);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.14);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.hero .btn-p:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.2);
}

.hero .btn-p:active {
  transform: scale(0.97);
}

.hero .btn-s {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: 9999px;
  border: 1px solid var(--h-ink);
  color: var(--h-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  transition:
    transform 0.2s,
    background 0.2s;
}

.hero .btn-s:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.hero .btn-s:active {
  transform: scale(0.97);
}

/* ── TRUST ── */
.hero .trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  font-size: 13px;
  color: var(--h-muted);
  animation: heroFadeUp 0.7s 0.4s ease both;
}

.hero .trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero .check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .sep {
  width: 1px;
  height: 14px;
  background: var(--h-border);
  opacity: 0.7;
}

/* ── SOCIAL PROOF CHIP ── */
.hero .av-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--h-border);
  border-radius: 9999px;
  padding: 5px 14px 5px 8px;
  font-size: 12px;
  color: var(--h-ink2);
  font-weight: 500;
  white-space: nowrap;
  margin-top: 40px;
  animation: heroFadeUp 0.7s 0.5s ease both;
}

.hero .av-stack {
  display: flex;
}

.hero .av-mini {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
  margin-left: -6px;
}

.hero .av-mini:first-child {
  margin-left: 0;
}

.hero .av-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── DESKTOP FLOATING AVATARS ── */
.hero .avatars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero .av {
  position: absolute;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.hero .av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero .av1 {
  top: 30%;
  left: 10%;
  width: 46px;
  height: 46px;
  animation:
    heroFloatIn 0.8s 0.1s ease both,
    heroBob 6s 1s ease-in-out infinite;
}
.hero .av2 {
  top: 46%;
  left: 6%;
  width: 56px;
  height: 56px;
  animation:
    heroFloatIn 0.8s 0.15s ease both,
    heroBob 7s 1.2s ease-in-out infinite;
}
.hero .av3 {
  top: 46%;
  left: 17%;
  width: 38px;
  height: 38px;
  animation:
    heroFloatIn 0.8s 0.2s ease both,
    heroBob 5.5s 1.4s ease-in-out infinite;
}
.hero .av4 {
  top: 62%;
  left: 12%;
  width: 50px;
  height: 50px;
  animation:
    heroFloatIn 0.8s 0.25s ease both,
    heroBob 6.5s 1.6s ease-in-out infinite;
}
.hero .av5 {
  top: 33%;
  right: 10%;
  width: 50px;
  height: 50px;
  animation:
    heroFloatIn 0.8s 0.1s ease both,
    heroBob 6s 1s ease-in-out infinite;
}
.hero .av6 {
  top: 44%;
  right: 17%;
  width: 38px;
  height: 38px;
  animation:
    heroFloatIn 0.8s 0.15s ease both,
    heroBob 5.5s 1.4s ease-in-out infinite;
}
.hero .av7 {
  top: 47%;
  right: 5%;
  width: 58px;
  height: 58px;
  animation:
    heroFloatIn 0.8s 0.2s ease both,
    heroBob 7s 1.2s ease-in-out infinite;
}
.hero .av8 {
  top: 63%;
  right: 11%;
  width: 48px;
  height: 48px;
  animation:
    heroFloatIn 0.8s 0.25s ease both,
    heroBob 6.5s 1.6s ease-in-out infinite;
}

@keyframes heroBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes heroFloatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MOCKUP OUTER WRAPPER ───────────────────────────── */
.mockup-outer-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

/* ── BROWSER ────────────────────────────────────────── */
.browser {
  width: 1100px;
  min-width: 1100px;
  border-radius: 14px;
  box-shadow:
    0 28px 56px rgba(26, 26, 26, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: white;
  transform-origin: top left;
  transform: scale(1) translateX(0);
}
@media (max-width: 1131px) {
  .browser {
    transform: scale(0.95) translateX(calc((1 - 0.95) * 1100px / 2 / 0.95));
    margin-bottom: calc(-532px * 0.05);
  }
}
@media (max-width: 1075px) {
  .browser {
    transform: scale(0.9) translateX(calc((1 - 0.9) * 1100px / 2 / 0.9));
    margin-bottom: calc(-532px * 0.1);
  }
}
@media (max-width: 1020px) {
  .browser {
    transform: scale(0.85) translateX(calc((1 - 0.85) * 1100px / 2 / 0.85));
    margin-bottom: calc(-532px * 0.15);
  }
}
@media (max-width: 960px) {
  .browser {
    transform: scale(0.8) translateX(calc((1 - 0.8) * 1100px / 2 / 0.8));
    margin-bottom: calc(-532px * 0.2);
  }
}
@media (max-width: 905px) {
  .browser {
    transform: scale(0.75) translateX(calc((1 - 0.75) * 1100px / 2 / 0.75));
    margin-bottom: calc(-532px * 0.25);
  }
}
@media (max-width: 850px) {
  .browser {
    transform: scale(0.7) translateX(calc((1 - 0.7) * 1100px / 2 / 0.7));
    margin-bottom: calc(-532px * 0.3);
  }
}
@media (max-width: 795px) {
  .browser {
    transform: scale(0.65) translateX(calc((1 - 0.65) * 1100px / 2 / 0.65));
    margin-bottom: calc(-532px * 0.35);
  }
}
@media (max-width: 740px) {
  .browser {
    transform: scale(0.6) translateX(calc((1 - 0.6) * 1100px / 2 / 0.6));
    margin-bottom: calc(-532px * 0.4);
  }
}
@media (max-width: 685px) {
  .browser {
    transform: scale(0.55) translateX(calc((1 - 0.55) * 1100px / 2 / 0.55));
    margin-bottom: calc(-532px * 0.45);
  }
}
@media (max-width: 630px) {
  .browser {
    transform: scale(0.5) translateX(calc((1 - 0.5) * 1100px / 2 / 0.5));
    margin-bottom: calc(-532px * 0.5);
  }
}
@media (max-width: 575px) {
  .browser {
    transform: scale(0.45) translateX(calc((1 - 0.45) * 1100px / 2 / 0.45));
    margin-bottom: calc(-532px * 0.55);
  }
}
@media (max-width: 520px) {
  .browser {
    transform: scale(0.4) translateX(calc((1 - 0.4) * 1100px / 2 / 0.4));
    margin-bottom: calc(-532px * 0.6);
  }
}
@media (max-width: 465px) {
  .browser {
    transform: scale(0.37) translateX(calc((1 - 0.37) * 1100px / 2 / 0.37));
    margin-bottom: calc(-532px * 0.63);
  }
}
@media (max-width: 420px) {
  .browser {
    transform: scale(0.34) translateX(calc((1 - 0.34) * 1100px / 2 / 0.34));
    margin-bottom: calc(-532px * 0.66);
  }
}
@media (max-width: 375px) {
  .browser {
    transform: scale(0.31) translateX(calc((1 - 0.31) * 1100px / 2 / 0.31));
    margin-bottom: calc(-532px * 0.69);
  }
}
@media (max-width: 330px) {
  .browser {
    transform: scale(0.28) translateX(calc((1 - 0.28) * 1100px / 2 / 0.28));
    margin-bottom: calc(-532px * 0.72);
  }
}

.bbar {
  background: #f0ede8;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.bdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.urlbar {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e2ddd4;
  border-radius: 6px;
  padding: 3px 10px;
  margin-left: 8px;
}
.urlbar-t {
  font-size: 10px;
  color: #888;
  font-family: "DM Mono", monospace;
}

/* ── MOCKUP NAV ─────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 46px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.nbrand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 24px;
  text-decoration: none;
  flex-shrink: 0;
}
.bicon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f7dff, #2d2b6b);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bname {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.ntabs {
  display: flex;
  align-items: center;
  flex: 1;
  overflow-x: auto;
}
.ntab {
  font-size: 12px;
  padding: 0 14px;
  height: 46px;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  border-bottom: 2px solid transparent;
  font-family: var(--font);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s;
}
.ntab:hover {
  color: var(--text);
}
.ntab.on {
  color: var(--blue);
  border-bottom-color: var(--blue);
  font-weight: 600;
}
.nacts {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.nico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  position: relative;
}
.nbadge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid white;
}
.nav-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

/* ── PANEL SHELL ────────────────────────────────────── */
.panel {
  display: none;
}
.panel.on {
  display: block;
  text-align: left !important;
}

/* ── SHARED CONNECT BUTTON ──────────────────────────── */
.cbtn {
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: #1a1a1a;
  border: none;
  border-radius: 100px;
  padding: 6px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.18s;
  flex-shrink: 0;
  white-space: nowrap;
}
.cbtn:hover {
  opacity: 0.75;
}

/* ══════ EXPLORE ══════ */
.ex-wrap {
  display: flex;
  height: var(--ph);
  overflow: hidden;
}
.fsb {
  width: 180px;
  flex-shrink: 0;
  background: white;
  border-right: 1px solid var(--border);
  padding: 14px 12px;
  overflow-y: auto;
  height: var(--ph);
}
.fhdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
}
.ftitle {
  font-size: 13px;
  font-weight: 700;
}
.freset {
  font-size: 10px;
  color: var(--blue-lt);
  cursor: pointer;
  font-weight: 500;
}
.fsec {
  margin-bottom: 13px;
}
.fslbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #bbb;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fck {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  cursor: pointer;
  user-select: none;
}
.fck .cb {
  width: 13px;
  height: 13px;
  border: 1.5px solid #d4c5a9;
  border-radius: 3px;
  flex-shrink: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.fck.checked .cb {
  background: var(--blue);
  border-color: var(--blue);
}
.fck.checked .cb::after {
  content: "";
  display: block;
  width: 6px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}
.fck .fl {
  font-size: 11px;
  color: #555;
  pointer-events: none;
}
.wspills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 3px;
}
.wsp {
  font-size: 10px;
  color: #555;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s;
}
.wsp.on {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}
.exmain {
  flex: 1;
  background: #f8f6f2;
  overflow-y: auto;
  height: var(--ph);
  text-align: left !important;
}
.exhdr {
  padding: 14px 18px 0;
}
.exeye {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #bbb;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.exh {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.exh em {
  font-style: italic;
  color: var(--orange);
}
.sort-row {
  display: flex;
  justify-content: flex-end;
  padding: 8px 18px 6px;
}
.sort-sel {
  font-size: 11px;
  color: #555;
  background: white;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 4px 9px;
  cursor: pointer;
  font-family: var(--font);
}
.exgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 0 18px 14px;
}
.exc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.exc:hover {
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.08);
  transform: translateY(-2px);
}
.ect {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}
.sbadge {
  font-size: 9px;
  font-weight: 600;
  border-radius: 100px;
  padding: 2px 8px;
}
.sai {
  background: #ede9fe;
  color: #4c1d95;
}
.ssaas {
  background: #d1fae5;
  color: #065f46;
}
.sfin {
  background: #dbeafe;
  color: #1e40af;
}
.shth {
  background: #fce7f3;
  color: #831843;
}
.sed {
  background: #fef3c7;
  color: #92400e;
}
.slog {
  background: #f3f4f6;
  color: #374151;
}
.stg {
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.sdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.smvp .sdot {
  background: var(--blue);
}
.smvp {
  color: var(--blue);
}
.sidea .sdot {
  background: var(--orange);
}
.sidea {
  color: var(--orange);
}
.slive .sdot {
  background: var(--green);
}
.slive {
  color: var(--green);
}
.etitle {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.3;
}
.edesc {
  font-size: 10px;
  color: #777;
  line-height: 1.55;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.etags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 8px;
}
.etag {
  font-size: 9px;
  background: var(--tag-bg);
  color: #666;
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 500;
}
.etag-p {
  background: rgba(79, 125, 255, 0.1);
  color: var(--blue-lt);
  font-weight: 600;
}
.efoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f5f0e8;
  padding-top: 8px;
  margin-top: auto;
}
.efnd {
  display: flex;
  align-items: center;
  gap: 6px;
}
.eav {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.efname {
  font-size: 10px;
  font-weight: 600;
}
.efcity {
  font-size: 9px;
  color: var(--muted);
}
.smrow {
  display: flex;
  justify-content: center;
  padding: 4px 0 14px;
}
.smbtn {
  font-size: 11px;
  color: #555;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 20px;
  cursor: pointer;
}
.smbtn:hover {
  background: #f5f0e8;
}

/* ══════ MESSAGES ══════ */
.msgwrap {
  display: flex;
  height: var(--ph);
  overflow: hidden;
}
.msgsb {
  width: 215px;
  flex-shrink: 0;
  background: white;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.msghdr {
  padding: 11px 12px 9px;
  border-bottom: 1px solid var(--border);
}
.msgtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.msgsrch {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f5f0e8;
  border-radius: 7px;
  padding: 5px 9px;
}
.msgsrch span {
  font-size: 10px;
  color: #ccc;
}
.cvlist {
  flex: 1;
  overflow-y: auto;
}
.cv {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  cursor: pointer;
  border-left: 3px solid transparent;
}
.cv:hover {
  background: #f8f6f2;
}
.cv.on {
  background: rgba(79, 125, 255, 0.05);
  border-left-color: var(--blue-lt);
}
.cvav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.cvbody {
  flex: 1;
  min-width: 0;
}
.cvnrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
}
.cvname {
  font-size: 11px;
  font-weight: 600;
}
.cvdate {
  font-size: 9px;
  color: #ccc;
}
.cvprev {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.unread {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chatarea {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fafaf7;
  min-width: 0;
}
.chathdr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: white;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chav {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.chname {
  font-size: 12px;
  font-weight: 600;
}
.chrole {
  font-size: 10px;
  color: var(--muted);
}
.chatmsgs {
  flex: 1;
  padding: 11px 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
}
.daydiv {
  text-align: center;
  font-size: 8px;
  color: #ccc;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 2px 0;
}
.bbl {
  max-width: 72%;
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.55;
}
.bbl-r {
  background: white;
  color: #333;
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.bbl-s {
  background: var(--blue);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.btime {
  display: block;
  font-size: 8px;
  opacity: 0.55;
  margin-top: 3px;
  text-align: right;
}
.typing {
  display: flex;
  align-items: center;
  gap: 3px;
  align-self: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 10px;
}
.typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  animation: typ 1.2s infinite;
}
.typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typ {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
.chatinput {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  background: white;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.catt {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: #888;
}
.cinbox {
  flex: 1;
  background: #f5f0e8;
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 11px;
  color: #aaa;
  border: none;
  font-family: var(--font);
}
.cemoji {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #aaa;
  flex-shrink: 0;
}
.csend {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}
.csend:hover {
  background: var(--blue-lt);
}

/* ── BAR CHART ──────────────────────────────────────── */
.bar {
  border-radius: 4px 4px 0 0;
  background: #e2ddd4;
  transition: height 0.5s ease;
}
.bar-indigo {
  background: var(--indigo) !important;
}
.bar-accent {
  background: var(--accent) !important;
}
.bar-purple {
  background: #7c3aed !important;
}

/* ── AVATAR COLOURS ─────────────────────────────────── */
.avatar-indigo {
  background: var(--indigo);
}
.avatar-purple {
  background: #7c3aed;
}
.avatar-green {
  background: var(--green);
}
.avatar-accent {
  background: var(--accent);
}
.avatar-violet {
  background: #4f46e5;
}
.avatar-cyan {
  background: #0891b2;
}
.match-pct-indigo {
  color: var(--indigo);
}
.match-pct-purple {
  color: #7c3aed;
}
.match-pct-muted {
  color: var(--ink-muted);
}
.mockup-skel-dark {
  background: #c8c2b5;
  border-radius: 4px;
}

/* ── EYEBROW RULE ───────────────────────────────────── */
.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-rule::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── SECTION BACKGROUNDS ────────────────────────────── */
.section-light {
  background: #fafaf7;
}
.section-cream {
  background: var(--cream);
}
.section-title {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--ink);
  font-weight: 600;
}
.section-title-accent {
  color: var(--indigo);
}
.section-sub {
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.75;
}

/* ── STATS BAND ─────────────────────────────────────── */
.stats-band {
  background: var(--ink-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
}
.stat-cell {
  padding: 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-cell:last-child {
  border-right: none;
}
.stat-num {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--gold-light);
}
.stat-num-white {
  color: rgba(255, 255, 255, 0.85);
}
.stat-num-warm {
  color: var(--accent-warm);
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

/* ── VALUE PROP ─────────────────────────────────────── */
.vp-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-item-title {
  color: var(--ink);
}
.vp-item-desc {
  color: var(--ink-light);
  line-height: 1.65;
}
.vp-stat-indigo {
  color: var(--indigo);
  letter-spacing: -0.5px;
}
.vp-stat-accent {
  color: var(--accent);
  letter-spacing: -0.5px;
}
.vp-stat-green {
  color: var(--green);
}
.vp-stat-sub {
  color: var(--ink-light);
}
.stat-card {
  background: white;
  border: 1px solid #e8e2d8;
  border-radius: 14px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.09);
}
.stat-bar-track {
  background: #e8e2d8;
}

/* ── FEATURE CARDS ──────────────────────────────────── */
.feature-card {
  background: white;
  border: 1px solid #e8e2d8;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--sand);
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.08);
  transform: translateY(-4px);
}
.feature-card-dark {
  background: var(--indigo) !important;
  border-color: var(--indigo) !important;
}
.feature-title {
  color: var(--ink);
}
.feature-desc {
  color: var(--ink-light);
  font-weight: 300;
}
.feature-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s;
}
.feature-link:hover {
  gap: 10px;
}
.indigo-link {
  color: var(--indigo);
}
.green-link {
  color: var(--green);
}
.accent-link {
  color: var(--accent);
}

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--indigo) 0%,
    #1e1c5a 50%,
    #2d2b6b 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none; /* 🔥 THIS fixes click blocking */
  z-index: 0;
}

.review-card img {
  border: 2px solid rgba(255,255,255,0.08);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* ── HOW IT WORKS ───────────────────────────────────── */
.step-card {
  background: white;
  border: 1px solid #e8e2d8;
  border-radius: 20px;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--sand);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  transform: translateY(-3px);
}
.step-card-cream {
  background: var(--cream);
}
.step-card-dark {
  background: var(--indigo);
  border-color: var(--indigo);
}
.step-num {
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2px;
  color: #e8e2d8;
  margin-bottom: 24px;
}
.step-num-sand {
  color: #d4c5a9;
}
.step-num-dark {
  color: rgba(255, 255, 255, 0.12);
}

/* ── COMPARISON ─────────────────────────────────────── */
.cmp-card-light {
  background: white;
  border: 1px solid #e8e2d8;
  border-radius: 20px;
}
.cmp-card-dark {
  background: var(--ink-soft);
  border: 1px solid rgba(212, 197, 169, 0.1);
  border-radius: 20px;
}
.cmp-icon-bad {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 40, 40, 0.08);
  color: rgba(200, 40, 40, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.cmp-icon-good {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(120, 200, 120, 0.12);
  color: #7dc97a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.cmp-x {
  color: rgba(200, 40, 40, 0.65);
}
.cmp-check {
  color: #7dc97a;
}
.cmp-divider li {
  border-color: #e8e2d8;
}
.cmp-divider-dark li {
  border-color: rgba(255, 255, 255, 0.06);
}

/* ── REVIEWS ────────────────────────────────────────── */
.review-card {
  background: white;
  border: 1px solid #e8e2d8;
  border-radius: 16px;
  transition: all 0.25s ease;
}
.review-card:hover {
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.09);
  transform: translateY(-3px);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}
.reviews-stars {
  color: var(--accent-warm);
}
.reviews-border {
  border-color: var(--sand);
}

/* ── DASHBOARD CTA ──────────────────────────────────── */
.cta-dashboard {
  background: var(--ink-soft);
  position: relative;
}
.cta-dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(45, 43, 107, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── WARM CTA ───────────────────────────────────────── */
.warm-cta {
  background: linear-gradient(135deg, #e8a44a 0%, #e85d26 100%);
}

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
}
.footer-logomark {
  background: rgba(255, 255, 255, 0.1);
}
.footer-logo-letter {
  color: var(--gold-light);
}
.footer-brand-name {
  color: white;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
}
.footer-addr {
  color: rgba(255, 255, 255, 0.25);
}
.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col-links li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links li a:hover {
  color: white;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.25);
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.afu {
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.d1 {
  animation-delay: 0.1s;
  opacity: 0;
}
.d2 {
  animation-delay: 0.2s;
  opacity: 0;
}
.d3 {
  animation-delay: 0.3s;
  opacity: 0;
}
.d4 {
  animation-delay: 0.4s;
  opacity: 0;
}
.d5 {
  animation-delay: 0.55s;
  opacity: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.08s;
}
.rd2 {
  transition-delay: 0.16s;
}
.rd3 {
  transition-delay: 0.24s;
}
.rd4 {
  transition-delay: 0.32s;
}

/* ═══════════════════════════════════════════════════════
   OVERFLOW PREVENTION
   ═══════════════════════════════════════════════════════ */
html {
  overflow-x: hidden;
  width: 100%;
}
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
section,
.stats-band,
.cta-banner,
.cta-dashboard,
.warm-cta,
.site-footer {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

/* ── Tablet ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .mk-idea-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mk-people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .max-w-7xl,
  [class*="max-w-"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .section-title {
    font-size: clamp(24px, 7vw, 38px) !important;
    letter-spacing: -0.5px;
    word-break: break-word;
    max-width: 100%;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 14px 20px;
    box-sizing: border-box;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
  }
  .stat-cell:last-child {
    border-bottom: none;
  }
  .stat-num {
    font-size: 36px;
  }
  .step-num {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .grid.md\:grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
  .feature-card {
    padding: 24px !important;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
  .grid.md\:grid-cols-5 {
    grid-template-columns: 1fr 1fr !important;
  }
  .cta-banner .max-w-7xl {
    text-align: center;
  }
  .cta-banner .btn-white {
    width: auto;
  }
  .warm-cta .btn-white,
  .warm-cta .btn-ghost-warm {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: clamp(20px, 6.5vw, 30px) !important;
  }
  .stat-num {
    font-size: 32px;
  }
  .grid.md\:grid-cols-5 {
    grid-template-columns: 1fr !important;
  }
}

/* ── Mobile for New Hero ── */
@media (max-width: 767px) {
  /* hide desktop floaters */
  .hero .avatars {
    display: none;
  }

  .hero {
    padding: 100px 20px 0;
    min-height: auto;
    border-bottom: 1px solid var(--border);
  }

  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--h-indigo),
      transparent
    );
    opacity: 0.18;
  }

  .hero .badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 26px;
    letter-spacing: 0.08em;
  }

  .hero .headline {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 16px;
  }

  .hero .sub {
    font-size: 0.95rem;
    margin-bottom: 30px;
    max-width: 100%;
  }

  /* Stacked full-width buttons on mobile */
  .hero .btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .hero .btn-p,
  .hero .btn-s {
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
  }

  /* Trust — wrap to 2 per row, hide separators */
  .hero .trust {
    gap: 12px 20px;
    margin-top: 36px;
  }
  .hero .sep {
    display: none;
  }
  .hero .trust-item {
    font-size: 12.5px;
  }

  /* Chip stays, slightly smaller */
  .hero .av-chip {
    font-size: 11.5px;
    margin-top: 32px;
  }

  /* Tighter animated curves on mobile */
  .hero .bg-svg .mobile-hide {
    display: none;
  }
}

/* Very small phones for New Hero */
@media (max-width: 374px) {
  .hero .headline {
    font-size: 30px;
  }
  .hero .btn-p,
  .hero .btn-s {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════
   DESKTOP vs MOBILE MOCKUP VISIBILITY
   ═══════════════════════════════════════════════════════ */
.mockup-outer-wrap {
  display: flex;
}
.mobile-mockup-wrap {
  display: none;
}
@media (max-width: 640px) {
  .mockup-outer-wrap {
    display: none !important;
  }
  .mobile-mockup-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════
   MOBILE PHONE MOCKUP
   ═══════════════════════════════════════════════════════ */
.mobile-phone {
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border-radius: 44px;
  box-shadow:
    0 0 0 10px #1a1a1a,
    0 0 0 12px #3a3a3a,
    0 0 0 13px #555,
    0 40px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  height: 580px;
  position: relative;
}
.phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 20px;
  z-index: 10;
}
.phone-side-btn-right {
  position: absolute;
  right: -13px;
  top: 100px;
  width: 3px;
  height: 70px;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
  z-index: 20;
}
.phone-side-btn-left-1 {
  position: absolute;
  left: -13px;
  top: 80px;
  width: 3px;
  height: 30px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  z-index: 20;
}
.phone-side-btn-left-2 {
  position: absolute;
  left: -13px;
  top: 125px;
  width: 3px;
  height: 50px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  z-index: 20;
}
.phone-side-btn-left-3 {
  position: absolute;
  left: -13px;
  top: 185px;
  width: 3px;
  height: 50px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  z-index: 20;
}
.phone-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 6px;
  margin-top: 12px;
  background: #ffffff;
  flex-shrink: 0;
}
.phone-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font);
}
.phone-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
}
.phone-battery {
  width: 18px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  position: relative;
}
.phone-battery::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 4px;
  background: currentColor;
  border-radius: 0 1px 1px 0;
}
.phone-battery-fill {
  width: 75%;
  height: 100%;
  background: var(--green);
  border-radius: 1px;
}
.phone-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 8px;
  background: #fafaf7;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.phone-brand {
  display: flex;
  align-items: center;
  gap: 7px;
}
.phone-brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f7dff, #2d2b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-brand-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.phone-appbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}
.phone-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--indigo);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-panel {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f8f6f2;
  -webkit-overflow-scrolling: touch;
}
.phone-panel-on {
  display: flex;
}

/* ── Phone search & chips ── */
.phone-search-row {
  padding: 10px 12px 6px;
}
.phone-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 11px;
  color: #bbb;
}
.phone-chips {
  display: flex;
  gap: 6px;
  padding: 0 12px 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.phone-chips::-webkit-scrollbar {
  display: none;
}
.phone-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  color: #666;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
.phone-chip-on {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}
.phone-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px 12px;
  text-align: left !important;
}

/* ═══════════════════════════════════════════════════════
   CO-FOUNDER CARDS — SHARED DESIGN (desktop + mobile)
   Matches the screenshot exactly:
   avatar | name + verified | role | location
   bio text
   pill tags (first = orange accent)
   footer: idea badge | eye btn + Connect → btn
   ═══════════════════════════════════════════════════════ */

/* ── Desktop mockup co-founder panel wrapper ── */
.mk-cf-wrap {
  background: #faf8f4;
  height: var(--ph);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Header block ── */
.mk-cf-header {
  padding: 12px 16px 0;
  background: #faf8f4;
  flex-shrink: 0;
}
.mk-cf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(26, 23, 20, 0.08);
  margin-bottom: 8px;
}
.mk-cf-badge-dot-wrap {
  position: relative;
  width: 7px;
  height: 7px;
}
.mk-cf-badge-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(74, 111, 165, 0.4);
  animation: mkPing 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.mk-cf-badge-core {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a6fa5;
}
@keyframes mkPing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.mk-cf-badge-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7a7268;
}
.mk-cf-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.mk-cf-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.15;
  margin: 0 0 2px;
}
.mk-cf-title em {
  font-style: italic;
  color: var(--orange);
}
.mk-cf-sub {
  font-size: 9.5px;
  color: #b5afa6;
  margin: 0;
}
.mk-cf-search {
  display: flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1px solid rgba(26, 23, 20, 0.1);
  border-radius: 999px;
  padding: 5px 11px;
  flex-shrink: 0;
}
.mk-cf-search span {
  font-size: 10px;
  color: #b5afa6;
  white-space: nowrap;
}
.mk-cf-pills {
  display: flex;
  gap: 5px;
  padding-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mk-cf-pills::-webkit-scrollbar {
  display: none;
}
.mk-cf-pill {
  font-size: 9.5px;
  font-weight: 500;
  padding: 3px 11px;
  border-radius: 999px;
  border: 1px solid rgba(26, 23, 20, 0.12);
  background: white;
  color: #7a7268;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
  user-select: none;
}
.mk-cf-pill:hover {
  border-color: #b5afa6;
  color: var(--ink);
}
.mk-cf-pill-on {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

/* ── Desktop cards grid ── */
.mk-cf-grid {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 14px 6px;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: #e2ddd4 transparent;
}
.mk-cf-grid::-webkit-scrollbar {
  width: 3px;
}
.mk-cf-grid::-webkit-scrollbar-thumb {
  background: #e2ddd4;
  border-radius: 2px;
}

/* ── Load more ── */
.mk-cf-load-row {
  display: flex;
  justify-content: center;
  padding: 8px 14px 12px;
  flex-shrink: 0;
}
.mk-cf-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #7a7268;
  background: white;
  border: 1px solid rgba(26, 23, 20, 0.1);
  border-radius: 999px;
  padding: 5px 16px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.15s;
  box-shadow: 0 1px 3px rgba(26, 23, 20, 0.04);
}
.mk-cf-load-btn:hover {
  background: #f0ece3;
  border-color: #b5afa6;
  color: var(--ink);
}

/* ════════════════════════════════════════════
   UNIFIED CO-FOUNDER CARD COMPONENT
   Used in both .mk-cf-grid (desktop) and
   .phone-card-list (mobile)
   ════════════════════════════════════════════ */

/* ─ Desktop card shell ─ */
.mk-cfc {
  background: #fffdf9;
  border: 1px solid rgba(26, 23, 20, 0.07);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.mk-cfc:hover {
  box-shadow: 0 4px 16px rgba(26, 23, 20, 0.09);
  transform: translateY(-2px);
  border-color: rgba(26, 23, 20, 0.12);
}

/* Orange top bar on hover — matches screenshot */
.mk-cfc-topbar {
  display: none;
  height: 3px;
  background: #e2ddd4;
  transition: background 0.2s;
  flex-shrink: 0;
}
.mk-cfc:hover .mk-cfc-topbar {
  background: var(--orange);
}

/* Card inner body */
.mk-cfc-inner {
  padding: 10px 11px 9px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Head row: avatar + info */
.mk-cfc-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 7px;
}

/* Avatar */
.mk-cfc-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid white;
  box-shadow: 0 0 0 1px rgba(26, 23, 20, 0.06);
}
.mk-av-a {
  background: #ede8f5;
  color: #5b4a8a;
}
.mk-av-b {
  background: #e3efe6;
  color: #2d6a3f;
}
.mk-av-c {
  background: #fee0d0;
  color: #a04d1e;
}
.mk-av-d {
  background: #e8eef8;
  color: #2d5a8a;
}
.mk-av-e {
  background: #f5e8df;
  color: #8a3a1e;
}
.mk-av-f {
  background: #e8f5f0;
  color: #1e6a4a;
}

/* Info block */
.mk-cfc-info {
  flex: 1;
  min-width: 0;
}
.mk-cfc-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 1px;
}
.mk-cfc-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.mk-cfc-verified {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 1px 5px;
  border-radius: 999px;
  background: #e3efe6;
  color: #2d6a3f;
  font-size: 8px;
  font-weight: 600;
  flex-shrink: 0;
}
.mk-cfc-role {
  font-size: 9.5px;
  color: #7a7268;
  margin: 1px 0 0;
  line-height: 1.3;
}
.mk-cfc-city {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: #b5afa6;
  margin-top: 2px;
}

/* Bio */
.mk-cfc-bio {
  font-size: 9.5px;
  color: #7a7268;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 7px;
}

/* Skill/tag pills — rounded, first one orange accent */
.mk-cfc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.mk-cfc-skill {
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 500;
  background: #f0ece3;
  color: #7a7268;
  border: 1px solid rgba(26, 23, 20, 0.07);
}
.mk-skill-primary {
  background: #fef0e8;
  color: #c85c2a;
  border-color: #f5cdb0;
}

/* ── Card footer ── */
.mk-cfc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 11px;
  border-top: 1px solid rgba(26, 23, 20, 0.06);
  background: rgba(240, 236, 227, 0.4);
  gap: 5px;
  flex-shrink: 0;
}
.mk-cfc-foot-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.mk-cfc-idea-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
}
.mk-idea-has {
  color: #c85c2a;
}
.mk-idea-open {
  color: #4a6fa5;
}
.mk-cfc-foot-right {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

/* Eye icon button */
.mk-cfc-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(26, 23, 20, 0.12);
  background: white;
  color: #7a7268;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}
.mk-cfc-view-btn:hover {
  background: #f0ece3;
  border-color: #b5afa6;
  color: var(--ink);
}

/* Connect button */
.mk-cfc-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #1a1a1a;
  color: white;
  border: none;
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.mk-cfc-connect-btn:hover {
  opacity: 0.78;
}

/* ════════════════════════════════════════════
   MOBILE PHONE CF CARDS — same visual style
   ════════════════════════════════════════════ */
.phone-cf-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Orange top bar on mobile cards too */
.phone-cf-card::before {
  content: "";
  display: block;
  height: 3px;
  background: #e2ddd4;
  flex-shrink: 0;
  transition: background 0.2s;
}
.phone-cf-card:hover::before {
  background: var(--orange);
}

.phone-cf-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px 0;
}

/* Mobile avatar colours — same as desktop */
.phone-cf-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid white;
  box-shadow: 0 0 0 1px rgba(26, 23, 20, 0.06);
}
.phone-av-a {
  background: #ede8f5;
  color: #5b4a8a;
}
.phone-av-b {
  background: #e3efe6;
  color: #2d6a3f;
}
.phone-av-c {
  background: #fee0d0;
  color: #a04d1e;
}
.phone-av-d {
  background: #e8eef8;
  color: #2d5a8a;
}
.phone-av-e {
  background: #f5e8df;
  color: #8a3a1e;
}
.phone-av-f {
  background: #e8f5f0;
  color: #1e6a4a;
}

.phone-cf-info {
  flex: 1;
  min-width: 0;
}
.phone-cf-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 1px;
}
.phone-cf-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.phone-cf-verified {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #e3efe6;
  color: #2d6a3f;
  font-size: 9px;
  font-weight: 600;
  flex-shrink: 0;
}
.phone-cf-role {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}
.phone-cf-loc {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.phone-cf-desc {
  font-size: 11px;
  color: #666;
  line-height: 1.5;
  padding: 8px 12px 0;
}

/* Mobile tag pills */
.phone-cf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 7px 12px 0;
}
.phone-tag {
  font-size: 9.5px;
  font-weight: 500;
  border-radius: 999px;
  padding: 3px 9px;
  background: #f0ece3;
  color: #7a7268;
  border: 1px solid rgba(26, 23, 20, 0.07);
}
.phone-tag-accent {
  background: #fef0e8;
  color: #c85c2a;
  border-color: #f5cdb0;
}
/* keep legacy colour variants used on profile panel */
.phone-tag-blue {
  background: #dbeafe;
  color: #1e40af;
  border-color: transparent;
}
.phone-tag-purple {
  background: #ede9fe;
  color: #4c1d95;
  border-color: transparent;
}
.phone-tag-green {
  background: #d1fae5;
  color: #065f46;
  border-color: transparent;
}
.phone-tag-yellow {
  background: #fef3c7;
  color: #92400e;
  border-color: transparent;
}

/* Mobile card footer — mirrors desktop */
.phone-cf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid rgba(26, 23, 20, 0.06);
  background: rgba(240, 236, 227, 0.4);
  margin-top: 8px;
  gap: 6px;
  flex-shrink: 0;
}
.phone-cf-idea-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}
.phone-idea-has {
  color: #c85c2a;
}
.phone-idea-open {
  color: #4a6fa5;
}
.phone-cf-foot-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Mobile eye button */
.phone-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(26, 23, 20, 0.12);
  background: white;
  color: #7a7268;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}
.phone-view-btn:hover {
  background: #f0ece3;
  border-color: #b5afa6;
  color: var(--ink);
}

/* Mobile connect button */
.phone-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1a1a1a;
  color: white;
  border: none;
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-connect-btn:hover {
  opacity: 0.78;
}

/* ── Profile panel ── */
.phone-profile {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phone-profile-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 20px 16px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.phone-profile-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  color: white;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--serif);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 16px rgba(142, 45, 226, 0.3);
}
.phone-profile-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.phone-profile-role {
  font-size: 11px;
  color: var(--ink-light);
  margin-bottom: 2px;
}
.phone-profile-loc {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
}
.phone-profile-badges {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.phone-pbadge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(42, 122, 75, 0.1);
  color: var(--green);
}
.phone-pbadge-gold {
  background: rgba(184, 147, 90, 0.15);
  color: var(--gold);
}
.phone-profile-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px 16px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.phone-pstat {
  text-align: center;
}
.phone-pstat-num {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--serif);
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 2px;
}
.phone-pstat-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.phone-pstat-div {
  width: 1px;
  height: 28px;
  background: var(--border);
}
.phone-profile-section {
  padding: 12px 16px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.phone-psec-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bbb;
  margin-bottom: 8px;
}
.phone-psec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.phone-idea-card {
  background: #f8f6f2;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}
.phone-idea-badge {
  font-size: 9px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-idea-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.phone-idea-desc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Messages panel ── */
.phone-msgs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 8px;
  background: white;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.phone-msgs-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
}
.phone-msgs-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--orange);
  color: white;
  border-radius: 100px;
  padding: 2px 8px;
}
.phone-conv-list {
  display: flex;
  flex-direction: column;
  background: white;
  flex: 1;
}
.phone-conv {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid #f5f0e8;
  cursor: pointer;
}
.phone-conv-active {
  background: rgba(79, 125, 255, 0.04);
}
.phone-conv-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.phone-conv-body {
  flex: 1;
  min-width: 0;
}
.phone-conv-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}
.phone-conv-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.phone-conv-time {
  font-size: 10px;
  color: #ccc;
}
.phone-conv-prev {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-unread {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Bottom nav ── */
.phone-bottomnav {
  display: flex;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  padding: 8px 0 20px;
  backdrop-filter: blur(10px);
  background: rgba(250, 250, 247, 0.95);
}
.phone-bn-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 600;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 4px 0;
  transition: color 0.15s;
}
.phone-bn-active {
  color: var(--indigo);
}
.phone-home-indicator {
  width: 100px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 4px;
  margin: 0 auto 8px;
  opacity: 0.15;
}

/* Clip phone into next section */
.mobile-mockup-wrap {
  margin-bottom: -60px;
  padding-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   PRICING SECTION — append to assets/css/landing/style.css
   ═══════════════════════════════════════════════════════ */

/* ── Card ────────────────────────────────────────────── */
.pricing-card {
  background: white;
  border: 1px solid #e8e2d8;
  border-radius: 24px;
  padding: 44px 48px 48px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.pricing-card:hover {
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.1);
  transform: translateY(-4px);
}

/* ── Badge ───────────────────────────────────────────── */
.pricing-badge {
  display: inline-block;
  background: #eff1ff;
  color: #2d2b6b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* ── Plan name & desc ────────────────────────────────── */
.pricing-plan-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.pricing-plan-desc {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 300;
  margin: 0 0 32px;
}

/* ── Price ───────────────────────────────────────────── */
.pricing-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--indigo);
  padding-bottom: 6px;
}
.pricing-amount {
  font-size: 72px;
  font-weight: 700;
  color: var(--indigo);
  line-height: 1;
  letter-spacing: -3px;
}
.pricing-period {
  font-size: 14px;
  color: var(--ink-muted);
  padding-bottom: 12px;
}
.pricing-billing-note {
  font-size: 12px;
  color: #b5afa6;
  margin: 0 0 36px;
}

/* ── Divider ─────────────────────────────────────────── */
.pricing-divider {
  border: none;
  border-top: 1px solid #f0ece3;
  margin: 0 0 28px;
}

/* ── Feature list ────────────────────────────────────── */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-light);
  font-weight: 400;
  line-height: 1.5;
}
.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA button ──────────────────────────────────────── */
.pricing-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 24px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}
.pricing-cta-btn:hover:not(:disabled) {
  background: #2d2b6b;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45, 43, 107, 0.22);
}
.pricing-cta-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ── Spinner inside button ───────────────────────────── */
.pricing-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pricingSpin 0.6s linear infinite;
  flex-shrink: 0;
}
@keyframes pricingSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Guarantee note ──────────────────────────────────── */
.pricing-guarantee {
  margin-top: 16px;
  font-size: 12px;
  color: #b5afa6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── Trust row ───────────────────────────────────────── */
.pricing-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 44px;
  font-size: 13px;
  color: var(--ink-muted);
}
.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-trust-sep {
  width: 1px;
  height: 14px;
  background: var(--sand);
  opacity: 0.6;
}

/* ── Failure toast ───────────────────────────────────── */
.payment-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #2a2720;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 93, 38, 0.4);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  max-width: 90vw;
  animation: toastIn 0.3s ease;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .pricing-card {
    padding: 32px 24px 36px;
  }
  .pricing-amount {
    font-size: 56px;
  }
  .pricing-trust-row {
    gap: 12px 20px;
  }
  .pricing-trust-sep {
    display: none;
  }
}

.pmf-submit-btn {
  display: flex; /* ← was missing in your rendered output */
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pmf-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #9e988f;
  margin: 12px 0 0;
  justify-content: center;
}

/* ── PRE-PAYMENT MODAL ───────────────────────────────────────── */
#payment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 14, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

#payment-modal-overlay.modal-open {
  display: flex;
  animation: overlay-in 0.18s ease;
}

@keyframes overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.payment-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  animation: modal-up 0.22s cubic-bezier(0.22, 0.68, 0, 1.2);
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
}

@keyframes modal-up {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.payment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9e988f;
  padding: 4px;
  border-radius: 6px;
  line-height: 1;
  transition: color 0.15s;
  z-index: 1;
}
.payment-modal-close:hover {
  color: #3d3930;
}

.payment-modal-header {
  margin-bottom: 24px;
}

.payment-modal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #2d2b6b;
  border-radius: 20px;
  padding: 3px 10px;
  margin: 0 0 12px;
}

.payment-modal-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1a1814;
}

.payment-modal-sub {
  font-size: 14px;
  color: #7a736a;
  margin: 0;
  line-height: 1.5;
}

.pmf-group {
  margin-bottom: 18px;
}

.pmf-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #3d3930;
  margin-bottom: 6px;
}

.pmf-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid #ddd8cf;
  border-radius: 10px;
  font-size: 14px;
  color: #1a1814;
  background: #faf9f7;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  font-family: inherit;
}
.pmf-input:focus {
  border-color: #2d2b6b;
  box-shadow: 0 0 0 3px rgba(45, 43, 107, 0.1);
  background: #fff;
}
.pmf-input.pmf-invalid {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.1);
}

.pmf-phone-wrap {
  display: flex;
  align-items: center;
}
.pmf-phone-prefix {
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid #ddd8cf;
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 14px;
  color: #7a736a;
  background: #f0ede8;
  display: flex;
  align-items: center;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
}
.pmf-input-phone {
  border-radius: 0 10px 10px 0;
  flex: 1;
}

.pmf-error {
  font-size: 12px;
  color: #e05252;
  margin: 5px 0 0;
  min-height: 16px;
}

.pmf-submit-btn {
  width: 100%;
  height: 48px;
  margin-top: 6px;
  background: #2d2b6b;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition:
    background 0.15s,
    opacity 0.15s;
  box-sizing: border-box;
}
.pmf-submit-btn:hover:not(:disabled) {
  background: #1e1c52;
}
.pmf-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.pmf-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #9e988f;
  margin: 12px 0 0;
  justify-content: center;
}

@media (max-width: 480px) {
  .payment-modal {
    padding: 28px 20px 24px;
    border-radius: 14px;
    max-height: 95vh;
  }
}
