:root{
  --bg:#ffffff;
  --bg-soft:#f8fbff;
  --ink:#0b1220;
  --muted:#475569;
  --line:rgba(15, 23, 42, .10);
  --line-strong:rgba(15, 23, 42, .16);
  --card:#0b1220;
  --soft:#f5f7ff;
  --soft-2:#eef4ff;
  --g1:#10b7da;
  --g2:#5b6df6;
  --g3:#8b5cf6;
  --success:#22c55e;
  --shadow-sm:0 10px 30px rgba(2,6,23,.06);
  --shadow:0 18px 60px rgba(2,6,23,.10);
  --shadow-lg:0 26px 90px rgba(2,6,23,.16);
  --radius:22px;
  --radius-sm:16px;
  --radius-xs:12px;
  --nav-h:96px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%; display:block}

a{color:inherit}

.container{
  width:min(1160px, 92%);
  margin:0 auto;
}

.top{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(255,255,255,.78);
  border-bottom:1px solid var(--line);
}

.top__inner{
  min-height:var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.brand__logo{
  height:88px;
  width:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav a{
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  opacity:.9;
  transition:.18s ease;
}

.nav a:hover{opacity:1}

.menuBtn{
  display:none;
  background:transparent;
  border:0;
  cursor:pointer;
  width:46px;
  height:46px;
  border-radius:14px;
}

.menuBtn span{
  display:block;
  height:2px;
  margin:7px 10px;
  background:var(--ink);
  opacity:.85;
  border-radius:99px;
}

.mobileNav{
  display:none;
  padding:12px 0 18px;
  border-top:1px solid var(--line);
}

.mobileNav a{
  display:block;
  padding:12px 0;
  text-decoration:none;
  color:var(--ink);
  font-weight:800;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:12px 18px;
  border-radius:16px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn--primary{
  color:#fff;
  background:linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow:0 14px 34px rgba(91,109,246,.22);
}

.btn--primary:hover{
  box-shadow:0 18px 42px rgba(91,109,246,.28);
}

.btn--ghost{
  background:rgba(255,255,255,.78);
  color:var(--ink);
  border-color:var(--line);
}

.btn--ghost:hover{
  border-color:var(--line-strong);
  background:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:58px 0 34px;
  background:
    radial-gradient(900px 480px at 10% 6%, rgba(16,183,218,.14), transparent 52%),
    radial-gradient(860px 460px at 88% 10%, rgba(91,109,246,.14), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.hero__grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:36px;
  align-items:center;
}

.hero__copy{
  position:relative;
  z-index:2;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.76);
  box-shadow:0 8px 24px rgba(2,6,23,.05);
  font-weight:800;
  font-size:13px;
  color:#334155;
}

.pill .dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--g1), var(--g2));
  flex:none;
}

h1{
  margin:18px 0 14px;
  font-size:clamp(38px, 5vw, 64px);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:760px;
}

.grad{
  background:linear-gradient(135deg, var(--g1), var(--g2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  margin:0 0 22px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  max-width:700px;
}

.lead b{
  color:#334155;
}

.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:8px 0 20px;
}

.trust{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:8px;
}

.trust__item{
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 14px 12px;
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow-sm);
}

.trust__item strong{
  display:block;
  font-size:15px;
  line-height:1.2;
  margin-bottom:3px;
}

.trust__item span{
  display:block;
  font-size:13px;
  color:var(--muted);
  line-height:1.4;
}

.hero__card{
  border-radius:28px;
  box-shadow:var(--shadow-lg);
  background:linear-gradient(135deg, #0b1220, #0d1730 38%, #0f1734 100%);
  padding:14px;
  overflow:hidden;
}

.glass{
  position:relative;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(520px 240px at 14% 16%, rgba(16,183,218,.08), transparent 55%),
    radial-gradient(420px 240px at 88% 20%, rgba(91,109,246,.08), transparent 55%),
    rgba(255,255,255,.04);
  padding:18px;
}

.glass__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}

.badge{
  font-size:12px;
  font-weight:800;
  color:rgba(255,255,255,.92);
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
}

.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  color:rgba(255,255,255,.78);
  white-space:nowrap;
}

.status i{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 4px rgba(34,197,94,.18);
}

.chat{
  display:grid;
  gap:12px;
}

