/* Clearli marketing site — light pastel blue (Cluely-style), isolated from app. */

:root {
  --site-bg-top: #dbeafe;
  --site-bg-mid: #eff6ff;
  --site-bg-soft: #f0f9ff;
  --site-bg-bottom: #e0f2fe;
  --site-bg-elevated: rgba(255, 255, 255, 0.92);
  --site-surface: rgba(255, 255, 255, 0.72);
  --site-surface-solid: #ffffff;
  --site-border: rgba(15, 23, 42, 0.08);
  --site-border-strong: rgba(15, 23, 42, 0.12);
  --site-text: #0f172a;
  --site-muted: #475569;
  --site-accent: #0073ff;
  --site-accent-soft: #2563eb;
  --site-green: #059669;
  --site-bento-fill: linear-gradient(135deg, #60a5fa 0%, #2563eb 42%, #005eff 100%);
  --site-bento-fill-border: rgba(255, 255, 255, 0.45);
  --site-bento-fill-shadow:
    0 4px 14px rgba(0, 94, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  --site-font-display: "Space Mono", ui-monospace, monospace;
  --site-font-body: "Space Mono", ui-monospace, monospace;
  --site-font-mono: "Space Mono", ui-monospace, monospace;
  --site-nav-h: 64px;
  --site-safe-top: env(safe-area-inset-top, 0px);
  --site-safe-bottom: env(safe-area-inset-bottom, 0px);
  --site-safe-left: env(safe-area-inset-left, 0px);
  --site-safe-right: env(safe-area-inset-right, 0px);
  --site-header-total: calc(var(--site-nav-h) + var(--site-safe-top));
  --site-max: 1120px;
  --site-radius: 14px;
  --site-radius-lg: 20px;
  --site-shadow: 0 20px 50px rgba(37, 99, 235, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  font-family: var(--site-font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--site-text);
  min-height: 100vh;
  background-color: var(--site-bg-mid);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 255, 255, 0.95) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 30%, rgba(147, 197, 253, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 0% 60%, rgba(186, 230, 253, 0.5) 0%, transparent 45%),
    linear-gradient(
      180deg,
      var(--site-bg-top) 0%,
      var(--site-bg-mid) 22%,
      var(--site-bg-soft) 48%,
      var(--site-bg-bottom) 72%,
      #f8fafc 100%
    );
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.site-body a {
  color: inherit;
}

.site-skip {
  position: absolute;
  left: -9999px;
}

/* —— Nav —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--site-nav-h);
  height: var(--site-header-total);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    var(--site-safe-top)
    calc(20px + var(--site-safe-right))
    0
    calc(20px + var(--site-safe-left));
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--site-border);
}

.site-header-inner {
  width: 100%;
  max-width: var(--site-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  font-family: var(--site-font-display);
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  color: var(--site-text);
}

.site-logo span {
  color: var(--site-accent);
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--site-border-strong);
  border-radius: 12px;
  background: var(--site-surface-solid);
  color: var(--site-text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.site-menu-btn:hover {
  border-color: rgba(37, 99, 235, 0.25);
}

.site-store-link--nav {
  display: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--site-text);
  color: #fff;
}

@media (min-width: 720px) {
  .site-store-link--nav {
    display: inline-flex;
  }
}

/* Drawer */
.site-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.site-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 201;
  width: min(320px, 88vw);
  height: 100%;
  padding:
    calc(24px + var(--site-safe-top))
    calc(20px + var(--site-safe-right))
    calc(32px + var(--site-safe-bottom))
    calc(20px + var(--site-safe-left));
  box-sizing: border-box;
  background: var(--site-bg-elevated);
  border-left: 1px solid var(--site-border);
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.06);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}

.site-drawer.is-open {
  transform: translateX(0);
}

.site-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.site-drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--site-surface);
  color: var(--site-text);
  cursor: pointer;
  font-size: 1.1rem;
}

.site-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-drawer-link {
  display: block;
  padding: 14px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}

.site-drawer-link:hover {
  background: rgba(219, 234, 254, 0.6);
}

