/* Velora Systems — premium marketing (dark navy / electric blue) */
:root {
  --bg: #070b12;
  --surface: #101826;
  --surface-2: #0c1320;
  --text: #e8eef7;
  --muted: #8b9bb0;
  --border: #1e2a3c;
  --accent: #3d8bfd;
  --accent-hover: #2563eb;
  --accent-soft: rgba(61, 139, 253, 0.14);
  --ink: var(--text);
  --line: var(--border);
  --card: var(--surface);
  --hero-bg: #070b12;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.24), 0 12px 32px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.22);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.mkt {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.mkt-wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 11, 18, 0.82);
  border-bottom: 1px solid var(--border);
}
.mkt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.mkt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.mkt-brand img {
  height: 36px;
  width: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.mkt-brand span { font-size: 1.02rem; color: var(--text); }
.mkt-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mkt-nav a.mkt-link {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.mkt-nav a.mkt-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.mkt-langs {
  display: inline-flex;
  gap: 4px;
  margin-right: 4px;
}
.mkt-langs button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", inherit;
  letter-spacing: 0;
  line-height: 1.2;
  min-width: 40px;
}
.mkt-langs button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.mkt-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 8px 20px rgba(61, 139, 253, 0.22);
}
.mkt-btn-primary:hover { background: var(--accent-hover); }
.mkt-btn-ghost {
  background: transparent;
  border-color: rgba(232, 238, 247, 0.22);
  color: var(--text);
}
.mkt-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 238, 247, 0.35);
}
.mkt-btn-dark {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.mkt-btn-dark:hover {
  border-color: #2a3a52;
  background: #141e2e;
}
.mkt-btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.mkt-btn-outline:hover {
  border-color: #2a3a52;
  background: rgba(255, 255, 255, 0.04);
}
.mkt-btn-lg {
  padding: 14px 22px;
  font-size: 1rem;
  border-radius: 12px;
}

/* Hero */
.mkt-hero {
  background: var(--hero-bg);
  color: var(--text);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.mkt-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% 35%;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 139, 253, 0.16), transparent 68%);
  pointer-events: none;
}
.mkt-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mkt-hero-visual {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.mkt-hero-shot {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (max-width: 900px) {
  .mkt-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.mkt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(61, 139, 253, 0.28);
  color: #9ec5ff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.mkt-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.05rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
}
.mkt-hero p.lead {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.6;
}
.mkt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mkt-hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.mkt-hero-card h3 { margin: 0 0 12px; font-size: 1rem; }
.mkt-hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.mkt-hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
}
.mkt-hero-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sections */
.mkt-section { padding: 88px 0; }
.mkt-section.alt {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mkt-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  letter-spacing: -0.025em;
  color: #fff;
  font-weight: 700;
}
.mkt-section .sub {
  margin: 0 0 44px;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}
.mkt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mkt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.mkt-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(61, 139, 253, 0.22);
}
.mkt-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #fff;
}
.mkt-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mkt-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mkt-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.mkt-pillar strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}
.mkt-pillar span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Pricing */
.mkt-price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mkt-price .tag {
  display: inline-block;
  background: var(--accent-soft);
  color: #9ec5ff;
  border: 1px solid rgba(61, 139, 253, 0.28);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mkt-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .mkt-price-grid { grid-template-columns: 1fr; }
}
.mkt-price-note { color: var(--muted); font-size: 0.9rem; }
.mkt-price-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 8px 0 0;
}
.mkt-price--featured {
  border: 1px solid rgba(61, 139, 253, 0.55);
  box-shadow: 0 0 0 1px rgba(61, 139, 253, 0.18), var(--shadow);
  background: linear-gradient(180deg, rgba(61, 139, 253, 0.08) 0%, var(--surface) 42%);
}
.mkt-price .mkt-btn { margin-top: auto; }
.mkt-price h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  color: #fff;
}
.mkt-price .amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
  color: #fff;
}
.mkt-price .amount small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.mkt-price ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  flex: 1;
}
.mkt-price li {
  color: var(--muted);
  font-size: 0.95rem;
}
.mkt-price li::before {
  content: "• ";
  color: var(--accent);
  font-weight: 700;
}

/* Contact */
.mkt-contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.mkt-contact-card,
.mkt-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.mkt-contact-card a { color: var(--accent); }
.mkt-contact-card a:hover { color: #6ba8ff; }
.mkt-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.mkt-form input,
.mkt-form textarea,
.mkt-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: var(--bg);
  color: var(--text);
}
.mkt-form input:focus,
.mkt-form textarea:focus,
.mkt-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(61, 139, 253, 0.2);
}
.mkt-form textarea { min-height: 120px; resize: vertical; }
.mkt-form .hint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  margin-top: 8px;
}
.mkt-alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.mkt-alert.ok {
  background: rgba(2, 122, 72, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(110, 231, 183, 0.25);
}
.mkt-alert.err {
  background: rgba(180, 35, 24, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(252, 165, 165, 0.25);
}

/* Legal */
.mkt-legal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin: 40px auto;
}
.mkt-legal h1 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  color: #fff;
}
.mkt-legal .meta {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.92rem;
}
.mkt-legal h2 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  color: #fff;
}
.mkt-legal p,
.mkt-legal li { color: var(--muted); }
.mkt-legal ul { padding-left: 1.2rem; }

/* Footer */
.mkt-footer {
  background: #05080f;
  color: var(--muted);
  padding: 48px 0 32px;
  margin-top: 0;
  border-top: 1px solid var(--border);
}
.mkt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.mkt-footer strong {
  color: #fff;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.mkt-footer a { color: var(--muted); }
.mkt-footer a:hover { color: var(--accent); }
.mkt-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}
.mkt-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #5f7088;
}

@media (max-width: 900px) {
  .mkt-hero-grid,
  .mkt-contact,
  .mkt-footer-grid,
  .mkt-grid-3,
  .mkt-pillars {
    grid-template-columns: 1fr;
  }
  .mkt-nav .mkt-link-hide-sm { display: none; }
  .mkt-hero { padding: 56px 0 64px; }
  .mkt-section { padding: 64px 0; }
}

/* Screenshots gallery */
.mkt-shots {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .mkt-shots { grid-template-columns: 1fr; }
}
.mkt-shot {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.mkt-shot--wide { grid-column: 1 / -1; }
@media (min-width: 901px) {
  .mkt-shot--wide:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .mkt-shot--wide:not(:first-child) {
    grid-column: auto;
    grid-row: auto;
  }
}
.mkt-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: var(--bg);
}
.mkt-shot--wide:first-child img {
  aspect-ratio: 16 / 11;
  min-height: 280px;
}
.mkt-shot figcaption {
  padding: 10px 14px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* Feature + screenshot side-by-side */
.mkt-feature-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  margin: 44px 0 56px;
}
.mkt-feature-row--flip { direction: rtl; }
.mkt-feature-row--flip > * { direction: ltr; }
.mkt-feature-copy { padding: 8px 4px 8px 0; }
.mkt-feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(61, 139, 253, 0.28);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.mkt-feature-copy h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.mkt-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 38ch;
}
.mkt-feature-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.mkt-feature-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mkt-grid-3--after { margin-top: 28px; }
.mkt-card-thumb {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 900px) {
  .mkt-feature-row,
  .mkt-feature-row--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 16px;
    margin: 32px 0;
  }
}
