@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand-ai-start: #0265F7;
  --brand-ai-mid: #3A60E6;
  --brand-ai-end: #3547D9;
  --brand-cyan: #0265F7;
  --brand-blue: #3547D9;
  --brand-violet: #5462CD;
  --blue: #2B5CE6;
  --blue-dark: #245ACB;
  --blue-light: #3B7AF5;
  --purple: #5462CD;
  --purple-light: #6B7AE8;
  --navy: #0D1B3D;
  --text: #0F172A;
  --muted: #64748b;
  --bg: #f4f9ff;
  --white: #ffffff;
  --border: rgba(2, 101, 247, 0.12);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 32px 80px rgba(2, 101, 247, 0.14);
  --radius: 24px;
  --radius-sm: 14px;
  --max-w: 1200px;
  --gradient-ai: linear-gradient(90deg, #0265F7 0%, #3A60E6 48%, #3547D9 100%);
  --gradient: linear-gradient(135deg, #0265F7 0%, #3A60E6 52%, #3547D9 100%);
  --gradient-text: var(--gradient-ai);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.85);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-name {
  display: inline;
  font-weight: inherit;
  letter-spacing: inherit;
}
.brand-name__ai {
  background: var(--gradient-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-name__rest {
  color: var(--navy);
}
.hero-title__brand.brand-name {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 800;
}
.logo .brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.site-header {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 100;
  opacity: 0;
  animation: enterDown .7s cubic-bezier(.22, 1, .36, 1) .05s forwards;
  transition: inset .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  inset: 0 0 auto;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(91, 141, 239,.08);
}
.header-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(15,23,42,.06);
}
.site-header.scrolled .header-shell {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 10px 0;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo img { width: auto; height: 40px; object-fit: contain; }
.header-nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header-nav::-webkit-scrollbar { display: none; }
.nav-desktop {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: .88rem;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-link:hover { background: rgba(91, 141, 239,.08); color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.header-cta { padding: 12px 20px; font-size: .92rem; }
.mobile-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  color: var(--navy);
}
.mobile-cta { display: inline-flex; }
.nav-desktop .btn-primary { display: inline-flex; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(91, 141, 239,.22);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(91, 141, 239,.28);
}
.btn-primary--sm { padding: 11px 18px; font-size: .88rem; }
.btn-primary-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; margin-top: 18px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(91, 141, 239,.16);
  border-radius: 999px;
  padding: 16px 24px;
  background: rgba(255,255,255,.72);
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn-ghost:hover {
  background: #fff;
  border-color: rgba(91, 141, 239,.28);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid rgba(91, 141, 239,.25);
  border-radius: 999px;
  padding: 13px 22px;
  background: rgba(255,255,255,.85);
  color: var(--blue-dark);
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 92px 16px auto;
  z-index: 99;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: .28s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .nav-link {
  text-align: left;
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}

.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  padding: 148px 0 96px;
  overflow: hidden;
}
@keyframes enterUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes enterDown {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroBgEnter {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: none; }
}
@keyframes heroOverlayEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg__slide--active {
  opacity: 0;
  animation: heroBgEnter 1.1s ease .1s forwards;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  animation: heroOverlayEnter .9s ease .15s forwards;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(248,250,255,.62) 42%, rgba(238,242,255,.74) 100%);
}

.hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.hero-main > * {
  opacity: 0;
  animation: enterUp .75s cubic-bezier(.22, 1, .36, 1) forwards;
}
.hero-main > *:nth-child(1) { animation-delay: .12s; }
.hero-main > *:nth-child(2) { animation-delay: .24s; }
.hero-main > *:nth-child(3) { animation-delay: .36s; }
.hero-main > *:nth-child(4) { animation-delay: .48s; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-title {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-title__line {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--navy);
  font-weight: 700;
}
.hero-lead {
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
  width: 100%;
  text-align: center;
}

.hero-tags {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
}
.hero-tags li svg { color: var(--blue); flex-shrink: 0; }

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-actions__note {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.45;
}

.hero-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(91, 141, 239,.1);
  color: var(--text);
  font-size: .86rem;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(15,23,42,.04);
}
.hero-pills li span {
  display: grid;
  place-items: center;
  color: var(--blue);
}

.hero-showcase {
  position: relative;
  width: min(100%, 480px);
  margin: 0 auto;
}
.showcase-glow {
  position: absolute;
  inset: 10% 5%;
  background: var(--gradient);
  filter: blur(60px);
  opacity: .28;
  border-radius: 50%;
}
.showcase-card {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.showcase-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.showcase-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.1);
  color: #15803d;
  font-size: .78rem;
  font-weight: 700;
}
.showcase-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-ring 2s infinite;
}
.showcase-card__time {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
}
.showcase-call {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(91, 141, 239,.08), rgba(139, 92, 246,.06));
  border: 1px solid rgba(91, 141, 239,.1);
  margin-bottom: 16px;
}
.showcase-call__avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.showcase-call__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 4px;
}
.showcase-call__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.showcase-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
}
.showcase-wave span {
  width: 4px;
  border-radius: 999px;
  background: var(--gradient);
  animation: wave-bar 1.1s ease-in-out infinite;
}
.showcase-wave span:nth-child(1) { height: 12px; animation-delay: 0s; }
.showcase-wave span:nth-child(2) { height: 20px; animation-delay: .1s; }
.showcase-wave span:nth-child(3) { height: 28px; animation-delay: .2s; }
.showcase-wave span:nth-child(4) { height: 18px; animation-delay: .3s; }
.showcase-wave span:nth-child(5) { height: 24px; animation-delay: .4s; }
.showcase-wave span:nth-child(6) { height: 14px; animation-delay: .5s; }
.showcase-wave span:nth-child(7) { height: 26px; animation-delay: .6s; }
.showcase-wave span:nth-child(8) { height: 16px; animation-delay: .7s; }
.showcase-wave span:nth-child(9) { height: 22px; animation-delay: .8s; }
.showcase-wave span:nth-child(10) { height: 12px; animation-delay: .9s; }
@keyframes wave-bar {
  0%, 100% { transform: scaleY(.45); opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}
.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.showcase-stat {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(91, 141, 239,.08);
  text-align: center;
}
.showcase-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.1;
}
.showcase-stat span {
  font-size: .72rem;
  color: var(--muted);
}
.showcase-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.16);
  color: #166534;
  font-size: .82rem;
  font-weight: 600;
}
.showcase-status svg { flex-shrink: 0; }
.showcase-float {
  position: absolute;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(91, 141, 239,.1);
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  animation: hero-float 8s ease-in-out infinite;
}
.showcase-float--1 { top: 8%; right: -4%; }
.showcase-float--2 { bottom: 12%; left: -6%; animation-delay: -3s; }

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 56px;
}
.hero-metric {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(91, 141, 239,.08);
  backdrop-filter: blur(12px);
}
.hero-metric strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-metric span {
  font-size: .88rem;
  color: var(--muted);
}

