:root {
  --primary: #06b6d4;
  --primary-2: #818cf8;
  --accent: #22d3ee;
  --bg: #05060a;
  --bg-soft: #0a0d18;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e6e8ee;
  --muted: rgba(230, 232, 238, 0.6);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  background-image:
    radial-gradient(900px 600px at 80% -200px, rgba(6, 182, 212, 0.18), transparent 60%),
    radial-gradient(800px 600px at 0% 200px, rgba(129, 140, 248, 0.16), transparent 60%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 100% - 32px); margin: 0 auto; }

/* TOPBAR */
.topbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(5, 6, 10, 0.7);
  border-bottom: 1px solid var(--border);
}
.topbar-row { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.brand-mark { color: var(--accent); font-size: 20px; }
.topnav { display: none; gap: 28px; color: var(--muted); font-size: 14px; }
.topnav a:hover { color: var(--text); }
@media (min-width: 980px) { .topnav { display: inline-flex; } }
.top-actions { display: flex; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 12px; font-weight: 700; font-size: 14px;
  transition: transform .15s ease, background .2s ease, opacity .2s ease;
  border: 0; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #05060a;
  box-shadow: 0 18px 36px -16px rgba(6, 182, 212, 0.55);
}
.btn-ghost { background: var(--card); border: 1px solid var(--border); color: var(--text); }
.btn-lg { padding: 16px 24px; font-size: 16px; border-radius: 14px; }

/* HERO */
.hero {
  padding: 80px 0 40px; position: relative;
}
.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: rgba(34, 211, 238, 0.10); border: 1px solid rgba(34, 211, 238, 0.30);
  color: #67e8f9; font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: var(--muted); font-size: 19px; margin: 0 auto 30px; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 22px; }
.hero-trust { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.hero-trust strong { color: var(--text); }

.product-mock { margin-top: 60px; }
.window {
  background: rgba(10, 13, 24, 0.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(6, 182, 212, 0.5);
}
.window-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.window-bar > span:not(.winurl) { width: 12px; height: 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); }
.winurl { margin-left: 16px; font-size: 13px; color: var(--muted); font-family: ui-monospace, "SF Mono", monospace; }
.window-body {
  display: grid; grid-template-columns: 220px 1fr;
  min-height: 360px;
}
@media (max-width: 720px) { .window-body { grid-template-columns: 1fr; } .dash-side { display: none; } }
.dash-side { padding: 18px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; font-size: 14px; color: var(--muted); }
.dash-logo { font-weight: 800; color: var(--text); margin-bottom: 14px; }
.dash-item { padding: 10px 12px; border-radius: 10px; }
.dash-item.active { background: rgba(6, 182, 212, 0.14); color: var(--text); }
.dash-main { padding: 22px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.dash-stat { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.ds-num { font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.ds-label { font-size: 12px; color: var(--muted); }
.dash-chart { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px; height: 130px; margin-bottom: 18px; }
.dash-chart svg { width: 100%; height: 100%; }
.dash-rows { display: grid; gap: 8px; }
.dash-row { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 12px; padding: 10px 12px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; font-size: 14px; }
.row-tag { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.row-tag.ok { background: rgba(34, 211, 238, 0.18); color: var(--accent); }
.row-tag.run { background: rgba(245, 158, 11, 0.18); color: #fcd34d; }
.row-tag.idle { background: rgba(255, 255, 255, 0.08); color: var(--muted); }

/* LOGOS */
.logos-strip { padding: 60px 0 40px; }
.logos-row { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; justify-content: center; opacity: 0.7; }
.logos-row > div { color: var(--muted); font-weight: 700; font-size: 16px; }

/* SECTION */
.section { padding: 100px 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 50px; }
.kicker { display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(34, 211, 238, 0.10); color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(32px, 5vw, 52px); margin: 0 0 8px; letter-spacing: -0.02em; font-weight: 800; }
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }

/* BENTO */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
}
.bento-card {
  background: var(--card-strong); border: 1px solid var(--border); border-radius: 22px; padding: 26px;
  position: relative; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.bento-card:hover { border-color: rgba(6, 182, 212, 0.35); transform: translateY(-2px); }
.bento-card .bc-icon { font-size: 32px; margin-bottom: 12px; }
.bento-card .bc-title { font-weight: 800; font-size: 19px; margin-bottom: 6px; letter-spacing: -0.01em; }
.bento-card .bc-text { color: var(--muted); font-size: 14px; }
.bento-card.size-2 { grid-column: span 4; }
.bento-card.size-3 { grid-column: span 3; }
.bento-card.size-4 { grid-column: span 2; }
.bento-card.size-1 { grid-column: span 6; }
@media (max-width: 880px) { .bento-card.size-2, .bento-card.size-3, .bento-card.size-4, .bento-card.size-1 { grid-column: span 6; } }

/* INTEGRATIONS */
.integrations {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.intg {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 18px; display: flex; align-items: center; gap: 12px;
}
.intg-icon { font-size: 22px; }
.intg-name { font-weight: 600; font-size: 14px; }

/* PRICING */
.pricing {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}
.tier {
  background: var(--card); border: 1px solid var(--border); border-radius: 26px;
  padding: 32px; display: flex; flex-direction: column;
}
.tier.featured {
  border-color: rgba(6, 182, 212, 0.5);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.10), rgba(129, 140, 248, 0.06));
  position: relative;
}
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #05060a;
  padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 800;
}
.tier-name { font-weight: 800; font-size: 22px; margin-bottom: 6px; }
.tier-tag { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.tier-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.tier-amt { font-size: 38px; font-weight: 800; }
.tier-per { color: var(--muted); }
.tier-features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
.tier-features li { padding-left: 22px; position: relative; color: var(--text); font-size: 15px; }
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.tier .btn { width: 100%; }

/* REVIEWS */
.reviews-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review {
  background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 24px;
}
.review-stars { color: #fbbf24; margin-bottom: 8px; letter-spacing: 2px; }
.review-text { color: var(--text); margin-bottom: 16px; font-size: 16px; line-height: 1.6; }
.review-foot { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; color: #05060a;
}
.review-name { font-weight: 700; }
.review-role { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { display: grid; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 18px; }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; color: var(--text);
  padding: 18px 22px; font-size: 16px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--accent); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 22px 18px; color: var(--muted); display: none; }
.faq-item.open .faq-a { display: block; }

/* CTA */
.cta { padding: 110px 0; }
.cta-card {
  text-align: center; max-width: 760px; margin: 0 auto;
  padding: 56px 44px;
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(6, 182, 212, 0.20), transparent),
    rgba(10, 13, 24, 0.6);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 32px;
}
.cta-card h2 { font-size: clamp(30px, 5vw, 50px); margin: 0 0 12px; letter-spacing: -0.02em; font-weight: 800; }
.cta-card p { color: var(--muted); margin: 0 0 28px; font-size: 17px; }
.cta-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 480px; margin: 0 auto; }
.cta-form input {
  flex: 1; min-width: 220px; padding: 16px 18px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  font-size: 15px; outline: none;
}
.cta-form input:focus { border-color: var(--accent); }
.cta-tiny { color: var(--muted); font-size: 13px; margin-top: 14px; }

/* FOOTER */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.brand-foot { margin-bottom: 12px; }
.foot-title { font-weight: 700; margin-bottom: 12px; }
.footer a, .footer span { display: block; color: var(--muted); margin-bottom: 6px; font-size: 14px; }
.social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border); color: var(--text); font-size: 16px; margin: 0;
}
.footer-copy { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }


/* AICORES modern conversion pack */
:root {
  --focus-ring: color-mix(in oklab, var(--primary) 60%, white 40%);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.btn, button, a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.floating-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 34px -16px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.16);
}
body.has-floating-cta { padding-bottom: 88px; }

