/* PRIMEVISION — Official marketing site */
:root {
  --bg: #FBF8F5;
  --bg-elevated: #FFFFFF;
  --bg-muted: #F3EDE8;
  --bg-dark: #1C1917;
  --text: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #A8A29E;
  --accent: #E85D4C;
  --accent-soft: #FFEDE9;
  --accent-hover: #D14A3A;
  --secondary: #2D9B83;
  --ai: #7C3AED;
  --ai-soft: #F3EEFF;
  --border: #E7E0DA;
  --shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 16px 48px rgba(28, 25, 23, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --header-h: 72px;
  --max: 1180px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(251, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), #FFB088);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: white;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}
.site-nav a:hover { color: var(--text); text-decoration: none; }

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

/* Buttons */
.btn {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 93, 76, 0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover { background: var(--bg-muted); color: var(--text); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.gradient-text {
  background: linear-gradient(120deg, var(--accent), var(--ai), #F59E6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow-ai { color: var(--ai); background: var(--ai-soft); display: inline-block; padding: 6px 14px; border-radius: 999px; }
.pill-ai { color: var(--ai); background: var(--ai-soft); }

/* Hero AI */
.hero-bg-ai {
  background:
    radial-gradient(ellipse 60% 50% at 75% 15%, rgba(124, 58, 237, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(232, 93, 76, 0.1), transparent);
}

.hero-visual { min-height: 400px; }

.ai-chat-mock {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
}
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--ai-soft), var(--accent-soft));
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.ai-pulse {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ai-badge {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
}
.ai-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.ai-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
}
.ai-msg-user {
  justify-content: flex-end;
}
.ai-msg-user p {
  background: var(--accent);
  color: white;
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  max-width: 85%;
}
.ai-msg-bot p {
  background: var(--bg-muted);
  padding: 10px 14px;
  border-radius: 4px 14px 14px 14px;
  flex: 1;
  color: var(--text-secondary);
}
.ai-suggestion {
  border-left: 3px solid var(--ai);
  background: var(--ai-soft) !important;
}
.ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.ai-avatar-luna { background: linear-gradient(135deg, #A78BFA, #E85D4C); }
.ai-avatar-kai { background: linear-gradient(135deg, #38BDF8, #2D9B83); }
.typing-dots { display: flex; gap: 4px; padding: 12px; }
.typing-dots i {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing-dots i:nth-child(2) { animation-delay: 0.15s; }
.typing-dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
}
.ai-chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  gap: 10px;
}
.hero-card-ai {
  bottom: 8%;
  right: -5%;
  max-width: 180px;
}

.trust-band-ai { background: linear-gradient(180deg, var(--bg-elevated), var(--bg)); }

/* AI Personas — infinite marquee */
.ai-personas { background: var(--bg-muted); max-width: none; padding-bottom: 72px; }
.ai-personas .section-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.persona-marquee-wrap {
  margin-top: 40px;
  position: relative;
}
.persona-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.persona-track {
  display: flex;
  width: max-content;
  animation: persona-marquee 55s linear infinite;
  will-change: transform;
}
.persona-marquee:hover .persona-track {
  animation-play-state: paused;
}
@keyframes persona-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.persona-track-set {
  display: flex;
  gap: 24px;
  padding: 4px 12px;
  flex-shrink: 0;
}
.persona-card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.persona-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
@media (prefers-reduced-motion: reduce) {
  .persona-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; max-width: var(--max); margin: 0 auto; }
  .persona-marquee { overflow: visible; mask-image: none; -webkit-mask-image: none; }
  .persona-track-set[aria-hidden="true"] { display: none; }
  .persona-track-set { flex-wrap: wrap; justify-content: center; padding: 0 24px; }
}
.persona-featured {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.1);
}
.persona-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--ai);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
}
.persona-avatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}
.persona-luna { background: linear-gradient(135deg, #C4B5FD, #E85D4C); }
.persona-kai { background: linear-gradient(135deg, #38BDF8, #2DD4A8); }
.persona-sage { background: linear-gradient(135deg, #86EFAC, #57534E); }
.persona-nova { background: linear-gradient(135deg, #818CF8, #7C3AED); }
.persona-ember { background: linear-gradient(135deg, #FB923C, #EF4444); }
.persona-river { background: linear-gradient(135deg, #67E8F9, #0EA5E9); }
.persona-pixel { background: linear-gradient(135deg, #F472B6, #A855F7); }
.persona-sol { background: linear-gradient(135deg, #FDE047, #F59E0B); }
.persona-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.persona-role {
  font-size: 0.85rem;
  color: var(--ai);
  font-weight: 600;
  margin-bottom: 12px;
}
.persona-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}
.persona-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.persona-tags li {
  font-size: 0.75rem;
  padding: 5px 12px;
  background: var(--bg-muted);
  border-radius: 999px;
  color: var(--text-secondary);
}

.feature-card-ai:hover { border-color: rgba(124, 58, 237, 0.3); }
.feature-card-ai .feature-icon { background: var(--ai-soft); }

/* AI Demo panel */
.ai-demo { background: var(--bg-elevated); max-width: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ai-demo-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ai-demo-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.ai-demo-panel label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 14px;
}
.ai-demo-panel label:first-of-type { margin-top: 0; }
.ai-demo-panel input,
.ai-demo-panel select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
}
.ai-demo-panel input:focus,
.ai-demo-panel select:focus {
  outline: none;
  border-color: var(--ai);
  box-shadow: 0 0 0 3px var(--ai-soft);
}
.ai-demo-panel .btn { margin-top: 18px; }
.ai-demo-output {
  margin-top: 20px;
  padding: 18px;
  background: var(--ai-soft);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(124, 58, 237, 0.35);
  min-height: 140px;
}
.demo-placeholder { color: var(--text-muted); font-size: 0.9rem; }
.ai-demo-output.has-content { background: white; border-style: solid; }
.demo-byline { font-size: 0.8rem; color: var(--ai); margin-bottom: 14px; }
.demo-field { margin-bottom: 14px; }
.demo-field span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.demo-field strong { font-size: 1.1rem; }
.demo-field p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

.how-ai { max-width: none; }

/* Preview AI mock */
.preview-ai { background: var(--bg-muted); max-width: none; }
.preview-ai .preview-inner { padding: 0 24px; }
.mock-window-ai { border-color: rgba(124, 58, 237, 0.2); }
.mock-ai-feed { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mock-ai-suggest {
  padding: 14px;
  background: var(--ai-soft);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124, 58, 237, 0.15);
}
.mock-ai-suggest-sage { background: rgba(45, 155, 131, 0.08); border-color: rgba(45, 155, 131, 0.2); }
.mock-ai-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ai);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}
.mock-ai-suggest p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 10px; }
.mock-ai-actions { display: flex; gap: 8px; }
.mock-ai-actions button {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  font-family: var(--font);
}
.mock-match-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.mock-match-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38BDF8, #2DD4A8);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-match-card strong { display: block; font-size: 0.85rem; }
.mock-match-card p { font-size: 0.78rem; color: var(--text-muted); }

.cta-band-ai {
  background: linear-gradient(135deg, var(--accent), var(--ai));
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(232, 93, 76, 0.14), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(45, 155, 131, 0.1), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-main img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.hero-card-caption {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-card-caption strong { font-size: 0.95rem; }
.hero-card-caption span { font-size: 0.8rem; color: var(--text-muted); }

.hero-card-float {
  position: absolute;
  padding: 14px 16px;
  max-width: 200px;
  animation: float 5s ease-in-out infinite;
}
.hero-card-float img {
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  width: 100%;
}
.hero-card-float p { font-size: 0.85rem; color: var(--text-secondary); }
.hero-card-1 { top: 8%; right: -8%; animation-delay: 0s; }
.hero-card-2 { bottom: 28%; left: -12%; animation-delay: 1s; }
.hero-card-3 {
  bottom: 4%;
  right: 5%;
  background: var(--accent-soft);
  border-color: rgba(232, 93, 76, 0.2);
  animation-delay: 2s;
}
.hero-card-3 strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.hero-card-3 p { font-size: 0.8rem; color: var(--accent); }

.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(45, 155, 131, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Trust band */
.trust-band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}
.trust-band > p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.trust-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--bg-muted);
  border-radius: 999px;
  color: var(--text-secondary);
}

/* Sections */
.section {
  padding: 88px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.section-head { margin-bottom: 48px; max-width: 640px; }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-lead { color: var(--text-secondary); font-size: 1.05rem; }

/* Features — infinite marquee */
#features.features { max-width: none; padding-bottom: 72px; }
#features .section-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.feature-marquee-wrap {
  margin-top: 40px;
}
.feature-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.feature-track {
  display: flex;
  width: max-content;
  animation: feature-marquee 48s linear infinite;
  will-change: transform;
}
.feature-marquee:hover .feature-track {
  animation-play-state: paused;
}
@keyframes feature-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.feature-track-set {
  display: flex;
  gap: 24px;
  padding: 4px 12px;
  flex-shrink: 0;
}
.feature-card {
  flex: 0 0 320px;
  width: 320px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 93, 76, 0.25);
}
@media (prefers-reduced-motion: reduce) {
  .feature-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; max-width: var(--max); margin: 0 auto; }
  .feature-marquee { overflow: visible; mask-image: none; -webkit-mask-image: none; }
  .feature-track-set[aria-hidden="true"] { display: none; }
  .feature-track-set {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 0 24px;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
  }
  .feature-card { flex: none; width: auto; }
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.92rem; color: var(--text-secondary); flex: 1; line-height: 1.55; }

/* How it works */
.how { background: var(--bg-muted); max-width: none; padding-left: 0; padding-right: 0; }
.how .section-head,
.how .steps { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.step-num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #FFB088);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.step p { font-size: 0.92rem; color: var(--text-secondary); }

/* Preview */
.preview { max-width: none; padding-bottom: 100px; }
.preview-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.check-list {
  list-style: none;
  margin-top: 24px;
}
.check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.mock-window {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}
.mock-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mock-bar span:first-child { background: #FF8A7A; }
.mock-bar span:nth-child(2) { background: #FFD666; }
.mock-bar span:nth-child(3) { background: #7DD3A8; }

.mock-feed { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.mock-post {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.mock-post img {
  width: 88px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.mock-post strong { display: block; font-size: 0.85rem; margin-bottom: 4px; }
.mock-post p { font-size: 0.75rem; color: var(--text-muted); }

/* Circles */
.circles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.circle-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.circle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.circle-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.circle-card-body { padding: 18px; }
.circle-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}
.circle-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.circle-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

/* Gallery */
.gallery { max-width: none; padding-top: 0; }
.gallery .section-head { max-width: var(--max); margin: 0 auto 40px; padding: 0 24px; }
.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid img:nth-child(4) { grid-column: span 2; }

/* Testimonials */
.testimonials { background: var(--bg-muted); max-width: none; }
.testimonials .section-head,
.testimonials-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}
.quote-card > p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.55;
}
.quote-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-card footer img { border-radius: 50%; }
.quote-card strong { display: block; font-size: 0.9rem; }
.quote-card span { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-size: 1.2rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* CTA */
.cta-band {
  max-width: none;
  padding: 0 24px 88px;
}
.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--accent), #F59E6B);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 50px rgba(232, 93, 76, 0.35);
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.cta-inner > p {
  opacity: 0.92;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-inner .btn-primary {
  background: white;
  color: var(--accent);
}
.cta-inner .btn-primary:hover { background: #fff8f6; }
.cta-inner .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
}
.cta-inner .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-copy p { color: var(--text-secondary); margin-top: 12px; }
.company-info {
  display: grid;
  gap: 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.company-info div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}
.company-info dt {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.company-info dd { font-size: 0.95rem; }

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #A8A29E;
  padding: 48px 24px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.site-footer .logo { color: white; }
.footer-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.footer-nav a {
  color: #D6D3D1;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover { color: white; text-decoration: none; }
.footer-contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid #44403C;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.footer-contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #78716C;
}
.footer-email-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FAFAF9;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-email-link:hover {
  color: var(--accent);
  text-decoration: none;
}
.footer-contact:target .footer-email-link {
  color: var(--accent);
}
.copyright {
  width: 100%;
  font-size: 0.85rem;
  margin-top: 16px;
}

/* Partners */
.partners {
  padding: 48px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.partners-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.partners-logos {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}
.partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.partner-img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  box-shadow: 0 2px 12px rgba(28, 25, 23, 0.06);
  border: 1px solid var(--border);
}
.partner-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.partners-logos-compact {
  gap: 16px;
  justify-content: flex-start;
  margin-top: 28px;
}
.partners-logos-compact .partner-logo { gap: 0; }
.partners-logos-compact .partner-img { width: 44px; height: 44px; }
.partners-logos-compact .partner-name { display: none; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  z-index: 300;
  box-shadow: var(--shadow-lg);
  max-width: 90vw;
  text-align: center;
}
.toast.hidden { display: none !important; }

/* Auth pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.auth-header .header-inner { justify-content: space-between; }
.auth-header-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-right: 8px;
  display: none;
}
@media (min-width: 769px) {
  .auth-header-hint { display: inline; }
}

.auth-main {
  flex: 1;
  padding: calc(var(--header-h) + 32px) 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-layout {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.auth-aside h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.auth-aside > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.02rem;
}
.auth-perks {
  list-style: none;
  margin-bottom: 8px;
}
.auth-perks li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.auth-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.auth-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.auth-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.auth-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.auth-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.label-hint { font-weight: 400; color: var(--text-muted); }

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
}
.checkbox-block { margin-bottom: 20px; }
.checkbox-label input { width: auto; margin: 0; }
.auth-link {
  font-size: 0.88rem;
  font-weight: 600;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn-social {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}
.btn-social:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
}

.auth-footer-text {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-mini-footer {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.auth-mini-footer a { color: var(--text-secondary); text-decoration: none; }
.auth-mini-footer a:hover { color: var(--accent); }
.auth-mini-footer span { margin: 0 10px; opacity: 0.5; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-card { flex: 0 0 300px; width: 300px; }
  .circles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner,
  .preview-inner,
  .about-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; margin-top: 20px; }
  .hero-card-1 { right: 0; }
  .hero-card-2 { left: 0; }
}

@media (max-width: 768px) {
  .site-nav,
  .header-cta { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    margin-left: 0;
  }
  .header-cta.open {
    display: flex;
    position: absolute;
    top: calc(var(--header-h) + 180px);
    left: 24px;
    right: 24px;
  }
  .menu-toggle { display: block; }
  .steps,
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid img:nth-child(4) { grid-column: span 1; }
  .footer-nav { margin-left: 0; width: 100%; }
  .hero-stats { gap: 24px; }
  .auth-layout,
  .ai-demo-inner,
  .persona-card { flex: 0 0 280px; width: 280px; }
  .auth-aside { order: 2; text-align: center; }
  .auth-perks { text-align: left; max-width: 320px; margin: 0 auto; }
  .partners-logos { gap: 24px 32px; }
  .auth-header-hint { display: none; }
}
