:root {
  --bg: #0b1020;
  --bg-soft: #111831;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-border: rgba(148, 163, 184, 0.16);
  --text: #e5eefc;
  --muted: #98a7c2;
  --muted-2: #6f7f9b;
  --accent: #7c3aed;
  --accent-2: #4f46e5;
  --accent-soft: rgba(124, 58, 237, 0.16);
  --success: #22c55e;
  --warning: #f59e0b;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.42);
  --container: 1180px;
  --border: 1px solid var(--panel-border);
}

* { box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 60px;
}
body {
  top: 0 !important;
  margin: 0 !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.42), transparent 28%),
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.38), transparent 24%),
    linear-gradient(to top, #0b1020 0%, #090d19 100%);
}

.goog-te-banner-frame {
  display: none !important;
}

.skiptranslate {
  display: none !important;
}

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

.container { 
  width: min(var(--container), calc(100% - 2rem)); 
  margin: 0 auto; 
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .9rem;
  border: var(--border);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(14px);
  color: #dbe7ff;
  font-size: .9rem;
  letter-spacing: .01em;
  width: fit-content;
}

.dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #86efac);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse 1.6s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    transform: scale(1.15);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(9, 13, 25, 0.58);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

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

.nav-actions {
  display: flex;
  gap: 0.5em;
}

.lang-switch {
  position: relative;
  display: inline-block;
}

.lang-switch select {
  appearance: none;

  padding: 1rem 1.05rem;

  font-weight: 600;

  color: var(--text);

  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);

  border-radius: 999px;

  backdrop-filter: blur(10px);

  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch select:hover {
  border-color: rgba(255,255,255,0.25);
}

.lang-switch select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79,70,229,0.25);
}

.lang-switch::after {
  content: "▾";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
  opacity: 0.7;
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 14px;
  background: white;
  box-shadow: 0 16px 30px rgba(79, 70, 229, 0.35);
  position: relative;
  flex: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: .95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.33);
  white-space: nowrap;
}

.hero {
  padding: 5.5rem 0 4rem;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}
h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .95;
  letter-spacing: -0.06em;
  margin: 1rem 0 1.1rem;
  max-width: 12ch;
}
.subtitle {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 400;
  max-width: 62ch;
  margin: 0 0 1.6rem;
}
ul.subtitle {
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.28);
}
.button-secondary {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.18);
  color: var(--text);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.badge {
  padding: .55rem .82rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: #dbe7ff;
  font-size: .9rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(17, 24, 49, 0.98), rgba(10, 14, 26, 0.92));
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.26), transparent 30%),
              radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.2), transparent 26%);
  pointer-events: none;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  position: relative;
}
.card-top strong { font-size: .96rem; }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #baf7cf;
  font-size: .85rem;
  white-space: nowrap;
}
.dashboard {
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
  position: relative;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.mini-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  padding: 1rem;
  min-height: 130px;
}
.mini-card h3 {
  margin: 0 0 0.6em;
  font-size: .92rem;
  color: #dbe7ff;
}
.mini-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.stat {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .85rem;
}
.stat strong {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}
.trend {
  color: #baf7cf;
  font-size: .88rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: .25rem .5rem;
  border-radius: 999px;
}
.list {
  display: grid;
  gap: .75rem;
  margin-top: .8rem;
}
.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .85rem;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(148, 163, 184, 0.08);
  font-size: .9rem;
  color: var(--muted);
}
.chip {
  padding: .3rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  color: white;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(79, 70, 229, 0.9));
}
.chart {
  height: 130px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.14), rgba(124, 58, 237, 0.04)),
    linear-gradient(90deg, transparent 0 18%, rgba(148,163,184,0.08) 18% 19%, transparent 19% 40%, rgba(148,163,184,0.08) 40% 41%, transparent 41% 62%, rgba(148,163,184,0.08) 62% 63%, transparent 63% 100%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  position: relative;
  overflow: hidden;
}
.chart::after {
  content: "";
  position: absolute;
  inset: 0% 0% 0% 0%;
  border-radius: 0 0 0 22px;
  clip-path: polygon(
    0 85%,   /* start low */
    12% 60%, /* rise */
    24% 45%, /* peak 1 */
    36% 55%, /* slight drop */
    48% 75%, /* main dip */
    60% 65%, /* recovery */
    72% 40%, /* strong rise */
    84% 25%, /* higher */
    100% 10%,/* highest peak */
    100% 100%,
    0 100%
  );
  background: linear-gradient(180deg, rgba(124, 58, 237, 1), transparent 100%);
  opacity: .95;
}

section {
  padding: 6rem 0 0;
}
.section-heading {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 66ch;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 1rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.card {
  background: var(--panel);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.card h3 { margin: .1rem 0 .55rem; font-size: 1.08rem; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); }
.icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(124, 58, 237, 0.26);
  color: #e8ddff;
  font-weight: 700;
  margin-bottom: .95rem;
}

.feature {
  display: grid;
  gap: .8rem;
}
.feature .meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #dbe7ff;
  font-weight: 600;
  font-size: .92rem;
}
.bullets {
  display: grid;
  gap: .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bullets li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: var(--muted);
}
.check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  flex: none;
  margin-top: .14rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: .42rem;
  top: .22rem;
  width: .32rem;
  height: .58rem;
  border-right: 2px solid #baf7cf;
  border-bottom: 2px solid #baf7cf;
  transform: rotate(40deg);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 3.6rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.28);
}
.step h3 { margin: 0 0 .45rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.callout {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(79, 70, 229, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.callout .eyebrow { margin-bottom: 1em; }
.callout h3 { margin-top: 0; }
.pricing {
  display: grid;
  gap: 1rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.price-row:last-child { border-bottom: 0; padding-bottom: 0; }
.price-row strong { display: block; margin-bottom: .18rem; }
.price-row span { color: var(--muted); font-size: .92rem; }
.price-tag {
  font-size: 1.1rem;
  white-space: nowrap;
  color: #dbe7ff;
}

#contact {
	padding: 3rem 0;
}

.footer-cta {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.3), transparent 28%),
    linear-gradient(180deg, rgba(17, 24, 49, 0.96), rgba(9, 13, 25, 0.96));
  border: var(--border);
  border-radius: 32px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-cta h2 { margin: 0 0 .35rem; }
.footer-cta p { margin: 0; color: var(--muted); max-width: 62ch; }

footer {
  padding: 0 0 2rem;
  color: var(--muted-2);
  font-size: .95rem;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding-top: 1.1rem;
}

@media (max-width: 980px) {
  .hero-grid, .split, .grid-3, .grid-2, .process { grid-template-columns: 1fr; }
  h1 { max-width: 100%; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .nav-actions { width: 100%; }
  .nav-actions > * { flex: 1 }
}

@media (max-width: 640px) {
  .hero { padding-top: 3.4rem; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .card, .callout, .footer-cta { padding: 1rem; }
  .button, .nav-cta { width: 100%; }
  .hero-actions { flex-direction: column; }
  .nav-links { gap: .9rem; }
  .footer-cta-inner { align-items: flex-start; }
}