@media (min-width: 901px) {
  .floating-cta { display: none !important; }
  body.has-floating-cta { padding-bottom: 0; }
}

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


/* AICORES premium visual pack v2 */
.hero {
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 20, 0.62) 0%, rgba(3, 8, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(3, 8, 20, 0.55) 0%, rgba(3, 8, 20, 0.25) 52%, rgba(3, 8, 20, 0.55) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(900px 520px at 14% 26%, rgba(255, 255, 255, 0.16), transparent 62%);
  mix-blend-mode: soft-light;
}
.hero-grid,
.hero > .container,
.hero-copy,
.hero-visual { position: relative; z-index: 1; }

.hero-copy {
  background: linear-gradient(180deg, rgba(7, 13, 28, 0.58), rgba(7, 13, 28, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: clamp(16px, 2.8vw, 28px);
  backdrop-filter: blur(8px);
  box-shadow: 0 26px 50px -36px rgba(3, 8, 20, 0.95);
}
.hero h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.32);
}
.hero p,
.hero .badge,
.hero .hero-trust { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42); }

.badge {
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: #dbeafe;
  letter-spacing: .01em;
}

.btn {
  border-radius: 12px;
  letter-spacing: .01em;
}
.btn-primary {
  box-shadow: 0 18px 35px -18px color-mix(in oklab, var(--primary) 72%, #000 28%);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit,
.menu-card,
.step,
.review,
.faq-item,
.cta-card {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 30px -24px rgba(3, 8, 20, 0.75);
}

.benefit-icon,
.menu-emoji,
.dish-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0;
}
.benefit-icon svg,
.menu-emoji svg,
.dish-emoji svg,
.social a svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social a {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}
.social a:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.4);
  color: #e0f2fe;
}

@media (max-width: 900px) {
  .hero-copy {
    border-radius: 16px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(7, 13, 28, 0.72), rgba(7, 13, 28, 0.46));
  }
}