.section { padding: 88px 0; position: relative; }
.section--white { background: var(--white); }
.section--soft { background: linear-gradient(180deg, #f8fafc, #eef2ff); }
.section-header { margin-bottom: 48px; max-width: 760px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(91, 141, 239,.08);
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.section-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.section-title {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--navy);
}
.section-desc {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.card__subhead { margin: 20px 0 8px; color: var(--navy); font-size: 1.05rem; }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(15,23,42,.1); }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91, 141, 239,.12), rgba(139, 92, 246,.12));
  color: var(--blue);
  margin-bottom: 18px;
}
.card__num {
  font-size: .8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--navy);
}
.card p { margin: 0; color: var(--muted); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.about-founder {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.about-founder > img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(91, 141, 239,.15);
}
.about-founder h3 { margin: 0 0 4px; color: var(--navy); }
.about-founder .role { color: var(--blue); font-weight: 600; margin-bottom: 12px; }
.about-list { list-style: none; padding: 0; margin: 0; }
.about-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--muted);
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

#team .section-header {
  margin-bottom: 20px;
}
.team-founder {
  position: relative;
  max-width: 920px;
  margin: 0 auto 32px;
  padding: 24px;
  overflow: visible;
}
.team-founder .about-founder {
  align-items: flex-start;
}
.about-founder__content {
  flex: 1;
  min-width: 0;
  padding-right: 156px;
}
.team-founder__brand {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}
.team-founder__brand .header-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0a0a;
  padding: 7px 12px;
  border: 1px solid #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}
