@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand: #e11d48;
  --brand-deep: #be123c;
  --brand-hover: #e11d48;
  --brand-soft: #fff1f4;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e8e8ed;
  --max: 1240px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --font: Inter, system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { display: block; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.site-header {
  position: sticky; top: 0; z-index: 10000;
  isolation: isolate;
  pointer-events: auto;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #f1f1f4;
  backdrop-filter: blur(12px);
}
.nav-shell {
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.125rem; letter-spacing: -0.03em;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(145deg, #f43f5e, #e11d48);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.28);
}
.brand-mark svg {
  width: 20px; height: 20px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.desktop-nav { display: none; gap: 2rem; align-items: center; }
.desktop-nav a {
  position: relative; font-size: 0.875rem; font-weight: 500; color: #334155;
  padding: 0.5rem 0;
}
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a.active { font-weight: 600; color: var(--ink); }
.desktop-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--brand); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 0.9rem; position: relative; z-index: 2; }
.sign-in {
  position: relative; z-index: 2;
  padding: 0.45rem 0.65rem;
  font-size: 0.875rem; font-weight: 600; color: #334155;
}
.sign-in:hover { color: var(--brand-deep); }
.create-account {
  position: relative; z-index: 2;
  padding: 0.45rem 0.65rem;
  font-size: 0.875rem; font-weight: 700; color: var(--brand-deep);
}
.mobile-menu { display: block; position: relative; }
.mobile-menu summary {
  list-style: none; width: 40px; height: 40px; border: 1px solid var(--line);
  border-radius: 8px; display: grid; place-content: center; gap: 4px; cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 16px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-menu nav {
  position: absolute; right: 0; top: 48px; width: 200px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 0.5rem; display: flex; flex-direction: column;
}
.mobile-menu nav a { padding: 0.75rem; font-size: 0.875rem; font-weight: 600; border-radius: 8px; }
.mobile-menu nav a:hover { background: var(--brand-soft); }
@media (min-width: 960px) {
  .desktop-nav { display: flex; }
  .mobile-menu { display: none; }
}

.button-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0 1.35rem;
  border-radius: 10px; font-size: 0.9375rem; font-weight: 700;
  border: 1.5px solid transparent; cursor: pointer;
}
.button--small { min-height: 40px; padding: 0 1.1rem; font-size: 0.8125rem; border-radius: 9px; }
.button--brand {
  background: linear-gradient(90deg, #e11d48, #f43f5e);
  color: #fff; box-shadow: 0 8px 20px rgba(225, 29, 72, 0.28);
}
.button--brand:hover { background: var(--brand-deep); color: #fff; }
.button--outline { background: #fff; color: var(--brand-deep); border-color: var(--brand); }
.button--outline:hover { background: var(--brand-soft); }
.button--white { background: #fff; color: var(--brand-deep); border-color: #fff; }
.button--glass { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.play {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 8px; padding-left: 1px;
}

.hero {
  position: relative; z-index: 0; isolation: isolate; overflow: hidden;
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse 50% 60% at 8% 18%, rgba(255, 180, 200, 0.45), transparent 60%),
    radial-gradient(ellipse 48% 55% at 92% 30%, rgba(255, 150, 180, 0.32), transparent 58%),
    linear-gradient(180deg, #fff5f8 0%, #ffffff 72%);
}
.hero-grid { position: relative; z-index: 0; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 0.92fr 1.18fr; gap: 2rem; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 0 0 1.25rem; padding: 0.45rem 0.9rem;
  background: #fff; border: 1px solid #ffd0dc; border-radius: 999px;
  color: var(--brand-deep); font-size: 0.75rem; font-weight: 700;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.hero-copy h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05; font-weight: 800; letter-spacing: -0.04em;
}
.hero-copy h1 em { color: var(--brand-deep); font-style: normal; }
.hero-text {
  margin: 0 0 1.75rem; max-width: 28rem;
  color: var(--muted); font-size: 1.05rem; line-height: 1.65;
}
.micro-proof {
  display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem;
  margin: 1.75rem 0 0; padding: 0; list-style: none;
}
.micro-proof li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8125rem; font-weight: 500; color: #475569;
}
.micro-proof .ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.micro-proof .ico svg {
  width: 14px; height: 14px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.product-stage { position: relative; z-index: 0; isolation: isolate; min-height: 440px; padding: 8px 0 56px; }
@media (min-width: 980px) { .product-stage { padding-right: 40px; } }
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,180,200,0.5), rgba(225,29,72,0.06) 70%);
}
.orb-a { width: 280px; height: 280px; right: -40px; top: -30px; }
.orb-b { width: 180px; height: 180px; left: 20%; bottom: 10%; opacity: 0.6; }

.site-preview {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}
.site-preview.is-dark .preview-bar { background: #111; color: #fff; border-bottom-color: #222; }
.site-preview.is-dark .preview-bar nav { color: #cbd5e1; }
.site-preview.is-dark .preview-copy small,
.site-preview.is-dark .preview-copy h2,
.site-preview.is-dark .preview-copy p { color: #f8fafc; }
.site-preview.is-dark .preview-copy p { color: #e2e8f0; }
.preview-build {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  background: rgba(255,255,255,0.72); backdrop-filter: blur(4px);
  font-size: 0.8rem; font-weight: 700; color: var(--brand-deep);
}
.preview-build[hidden] { display: none; }
.preview-build span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid #fecdd3; border-top-color: var(--brand);
  animation: spin 0.7s linear infinite;
}
.preview-image { transition: background-image 0.45s ease, filter 0.35s ease; }
.site-preview.is-building .preview-image { filter: saturate(0.7); }
@keyframes spin { to { transform: rotate(360deg); } }
.preview-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 48px; padding: 0 1rem; border-bottom: 1px solid #f1f5f9; font-size: 0.7rem;
}
.preview-bar strong { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; }
.preview-bar .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 10px;
}
.preview-bar nav { color: #64748b; display: none; }
@media (min-width: 640px) { .preview-bar nav { display: block; } }
.preview-bar b {
  padding: 5px 12px; border-radius: 999px;
  background: var(--brand); color: #fff; font-size: 0.7rem; font-weight: 700;
}
.preview-image {
  min-height: 260px; padding: 2rem; display: flex; align-items: center;
  background:
    linear-gradient(100deg, rgba(248,246,242,0.96) 0%, rgba(248,246,242,0.55) 42%, transparent 68%),
    url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1200&q=85') center/cover;
}
.preview-copy small {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; color: #475569;
}
.preview-copy h2 {
  margin: 0 0 0.5rem; font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.15; letter-spacing: -0.03em; font-weight: 800;
}
.preview-copy p { margin: 0 0 1rem; font-size: 0.8rem; color: #64748b; max-width: 16rem; }
.preview-copy .cta {
  display: inline-block; padding: 0.55rem 1rem;
  background: #0f172a; color: #fff; border-radius: 6px;
  font-size: 0.75rem; font-weight: 700;
}

.assistant-panel {
  position: relative; z-index: 1;
  margin-top: 1rem;
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 16px; padding: 1rem;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}
@media (min-width: 980px) {
  .assistant-panel {
    position: absolute; top: 56px; right: -8px;
    width: 300px; margin-top: 0;
  }
}
.assistant-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.35rem; padding: 0 0.25rem 0.65rem;
  border-bottom: 1px solid #f1f5f9;
}
.assistant-head strong { display: flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; font-weight: 800; }
.assistant-head strong span { color: var(--brand-deep); }
.assistant-head button {
  padding: 0.45rem 0.75rem; border: none; border-radius: 8px;
  background: var(--brand-soft); color: var(--brand-deep);
  font-size: 0.75rem; font-weight: 800; cursor: pointer;
}
.assistant-panel ul { list-style: none; margin: 0; padding: 0; }
.assistant-panel li {
  display: grid; grid-template-columns: 44px 1fr 16px;
  align-items: center; gap: 0.75rem;
  padding: 0.85rem 0.35rem; border-bottom: 1px solid #f1f5f9;
}
.assistant-panel li[data-chat-prompt] { cursor: pointer; }
.assistant-panel li:last-child { border-bottom: none; }
.assistant-panel .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand-deep);
  display: grid; place-items: center;
}
.assistant-panel .icon svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.assistant-panel b { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.assistant-panel small { display: block; font-size: 0.75rem; color: var(--muted); }
.assistant-panel em { color: #94a3b8; font-style: normal; font-size: 1.1rem; }

.metric-strip {
  position: relative; z-index: 2;
  margin-top: 1rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem; padding: 1rem;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
@media (min-width: 640px) { .metric-strip { grid-template-columns: repeat(4, 1fr); gap: 0; } }
@media (min-width: 980px) {
  .metric-strip { position: absolute; left: 0; right: 48px; bottom: 0; margin-top: 0; }
}
.metric-strip > div { display: flex; align-items: center; gap: 0.65rem; padding: 0.35rem 0.5rem; }
.metric-strip .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand-deep);
  display: grid; place-items: center; flex-shrink: 0;
}
.metric-strip .icon svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.metric-strip b { display: block; font-size: 0.8rem; font-weight: 700; }
.metric-strip small { display: block; font-size: 0.7rem; color: var(--muted); }

.prompt-section { padding: 2.5rem 0 3rem; }
.prompt-card {
  display: grid; gap: 2rem;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 2rem; box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .prompt-card { grid-template-columns: 0.9fr 1.1fr; padding: 2.5rem; gap: 3rem; align-items: center; }
}
.prompt-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
}
.section-label {
  margin: 0 0 0.5rem; color: var(--brand-deep);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
}
.prompt-copy h2 {
  margin: 0 0 0.85rem; font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em; line-height: 1.15;
}
.prompt-copy > p:not(.section-label) {
  margin: 0 0 1.25rem; color: var(--muted); font-size: 0.95rem; max-width: 26rem;
}
.prompt-copy ul { list-style: none; margin: 0; padding: 0; }
.prompt-copy li {
  position: relative; padding: 0.35rem 0 0.35rem 1.6rem;
  font-size: 0.9rem; font-weight: 600;
}
.prompt-copy li::before {
  content: '✓'; position: absolute; left: 0; top: 0.35rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 0.65rem;
}

.chat-box {
  display: flex; flex-direction: column; min-height: 340px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.1rem; border-bottom: 1px solid #f1f5f9;
}
.chat-header strong { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.chat-header .mark {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 0.7rem;
}
.chat-header em {
  font-style: normal; font-size: 0.7rem; font-weight: 700;
  color: var(--brand-deep); background: var(--brand-soft);
  padding: 0.35rem 0.65rem; border-radius: 999px;
}
.chat-thread {
  flex: 1; overflow-y: auto; padding: 1.25rem;
  display: flex; flex-direction: column; gap: 1rem; max-height: 360px;
}
.bubble-wrap { display: flex; flex-direction: column; gap: 0.35rem; max-width: 88%; }
.bubble-wrap--user { align-self: flex-end; align-items: flex-end; }
.bubble-wrap--ai { align-self: flex-start; }
.bubble-label { font-size: 0.7rem; font-weight: 700; color: var(--muted); }
.bubble {
  padding: 0.85rem 1rem; border-radius: 12px;
  font-size: 0.875rem; line-height: 1.55; white-space: pre-line;
}
.bubble--user { background: var(--brand-soft); color: var(--ink); border-bottom-right-radius: 4px; }
.bubble--ai { background: #f8fafc; color: var(--ink); border-bottom-left-radius: 4px; }
.chat-input {
  display: flex; gap: 0.65rem; padding: 0.85rem 1rem;
  border-top: 1px solid #f1f5f9;
}
.chat-input input {
  flex: 1; min-width: 0; height: 46px; padding: 0 1rem;
  border: 1px solid var(--line); border-radius: 10px; outline: none;
}
.chat-input input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12); }
.chat-send {
  width: 46px; height: 46px; border: none; border-radius: 10px;
  background: var(--brand); color: #fff; cursor: pointer; font-size: 1.1rem;
}
.chat-send:hover { background: var(--brand-deep); }
.chat-send:disabled { opacity: 0.55; cursor: wait; }
.login-card {
  display: flex; flex-direction: column; gap: 0.45rem;
  width: 100%; max-width: 100%; min-width: 0;
  padding: 0.95rem 1rem 1rem; border-radius: 12px;
  background: #fff1f2; border: 1px solid #fecdd3;
  font-size: 0.82rem;
}
.login-card__row {
  display: grid; grid-template-columns: 5.75rem minmax(0, 1fr);
  gap: 0.55rem; align-items: start;
}
.login-card__k { color: var(--muted); font-weight: 700; padding-top: 0.05rem; }
.login-card__v {
  font-weight: 700; min-width: 0;
  overflow-wrap: break-word; word-break: break-word;
}
.login-card__v a { color: var(--brand-deep); }
.login-card__cta {
  display: block; box-sizing: border-box;
  margin-top: 0.45rem; width: 100%;
  height: 44px; line-height: 44px; padding: 0 1rem;
  border: 0; border-radius: 10px;
  background: var(--brand); color: #fff !important;
  font-size: 0.8125rem; font-weight: 800;
  text-align: center; text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.login-card__cta:hover { background: var(--brand-deep); color: #fff !important; }
.chat-auth-hint {
  margin: 0; padding: 0 1rem 0.85rem;
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  text-align: center;
}
.chat-auth-hint a { color: var(--brand-deep); }
.chat-auth-hint a:hover { text-decoration: underline; }

.auth-page { padding: 3rem 0 4rem; }
.auth-card {
  width: min(calc(100% - 48px), 440px); margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 2rem; box-shadow: var(--shadow);
}
.auth-card h1 { margin: 0 0 0.4rem; font-size: 1.6rem; letter-spacing: -0.03em; }
.auth-card .lede { margin: 0 0 1.5rem; color: var(--muted); font-size: 0.95rem; }
.auth-card label { display: block; margin: 0 0 0.35rem; font-size: 0.8rem; font-weight: 700; }
.auth-card input {
  width: 100%; height: 46px; margin: 0 0 1rem; padding: 0 0.9rem;
  border: 1px solid var(--line); border-radius: 10px; outline: none;
}
.auth-card input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12); }
.auth-card .button { width: 100%; }
.auth-card .switch { margin: 1rem 0 0; text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.auth-card .switch a { color: var(--brand-deep); }
.auth-msg { display: none; margin: 0 0 1rem; padding: 0.75rem 0.9rem; border-radius: 10px; font-size: 0.85rem; font-weight: 600; }
.auth-msg.is-error { display: block; background: #fff1f2; color: #9f1239; }
.auth-msg.is-ok { display: block; background: #f0fdf4; color: #166534; }
.bubble--typing {
  display: inline-flex; align-items: center; gap: 5px;
  min-height: 18px; padding: 0.85rem 1rem;
}
.bubble--typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #94a3b8;
  animation: leeno-dot 1s ease-in-out infinite;
}
.bubble--typing i:nth-child(2) { animation-delay: 0.15s; }
.bubble--typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes leeno-dot {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.apps-section {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  color: #fff;
  background:
    radial-gradient(ellipse 40% 50% at 0% 20%, rgba(109, 40, 217, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 80%, rgba(190, 18, 60, 0.28), transparent 55%),
    #0b0724;
}
.apps-orbs {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 8% 70%, rgba(124, 58, 237, 0.35), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(236, 72, 153, 0.22), transparent 26%);
}
.apps-wrap {
  position: relative; z-index: 1;
  width: min(calc(100% - 32px), 1280px);
  margin-inline: auto;
  min-height: 0;
}
.apps-center { text-align: center; position: relative; z-index: 2; }
.apps-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin: 0 0 1rem; padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #3b0764; color: #e9d5ff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.apps-center h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  letter-spacing: -0.035em; line-height: 1.1; font-weight: 800;
}
.apps-center h2 em { color: #fb7185; font-style: normal; }
.apps-lead {
  margin: 0 auto 1.75rem; max-width: 38rem;
  color: #c4c8d8; font-size: 0.98rem; line-height: 1.55;
}

.app-cards {
  list-style: none; margin: 0 auto 0.85rem; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem;
}
.app-cards--5 { max-width: 820px; }
.app-cards--6 { max-width: 960px; margin-bottom: 1.6rem; }
.app-cards li {
  width: 142px;
  background: #15102c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.05rem 0.75rem 1.1rem;
  text-align: center;
}
.app-cards .ico {
  width: 48px; height: 48px; margin: 0 auto 0.7rem;
  border-radius: 14px; color: #fff;
  display: grid; place-items: center;
}
.app-cards .ico svg {
  width: 24px; height: 24px; fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.ico--blue { background: linear-gradient(145deg, #38bdf8, #2563eb); }
.ico--teal { background: linear-gradient(145deg, #2dd4bf, #0d9488); }
.ico--pink { background: linear-gradient(145deg, #fb7185, #e11d48); }
.ico--orange { background: linear-gradient(145deg, #fdba74, #f97316); }
.ico--violet { background: linear-gradient(145deg, #c4b5fd, #7c3aed); }
.ico--sky { background: linear-gradient(145deg, #60a5fa, #2563eb); }
.ico--green { background: linear-gradient(145deg, #4ade80, #16a34a); }
.ico--purple { background: linear-gradient(145deg, #c084fc, #7e22ce); }
.ico--gold { background: linear-gradient(145deg, #fde047, #eab308); color: #422006; }
.ico--magenta { background: linear-gradient(145deg, #f472b6, #db2777); }
.ico--mint { background: linear-gradient(145deg, #5eead4, #0f766e); }
.app-cards b { display: block; margin-bottom: 0.3rem; font-size: 0.95rem; }
.app-cards small { display: block; color: #9aa3b8; font-size: 0.72rem; line-height: 1.4; }

.apps-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; width: min(100%, 720px); margin-inline: auto;
  padding: 0.7rem 0.75rem 0.7rem 1.1rem;
  background: #1a1238; border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 999px;
}
.apps-cta-copy { display: flex; align-items: center; gap: 0.7rem; text-align: left; }
.apps-cta .bolt {
  width: 32px; height: 32px; border-radius: 50%;
  background: #7c3aed; display: grid; place-items: center;
}
.apps-cta strong { display: block; font-size: 0.92rem; }
.apps-cta small { display: block; color: #a5aec2; font-size: 0.72rem; }
.apps-cta .button { border-radius: 999px; min-height: 40px; padding: 0 1.1rem; font-size: 0.82rem; }

.dash-float, .phone-float { display: none; }
@media (min-width: 1100px) {
  .apps-wrap { min-height: 620px; }
  .dash-float, .phone-float {
    display: block; position: absolute; z-index: 3;
  }
  .dash-float { left: 0; top: 210px; }
  .phone-float { right: 8px; top: 190px; }
}
.dash-float { transform: rotate(-8deg) translateY(12px); }
.dash-screen {
  display: grid; grid-template-columns: 72px 1fr;
  width: 250px; height: 170px;
  background: #f8fafc; color: #0f172a; border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(88, 28, 135, 0.45), 0 0 40px rgba(59, 130, 246, 0.25);
}
.dash-screen nav {
  background: #fff; border-right: 1px solid #eef2f7;
  padding: 0.55rem 0.4rem; font-size: 0.42rem; color: #64748b;
  display: flex; flex-direction: column; gap: 0.28rem;
}
.dash-screen nav strong {
  display: flex; align-items: center; gap: 0.25rem;
  color: #0f172a; font-size: 0.48rem; margin-bottom: 0.25rem;
}
.dash-screen nav strong i {
  width: 8px; height: 8px; border-radius: 2px; background: #e11d48;
}
.dash-screen nav .on { color: #e11d48; font-weight: 700; }
.dash-main { padding: 0.55rem 0.65rem; text-align: left; }
.dash-main > b { font-size: 0.62rem; }
.dash-stats { display: flex; gap: 0.7rem; margin: 0.35rem 0 0.2rem; }
.dash-stats small { display: block; font-size: 0.38rem; color: #94a3b8; text-transform: uppercase; }
.dash-stats em { font-style: normal; font-size: 0.78rem; font-weight: 800; }
.dash-stats u { font-size: 0.38rem; color: #16a34a; text-decoration: none; }
.dash-chart { width: 100%; height: 42px; }
.dash-rows { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.dash-rows i { height: 5px; border-radius: 4px; background: #e2e8f0; }
.dash-rows i:first-child { width: 90%; }
.dash-rows i:nth-child(2) { width: 70%; }
.dash-rows i:nth-child(3) { width: 55%; }

.float-chip {
  position: absolute; z-index: 2;
  width: 42px; height: 42px; border-radius: 12px;
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.float-chip svg {
  width: 20px; height: 20px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round;
}
.float-chip--blue { background: linear-gradient(145deg, #60a5fa, #2563eb); top: -18px; right: 18px; }
.float-chip--pink { background: linear-gradient(145deg, #fb7185, #e11d48); top: -8px; left: -8px; }
.float-chip--green { background: linear-gradient(145deg, #4ade80, #16a34a); bottom: 18px; left: -16px; }

.phone-float { transform: rotate(8deg) translateY(8px); }
.phone-body {
  width: 168px; padding: 12px 12px 16px;
  background: linear-gradient(180deg, #1e1238, #0b0724);
  border: 3px solid #2e1b55; border-radius: 28px;
  box-shadow: 0 24px 50px rgba(236, 72, 153, 0.28), 0 0 36px rgba(168, 85, 247, 0.25);
  text-align: left;
}
.phone-body header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.7rem; font-size: 0.62rem;
}
.phone-body header span { width: 12px; height: 2px; background: #64748b; }
.phone-body h3 {
  margin: 0 0 0.35rem; font-size: 0.92rem; line-height: 1.15; letter-spacing: -0.03em;
}
.phone-body p { margin: 0 0 0.7rem; font-size: 0.58rem; color: #94a3b8; }
.phone-body em {
  display: inline-block; margin-bottom: 0.75rem;
  padding: 0.28rem 0.55rem; border-radius: 999px;
  background: #e11d48; font-style: normal; font-size: 0.55rem; font-weight: 700;
}
.phone-apps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem;
}
.phone-apps span {
  padding: 0.4rem 0.3rem; border-radius: 8px;
  background: rgba(255,255,255,0.06); font-size: 0.52rem; text-align: center;
}

@media (max-width: 700px) {
  .app-cards li { width: calc(50% - 0.5rem); }
  .apps-cta { border-radius: 18px; }
}

.examples {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 3.8rem;
  background:
    radial-gradient(ellipse 42% 55% at 4% 18%, rgba(255, 182, 210, 0.55), transparent 62%),
    radial-gradient(ellipse 38% 50% at 96% 78%, rgba(221, 196, 255, 0.5), transparent 60%),
    linear-gradient(180deg, #fff7fb 0%, #fbfbfe 45%, #fff 100%);
}
.examples-inner { width: min(calc(100% - 28px), 1320px); margin-inline: auto; text-align: center; }
.examples-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin: 0 0 0.95rem; padding: 0.42rem 0.95rem;
  border-radius: 999px; background: #fff; color: var(--brand);
  border: 1px solid #ffd6e2;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.08);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.examples h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -0.04em; font-weight: 800;
}
.examples h2 em {
  color: var(--brand);
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(90deg, #e11d48, #c026d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.examples-lead {
  margin: 0 auto 2.4rem; max-width: 38rem;
  color: #64748b; font-size: 1rem; line-height: 1.55;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem 1.6rem;
  text-align: left;
}
@media (min-width: 720px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; gap: 2.8rem 2rem; }
}
@media (min-width: 1180px) {
  .showcase-grid { grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1.35rem; }
}

.showcase-stage {
  position: relative;
  height: 300px;
  margin: 0 0 1.15rem;
}
.showcase-stage::before {
  content: '';
  position: absolute;
  inset: 14% 0 6% 0;
  border-radius: 36px;
  z-index: 0;
}
.showcase:nth-child(1) .showcase-stage::before { background: #f8d7e8; }
.showcase:nth-child(2) .showcase-stage::before { background: #ead9ff; }
.showcase:nth-child(3) .showcase-stage::before { background: #fde4d4; }
.showcase:nth-child(4) .showcase-stage::before { background: #d9e6ff; }

.desk {
  position: absolute;
  left: 0; top: 6%;
  width: 66%; height: 88%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
  z-index: 1;
  display: flex; flex-direction: column;
  font-size: 0.5rem;
  color: #0f172a;
}
.desk--dark { background: #121214; color: #fff; }
.desk-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.4rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.42rem; font-weight: 600;
  background: rgba(255,255,255,0.04);
}
.desk--dark .desk-bar { color: #e2e8f0; }
.desk-bar b { font-size: 0.5rem; letter-spacing: -0.02em; }
.desk-bar nav { opacity: 0.72; white-space: nowrap; overflow: hidden; }
.desk-bar span {
  padding: 0.18rem 0.38rem; border-radius: 999px;
  background: #fff; color: #111; font-weight: 700; font-size: 0.38rem;
}
.desk-bar span.blue { background: #2563eb; color: #fff; }
.desk-bar span.bag { background: transparent; padding: 0; font-size: 0.5rem; }
.desk-hero {
  flex: 1;
  min-height: 0;
  padding: 0.55rem 0.65rem 0.4rem;
  background-size: cover;
  background-position: center;
  display: flex; flex-direction: column; justify-content: center;
  text-align: left;
}
.desk-hero--brew { background-position: 88% center; }
.desk-hero--fit { background-position: 78% 18%; }
.desk-hero--haven { background-position: center 70%; }
.desk-hero small {
  font-size: 0.36rem; letter-spacing: 0.12em; font-weight: 700; opacity: 0.75;
}
.desk-hero h3 {
  margin: 0.12rem 0 0.18rem;
  font-size: 0.92rem; line-height: 1.05;
  letter-spacing: -0.04em; font-weight: 800;
}
.desk-hero p {
  margin: 0 0 0.35rem; max-width: 58%;
  font-size: 0.4rem; line-height: 1.35; opacity: 0.82;
}
.desk-hero em {
  display: inline-flex; align-self: flex-start;
  padding: 0.22rem 0.48rem; border-radius: 999px;
  background: #fff; color: #111;
  font-style: normal; font-size: 0.38rem; font-weight: 700;
}
.desk-hero--split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
  padding: 0; background: #f6efe6;
}
.desk-hero--split > div:first-child {
  padding: 0.7rem 0.55rem 0.45rem 0.65rem;
  display: flex; flex-direction: column; justify-content: center;
}
.desk-hero--split h3 { font-size: 0.78rem; color: #1c1917; }
.desk-hero--split p { max-width: none; color: #78716c; }
.desk-hero--split em { background: #1c1917; color: #fff; }
.hero-pic {
  background-size: cover; background-position: center 20%;
}
.desk-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.28rem; padding: 0.35rem 0.45rem;
}
.desk-stats span {
  background: rgba(255,255,255,0.08); border-radius: 8px;
  padding: 0.28rem 0.3rem; text-align: center;
}
.desk-stats.light span { background: #fff; color: #111; box-shadow: 0 4px 10px rgba(15,23,42,0.06); }
.desk--dark .desk-stats.light span { color: #111; }
.desk-stats b { display: block; font-size: 0.48rem; }
.desk-stats small { display: block; font-size: 0.34rem; opacity: 0.7; }
.desk-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.28rem 0.5rem 0.42rem;
}
.desk-row b { font-size: 0.42rem; }
.thumbs { display: flex; gap: 0.22rem; }
.thumbs i {
  width: 22px; height: 22px; border-radius: 50%;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
.desk:not(.desk--dark) .thumbs i { border-radius: 5px; width: 28px; height: 18px; }
.desk-cats {
  display: flex; justify-content: space-around;
  padding: 0.28rem 0.35rem 0.4rem;
  background: #fff;
}
.desk-cats span {
  display: flex; flex-direction: column; align-items: center; gap: 0.12rem;
  font-size: 0.34rem; color: #57534e;
}
.desk-cats i {
  width: 22px; height: 22px; border-radius: 50%;
  background-size: cover; background-position: center;
}
.desk-search {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.22rem; max-width: 88%;
  padding: 0.22rem 0.22rem 0.22rem 0.42rem; border-radius: 999px;
  background: #fff; color: #64748b;
  font-size: 0.36rem; box-shadow: 0 6px 14px rgba(15,23,42,0.12);
}
.desk-search i {
  width: 12px; height: 12px; border-radius: 50%;
  background: #2563eb; flex-shrink: 0;
}

.handset {
  position: absolute;
  right: 0; bottom: 4%;
  width: 40%; height: 72%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.26);
  padding: 6px 5px 7px;
  overflow: hidden;
  z-index: 2;
  display: flex; flex-direction: column;
  color: #fff;
}
.handset::before {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 26%; height: 4px; border-radius: 999px;
  background: rgba(15,23,42,0.16); z-index: 3;
}
.handset strong {
  position: absolute;
  top: 14px; left: 0; right: 0;
  z-index: 4;
  display: block; padding: 0;
  font-size: 0.38rem; text-align: center; font-weight: 700;
}
.handset-hero {
  position: relative;
  flex: 1; min-height: 0;
  margin: 0;
  border-radius: 12px;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.handset h4 {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 0.55rem 0.35rem 0.4rem;
  font-size: 0.5rem; line-height: 1.1; letter-spacing: -0.03em;
  font-weight: 800; text-align: center; color: #fff;
}

.showcase > footer {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0 0.15rem;
}
.ex-ico {
  width: 42px; height: 42px; border-radius: 50%;
  color: #fff; display: grid; place-items: center;
  font-style: normal; flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}
.ex-ico svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.showcase > footer span { min-width: 0; }
.showcase > footer b { display: block; font-size: 0.95rem; letter-spacing: -0.02em; }
.showcase > footer small { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.35; }

@media (min-width: 1180px) {
  .showcase-stage { height: 305px; }
}
@media (max-width: 719px) {
  .showcase-stage { height: 280px; }
  .desk { width: 64%; }
  .handset { width: 40%; height: 70%; }
}

.section-heading { text-align: center; margin-bottom: 2rem; }
.section-heading p {
  margin: 0 0 0.35rem; color: var(--brand-deep);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.section-heading h2 { margin: 0 0 0.5rem; font-size: clamp(1.5rem, 3vw, 1.85rem); letter-spacing: -0.03em; }
.section-heading span { color: var(--muted); font-size: 0.9rem; }

.trust-bar {
  display: grid; gap: 1.5rem; padding: 1.75rem 1.5rem;
  background: #0b1524; color: #fff; border-radius: 14px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .trust-bar { grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.75rem 2rem; }
}
.trust-bar > div { display: flex; align-items: center; gap: 0.85rem; }
.trust-bar .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: #fda4af;
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-bar .icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.trust-bar b { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.trust-bar small { display: block; color: #94a3b8; font-size: 0.75rem; }

.final-cta { padding: 0 0 3.5rem; }
.cta-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 2.25rem 2rem;
  background: linear-gradient(115deg, #be123c, #e11d48 50%, #f43f5e);
  color: #fff; border-radius: 16px;
  box-shadow: 0 16px 40px rgba(190, 18, 60, 0.28);
}
.cta-card .tag {
  display: inline-block; margin: 0 0 0.65rem;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.7rem; font-weight: 700;
}
.cta-card h2 { margin: 0 0 0.5rem; font-size: clamp(1.35rem, 2.5vw, 1.75rem); letter-spacing: -0.03em; }
.cta-card > div > span { opacity: 0.9; font-size: 0.9rem; }

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-shell { height: 64px; }
  .hero { padding: 40px 0 48px; }
  .hero-copy h1 { font-size: 2.35rem; }
  .cta-card { flex-direction: column; align-items: flex-start; }
}
