:root{
  --bg1:#ffffff;
  --bg2:#f6f8ff;
  --ink:#0b1220;
  --muted:#55627a;
  --border:rgba(11,18,32,.10);
  --soft:rgba(11,18,32,.06);
  --card:rgba(255,255,255,.78);
  --shadow:0 18px 55px rgba(11,18,32,.10);
  --shadow2:0 10px 30px rgba(11,18,32,.08);
  --radius:22px;

  --accentA:#2f6bff;
  --accentB:#6d28d9;
  --goldA:#f6d365;
  --goldB:#fda085;

  --p250a:#10b981;
  --p250b:#22c55e;
  --p300a:#0ea5e9;
  --p300b:#6366f1;
  --p500a:#a855f7;
  --p500b:#fb7185;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 15% 5%, rgba(246,211,101,.35), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(14,165,233,.22), transparent 55%),
    radial-gradient(700px 420px at 70% 85%, rgba(168,85,247,.18), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
button{font-family:inherit}
img{max-width:100%; display:block}

.wrap{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--soft);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 190px;
}

.brand .logo{
  width:42px; height:42px;
  border-radius:14px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--soft);
  box-shadow: 0 10px 26px rgba(11,18,32,.07);
  overflow:hidden;
  display:grid;
  place-items:center;
}

.brand .name{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .name b{font-size:15.5px; letter-spacing:.2px}
.brand .name span{font-size:12px; color:var(--muted)}

.links{
  display:flex;
  align-items:center;
  gap:12px;
}

.links a{
  font-size:14px;
  color: var(--muted);
  padding:8px 10px;
  border-radius:12px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.links a:hover{
  background: rgba(11,18,32,.04);
  color: var(--ink);
  transform: translateY(-1px);
}

.ctaRow{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  border:1px solid var(--soft);
  background: rgba(255,255,255,.78);
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  box-shadow: 0 10px 26px rgba(11,18,32,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(11,18,32,.10);
  border-color: rgba(11,18,32,.12);
}

.btn.primary{
  border:0;
  color:#0b1220;
  background:
    radial-gradient(120px 120px at 20% 20%, rgba(255,255,255,.85), rgba(255,255,255,0) 70%),
    linear-gradient(135deg, rgba(246,211,101,.95), rgba(253,160,133,.95));
}

.btn.dark{
  border:0;
  color:white;
  background: linear-gradient(135deg, rgba(47,107,255,.95), rgba(109,40,217,.95));
}

.burger{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--soft);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(11,18,32,.06);
  display:none;
  cursor:pointer;
  position:relative;
}

.burger span, .burger::before, .burger::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  height:2px;
  background: rgba(11,18,32,.75);
  border-radius:2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.burger span{top:50%; transform: translateY(-50%)}
.burger::before{top:16px}
.burger::after{top:28px}

.hero{
  padding: 32px 0 14px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:stretch;
}

.heroCard{
  border:1px solid var(--soft);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.heroCopy{
  padding: 28px 26px 22px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(11,18,32,.08);
  background: rgba(255,255,255,.7);
  font-weight:800;
  font-size:13px;
  color: rgba(11,18,32,.75);
}

.kdot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(47,107,255,.9), rgba(109,40,217,.9));
  box-shadow: 0 0 0 6px rgba(47,107,255,.12);
}

h1{
  margin:14px 0 8px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.08;
  letter-spacing: .2px;
}

.sub{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height:1.65;
  max-width: 48ch;
}

.heroActions{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.pills{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  font-size:13px;
  color: rgba(11,18,32,.74);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(11,18,32,.08);
  background: rgba(255,255,255,.72);
  display:inline-flex;
  gap:8px;
  align-items:center;
}

.pill svg{width:16px; height:16px; opacity:.85}

.heroVisual{
  position:relative;
}

.orb{
  position:absolute;
  inset:auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(10px);
  opacity:.55;
  background: radial-gradient(circle at 30% 30%, rgba(246,211,101,.95), rgba(253,160,133,.35) 55%, rgba(253,160,133,0) 70%);
  top:-70px;
  left:-70px;
  animation: floaty 8s ease-in-out infinite;
}

.orb2{
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.9), rgba(99,102,241,.28) 55%, rgba(99,102,241,0) 70%);
  bottom:-120px;
  right:-90px;
  opacity:.45;
  animation-duration: 10.5s;
}

@keyframes floaty{
  0%,100%{transform: translate(0,0) scale(1)}
  50%{transform: translate(14px, 18px) scale(1.03)}
}

.chatMock{
  position:relative;
  height:100%;
  min-height: 360px;
  padding: 18px;
  display:grid;
  place-items:center;
}

.mockWindow{
  width: min(420px, 100%);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,18,32,.08);
  box-shadow: 0 20px 55px rgba(11,18,32,.12);
  overflow:hidden;
}

.mockTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.75));
  border-bottom: 1px solid rgba(11,18,32,.06);
}

.dots{
  display:flex; gap:6px; align-items:center;
}
.dots i{
  width:10px; height:10px; border-radius:999px;
  background: rgba(11,18,32,.14);
}
.mockTitle{
  font-weight:900;
  font-size:13px;
  color: rgba(11,18,32,.70);
}

.mockBody{
  padding: 14px 14px 8px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 210px;
}

.bubble{
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: 0 10px 18px rgba(11,18,32,.06);
  border: 1px solid rgba(11,18,32,.06);
  background: rgba(255,255,255,.92);
}

.bubble.me{
  margin-left:auto;
  background: linear-gradient(135deg, rgba(47,107,255,.10), rgba(109,40,217,.08));
}

.bubble.bot{
  background: linear-gradient(135deg, rgba(246,211,101,.25), rgba(253,160,133,.14));
  border-color: rgba(246,211,101,.28);
}

.typing{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding: 8px 10px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.06);
  background: rgba(255,255,255,.92);
  width: fit-content;
}
.typing i{
  width:6px; height:6px;
  border-radius:999px;
  background: rgba(11,18,32,.36);
  animation: bounce 1s infinite ease-in-out;
}
.typing i:nth-child(2){animation-delay:.12s}
.typing i:nth-child(3){animation-delay:.24s}

@keyframes bounce{
  0%,100%{transform: translateY(0); opacity:.45}
  50%{transform: translateY(-4px); opacity:.95}
}

.mockBottom{
  padding: 12px 14px;
  border-top: 1px solid rgba(11,18,32,.06);
  display:flex;
  gap:10px;
  align-items:center;
  background: rgba(255,255,255,.78);
}

.inputFake{
  flex:1;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.08);
  background: rgba(11,18,32,.03);
}

.sendFake{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, rgba(47,107,255,.95), rgba(109,40,217,.95));
  display:grid;
  place-items:center;
  box-shadow: 0 14px 30px rgba(47,107,255,.25);
}
.sendFake svg{width:18px; height:18px; fill:white}

.section{
  padding: 22px 0;
}

.h2{
  font-size: 20px;
  margin: 0 0 6px;
  letter-spacing:.2px;
}
.lead{
  margin:0;
  color: var(--muted);
  line-height:1.7;
  font-size: 14.5px;
}

.grid4{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.featureCard{
  border:1px solid var(--soft);
  background: rgba(255,255,255,.78);
  border-radius: 20px;
  padding: 14px 14px 16px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.featureCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(11,18,32,.11);
}

.icon{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 70%),
    linear-gradient(135deg, rgba(47,107,255,.18), rgba(109,40,217,.12));
  border: 1px solid rgba(47,107,255,.14);
}
.icon svg{width:22px; height:22px; opacity:.95}

.featureCard b{
  display:block;
  margin-top: 10px;
  font-size: 14.5px;
}
.featureCard p{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height:1.7;
}

.split{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panel{
  border:1px solid var(--soft);
  background: rgba(255,255,255,.78);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow2);
  overflow:hidden;
  position:relative;
}

.panelHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.badge{
  font-size:12px;
  font-weight:900;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11,18,32,.05);
  border: 1px solid rgba(11,18,32,.08);
  color: rgba(11,18,32,.70);
}

.badge.neon{
  background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(99,102,241,.12));
  border-color: rgba(14,165,233,.22);
  box-shadow: 0 10px 26px rgba(14,165,233,.18);
}

.badge.gold{
  background: linear-gradient(135deg, rgba(246,211,101,.35), rgba(253,160,133,.18));
  border-color: rgba(246,211,101,.28);
  box-shadow: 0 12px 30px rgba(246,211,101,.18);
}

.beforeAfter{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.mini{
  border:1px solid rgba(11,18,32,.08);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.85);
}

.mini b{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 13.5px;
}
.mini ul{
  margin: 10px 0 0;
  padding:0 18px 0 0;
  color: var(--muted);
  font-size: 13.2px;
  line-height:1.8;
}

.pricing{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items:stretch;
}

.priceCard{
  border-radius: 26px;
  padding: 16px;
  position:relative;
  overflow:hidden;
  border: 1px solid rgba(11,18,32,.08);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.priceCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(11,18,32,.13);
}

.priceCard .top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.planTag{
  font-weight: 1000;
  letter-spacing:.2px;
  font-size: 13px;
  color: rgba(11,18,32,.76);
}

.neoLabel{
  font-weight: 1000;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.98);
  letter-spacing: .2px;
  box-shadow: 0 16px 40px rgba(14,165,233,.22);
  border: 1px solid rgba(255,255,255,.55);
  background: linear-gradient(135deg, rgba(14,165,233,.95), rgba(99,102,241,.95));
  transform: translateY(-2px);
}