.site-drawer-link--button {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

body.site-nav-open {
  overflow: hidden;
}

/* —— Layout —— */
.site-main {
  padding-top: var(--site-header-total);
}

.site-section {
  padding: 72px 20px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.site-section--wide {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.site-divider {
  border: none;
  border-top: 1px solid var(--site-border);
  margin: 0;
  opacity: 0.7;
}

.site-eyebrow {
  font-family: var(--site-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--site-muted);
  margin: 0 0 12px;
}

.site-h2 {
  font-family: var(--site-font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 16px;
}

.site-lead {
  font-size: 1.0625rem;
  color: var(--site-muted);
  max-width: 52ch;
  margin: 0 0 28px;
}

/* —— Hero —— */
.site-hero {
  padding: 48px 20px 64px;
  max-width: var(--site-max);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .site-hero {
    grid-template-columns: 1fr 1.05fr;
    padding-top: 64px;
    padding-bottom: 88px;
  }
}

.site-hero-title {
  font-family: var(--site-font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 400;
}

.site-hero-title em {
  font-style: normal;
  color: var(--site-accent);
}

.site-hero-sub {
  font-size: 1.125rem;
  color: var(--site-muted);
  margin: 0 0 28px;
  max-width: 46ch;
}

.site-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-store-badge {
  display: inline-block;
  height: 44px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.site-store-badge img {
  height: 44px;
  width: auto;
  display: block;
}

.site-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.site-hero-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--site-muted);
}

.site-hero-note a {
  color: var(--site-accent-soft);
  font-weight: 500;
}

/* Product mock */
.site-mock {
  border-radius: var(--site-radius-lg);
  border: 1px solid var(--site-border-strong);
  background: var(--site-surface-solid);
  box-shadow: var(--site-shadow);
  overflow: hidden;
}

.site-mock-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--site-border);
  font-size: 0.75rem;
  color: var(--site-muted);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.site-mock-dots {
  display: flex;
  gap: 6px;
}

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

.site-mock-dots span:first-child {
  background: #fca5a5;
}

.site-mock-dots span:nth-child(2) {
  background: #fde047;
}

.site-mock-dots span:nth-child(3) {
  background: #86efac;
}

.site-mock-body {
  padding: 20px;
  background: #fff;
}

.site-mock-label {
  font-family: var(--site-font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--site-muted);
  margin-bottom: 12px;
}

.site-mock-foods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.site-mock-chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  background: rgba(219, 234, 254, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #1e40af;
}

.site-mock-curve {
  height: 120px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid var(--site-border);
  position: relative;
  overflow: hidden;
}

.site-mock-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-mock-caption {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--site-muted);
}

/* —— How it works —— */
.site-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.site-step {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 840px) {
  .site-step {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .site-step:nth-child(even) .site-step-copy {
    order: 2;
  }

  .site-step:nth-child(even) .site-step-visual {
    order: 1;
  }
}

.site-step-num {
  font-family: var(--site-font-mono);
  font-size: 0.75rem;
  color: var(--site-accent-soft);
  margin-bottom: 8px;
}

.site-step h3 {
  font-family: var(--site-font-display);
  font-size: 1.5rem;
  margin: 0 0 10px;
  font-weight: 400;
}

.site-step p {
  margin: 0;
  color: var(--site-muted);
}

.site-panel {
  border-radius: var(--site-radius);
  border: 1px solid var(--site-border-strong);
  background: var(--site-surface-solid);
  padding: 24px;
  min-height: 200px;
  box-shadow: var(--site-shadow);
}

.site-panel--ika .site-ika-bubble {
  background: #ecfdf5;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 12px 12px 12px 4px;
  padding: 14px 16px;
  font-size: 0.9375rem;
  margin-bottom: 12px;
  color: var(--site-text);
}

.site-panel--ika .site-ika-user {
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px 12px 4px 12px;
  padding: 10px 14px;
  font-size: 0.875rem;
  margin-left: 24px;
  color: var(--site-muted);
}

/* Journey strip */
.site-screens {
  padding: 48px 20px 72px;
  text-align: center;
}

.site-screens-inner {
  max-width: var(--site-max);
  margin: 0 auto;
}

.site-screens-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 24px 20px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.site-screens-track::-webkit-scrollbar {
  height: 6px;
}

.site-screens-track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.5);
  border-radius: 3px;
}

.site-phone-frame {
  flex: 0 0 220px;
  scroll-snap-align: center;
  border-radius: 28px;
  border: 2px solid rgba(15, 23, 42, 0.1);
  padding: 12px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.site-phone-screen {
  border-radius: 18px;
  height: 380px;
  background: linear-gradient(180deg, #bfdbfe 0%, #eff6ff 55%, #f8fafc 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  text-align: left;
  color: var(--site-text);
}

.site-phone-screen strong {
  font-size: 0.9375rem;
}

.site-phone-screen span {
  font-size: 0.75rem;
  color: var(--site-muted);
  margin-top: 4px;
}

/* Trust grid */
.site-trust-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 720px) {
  .site-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-trust-card {
  padding: 24px;
  border-radius: var(--site-radius);
  border: 1px solid var(--site-border-strong);
  background: var(--site-surface-solid);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.site-trust-card h3 {
  font-size: 1.0625rem;
  margin: 0 0 8px;
}

.site-trust-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--site-muted);
}

/* Integrations */
.site-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.site-logo-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--site-border-strong);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--site-muted);
  background: rgba(255, 255, 255, 0.6);
}