.team-founder__brand .header-partner-logo img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  background-color: #0a0a0a;
}
.team-founder__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.team-founder .about-founder > img {
  width: 112px;
  height: 112px;
}
@media (max-width: 767px) {
  .team-founder .about-founder {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .team-founder__brand {
    top: 12px;
    right: 12px;
  }
  .team-founder__brand .header-partner-logo {
    padding: 5px 9px;
  }
  .team-founder__brand .header-partner-logo img {
    height: 24px;
    max-width: 92px;
  }
  .about-founder__content {
    padding-right: 108px;
  }
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.team-grid--3 {
  max-width: 760px;
}
@media (min-width: 640px) {
  .team-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid rgba(91, 141, 239,.12);
}
.team-card h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1rem;
}
.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}
.venn {
  display: grid;
  place-items: center;
  min-height: 220px;
  position: relative;
}
.venn__circles {
  display: flex;
  gap: -20px;
  align-items: center;
  justify-content: center;
}
.venn__circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid rgba(91, 141, 239,.2);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}
.venn__circle--biz { background: rgba(91, 141, 239,.08); margin-right: -28px; z-index: 1; }
.venn__circle--it { background: rgba(139, 92, 246,.08); margin-left: -28px; z-index: 1; }

.feature-cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
.feature-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.feature-card h3 { margin: 0 0 8px; color: var(--navy); }
.feature-card p { margin: 0; color: var(--muted); }

.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.platform-card h3 { margin: 0 0 8px; font-size: 1rem; color: var(--navy); }
.platform-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.section-cases {
  position: relative;
  overflow: hidden;
}
.section-cases .section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.section-cases .section-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(248,250,255,.84) 100%);
}
.section-cases .container {
  position: relative;
  z-index: 1;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.case-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.05rem; }
.case-card dl { margin: 0; }
.case-card dt {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blue);
  font-weight: 700;
  margin-top: 12px;
}
.case-card dd { margin: 4px 0 0; color: var(--muted); }

.chat-demo {
  background: linear-gradient(180deg, rgba(238,242,255,.8), rgba(255,255,255,.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.chat-msg {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  max-width: 92%;
}
.chat-msg--ai { margin-right: auto; }
.chat-msg--client { margin-left: auto; flex-direction: row-reverse; }
.chat-msg__avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 800;
}
.chat-msg__bubble {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(15,23,42,.04);
}
.chat-msg--client .chat-msg__bubble {
  background: rgba(91, 141, 239,.08);
  border-color: rgba(91, 141, 239,.15);
}
.chat-msg__time {
  display: block;
  margin-top: 6px;
  font-size: .72rem;
  color: var(--muted);
}

.miniapp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.miniapp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.miniapp-card h4 { margin: 0 0 6px; color: var(--navy); font-size: .98rem; }
.miniapp-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.compare-card--win {
  border-color: rgba(91, 141, 239,.28);
  box-shadow: 0 18px 48px rgba(91, 141, 239,.12);
}
.compare-card h3 { margin: 0 0 18px; text-align: center; color: var(--navy); }
.compare-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row__label { font-size: .82rem; color: var(--muted); }
.compare-row__value { font-weight: 600; color: var(--navy); font-size: .92rem; }
.compare-vs {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.step-card__num {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}
.step-card h3 { margin: 0 0 8px; padding-right: 44px; color: var(--navy); }
.step-card p { margin: 0; color: var(--muted); }

.setup-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.setup-banner__price {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.price-card--popular {
  border-color: rgba(91, 141, 239,.35);
  box-shadow: 0 20px 50px rgba(91, 141, 239,.14);
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.price-card h3 { margin: 0 0 8px; color: var(--navy); }
.price-card__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 18px;
}
.price-card__price small { font-size: .95rem; font-weight: 600; color: var(--muted); }
.price-list { list-style: none; padding: 0; margin: 0 0 20px; }
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .92rem;
}
.price-list svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.security-item h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.05rem; }
.security-item p { margin: 0; color: var(--muted); }

.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #eef2ff, #f8faff);
}
.cta-bg { display: none; }
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
}
.cta-inner > p { margin: 0 0 24px; color: var(--muted); font-size: 1.05rem; }
.cta-lead { font-size: 1.08rem !important; color: var(--text) !important; max-width: 560px; margin-left: auto !important; margin-right: auto !important; }
.cta-offer {
  display: inline-block;
  padding: 16px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 92, 246,.2);
  background: rgba(255,255,255,.92);
  margin-bottom: 28px;
  color: var(--text);
  max-width: 560px;
  line-height: 1.55;
}