.msg{
  padding:13px 14px;
  border-radius:16px;
  font-size:14px;
  line-height:1.55;
  max-width:92%;
}

.msg--in{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.95);
}

.msg--out{
  justify-self:end;
  background:linear-gradient(135deg, rgba(16,183,218,.22), rgba(91,109,246,.22));
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.96);
}

.mini{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}

.mini__kpi{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  border-radius:16px;
  padding:12px;
}

.mini__kpi span{
  display:block;
  color:rgba(255,255,255,.72);
  font-size:12px;
  line-height:1.35;
}

.mini__kpi b{
  display:block;
  color:rgba(255,255,255,.96);
  font-size:16px;
  margin-top:6px;
}

.section{
  padding:76px 0;
}

.section--alt{
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(16,183,218,.10), transparent 50%),
    radial-gradient(900px 500px at 92% 10%, rgba(91,109,246,.10), transparent 50%),
    #fbfcff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:26px;
}

.section__head--split{
  align-items:flex-start;
}

.section__head h2{
  margin:0;
  font-size:clamp(30px, 3vw, 44px);
  line-height:1.08;
  letter-spacing:-.03em;
}

.section__head p{
  margin:0;
  color:var(--muted);
  max-width:560px;
  line-height:1.65;
  font-size:18px;
}

.grid2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.grid4{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:16px;
}

.card{
  position:relative;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  padding:22px;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}

.card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:3px;
  background:linear-gradient(90deg, rgba(16,183,218,.85), rgba(91,109,246,.85));
  opacity:0;
  transition:opacity .18s ease;
}

.card:hover::after{
  opacity:1;
}

.card h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.3;
}

.card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.65;
  font-size:16px;
}

.card ul{
  margin:0;
  padding-left:18px;
  color:#334155;
  line-height:1.7;
}

.card li{
  margin:8px 0;
}

.card--highlight{
  background:
    linear-gradient(180deg, rgba(16,183,218,.05), rgba(91,109,246,.05)),
    #fff;
  border-color:rgba(91,109,246,.20);
}

.results{
  display:grid;
  grid-template-columns:1fr .98fr;
  gap:26px;
  align-items:center;
}

.results__copy{
  display:grid;
  gap:14px;
}

.resultBox{
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  padding:20px;
  box-shadow:var(--shadow-sm);
}

.resultBox h3{
  margin:0 0 8px;
  font-size:19px;
}

.resultBox p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
}

.results__visual{
  position:relative;
}

.agendaCard .glass{
  padding:18px;
}

.agendaList{
  display:grid;
  gap:12px;
  margin-bottom:16px;
}

.agendaItem{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.95);
  min-height:60px;
}

.agendaItem__title{
  flex:1;
  font-size:15px;
  line-height:1.35;
}

.agendaItem__time{
  font-size:15px;
  font-weight:800;
  color:rgba(214,226,255,.92);
}

.agendaTag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, #f59e0b, #f97316);
  white-space:nowrap;
}

.agendaRevenue{
  margin-top:8px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  border-radius:18px;
  padding:16px;
}

.agendaRevenue__head{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:10px;
}

.agendaRevenue__head strong{
  font-size:34px;
  line-height:1;
  color:#fff;
}

.agendaRevenue__head span{
  font-size:18px;
  font-weight:700;
  color:rgba(214,226,255,.88);
}

.agendaRevenue__sub{
  margin-top:10px;
  font-size:14px;
  font-weight:800;
  color:#22c55e;
}

.agendaRevenue__body{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr 190px;
  gap:18px;
  align-items:end;
}

.agendaRevenue__checks{
  display:grid;
  gap:10px;
  color:#fff;
  font-weight:700;
  font-size:15px;
}

.agendaChart{
  height:170px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  padding:0 8px 4px;
  border-bottom:1px solid rgba(255,255,255,.10);
  position:relative;
}

.agendaChart::before,
.agendaChart::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  border-top:1px solid rgba(255,255,255,.08);
}

.agendaChart::before{
  top:34%;
}

.agendaChart::after{
  top:66%;
}