/* Stats */
.site-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
  padding: 48px 20px;
  border-top: 1px solid var(--site-border);
  border-bottom: 1px solid var(--site-border);
  background: rgba(255, 255, 255, 0.45);
}

.site-stat-val {
  font-family: var(--site-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  display: block;
  color: var(--site-accent-soft);
}

.site-stat-label {
  font-size: 0.8125rem;
  color: var(--site-muted);
  margin-top: 4px;
  display: block;
}

@media (max-width: 520px) {
  .site-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Research marquee */
.site-marquee-wrap {
  overflow: hidden;
  padding: 32px 0;
  border-bottom: 1px solid var(--site-border);
}

.site-marquee-label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--site-muted);
  margin-bottom: 20px;
}

.site-marquee {
  display: flex;
  width: max-content;
  animation: site-marquee 40s linear infinite;
  gap: 48px;
  align-items: center;
}

.site-marquee img {
  height: 36px;
  width: auto;
  opacity: 0.75;
}

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

.site-phone-screen--mint {
  background: linear-gradient(180deg, #bbf7d0 0%, #ecfdf5 55%, #f8fafc 100%);
}

.site-phone-screen--lavender {
  background: linear-gradient(180deg, #ddd6fe 0%, #f5f3ff 55%, #f8fafc 100%);
}

/* FAQ */
.site-faq {
  max-width: 720px;
  margin: 0 auto;
}

.site-faq-item {
  border-bottom: 1px solid var(--site-border);
}

.site-faq-q {
  width: 100%;
  padding: 18px 0;
  border: none;
  background: none;
  color: var(--site-text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.site-faq-q::after {
  content: "+";
  color: var(--site-muted);
  font-weight: 400;
}

.site-faq-item.is-open .site-faq-q::after {
  content: "−";
}

.site-faq-a {
  display: none;
  padding: 0 0 18px;
  color: var(--site-muted);
  font-size: 0.9375rem;
}

.site-faq-item.is-open .site-faq-a {
  display: block;
}

.site-faq-a a {
  color: var(--site-accent-soft);
}

/* CTA band */
.site-cta-band {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(ellipse 90% 70% at 50% 100%, rgba(147, 197, 253, 0.55) 0%, transparent 65%);
}

.site-cta-band .site-h2 {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  padding: 48px 20px 32px;
  border-top: 1px solid var(--site-border);
  max-width: var(--site-max);
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .site-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer-brand {
  font-family: var(--site-font-display);
  font-size: 1.25rem;
}

.site-footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--site-muted);
  margin: 0 0 12px;
}

.site-footer-col a {
  display: block;
  text-decoration: none;
  color: var(--site-muted);
  font-size: 0.9375rem;
  padding: 4px 0;
}

.site-footer-col a:hover {
  color: var(--site-text);
}

.site-disclaimer {
  font-size: 0.75rem;
  color: var(--site-muted);
  line-height: 1.5;
  margin: 0;
}

/* Contact modal */
.site-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    calc(20px + var(--site-safe-top))
    calc(20px + var(--site-safe-right))
    calc(20px + var(--site-safe-bottom))
    calc(20px + var(--site-safe-left));
  box-sizing: border-box;
}

.site-modal-overlay[hidden] {
  display: none;
}

.site-modal {
  width: min(400px, 100%);
  max-height: calc(100vh - var(--site-safe-top) - var(--site-safe-bottom) - 40px);
  overflow: auto;
  padding: 28px 24px;
  border-radius: var(--site-radius-lg);
  background: var(--site-surface-solid);
  border: 1px solid var(--site-border-strong);
  box-shadow: var(--site-shadow);
  position: relative;
}

.site-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--site-text);
  cursor: pointer;
}