.form-card {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(91, 141, 239,.45);
  box-shadow: 0 0 0 4px rgba(91, 141, 239,.08);
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-status { margin-top: 12px; font-size: .92rem; }
.form-status--success { color: #059669; }
.form-status--error { color: #dc2626; }
.form-note {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 48px 0 32px;
  background: var(--navy);
  color: rgba(255,255,255,.72);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.footer-inner--compact {
  grid-template-columns: 1fr;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.footer-brand__desc {
  margin: 0;
  max-width: 280px;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.58);
}
.footer-inner .logo { color: #fff; }
.footer-inner .brand-name__rest { color: #fff; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.footer-col__title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.footer-col--contacts {
  max-width: 320px;
}
.footer-contacts__phone {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.footer-contacts__phone:hover { color: var(--blue-light); }
.footer-contacts__address {
  margin: 0;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}
.footer-contacts__tg {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 2px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: .86rem;
  font-weight: 500;
  color: #fff;
  transition: background .2s, border-color .2s;
}
.footer-contacts__tg:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.32);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-nav__link {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: .9rem;
  line-height: 1.35;
  color: rgba(255,255,255,.78);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.footer-nav__link:hover { color: #fff; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

.legal-body { background: var(--bg); }
.legal-page {
  padding: 108px 0 72px;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.legal-nav a {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s, border-color .2s, background .2s;
}
.legal-nav a:hover,
.legal-nav a.is-active {
  color: var(--blue-dark);
  border-color: rgba(91, 141, 239, .35);
  background: rgba(91, 141, 239, .06);
}
.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.legal-doc__head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-doc h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
}
.legal-doc__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.legal-section { margin-bottom: 24px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--navy);
}
.legal-section p {
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.65;
  text-align: left;
}
.legal-section ul {
  margin: 0 0 10px;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.65;
}
.legal-section li { margin-bottom: 6px; }
.legal-section a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-other {
  max-width: 820px;
  margin: 20px auto 0;
  text-align: center;
  font-size: .9rem;
}
.legal-other a {
  color: var(--blue-dark);
  font-weight: 600;
}
.form-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note a:hover { color: var(--blue-dark); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-bg__slide--active,
  .hero-bg-overlay,
  .hero-main > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner--compact {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 720px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .miniapp-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .security-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .form-field--full { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .header-nav { display: flex; }
  .mobile-toggle { display: none; }
  .compare-grid { grid-template-columns: 1fr auto 1fr; }
  .compare-vs { align-self: center; }
  .platform-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-inner {
    grid-template-columns: minmax(200px, 1.2fr) minmax(220px, 1.3fr) minmax(120px, 0.9fr) minmax(160px, 1fr);
    gap: 32px 40px;
  }
  .footer-inner--compact {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 32px 48px;
  }
}

@media (min-width: 1100px) {
  .cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 719px) {
  .site-header { inset: 10px 10px auto; }
  .header-cta { display: none; }
  .mobile-menu { inset: 84px 10px auto; }
}
.section--compact { padding-top: 0; padding-bottom: 64px; }
.hero-lead { margin: 0 0 14px; font-weight: 600; color: var(--navy); }
.hero-uses {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hero-uses li {
  position: relative;
  padding: 12px 16px 12px 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  font-size: .95rem;
  color: var(--text);
}
.hero-uses li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.how-box {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(91, 141, 239,.06), rgba(139, 92, 246,.05));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.how-box__title {
  margin: 0 0 14px;
  font-size: 1.5rem;
  color: var(--navy);
}
.how-box p { margin: 0 0 24px; color: var(--muted); max-width: 900px; }
.how-box__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.how-box__note { margin: 0; color: var(--muted); font-size: .92rem; }
.how-box__note strong { color: var(--blue-dark); }

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.demo-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.demo-card h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--navy); }
.demo-card p { margin: 0 0 18px; color: var(--muted); font-size: .92rem; }
.audio-player audio { width: 100%; height: 44px; border-radius: 12px; }

.features-list { display: grid; gap: 16px; }
.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.feature-row__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91, 141, 239,.1), rgba(139, 92, 246,.08));
  color: var(--blue);
}
.feature-row h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.08rem; }
.feature-row p { margin: 0; color: var(--muted); }

.app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.app-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.app-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.05rem; }
.app-card p { margin: 0; color: var(--muted); }

.setup-banner__sub {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 400;
}
.pricing-table-wrap {
  display: none;
  overflow-x: auto;
  margin-bottom: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pricing-table th {
  background: rgba(91, 141, 239,.06);
  color: var(--navy);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-cards {
  display: none;
  grid-template-columns: 1fr;
  gap: 18px;
}
.btn-sm { padding: 8px 14px; font-size: .82rem; }

.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: .92rem;
}