.neoLabel.hot{
  background: linear-gradient(135deg, rgba(168,85,247,.95), rgba(251,113,133,.95));
  box-shadow: 0 18px 46px rgba(168,85,247,.22);
}

.price{
  margin: 10px 0 0;
  display:flex;
  align-items:flex-end;
  gap:10px;
}
.price .num{
  font-size: 42px;
  font-weight: 1000;
  letter-spacing: .2px;
}
.price .per{
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 7px;
}

.planLine{
  margin: 10px 0 0;
  color: rgba(11,18,32,.78);
  font-weight: 900;
  font-size: 14px;
}

.planList{
  margin: 12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color: rgba(11,18,32,.74);
  font-size: 13.5px;
  line-height:1.55;
}

.planList li{
  display:flex;
  gap:8px;
  align-items:flex-start;
}

.planList svg{width:18px; height:18px; flex:0 0 18px; margin-top:2px}

.priceCard .actions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.priceCard .glow{
  position:absolute;
  inset:-40%;
  opacity:.55;
  filter: blur(18px);
  transform: rotate(16deg);
}

.priceCard.p250 .glow{
  background: radial-gradient(circle at 30% 30%, rgba(16,185,129,.75), rgba(34,197,94,0) 60%);
}

.priceCard.p300 .glow{
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.75), rgba(99,102,241,0) 62%);
}

.priceCard.p500 .glow{
  background: radial-gradient(circle at 30% 30%, rgba(168,85,247,.75), rgba(251,113,133,0) 62%);
}

.priceCard.p500{
  border-color: rgba(168,85,247,.22);
  box-shadow: 0 26px 70px rgba(168,85,247,.14);
}

.priceCard.p500::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 26px;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(168,85,247,.16), transparent 35%),
    linear-gradient(225deg, rgba(251,113,133,.12), transparent 38%);
}

.band{
  margin-top: 16px;
  border:1px solid rgba(11,18,32,.08);
  border-radius: 26px;
  background:
    radial-gradient(220px 220px at 15% 25%, rgba(246,211,101,.55), transparent 55%),
    radial-gradient(260px 260px at 85% 75%, rgba(14,165,233,.28), transparent 55%),
    rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.band b{
  font-size: 16px;
}
.band span{
  display:block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13.5px;
  line-height:1.65;
}

.footer{
  padding: 26px 0 38px;
  color: rgba(11,18,32,.76);
}

.footGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items:flex-start;
}

.social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.social a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(11,18,32,.06);
  font-weight: 900;
  font-size: 13.5px;
}

.social svg{width:18px; height:18px}

.smallLinks{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.smallLinks a{
  padding:8px 10px;
  border-radius: 12px;
  transition: background .2s ease, transform .2s ease;
}
.smallLinks a:hover{
  background: rgba(11,18,32,.04);
  transform: translateX(-2px);
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

.mobileMenu{
  display:none;
  padding-bottom: 14px;
}
.mobileMenu a{
  display:block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.06);
  background: rgba(255,255,255,.74);
  color: rgba(11,18,32,.75);
  margin-top: 10px;
  font-weight: 900;
}

.hr{
  height:1px;
  background: rgba(11,18,32,.06);
  margin: 16px 0;
  border:0;
}

@media (max-width: 980px){
  .orb{display:none}

  .heroGrid{grid-template-columns: 1fr}
  .chatMock{min-height: 320px}
  .grid4{grid-template-columns: repeat(2,1fr)}
  .pricing{grid-template-columns: 1fr}
  .band{flex-direction:column; align-items:stretch}
  .footGrid{grid-template-columns: 1fr}
  .links{display:none}
  .burger{display:inline-grid; place-items:center}
  .mobileMenu{display:none}
  .topbar.open .mobileMenu{display:block}
  .topbar.open .burger span{opacity:0}
  .topbar.open .burger::before{top:22px; transform: rotate(45deg)}
  .topbar.open .burger::after{top:22px; transform: rotate(-45deg)}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important}
}


.mobileDock{
  position:fixed;
  inset:auto 0 12px 0;
  z-index:60;
  display:none;
}
.mobileDock .dock{
  width:min(1120px, 92vw);
  margin-inline:auto;
  display:flex;
  gap:10px;
}
.mobileDock a{
  flex:1;
  justify-content:center;
}

@media (max-width: 980px){
  .orb{display:none}

  body{padding-bottom: 92px}
  .mobileDock{display:block}
}


@supports (-webkit-background-clip: text) or (background-clip: text){
  .priceCard .price .num{
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
  .priceCard.p250 .price .num{background: linear-gradient(135deg, var(--p250a), var(--p250b));}
  .priceCard.p300 .price .num{background: linear-gradient(135deg, var(--p300a), var(--p300b));}
  .priceCard.p500 .price .num{background: linear-gradient(135deg, var(--p500a), var(--p500b));}
}
