:root {
  --ink: #04060c;
  --ink-2: #070b14;
  --surface: rgba(13, 20, 34, 0.72);
  --surface-solid: #0c1322;
  --surface-2: #111c30;
  --line: rgba(148, 180, 220, 0.14);
  --line-strong: rgba(148, 180, 220, 0.28);
  --text: #e8f0fb;
  --muted: #93a6c2;
  --cyan: #22e0ff;
  --cyan-deep: #0891b2;
  --mint: #2bf0a8;
  --violet: #8b7bff;
  --amber: #ffcf6b;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
  --glow-cyan: 0 0 0 1px rgba(34, 224, 255, 0.35), 0 18px 60px -22px rgba(34, 224, 255, 0.55);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --wrap: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(34, 224, 255, 0.16), transparent 60%),
    radial-gradient(760px 520px at 92% 6%, rgba(139, 123, 255, 0.13), transparent 62%),
    radial-gradient(680px 520px at 60% 108%, rgba(43, 240, 168, 0.1), transparent 60%),
    var(--ink);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(148, 180, 220, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 180, 220, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 78%);
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(34, 224, 255, 0.06);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.lead { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 60ch; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 16px; }
.section-head.center .lead { margin-inline: auto; }

.grad-text {
  background: linear-gradient(100deg, var(--cyan) 0%, var(--mint) 52%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(100deg, var(--cyan), var(--mint));
  color: #03121a;
  box-shadow: 0 18px 44px -16px rgba(34, 224, 255, 0.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -18px rgba(34, 224, 255, 0.85); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 6, 12, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(4, 6, 12, 0.88); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.02em; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 224, 255, 0.22), rgba(43, 240, 168, 0.16));
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  box-shadow: inset 0 0 20px rgba(34, 224, 255, 0.18);
}
.brand-mark svg { width: 22px; height: 22px; }

.menu { display: flex; align-items: center; gap: 6px; }
.menu a {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.menu a:hover, .menu a[aria-current="page"] { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 22px; font-size: 0.88rem; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; padding: 92px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--text); }
.stat span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: -1; animation: float 14s ease-in-out infinite; }
.orb-1 { width: 420px; height: 420px; background: rgba(34, 224, 255, 0.28); top: -120px; right: -80px; }
.orb-2 { width: 360px; height: 360px; background: rgba(139, 123, 255, 0.24); bottom: -160px; left: -100px; animation-delay: -6s; }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(28px, -34px); } }

.terminal {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 40, 0.96), rgba(8, 13, 24, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow-cyan);
  overflow: hidden;
}
.terminal-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.terminal-title { margin-left: 10px; font-size: 0.78rem; color: var(--muted); font-family: ui-monospace, monospace; }
.terminal-body { padding: 22px; font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 0.86rem; }
.chat-line { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.chat-line .avatar { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; font-size: 0.75rem; font-weight: 700; }
.chat-line.bot .avatar { background: linear-gradient(135deg, var(--cyan), var(--mint)); color: #03121a; }
.chat-line.user { flex-direction: row-reverse; }
.chat-line.user .avatar { background: rgba(139, 123, 255, 0.24); color: var(--violet); border: 1px solid rgba(139, 123, 255, 0.4); }
.bubble { background: rgba(255, 255, 255, 0.045); border: 1px solid var(--line); padding: 11px 15px; border-radius: 14px; max-width: 78%; color: var(--text); }
.chat-line.user .bubble { background: rgba(34, 224, 255, 0.09); border-color: rgba(34, 224, 255, 0.25); }
.typing { display: inline-flex; gap: 4px; padding: 13px 15px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: 0.2s; } .typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.marquee { border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: rgba(255, 255, 255, 0.015); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll 32s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 1.05rem; color: var(--muted); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.marquee span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
@keyframes scroll { to { transform: translateX(-50%); } }

.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(34, 224, 255, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(34, 224, 255, 0.16), rgba(43, 240, 168, 0.1));
  border: 1px solid var(--line-strong);
  color: var(--cyan);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--cyan); }
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s; }
.card:hover .card-link svg { transform: translateX(4px); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-list { display: grid; gap: 16px; margin-top: 30px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); }
.feature-list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(43, 240, 168, 0.14); color: var(--mint); margin-top: 2px; }
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list li span { color: var(--muted); font-size: 0.96rem; }
.feature-list li b { display: block; color: var(--text); font-family: var(--font-display); font-size: 1rem; margin-bottom: 2px; }

.panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(17, 28, 48, 0.9), rgba(8, 13, 24, 0.9));
  padding: 34px;
  box-shadow: var(--shadow);
}
.metric-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.metric { padding: 20px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); }
.metric b { font-family: var(--font-display); font-size: 1.7rem; display: block; color: var(--cyan); }
.metric span { font-size: 0.82rem; color: var(--muted); }
.bar { height: 7px; border-radius: 100px; background: rgba(255, 255, 255, 0.07); overflow: hidden; margin-top: 14px; }
.bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--mint)); width: 0; transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1); }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface-solid); transition: transform 0.3s, border-color 0.3s; }
.video-card:hover { transform: translateY(-6px); border-color: var(--cyan); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; background-size: cover; background-position: center; }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4, 6, 12, 0.85)); }
.play {
  position: absolute; z-index: 2; inset: 0; margin: auto;
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(34, 224, 255, 0.92);
  color: #03121a;
  box-shadow: 0 0 0 10px rgba(34, 224, 255, 0.16);
  transition: transform 0.3s;
}
.video-card:hover .play { transform: scale(1.12); }
.play svg { width: 24px; height: 24px; margin-left: 3px; }
.video-card h3 { padding: 20px 22px 24px; font-size: 1.05rem; }

.cta-band {
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(34, 224, 255, 0.18), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(139, 123, 255, 0.16), transparent 60%),
    rgba(12, 19, 34, 0.9);
  padding: 64px;
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lead { margin: 0 auto 34px; }

.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: rgba(255, 255, 255, 0.02); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--cyan); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.02); margin-bottom: 16px; align-items: center; }
.info-card .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(34, 224, 255, 0.1); color: var(--cyan); border: 1px solid var(--line-strong); }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card b { font-family: var(--font-display); display: block; font-size: 0.95rem; }
.info-card a, .info-card span { color: var(--muted); font-size: 0.94rem; }
.info-card a:hover { color: var(--cyan); }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.84rem; color: var(--muted); font-family: var(--font-display); }
.field input, .field textarea, .field select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 224, 255, 0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-note { font-size: 0.8rem; color: var(--muted); }
.form-note a { color: var(--cyan); text-decoration: underline; }

.footer { border-top: 1px solid var(--line); padding: 68px 0 34px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 44px; }
.footer p { color: var(--muted); font-size: 0.92rem; margin-top: 16px; }
.footer h4 { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--cyan); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--muted); transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.socials a:hover { color: var(--cyan); border-color: var(--cyan); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; color: var(--muted); }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #25d366, #12b855);
  color: #fff;
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.8);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37, 211, 102, 0.6); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(1.7); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--cyan); color: #03121a; padding: 12px 20px; border-radius: 0 0 10px 0; font-family: var(--font-display); }
.skip:focus { left: 0; }

.breadcrumbs { font-size: 0.84rem; color: var(--muted); padding-top: 26px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs span { color: var(--cyan); }
.page-hero { padding: 44px 0 70px; }

@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .grid-cards, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 78px 0; }
  .cta-band { padding: 44px 26px; }
}

@media (max-width: 720px) {
  .menu {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(4, 6, 12, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .menu.open { transform: none; }
  .menu a { padding: 14px 16px; }
  .burger { display: block; }
  .nav-cta .btn { display: none; }
  .grid-cards, .video-grid, .metric-row, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .hero-stats { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