.site-modal h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.site-modal p {
  margin: 0 0 20px;
  color: var(--site-muted);
  font-size: 0.9375rem;
}

.site-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-modal-btn {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
}

.site-modal-btn--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.site-modal-btn--email {
  background: #f8fafc;
  border: 1px solid var(--site-border-strong);
  color: var(--site-text);
}

.site-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.site-bento-grid .site-reveal:nth-child(1) { transition-delay: 0ms; }
.site-bento-grid .site-reveal:nth-child(2) { transition-delay: 60ms; }
.site-bento-grid .site-reveal:nth-child(3) { transition-delay: 120ms; }
.site-bento-grid .site-reveal:nth-child(4) { transition-delay: 180ms; }
.site-bento-grid .site-reveal:nth-child(5) { transition-delay: 240ms; }

.site-bento-duo .site-reveal:nth-child(1) { transition-delay: 0ms; }
.site-bento-duo .site-reveal:nth-child(2) { transition-delay: 100ms; }

@media (prefers-reduced-motion: reduce) {
  .site-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Cluely-style hero —— */
.site-header--hero {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.site-header--hero .site-logo--hero {
  font-family: var(--site-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 12px rgba(15, 23, 42, 0.15);
}

.site-header.site-header--solid {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--site-border);
}

.site-header.site-header--solid .site-logo--hero {
  color: var(--site-text);
  text-shadow: none;
}

.site-header.site-header--solid .site-menu-btn--hero {
  background: var(--site-surface-solid);
  border-color: var(--site-border-strong);
  color: var(--site-text);
}

.site-header--hero .site-logo--hero span {
  color: inherit;
}

.site-menu-btn--hero {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.site-main {
  padding-top: 0;
}

.site-hero-cluely {
  position: relative;
  text-align: center;
  padding: calc(var(--site-header-total) + clamp(48px, 10vh, 88px)) calc(5% + var(--site-safe-left)) calc(64px + var(--site-safe-bottom)) calc(5% + var(--site-safe-right));
  overflow: hidden;
  color: #fff;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-hero-cluely-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, #6eb3ff 0%, #9ecaff 38%, #c5e2ff 68%, #eef6ff 100%);
}

.site-hero-cluely-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(920px, 90vw);
  margin: 0 auto;
}

.site-hero-cluely-title {
  font-family: var(--site-font-body);
  font-size: clamp(3.5rem, 16vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 clamp(20px, 4vh, 36px);
  letter-spacing: -0.05em;
  text-shadow: 0 2px 32px rgba(37, 99, 235, 0.25);
}

.site-hero-cluely-sub {
  font-size: clamp(1rem, 3.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 auto clamp(28px, 5vh, 40px);
  max-width: 42ch;
  color: #5b21b6;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45),
    0 2px 16px rgba(91, 33, 182, 0.35);
}

.site-hero-cluely-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.site-btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #1a8cff 0%, var(--site-accent) 55%, #0060df 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 4px 20px rgba(0, 115, 255, 0.5),
    0 0 36px rgba(0, 115, 255, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-btn-blue:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 8px 28px rgba(37, 99, 235, 0.5),
    0 0 40px rgba(59, 130, 246, 0.4);
}

.site-btn-blue-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  overflow: visible;
}

.site-hero-cluely-note {
  margin-top: 20px;
  font-size: 0.8125rem;
}

.site-hero-cluely-note a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.site-inline-contact {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.site-inline-contact:hover {
  color: #fff;
}

/* —— Bento grid: left stack | tall center | right stack —— */
.site-bento-section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 56px) 5%;
  box-sizing: border-box;
  min-height: min(88vh, 960px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-bento-section-title,
.site-research-label {
  font-family: var(--site-font-body);
  font-size: clamp(2rem, 7.5vw, 4.25rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 clamp(24px, 4vh, 40px);
  color: var(--site-text);
  letter-spacing: -0.04em;
  line-height: 1.08;
  flex-shrink: 0;
  text-transform: none;
}

.site-research-label {
  padding: 0 5%;
}

.site-bento-section-title {
  padding-top: clamp(8px, 2vh, 16px);
}

.site-bento-duo-section .site-bento-section-title {
  font-size: clamp(2.125rem, 8vw, 4.5rem);
  margin-bottom: clamp(28px, 5vh, 48px);
}

.site-bento-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 18px);
  width: 100%;
  flex: 1;
  min-height: 0;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .site-bento-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 1.35fr) minmax(0, 1fr);
    grid-template-rows: minmax(140px, 1fr) minmax(140px, 1fr);
    grid-template-areas:
      "bento-left-top bento-center bento-right-top"
      "bento-left-bottom bento-center bento-right-bottom";
    min-height: min(72vh, 720px);
    align-items: stretch;
  }
}

.site-bento--grid-left-top {
  grid-area: bento-left-top;
}

.site-bento--grid-left-bottom {
  grid-area: bento-left-bottom;
}

.site-bento--grid-center {
  grid-area: bento-center;
}

.site-bento--grid-center.site-bento--tall {
  justify-content: center;
  padding: clamp(22px, 3vw, 32px);
}

.site-bento--grid-right-top {
  grid-area: bento-right-top;
}

.site-bento--grid-right-bottom {
  grid-area: bento-right-bottom;
}

.site-bento-grid .site-bento-heading {
  font-size: clamp(1.25rem, 3.8vw, 1.875rem);
  margin-bottom: clamp(10px, 1.5vh, 16px);
}

.site-bento-grid .site-bento-body {
  font-size: clamp(0.875rem, 2.4vw, 1.125rem);
  line-height: 1.45;
  text-align: center;
  font-weight: 500;
}

.site-bento-grid .site-bento--tall .site-bento-heading {
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
}

.site-bento-grid .site-bento--tall .site-bento-body {
  font-size: clamp(0.9375rem, 2.6vw, 1.1875rem);
}

.site-bento-grid .site-bento-tagline {
  font-size: clamp(0.8125rem, 2.2vw, 1rem);
  text-align: center;
  margin-top: auto;
  padding-top: 16px;
}

.site-bento {
  border-radius: clamp(18px, 2vw, 24px);
  padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 22px);
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--site-border-strong);
}

