:root {
  --bg: #f3f8ff;
  --ink: #08142b;
  --text: #1c2b46;
  --muted: #60718f;
  --blue: #1677ff;
  --blue-2: #50a6ff;
  --deep: #071b45;
  --white: #ffffff;
  --card: rgba(255,255,255,0.82);
  --border: rgba(22,119,255,0.16);
  --shadow: 0 24px 70px rgba(21, 76, 158, .15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(22,119,255,.20), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(80,166,255,.22), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 45%, #ffffff 100%);
}
a { color: inherit; text-decoration: none; }
.navbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 16px 6vw;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid var(--border);
}
.brand { display:flex; align-items:center; gap:11px; font-weight:900; font-size:24px; color:var(--deep); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  display:grid; place-items:center;
  box-shadow: 0 14px 30px rgba(22,119,255,0.35);
  position:relative;
}
.logo-mark::before { content:""; width:20px; height:20px; border:3px solid #fff; border-radius:50%; }
.logo-dot { position:absolute; width:8px; height:8px; border-radius:50%; background:#fff; right:10px; top:10px; }
.nav-links { display:flex; gap:22px; color: var(--muted); font-weight:700; font-size:14px; }
.nav-links a:hover { color: var(--blue); }
select, input {
  background: rgba(255,255,255,0.9); color:var(--ink); border:1px solid var(--border);
  border-radius: 16px; padding: 13px 15px; outline: none;
  box-shadow: 0 8px 20px rgba(21,76,158,.05);
}
select:focus, input:focus { border-color: rgba(22,119,255,.55); box-shadow: 0 0 0 4px rgba(22,119,255,.10); }
.hero {
  min-height: 84vh; padding: 78px 6vw 54px;
  display:grid; grid-template-columns: 1.03fr 0.97fr; gap:54px; align-items:center;
}
.pill, .label, .section-heading p {
  display:inline-flex; color: var(--blue); font-weight:900; letter-spacing:.02em;
  background: rgba(22,119,255,.09); border:1px solid var(--border);
  padding: 9px 13px; border-radius: 999px;
}
.hero-kicker { margin-top:14px; color:#7a8aa5; font-weight:800; }
h1 { font-size: clamp(40px, 6vw, 74px); line-height: 0.96; margin: 18px 0; letter-spacing:-.06em; color:var(--deep); }
h2 { font-size: clamp(29px, 4vw, 48px); margin: 12px 0; line-height:1.06; letter-spacing:-.035em; color:var(--deep); }
p { color: var(--muted); line-height:1.72; font-size: 17px; }
.hero-content p { max-width: 680px; }
.hero-buttons { display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 12px; }
.btn { border:none; border-radius: 18px; padding: 16px 22px; font-weight:900; cursor:pointer; display:inline-flex; justify-content:center; transition:.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color:white; box-shadow:0 18px 35px rgba(22,119,255,.28); }
.btn.ghost { background: #fff; border:1px solid var(--border); color:var(--deep); box-shadow: 0 12px 30px rgba(21,76,158,.07); }
.small-note, small { color:#7a8aa5; font-size: 13px; }
.visual-wrap { position:relative; min-height:560px; display:grid; place-items:center; }
.orb { position:absolute; border-radius:999px; filter: blur(1px); opacity:.75; }
.orb-one { width:260px; height:260px; background:rgba(22,119,255,.18); right:10px; top:20px; }
.orb-two { width:170px; height:170px; background:rgba(80,166,255,.20); left:20px; bottom:45px; }
.phone-card {
  width:min(440px, 100%); background: rgba(255,255,255,.88); border:1px solid var(--border);
  border-radius: 38px; padding: 18px; box-shadow: var(--shadow); position:relative; z-index:2;
}
.phone-top { display:flex; gap:6px; padding: 5px 0 16px; }
.phone-top span { width:10px; height:10px; border-radius:50%; background:rgba(8,20,43,.18); }
.chat-header { display:flex; align-items:center; gap:12px; background:#f1f7ff; border-radius:22px; padding:15px; margin-bottom:18px; color:var(--deep); }
.avatar { width:44px; height:44px; border-radius:16px; background:linear-gradient(135deg,var(--blue),var(--blue-2)); color:white; display:grid; place-items:center; font-weight:900; }
.chat-header small { display:block; margin-top:3px; color:#6d7f9b; }
.chat-bubble { padding:14px 16px; border-radius:19px; margin:12px 0; max-width:88%; line-height:1.5; color:var(--text); }
.customer { background:#eef4ff; margin-left:auto; }
.ai { background:linear-gradient(135deg, rgba(22,119,255,.95), rgba(80,166,255,.95)); color:white; }
.mini-card { position:absolute; z-index:3; background:white; border:1px solid var(--border); border-radius:18px; padding:14px 16px; font-weight:900; color:var(--deep); box-shadow:0 20px 45px rgba(21,76,158,.16); }
.floating-one { left:0; top:105px; }
.floating-two { right:0; bottom:95px; }
.trusted { padding: 24px 6vw; text-align:center; color:#355079; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:rgba(255,255,255,.70); font-weight:800; }
.section { padding: 88px 6vw; }
.section-heading { max-width: 780px; margin-bottom: 35px; }
.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.feature-card, .steps div, .beta, .dashboard, .stats div, .panel-list div {
  background: var(--card); border:1px solid var(--border); border-radius:28px; padding:26px; box-shadow: 0 16px 45px rgba(21,76,158,.08);
}
.feature-card { min-height:180px; }
.feature-card h3 { margin-top:0; color:var(--deep); font-size:21px; }
.split { display:grid; grid-template-columns: 0.9fr 1.1fr; gap:36px; align-items:center; }
.steps { display:grid; gap:16px; }
.steps div { display:flex; gap:20px; align-items:center; font-weight:800; }
.steps strong { color:var(--blue); font-size:30px; }
.dashboard { display:grid; grid-template-columns: 230px 1fr; overflow:hidden; padding:0; background:#fff; }
aside { background:linear-gradient(180deg, #0b2b68, #061735); padding:24px; display:grid; align-content:start; gap:12px; color:white; }
.dash-logo { font-weight:900; font-size:24px; margin-bottom:20px; }
aside a { padding:12px 14px; border-radius:14px; color:rgba(255,255,255,.7); }
aside a.active, aside a:hover { background:rgba(255,255,255,.12); color:white; }
.dash-main { padding:24px; }
.stats { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:16px; }
.stats div, .panel-list div { background:#f7fbff; box-shadow:none; }
.stats span { display:block; color:var(--muted); font-size:13px; }
.stats strong { font-size:35px; color:var(--blue); }
.panel-list { display:grid; gap:14px; }
.panel-list p { margin-bottom:0; font-size:15px; }
.beta { display:grid; grid-template-columns: .9fr 1.1fr; gap:30px; align-items:center; background:linear-gradient(135deg, #ffffff, #eef6ff); }
.beta-form { display:grid; gap:13px; }
footer { padding:34px 6vw; display:flex; gap:10px; flex-wrap:wrap; justify-content:center; border-top:1px solid var(--border); color:var(--muted); background:white; }
@media (max-width: 920px) {
  .nav-links { display:none; }
  .hero, .split, .beta { grid-template-columns:1fr; }
  .grid, .stats { grid-template-columns:1fr; }
  .dashboard { grid-template-columns:1fr; }
  aside { grid-template-columns: repeat(2,1fr); }
  .visual-wrap { min-height:520px; }
  h1 { font-size: 43px; }
}
@media (max-width: 520px) {
  .navbar { padding: 14px 4vw; }
  .brand span:last-child { display:none; }
  .hero, .section { padding-left:4vw; padding-right:4vw; }
  aside { grid-template-columns:1fr; }
  .floating-one, .floating-two { display:none; }
  .visual-wrap { min-height:auto; }
}