.agendaChart span{
  width:24px;
  border-radius:10px 10px 8px 8px;
  background:linear-gradient(180deg, #60a5fa, #22c55e);
  position:relative;
  z-index:1;
}

.steps{
  display:grid;
  gap:14px;
}

.step{
  display:flex;
  gap:16px;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  padding:18px 18px;
  box-shadow:var(--shadow-sm);
}

.step__n{
  width:38px;
  height:38px;
  flex:none;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:18px;
  color:var(--ink);
  background:linear-gradient(135deg, rgba(16,183,218,.18), rgba(91,109,246,.18));
  border:1px solid rgba(15,23,42,.08);
}

.step h3{
  margin:0 0 6px;
  font-size:18px;
}

.step p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:16px;
}

.contact{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:22px;
  align-items:start;
}

.contact h2{
  margin:0 0 10px;
  font-size:clamp(30px, 3vw, 44px);
  line-height:1.06;
  letter-spacing:-.03em;
}

.contact__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 18px;
}

.contact__chips span{
  font-size:13px;
  font-weight:800;
  color:#334155;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
}

.contact__links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:12px;
}

.linkBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:800;
  color:var(--ink);
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.linkBtn:hover{
  transform:translateY(-1px);
  border-color:var(--line-strong);
}

.form{
  border:1px solid var(--line);
  background:#fff;
  border-radius:26px;
  padding:18px;
  box-shadow:var(--shadow);
}

label{
  display:block;
  font-size:13px;
  font-weight:800;
  margin:12px 0 8px;
  color:#0f172a;
}

input,
select,
textarea{
  width:100%;
  padding:13px 14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.12);
  outline:none;
  background:#fff;
  font-family:inherit;
  font-size:14px;
  color:var(--ink);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

textarea{
  resize:vertical;
  min-height:120px;
}

input::placeholder,
textarea::placeholder{
  color:#94a3b8;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(91,109,246,.45);
  box-shadow:0 0 0 4px rgba(91,109,246,.10);
}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  background:#fff;
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer__brand{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer__brand img{
  height:42px;
  width:auto;
}

.footer__brand p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.footer__meta p{
  margin:0;
  text-align:right;
}

.muted{
  color:var(--muted);
}

@media (max-width: 980px){
  :root{
    --nav-h:84px;
  }

  .brand__logo{
    height:74px;
  }

  .nav{
    display:none;
  }

  .menuBtn{
    display:inline-block;
  }

  .mobileNav.show{
    display:block;
  }

  .hero{
    padding:36px 0 22px;
  }

  .hero__grid,
  .results,
  .contact,
  .grid4,
  .grid3,
  .grid2{
    grid-template-columns:1fr;
  }

  .hero__grid{
    gap:22px;
  }

  .trust{
    grid-template-columns:1fr;
  }

  .section{
    padding:58px 0;
  }

  .section__head,
  .section__head--split{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:22px;
  }

  .section__head p{
    max-width:100%;
    font-size:17px;
  }

  .agendaRevenue__body{
    grid-template-columns:1fr;
  }

  .agendaChart{
    margin-top:6px;
  }
}

@media (max-width: 760px){
  .container{
    width:min(94%, 1120px);
  }

  .brand__logo{
    height:66px;
  }

  h1{
    font-size:clamp(34px, 10vw, 48px);
  }

  .lead{
    font-size:17px;
  }

  .pill{
    font-size:12px;
    line-height:1.4;
    padding:10px 14px;
  }

  .grid4{
    grid-template-columns:1fr;
  }

  .card,
  .resultBox,
  .step,
  .form,
  .hero__card{
    border-radius:20px;
  }

  .glass{
    border-radius:18px;
  }

  .mini{
    grid-template-columns:1fr;
  }

  .glass__top{
    flex-direction:column;
    align-items:flex-start;
  }

  .msg{
    max-width:100%;
    font-size:13px;
  }

  .contact__links{
    flex-direction:column;
    align-items:stretch;
  }

  .linkBtn,
  .btn{
    width:100%;
  }

  .agendaItem{
    flex-wrap:wrap;
    align-items:flex-start;
  }

  .agendaItem__title{
    width:100%;
  }

  .agendaItem__time{
    margin-left:auto;
  }

  .agendaRevenue__head strong{
    font-size:28px;
  }

  .agendaRevenue__head span{
    font-size:16px;
  }

  .footer__meta p{
    text-align:left;
  }
}