.site-bento--wide {
  grid-column: 1 / -1;
  min-height: 0;
  height: 100%;
  padding: clamp(18px, 2.5vw, 26px) clamp(16px, 2.5vw, 24px);
}

.site-bento-heading {
  font-family: var(--site-font-body);
  font-size: clamp(1.0625rem, 3vw, 1.375rem);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.25;
}

.site-bento-body {
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.site-bento-tagline {
  margin: 14px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.85;
}

.site-bento--blue {
  background: linear-gradient(145deg, #5da8e8 0%, #4a90d9 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-bento--blue .site-bento-body,
.site-bento--blue-soft .site-bento-body {
  color: rgba(255, 255, 255, 0.92);
}

.site-bento--blue-soft {
  background: linear-gradient(145deg, #7eb8ea 0%, #6aaee0 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-bento--light {
  background: rgba(255, 255, 255, 0.85);
  color: var(--site-text);
}

.site-bento--light .site-bento-body {
  color: var(--site-muted);
}

.site-bento--gradient {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 50%, #f8fafc 100%);
  color: var(--site-text);
}

.site-bento--gradient .site-bento-body {
  color: var(--site-muted);
}

.site-bento--gradient .site-bento-tagline {
  color: var(--site-accent-soft);
}

/* Marketing bentos: same bright blue as Ika user chat bubble */
.site-bento-grid .site-bento,
.site-bento-duo .site-bento {
  background: var(--site-bento-fill);
  border: 1px solid var(--site-bento-fill-border);
  color: #fff;
  box-shadow: var(--site-bento-fill-shadow);
  text-shadow: 0 1px 2px rgba(0, 40, 120, 0.25);
}

.site-bento-grid .site-bento-heading,
.site-bento-duo .site-bento-heading {
  color: #fff;
  font-weight: 700;
}

.site-bento-grid .site-bento-body,
.site-bento-duo .site-bento-body {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
  text-align: left;
}

.site-bento-duo .site-bento-heading {
  text-align: center;
}

.site-bento-grid .site-bento-body strong,
.site-bento-duo .site-bento-body strong,
.site-bento-duo .site-bento-list strong {
  font-weight: 700;
}

.site-bento-grid .site-bento-tagline {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.site-bento-duo .site-bento-list,
.site-bento-duo .site-bento-footnote {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.site-bento-duo .site-bento-list strong {
  font-weight: 700;
}

.site-bento-duo .site-bento-list--on-dark,
.site-bento-duo .site-bento-footnote--on-dark {
  color: rgba(255, 255, 255, 0.94);
}

.site-bento-grid .site-bento-visual--curve path {
  stroke: rgba(255, 255, 255, 0.85);
}

.site-bento-visual {
  margin-top: 14px;
  height: 48px;
  opacity: 0.9;
}

.site-bento-visual--curve svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 639px) {
  .site-bento-section {
    min-height: auto;
  }

  .site-bento--grid-left-top { order: 1; }
  .site-bento--grid-left-bottom { order: 2; }
  .site-bento--grid-center { order: 3; }
  .site-bento--grid-right-top { order: 4; }
  .site-bento--grid-right-bottom { order: 5; }

  .site-bento {
    min-height: 160px;
    height: auto;
  }

  .site-bento--tall {
    min-height: 200px;
  }

  .site-bento--wide {
    grid-column: auto;
    height: auto;
  }
}

.site-cta-minimal {
  text-align: center;
  padding: 24px 20px 48px;
}

.site-disclaimer--center {
  max-width: 42ch;
  margin: 24px auto 0;
  text-align: center;
}

.site-footer--minimal {
  padding: 24px 20px calc(32px + var(--site-safe-bottom));
  border-top: 1px solid var(--site-border);
  text-align: center;
}

.site-footer--minimal .site-disclaimer a {
  color: var(--site-accent-soft);
  text-decoration: none;
}

.site-footer-contact {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 400;
  color: var(--site-accent-soft);
  cursor: pointer;
  text-decoration: underline;
}

/* —— Research logo slider —— */
.site-research {
  padding: clamp(48px, 8vh, 72px) 0 clamp(40px, 6vh, 56px);
  overflow: hidden;
  border-top: 1px solid var(--site-border);
  border-bottom: 1px solid var(--site-border);
  background: rgba(255, 255, 255, 0.35);
}

.site-research-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.site-research-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 64px;
  padding: 8px 32px;
  animation: site-research-scroll 35s linear infinite;
}

.site-research-logo {
  height: clamp(48px, 10vw, 72px);
  width: auto;
  flex-shrink: 0;
  opacity: 0.75;
  filter: brightness(0);
}

.site-research-logo--color {
  filter: none;
  opacity: 0.88;
}

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

@media (prefers-reduced-motion: reduce) {
  .site-research-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 24px 40px;
  }
}

/* —— Two large feature bentos —— */
.site-bento-duo-section {
  padding: 56px 20px 64px;
  max-width: 1040px;
  margin: 0 auto;
}

.site-bento-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.site-bento--xl {
  min-height: 320px;
  padding: clamp(20px, 4vw, 28px);
  border-radius: 24px;
}

.site-bento-list {
  margin: 12px 0 0;
  padding-left: 1.1em;
  font-size: clamp(0.8125rem, 2.1vw, 0.9375rem);
  line-height: 1.5;
  font-weight: 500;
}

.site-bento-list li {
  margin-bottom: 10px;
}

.site-bento-list li:last-child {
  margin-bottom: 0;
}

.site-bento-list--on-dark {
  color: rgba(255, 255, 255, 0.92);
}

.site-bento-footnote {
  margin: 16px 0 0;
  font-size: clamp(0.75rem, 1.9vw, 0.8125rem);
  font-weight: 500;
  color: var(--site-text);
}

.site-bento-footnote--on-dark {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 820px) {
  .site-bento-duo {
    grid-template-columns: 1fr;
  }

  .site-bento--xl {
    min-height: auto;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .site-bento-duo-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-bento--xl {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-bento-duo-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-bento {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .site-hero-cluely-ctas {
    flex-direction: column;
    width: 100%;
  }

  .site-btn-blue {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
