:root {
  --bg: #050509;
  --bg-soft: #0a0911;
  --bg-elevated: #100d18;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --purple: #8b35ff;
  --purple-light: #bd7cff;
  --purple-dark: #4b13a8;
  --text: #f8f5ff;
  --muted: #b8b1c8;
  --muted-strong: #d8d1e7;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(189, 124, 255, 0.38);
  --shadow: 0 26px 90px rgba(139, 53, 255, 0.24);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.36);
  --shadow-premium: 0 32px 110px rgba(0, 0, 0, 0.42), 0 0 70px rgba(139, 53, 255, 0.16);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(139, 53, 255, 0.26), transparent 34rem),
    radial-gradient(circle at 88% 16%, rgba(189, 124, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 50% 58%, rgba(139, 53, 255, 0.07), transparent 38rem),
    linear-gradient(180deg, #08070d 0%, var(--bg) 46%, #030305 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.muted {
  border-block: 1px solid rgba(255, 255, 255, 0.075);
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 53, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.015);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 9, 0.84);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 124, 255, 0.62);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 0 32px rgba(139, 53, 255, 0.52);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 0 18px rgba(139, 53, 255, 0.34));
}

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

.nav-links a {
  padding: 10px 15px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(139, 53, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(189, 124, 255, 0.08);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 104px 0;
}

.page-hero {
  padding-top: 128px;
  padding-bottom: 84px;
}

.hero-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 72px;
  align-items: center;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.25rem, 7vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.section-heading h2,
.feature-copy h2,
.cta-panel h2,
.contact-details h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-text,
.page-hero p,
.text-block p,
.feature-copy p,
.solution-card p,
.feature-card p,
.info-panel p,
.contact-details p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-text {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
}

.text-block p {
  margin: 0 0 18px;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button-row.compact {
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 18px 48px rgba(139, 53, 255, 0.36);
}

.button.primary:hover {
  box-shadow: 0 24px 68px rgba(139, 53, 255, 0.48);
}

.button.secondary {
  color: var(--text);
  border-color: rgba(189, 124, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button.secondary:hover {
  border-color: rgba(189, 124, 255, 0.66);
  background: rgba(139, 53, 255, 0.12);
}

.hero-visual,
.product-shot,
.cta-panel {
  position: relative;
}

.hero-visual::before,
.product-shot::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -36px;
  z-index: -1;
  background: radial-gradient(circle, rgba(139, 53, 255, 0.32), transparent 64%);
  filter: blur(22px);
}

.dashboard-frame,
.product-shot,
.screen-image,
.info-panel,
.solution-card,
.feature-card,
.contact-form,
.contact-details,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}

.dashboard-frame,
.product-shot,
.cta-panel {
  box-shadow: var(--shadow-premium);
}

.dashboard-frame {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    #0d0a15;
}

.dashboard-topbar {
  display: flex;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--purple-light);
}

.dashboard-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
}

.metric-card,
.chart-panel,
.workflow-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 9, 0.72);
  padding: 20px;
}

.metric-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.metric-card strong {
  font-size: 1.1rem;
}

.chart-panel {
  grid-column: 1 / -1;
  height: 180px;
  display: flex;
  align-items: end;
  gap: 14px;
}

.chart-panel span {
  flex: 1;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(180deg, var(--purple-light), var(--purple-dark));
  box-shadow: 0 0 24px rgba(139, 53, 255, 0.22);
}

.workflow-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.workflow-list span {
  padding: 12px 10px;
  border-radius: var(--radius);
  background: rgba(139, 53, 255, 0.14);
  color: var(--muted-strong);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-card,
.feature-card,
.info-panel {
  min-height: 220px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.solution-card::before,
.feature-card::before,
.info-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 124, 255, 0.42), transparent);
  opacity: 0.7;
}

.feature-card {
  min-height: 190px;
}

.solution-card:hover,
.feature-card:hover,
.info-panel:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    var(--bg-elevated);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.34), 0 0 52px rgba(139, 53, 255, 0.16);
}

.solution-card h2,
.solution-card h3,
.feature-card h3,
.info-panel h2 {
  margin: 20px 0 12px;
  line-height: 1.15;
}

.solution-card p,
.feature-card p,
.info-panel p,
.contact-details p {
  margin: 0;
}

.solution-card .product-name {
  margin: -2px 0 10px;
  color: var(--purple-light);
  font-weight: 800;
}

