:root {
  --navy: #f3f7fb;
  --navy-2: #e8f1f8;
  --navy-3: #dceaf4;
  --card: #ffffff;
  --stroke: rgba(20, 70, 110, 0.12);
  --cyan: #0aa88a;
  --blue: #1b74e4;
  --mint: #1ec9a0;
  --text: #16324a;
  --muted: #5d7388;
  --white: #ffffff;
  --ink: #0e2438;
  --glow: 0 18px 40px rgba(27, 116, 228, 0.08);
  --radius: 22px;
  --max: 1180px;
  --nav-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: linear-gradient(180deg, #f7fafc 0%, #eef5fb 40%, #f5fbf8 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: drift 22s ease-in-out infinite alternate;
}
.orb { opacity: 0.28; }
.orb-1 { width: 420px; height: 420px; background: #9ec8ff; top: -80px; left: -80px; }
.orb-2 { width: 380px; height: 380px; background: #9be8d2; bottom: 10%; right: -120px; animation-duration: 28s; }
.orb-3 { width: 260px; height: 260px; background: #b9d6ff; top: 48%; left: 42%; opacity: 0.2; animation-duration: 18s; }

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(40px, -50px, 0) scale(1.12); }
}

.grid-fade {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(27,116,228,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,116,228,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 252, 0.9);
  border-bottom: 1px solid var(--stroke);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand img, .brand svg { width: 44px; height: 44px; object-fit: contain; background: transparent; border-radius: 0; }
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a { position: relative; transition: color .25s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  color: #041018;
  background: linear-gradient(120deg, #2b8cff, #2ee6c2);
  box-shadow: 0 8px 30px rgba(46, 230, 194, 0.22);
  transition: transform .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(46, 230, 194, 0.32); }
.wa-ico { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.icon.wa { background: #25D366; }
.btn-ghost {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--stroke);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--cyan); }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--stroke);
  color: var(--text);
  width: 42px; height: 42px;
  border-radius: 10px;
}

/* HERO */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  place-items: center;
  padding: 60px 0 80px;
  position: relative;
}
.hero-inner { text-align: center; max-width: 860px; margin-inline: auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
}
.kicker::before, .kicker::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.kicker::after { background: linear-gradient(90deg, var(--cyan), transparent); }

.hero-stage {
  position: relative;
  width: min(520px, 100%);
  height: 220px;
  margin: 8px auto 28px;
}
.stage-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: 0 14px 30px rgba(16, 50, 80, 0.1);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.stage-card.wa {
  left: 6%; top: 18px;
  background: #e9fff6;
  animation: bob 4.2s ease-in-out infinite;
}
.stage-card.wa .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25d366;
  margin-right: 6px;
}
.stage-card.photo {
  right: 8%; top: 8px;
  animation: bob 5s ease-in-out infinite .4s;
}
.stage-card.paper {
  width: 118px;
  text-align: left;
  font-size: 11px;
  letter-spacing: .04em;
}
.stage-card.paper b { display: block; color: var(--blue); margin-bottom: 8px; font-size: 10px; }
.stage-card.paper i {
  display: block; height: 5px; border-radius: 4px;
  background: #e4edf5; margin-bottom: 5px;
}
.stage-card.paper i:nth-child(3) { width: 70%; }
.stage-card.paper em { display: block; margin-top: 6px; font-style: normal; color: var(--cyan); }
.stage-card.p1 { left: 10%; bottom: 18px; --r: -8deg; animation: lift 6s ease-in-out infinite; }
.stage-card.p2 { left: 38%; bottom: 8px; --r: 3deg; animation: lift 5.4s ease-in-out infinite .5s; z-index: 2; }
.stage-card.p3 { right: 8%; bottom: 22px; --r: 8deg; animation: lift 6.6s ease-in-out infinite .2s; }
.stage-card.pay {
  right: 18%; top: 78px;
  background: #eef6ff;
  font-size: 12px;
  animation: bob 4.8s ease-in-out infinite .8s;
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes lift {
  0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.hero h1 {
  font-size: clamp(36px, 6.4vw, 72px);
  margin-bottom: 8px;
}
.accent {
  background: linear-gradient(90deg, #4aa7ff, #2ee6c2 45%, #7dffc8, #4aa7ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 8s linear infinite;
}
@keyframes sheen {
  to { background-position: 200% center; }
}
.hero p.lead {
  margin: 22px auto 36px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.scroll-hint {
  margin-top: 64px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-hint i {
  display: block;
  width: 18px; height: 28px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  margin: 10px auto 0;
  position: relative;
}
.scroll-hint i::after {
  content: "";
  width: 3px; height: 7px;
  background: var(--cyan);
  border-radius: 2px;
  position: absolute;
  left: 50%; top: 6px;
  transform: translateX(-50%);
  animation: drip 1.6s infinite;
}
@keyframes drip {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 16px; }
}

section { padding: 92px 0; position: relative; z-index: 1; }
.sec-head { margin-bottom: 42px; }
.sec-head h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.sec-head p { color: var(--muted); max-width: 640px; }

/* CARDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.card {
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--glow);
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(46,230,194,.4);
  box-shadow: 0 16px 50px rgba(20, 140, 180, 0.18);
}
.icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #2b8cff, #14c4a0);
  margin-bottom: 16px;
  font-size: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ico-board span {
  position: absolute; width: 12px; height: 12px; border-radius: 3px; background: #fff;
}
.ico-board span:nth-child(1) { top: 12px; left: 10px; }
.ico-board span:nth-child(2) { top: 12px; right: 10px; width: 14px; height: 10px; opacity: .7; }
.ico-board span:nth-child(3) { bottom: 10px; left: 14px; width: 20px; height: 10px; opacity: .85; }
.ico-deck span {
  position: absolute; width: 22px; height: 16px; border-radius: 3px; background: #fff;
}
.ico-deck span:nth-child(1) { transform: rotate(-12deg); opacity: .7; }
.ico-deck span:nth-child(2) { transform: rotate(8deg); }
.ico-space span {
  width: 22px; height: 16px; border: 2px solid #fff; border-radius: 3px 3px 0 0;
  border-bottom: 0; position: relative;
}
.ico-space span::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: -6px; height: 6px;
  border: 2px solid #fff; border-top: 0;
}
.ico-video { font-size: 16px; }
.ico-film span {
  width: 22px; height: 14px; background: #fff; border-radius: 2px;
  box-shadow: -4px 0 0 rgba(255,255,255,.4), 4px 0 0 rgba(255,255,255,.4);
}
.ico-brand { font-weight: 800; letter-spacing: -.04em; }
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

.why .card { text-align: center; padding: 28px 16px; }
.why .icon { margin-inline: auto; }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 24px 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: #ffffff;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

/* FEATURE SPOTLIGHT */
.spotlight {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.video-frame {
  border-radius: 22px;
  min-height: 260px;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(6,16,29,.2), rgba(6,16,29,.55)),
    radial-gradient(circle at 70% 40%, #1a4f88, #07101c 70%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(120deg, #2b8cff, #2ee6c2);
  display: grid; place-items: center;
  color: #041018;
  font-size: 22px;
  box-shadow: 0 0 0 12px rgba(46,230,194,.12);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,230,194,.35); }
  70% { box-shadow: 0 0 0 18px rgba(46,230,194,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,230,194,0); }
}

/* LEADERSHIP */
.leader {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.portrait {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  max-height: 560px;
}
.portrait img { width: 100%; height: 560px; object-fit: cover; object-position: center 12%; }
.quote {
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-top: 18px;
}
.resp { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-top: 22px; }
.resp li {
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}
.resp li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0; top: 8px;
}

/* DIRECTION */
.timeline { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.flow-line {
  margin-top: 28px;
  text-align: center;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(90deg, rgba(43,140,255,.08), rgba(46,230,194,.1));
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item .icon { margin-bottom: 0; flex-shrink: 0; }
.contact-item small { color: var(--muted); display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.contact-item b { font-size: 16px; }

footer {
  border-top: 1px solid var(--stroke);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .28s; }
.d4 { animation-delay: .38s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.js .reveal { animation: none; opacity: 0; transform: translateY(28px); }
.js .reveal.in { animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }

.fine {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.chat-demo {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bubble {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.45;
  animation: rise .8s ease both;
}
.bubble small {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: .7;
}
.bubble.in {
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-bottom-left-radius: 6px;
}
.bubble.out {
  align-self: flex-end;
  background: linear-gradient(160deg, #e8f3ff, #e4faf4);
  border: 1px solid var(--stroke);
  border-bottom-right-radius: 6px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.prod-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.badge.now { background: rgba(46,230,194,.16); color: var(--cyan); }
.badge.next { background: rgba(43,140,255,.18); color: #8ec4ff; }
.badge.later { background: rgba(255,255,255,.06); color: var(--muted); }
.plan-tag { font-size: 12px; color: var(--muted); }
.example {
  font-style: italic;
  color: #2a5f88;
  font-size: 14px;
  margin-bottom: 10px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price { display: flex; flex-direction: column; position: relative; overflow: hidden; }
.price .amount {
  font-size: 36px;
  font-weight: 700;
  margin: 4px 0 8px;
}
.price .amount span { font-size: 14px; color: var(--muted); font-weight: 500; }
.price ul { list-style: none; margin: 12px 0 20px; color: var(--muted); font-size: 14px; flex: 1; }
.price li { padding: 5px 0 5px 16px; position: relative; }
.price li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0; top: 12px;
}
.price .btn, .price .btn-ghost { justify-content: center; }
.price.featured {
  border-color: rgba(46,230,194,.45);
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(46,230,194,.12);
}
.ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: #041018;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(28deg);
}
.packs { margin-top: 22px; color: var(--muted); text-align: center; }

@media (max-width: 1100px) and (min-width: 981px) {
  .prod-grid, .price-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-5, .grid-6, .steps, .spotlight, .leader, .timeline, .contact-grid, .resp, .prod-grid, .price-grid {
    grid-template-columns: 1fr;
  }
  .price.featured { transform: none; }
  .nav-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #f7fafc;
    padding: 20px;
    border-bottom: 1px solid var(--stroke);
  }
  .hero { min-height: auto; padding-top: 36px; }
  .hero-stage { height: 200px; }
  .stage-card.wa { font-size: 12px; max-width: 70%; }
}
