:root {
  --bg: #05070d;
  --card: rgba(15, 22, 42, 0.72);
  --border: rgba(148, 163, 184, 0.14);
  --text: #e8edf7;
  --muted: #94a3b8;
  --orange: #f97316;
  --sky: #38bdf8;
  --violet: #a78bfa;
  --emerald: #34d399;
  --font: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(249, 115, 22, 0.14), transparent 50%),
    radial-gradient(800px 400px at 50% 100%, rgba(167, 139, 250, 0.08), transparent 55%),
    var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
strong { color: #fff; font-weight: 700; }
::selection { background: rgba(249, 115, 22, 0.35); color: #fff; }

.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.container.narrow { width: min(720px, calc(100% - 2rem)); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(16px);
}
.nav {
  height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; letter-spacing: -0.02em; }
.logo .accent { color: #fdba74; }
.logo-mark {
  display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center;
  border-radius: 10px; background: linear-gradient(135deg, #f97316, #38bdf8); color: #0b1020; font-size: 0.85rem; font-weight: 800;
}
.logo-mark.sm { width: 28px; height: 28px; font-size: 0.75rem; }
.nav-links { display: none; gap: 1.25rem; font-size: 0.9rem; color: #cbd5e1; }
.nav-links a:hover { color: #fff; }
@media (min-width: 900px) { .nav-links { display: flex; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 999px; font-weight: 700; padding: 0.9rem 1.35rem; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
}
.btn-sm { padding: 0.55rem 1rem; font-size: 0.875rem; }
.btn-primary {
  background: linear-gradient(135deg, #f97316, #fb923c 55%, #38bdf8);
  color: #0b1020;
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.22);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 48px rgba(249, 115, 22, 0.35); }
.btn-secondary {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(148,163,184,0.28); }
.btn.full { width: 100%; }

.hero { position: relative; padding: 4.5rem 0 5rem; overflow: hidden; }
.grid-lines {
  pointer-events: none; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.03); color: var(--muted);
  font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.75rem;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }
h1 {
  max-width: 18ch;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; margin: 0;
}
.gradient-text {
  background: linear-gradient(120deg, #fff 10%, #fdba74 45%, #38bdf8 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { max-width: 42rem; margin: 1.5rem 0 0; font-size: 1.15rem; color: #cbd5e1; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.stat-grid { display: grid; gap: 0.75rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-k { font-size: 1.6rem; font-weight: 800; color: #fdba74; }
.stat-v { margin-top: 0.25rem; font-size: 0.9rem; color: var(--muted); }

/* Powered by Cloudflare */
.powered-by {
  margin-top: 2.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(243, 128, 32, 0.28);
  background:
    linear-gradient(90deg, rgba(243, 128, 32, 0.12), rgba(56, 189, 248, 0.06) 55%, transparent),
    rgba(11, 16, 32, 0.75);
  padding: 1rem 1.25rem;
}
.powered-by-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.powered-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.cf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(243, 128, 32, 0.35);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.cf-badge:hover {
  border-color: rgba(243, 128, 32, 0.7);
  background: rgba(243, 128, 32, 0.1);
}
.cf-wordmark {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: #f3f4f6;
  text-transform: lowercase;
}
.powered-sep { color: #475569; }
.powered-note {
  flex: 1 1 220px;
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.45;
}

/* Press logos — MENTIONED IN */
.press-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.75rem 0 3.25rem;
  background: rgba(0, 0, 0, 0.28);
}
.press-title {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #94a3b8;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 0.85rem;
}
.press-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 64px;
  padding: 0.65rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 22, 42, 0.55);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.press-logo:hover {
  border-color: rgba(243, 128, 32, 0.4);
  background: rgba(15, 22, 42, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.press-logo img {
  display: block;
  width: auto;
  max-width: 160px;
  height: 36px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 0 0 transparent);
}
.press-logo:hover img {
  opacity: 1;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #94a3b8;
}
.footer-powered strong {
  color: #e2e8f0;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cf-orange-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f38020;
  box-shadow: 0 0 10px rgba(243, 128, 32, 0.7);
}

.section { border-top: 1px solid rgba(255,255,255,0.05); padding: 4.5rem 0; }
.section.tight { padding: 2.5rem 0; }
.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.03em; line-height: 1.15; font-weight: 800; margin: 0.75rem 0;
}
.sub { color: var(--muted); max-width: 44rem; margin: 0; font-size: 1.05rem; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.35rem; backdrop-filter: blur(12px);
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card ul { margin: 0.75rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.card li { margin: 0.35rem 0; }
.card-accent { border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.06); }
.card-accent h3 { color: #fdba74; }
.card-accent ul { color: #e2e8f0; }
.two-col, .grid-2 { display: grid; gap: 1rem; margin-top: 1.75rem; }
@media (min-width: 768px) {
  .two-col, .grid-2 { grid-template-columns: 1fr 1fr; }
}
.grid-4 { display: grid; gap: 0.85rem; margin-top: 1.75rem; }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-5 { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 900px) { .grid-5 { grid-template-columns: repeat(5, 1fr); } }
.center { text-align: center; }
.step { font-family: var(--mono); font-size: 0.75rem; color: #fdba74; margin-bottom: 0.4rem; }
.footnote { margin-top: 1.25rem; font-size: 0.9rem; color: #64748b; }
.callout {
  margin-top: 1.5rem; border-radius: 1.25rem; padding: 1.25rem 1.4rem;
  border: 1px solid var(--border); font-size: 1.05rem; font-weight: 600;
}
.callout.sky { border-color: rgba(56,189,248,0.25); background: rgba(56,189,248,0.08); color: #e0f2fe; }
.callout.violet { border-color: rgba(167,139,250,0.25); background: rgba(167,139,250,0.1); color: #ede9fe; }

/* Product suite (01 / 02 / 03) */
.suite-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 900px) {
  .suite-grid { grid-template-columns: repeat(3, 1fr); }
}
.suite-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.suite-card .suite-body {
  color: #94a3b8;
  font-size: 0.92rem;
  margin: 0.35rem 0 0.75rem;
  flex: 1;
}
.suite-card .checks { margin-bottom: 1.25rem; }
.suite-card .btn { margin-top: auto; }
.suite-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}
.suite-card h3 { margin: 0.25rem 0 0; font-size: 1.35rem; }
.suite-card .tagline {
  margin: 0;
  color: #fdba74;
  font-size: 0.9rem;
  font-weight: 600;
}
.suite-card-live {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.1);
  background: linear-gradient(180deg, rgba(249,115,22,0.08), rgba(15,22,42,0.72));
}
.badge {
  display: inline-block;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.2);
  color: #fed7aa;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
}

/* AgentReady product extras */
.timeline { display: grid; gap: 1rem; margin-top: 1.75rem; }
@media (min-width: 900px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
.timeline-item h3 { margin: 0.35rem 0 0.5rem; }
.timeline-item p { margin: 0 0 0.75rem; color: #cbd5e1; }
.sample-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 800px) { .sample-grid { grid-template-columns: repeat(3, 1fr); } }
.sample-card { min-height: 180px; }
.sample-label {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: 999px; padding: 0.25rem 0.6rem; margin-bottom: 0.75rem;
}
.sample-label.fail { background: rgba(248,113,113,0.15); color: #fca5a5; }
.sample-label.warn { background: rgba(251,191,36,0.15); color: #fcd34d; }
.sample-label.ok { background: rgba(52,211,153,0.15); color: #6ee7b7; }
.sample-q { font-weight: 700; color: #fff; margin: 0 0 0.5rem; font-size: 0.95rem; }
.sample-a { margin: 0; color: #94a3b8; font-size: 0.9rem; }
.deliver-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 800px) { .deliver-grid { grid-template-columns: repeat(2, 1fr); } }
.enterprise-row, .agency-row {
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
}
@media (min-width: 800px) {
  .enterprise-row, .agency-row {
    flex-direction: row; align-items: center; justify-content: space-between;
  }
}
.agency-row { align-items: flex-start; }
@media (min-width: 800px) {
  .agency-row { align-items: center; }
  .agency-row .checks { margin-right: 1.5rem; }
}

.product {
  margin-top: 1.75rem; overflow: hidden; border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(11,16,32,0.85);
}
.product-head {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(90deg, rgba(249,115,22,0.1), transparent 50%, rgba(56,189,248,0.08));
}
.product-head h3 { margin: 0.65rem 0 0.2rem; font-size: clamp(1.4rem, 2.5vw, 1.85rem); letter-spacing: -0.02em; }
.tagline { margin: 0; color: #fdba74; }
.badge {
  display: inline-block; border-radius: 999px; background: rgba(249,115,22,0.2);
  color: #fed7aa; font-size: 0.72rem; font-weight: 800; padding: 0.25rem 0.65rem; margin-right: 0.35rem;
}
.product-body { display: grid; gap: 1.25rem; padding: 1.5rem; }
@media (min-width: 800px) { .product-body { grid-template-columns: 1fr 1fr; } }
.product-body h4 {
  margin: 0 0 0.4rem; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: #64748b;
}
.product-body p { margin: 0 0 1rem; color: #cbd5e1; font-size: 0.95rem; }
.price-hint { color: #7dd3fc !important; font-weight: 700 !important; margin-bottom: 0 !important; }
.checks { list-style: none; margin: 0; padding: 0; }
.checks li {
  position: relative; padding-left: 1.3rem; margin: 0.45rem 0;
  color: #cbd5e1; font-size: 0.92rem;
}
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.filter { margin-top: 0.75rem !important; font-size: 0.8rem !important; color: #64748b !important; }

.pricing-grid { display: grid; gap: 1rem; margin-top: 1.75rem; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card h3 { margin: 0; font-size: 1.25rem; }
.muted { color: var(--muted); font-size: 0.9rem; margin: 0.25rem 0 0; }
.price { margin: 1rem 0; }
.amount { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; }
.period { color: #64748b; }
.price-card .checks { flex: 1; margin: 0.5rem 0 1.25rem; }
.price-card .btn { margin-top: auto; }
.featured {
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 0 60px rgba(249,115,22,0.12);
}
.ribbon {
  position: absolute; top: -0.7rem; left: 1.25rem;
  background: #f97316; color: #0b1020; font-size: 0.72rem; font-weight: 800;
  border-radius: 999px; padding: 0.2rem 0.65rem;
}

.cta-banner {
  text-align: center; border-radius: 1.75rem; padding: 2.5rem 1.5rem;
  border: 1px solid rgba(249,115,22,0.25);
  background: linear-gradient(135deg, rgba(249,115,22,0.15), #0b1020 45%, rgba(56,189,248,0.1));
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0; letter-spacing: -0.03em; }
.cta-banner p { max-width: 36rem; margin: 1rem auto 1.5rem; color: #cbd5e1; }

.faq {
  border: 1px solid rgba(255,255,255,0.1); background: rgba(11,16,32,0.6);
  border-radius: 1rem; padding: 1rem 1.15rem; margin: 0.65rem 0;
}
.faq summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq[open] { border-color: rgba(249,115,22,0.3); }
.faq p { margin: 0.75rem 0 0; color: var(--muted); font-size: 0.95rem; }

.source-note {
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02);
  border-radius: 1rem; padding: 1.25rem; color: var(--muted); font-size: 0.9rem;
}
.source-note a { color: #38bdf8; text-decoration: underline; text-underline-offset: 2px; }
.source-note p { margin: 0.5rem 0 0; }

.site-footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 2rem 0; color: #64748b; font-size: 0.9rem; }
.footer-row { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
@media (min-width: 768px) {
  .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.footer-row .logo { color: #cbd5e1; }
.footer-row p { margin: 0; }