.solution-card .button {
  margin-top: 24px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(189, 124, 255, 0.3);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-status {
  color: #fff;
  border-color: rgba(189, 124, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(139, 53, 255, 0.28);
  box-shadow: 0 0 28px rgba(139, 53, 255, 0.18);
}

.live {
  border-color: rgba(189, 124, 255, 0.42);
}

.product-feature {
  position: relative;
}

.product-feature::before {
  content: "";
  position: absolute;
  inset: 18% 0 auto;
  height: 60%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(139, 53, 255, 0.1), transparent);
}

.product-shot {
  overflow: hidden;
  padding: 14px;
}

.product-shot img,
.screen-image {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.screen-image {
  width: 100%;
}

.product-logo {
  width: min(170px, 58vw);
  height: auto;
  margin: 0 0 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(139, 53, 255, 0.22));
}

.mecho-spotlight-copy {
  position: relative;
}

.feature-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 9, 0.7);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.feature-showcase {
  display: grid;
  gap: 32px;
}

.feature-showcase-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}

.feature-showcase-item.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.feature-showcase-item.reverse .feature-showcase-copy {
  order: 2;
}

.feature-showcase-copy h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.feature-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-showcase-image {
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 9, 0.72);
  box-shadow: var(--shadow-premium);
}

.feature-showcase-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.contact-grid {
  align-items: start;
}

.contact-form,
.contact-details {
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-intro {
  margin-bottom: 12px;
}

.form-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.form-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.contact-form label {
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  color: var(--text);
  background: rgba(5, 5, 9, 0.82);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(216, 209, 231, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(189, 124, 255, 0.78);
  background: rgba(8, 7, 13, 0.96);
  box-shadow: 0 0 0 4px rgba(139, 53, 255, 0.16);
}

.contact-form button {
  margin-top: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 3, 6, 0.78);
  backdrop-filter: blur(16px);
}

.modal-backdrop.active {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 0%, rgba(139, 53, 255, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    var(--bg-elevated);
  box-shadow: var(--shadow-premium);
}

.modal-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.04;
}

.modal-copy {
  margin: 14px 0 24px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 124, 255, 0.46);
  background: rgba(139, 53, 255, 0.14);
}

.early-access-form {
  display: grid;
  gap: 14px;
}

.early-access-form label {
  color: var(--text);
  font-weight: 800;
}

.early-access-form input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  color: var(--text);
  background: rgba(5, 5, 9, 0.82);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.early-access-form input::placeholder {
  color: rgba(216, 209, 231, 0.5);
}

.early-access-form input:focus {
  border-color: rgba(189, 124, 255, 0.78);
  background: rgba(8, 7, 13, 0.96);
  box-shadow: 0 0 0 4px rgba(139, 53, 255, 0.16);
}

.early-access-form .button {
  margin-top: 12px;
}

.detail-list {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 9, 0.56);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.detail-list:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 124, 255, 0.36);
  background: rgba(139, 53, 255, 0.08);
}

.detail-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-list strong {
  display: block;
  margin-top: 4px;
}

.final-cta {
  position: relative;
}

.cta-panel {
  overflow: hidden;
  padding: 64px 52px;
  text-align: center;
}

.cta-panel .button {
  margin-top: 28px;
}

.cta-actions {
  justify-content: center;
}

.cta-actions .button {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  background: rgba(0, 0, 0, 0.38);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .contact-grid,
  .feature-showcase-item,
  .feature-showcase-item.reverse,
  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-showcase-item.reverse .feature-showcase-copy {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding: 88px 0;
  }

  .cards-grid,
  .solution-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, var(--max-width));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 66px 0 76px;
  }

  .page-hero {
    padding-top: 92px;
    padding-bottom: 62px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .section-heading h2,
  .feature-copy h2,
  .cta-panel h2,
  .contact-details h2 {
    line-height: 1.08;
  }

  .hero-text,
  .page-hero p,
  .text-block p,
  .feature-copy p,
  .solution-card p,
  .feature-card p,
  .info-panel p,
  .contact-details p {
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 7, 13, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 15px;
  }

  .cards-grid,
  .solution-list,
  .story-grid,
  .dashboard-body,
  .workflow-list {
    grid-template-columns: 1fr;
  }

  .chart-panel {
    height: 150px;
  }

  .dashboard-body,
  .dashboard-topbar {
    padding: 16px;
  }

  .metric-card,
  .chart-panel,
  .workflow-list {
    padding: 16px;
  }

  .solution-card,
  .feature-card,
  .info-panel,
  .feature-showcase-item {
    min-height: auto;
    padding: 24px;
  }

  .feature-showcase {
    gap: 24px;
  }

  .feature-showcase-image {
    padding: 10px;
  }

  .contact-form,
  .contact-details {
    padding: 24px;
  }

  .modal-panel {
    padding: 28px 24px;
  }

  .cta-panel {
    padding: 40px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12.5vw, 3.2rem);
  }

  .contact-form,
  .contact-details,
  .solution-card,
  .feature-card,
  .info-panel,
  .feature-showcase-item,
  .modal-panel {
    padding: 22px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
