:root {
  --bg: #0a0f1d;
  --bg-2: #101827;
  --panel: rgba(16, 24, 39, 0.78);
  --panel-solid: #121b2d;
  --text: #f4f8ff;
  --muted: #a9b7cc;
  --cyan: #00e5ff;
  --blue: #007bff;
  --violet: #7c3cff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 229, 255, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(0, 229, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0, 123, 255, 0.16), transparent 28%),
    linear-gradient(315deg, rgba(124, 60, 255, 0.14), transparent 32%),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.72;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 15, 29, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.55);
  border-radius: 8px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(124, 60, 255, 0.2));
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.28);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav a:hover {
  color: var(--cyan);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 9px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.is-active {
  color: #001018;
  background: var(--cyan);
}

.header-cta {
  padding: 0 16px;
  color: #001018;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.32);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: transparent;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding-top: 62px;
}

.hero-grid,
.split-section,
.contact-section,
.analytics-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  letter-spacing: 0.08em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 0.06em;
  line-height: 1.14;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

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

p,
span,
a,
button {
  font-family: "Inter", "Outfit", system-ui, sans-serif;
  font-weight: 400;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 1.12rem;
}

.hero-actions,
.store-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  border: 1px solid transparent;
  padding: 0 20px;
}

.btn-primary {
  color: #001018;
  background: linear-gradient(135deg, var(--cyan), #8cf4ff);
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.26);
}

.btn-secondary {
  border-color: rgba(0, 229, 255, 0.36);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  width: min(88vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(-18deg);
}

.phone-mockup {
  position: relative;
  width: min(320px, 78vw);
  padding: 14px;
  border: 1px solid rgba(0, 229, 255, 0.32);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.phone-top {
  width: 80px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.phone-screen,
.app-preview,
.chart-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 27, 45, 0.94), rgba(10, 15, 29, 0.9));
}

.phone-screen {
  min-height: 470px;
  padding: 18px;
}

.metric-strip,
.signal-card,
.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.metric-strip,
.signal-card {
  padding: 14px;
}

.metric-strip strong {
  color: var(--cyan);
}

.signal-card {
  justify-content: flex-start;
  margin-top: 14px;
}

.pulse {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(0, 229, 255, 0.12);
}

.signal-card small,
.data-panel small {
  display: block;
  color: var(--muted);
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 150px;
  margin: 22px 0;
}

.mini-chart span {
  border-radius: 8px 8px 0 0;
  background: linear-gradient(var(--cyan), var(--violet));
}

.console-line {
  margin-top: 10px;
  color: var(--muted);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86rem;
}

.console-line span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.data-panel {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(10, 15, 29, 0.88);
  box-shadow: var(--shadow);
}

.data-panel strong {
  display: block;
  color: var(--cyan);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 2rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.cards,
.tool-grid,
.pricing-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.two-col,
.pricing-grid,
.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.tool-card,
.price-card,
.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 0 0 rgba(0, 229, 255, 0);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.info-card,
.tool-card,
.price-card {
  padding: 28px;
}

.info-card:hover,
.tool-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.1);
}

.info-card i,
.tool-card i {
  color: var(--cyan);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 198px;
  min-height: 62px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #050913;
}

.store-badge i {
  font-size: 1.8rem;
}

.store-badge small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1;
}

.app-preview {
  padding: 22px;
}

.app-row {
  min-height: 70px;
  margin-bottom: 14px;
  padding: 16px;
}

.app-row:last-child {
  margin-bottom: 0;
}

.app-row.active {
  border-color: rgba(0, 229, 255, 0.48);
  background: rgba(0, 229, 255, 0.07);
}

.app-row i {
  color: var(--cyan);
}

.app-row span {
  flex: 1;
}

.app-row strong {
  color: var(--cyan);
}

.tool-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.tag.beta {
  color: #001018;
  background: var(--cyan);
}

.tag.soon {
  color: var(--text);
  background: rgba(124, 60, 255, 0.38);
}

.center-action {
  justify-content: center;
}

.analytics-section {
  align-items: stretch;
}

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

.stat {
  display: grid;
  align-content: center;
  min-height: 130px;
  padding: 24px;
}

.stat strong {
  color: var(--cyan);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 2.4rem;
  line-height: 1;
}

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

.chart-card {
  padding: 24px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.chart-header span {
  color: var(--muted);
  white-space: nowrap;
}

.growth-chart {
  width: 100%;
  height: auto;
}

.chart-grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 5;
  stroke-linecap: round;
}

.chart-points circle {
  fill: var(--bg);
  stroke: var(--cyan);
  stroke-width: 4;
}

.price-card strong {
  display: block;
  margin: 18px 0;
  color: var(--cyan);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2rem;
}

.price-card.featured {
  border-color: rgba(0, 229, 255, 0.5);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.08), rgba(18, 27, 45, 0.88));
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 132px;
  width: 1px;
  background: linear-gradient(var(--cyan), var(--violet));
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 44px;
  align-items: start;
}

.timeline-item span {
  color: var(--cyan);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
}

.timeline-item p {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.quote-section {
  text-align: center;
}

blockquote {
  max-width: 980px;
  margin: 0 auto;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1.35;
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--cyan);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 229, 255, 0.32);
  border-color: var(--cyan);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  margin: 10px 0 0;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.social-links a:hover,
.footer-links a:hover {
  color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    place-items: center;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav.is-open {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    justify-content: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 15, 29, 0.96);
  }

  .main-nav.is-open a {
    padding: 12px 4px;
  }

  .hero-grid,
  .split-section,
  .contact-section,
  .analytics-section,
  .tool-grid,
  .pricing-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .section {
    padding: 76px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .store-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .store-badge {
    width: 100%;
  }

  .data-panel {
    right: 8px;
    bottom: 18px;
  }

  .phone-mockup {
    width: min(300px, 92vw);
  }

  .chart-header {
    display: grid;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
