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

:root {
  --title-gradient: linear-gradient(120deg, #c5a059, #e4bc7c);
  --primary-btn: linear-gradient(105deg, #c5a059, #b3873a);
  --card-bg: rgba(26, 26, 27, 0.9);
  --visual-bg: rgba(22, 18, 14, 0.88);
  --border-light: rgba(197, 160, 89, 0.38);
  --accent-glow: linear-gradient(135deg, #d4af37, #b8860b);
  --text-color: #f5e6d3;
  --heading-color: #ffe4b5;
  --text-muted: #d4b896;
  --accent-color: #c5a059;
  --btn-primary-text: #1a1a1b;
  --border-cta: #c5a059;
  --badge-bg: rgba(197, 160, 89, 0.16);
  --accent-soft: rgba(197, 160, 89, 0.24);
  --card-metric: rgba(26, 26, 27, 0.7);
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  color: var(--text-color);
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.16), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(155, 118, 34, 0.2), transparent 36%),
    radial-gradient(circle at 52% 86%, rgba(255, 221, 170, 0.08), transparent 38%),
    linear-gradient(120deg, #0f0c08 0%, #1a1410 45%, #120f0a 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 228, 181, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 228, 181, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

.hero-title {
  animation: fadeUp 1.1s ease forwards;
}

.hero-desc {
  animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card,
.hero-visual-card {
  position: relative;
  overflow: hidden;
}



.btn-primary-modern {
  position: relative;
  overflow: hidden;
  background: var(--primary-btn);
  border: none;
  padding: 12px 28px;
  border-radius: 100px;
 transition: transform 0.15s, filter 0.2s;
}

.btn-primary-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: 0.8s;
}

.btn-primary-modern:hover::after {
  left: 120%;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
}

.btn-secondary-modern {
  background: transparent;
  border: 1px solid var(--border-cta);
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-color);
  display: inline-block;
  text-decoration: none;
}

 transform: translateY(40px);
  transition: all 1s ease;
}

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

.mouse-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.mk-app {
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 32px 64px;
  position: relative;
  z-index: 1;
}

.mk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mk-logo-symbol {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
  font-family: 'Space Grotesk', monospace;
  color: #15120c;
}

.header-logo {
  width: 52px;
  height: 52px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h1 {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}

.logo-text p {
  font-size: 0.75rem;
  opacity: 0.78;
  color: var(--text-muted);
}

.cta-header .btn-outline-light {
  background: transparent;
  border: 1px solid var(--border-cta);
  border-radius: 100px;
  padding: 8px 18px;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-color);
  cursor: default;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  margin-bottom: 40px;
}

.hero-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--badge-bg);
  border: 1px solid var(--border-light);
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero-title {
  font-family: 'Space Grotesk', monospace;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.hero-title-gradient {
  background: var(--title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 88%;
  margin-bottom: 28px;
  color: var(--text-color);
}

.trust-badge {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-visual-card {
  background: var(--visual-bg);
  backdrop-filter: blur(14px);
  border-radius: 1.2rem;
  border: 1px solid var(--border-light);
  padding: 12px;
  box-shadow: 0 30px 40px -24px rgba(0, 0, 0, 0.55);
  color: var(--text-color);
}

.compact-console {
  max-width: 340px;
  justify-self: end;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 0.82rem;
}

.ai-indicator {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ai-dot {
  width: 9px;
  height: 9px;
  background: #30d158;
  border-radius: 50%;
  box-shadow: 0 0 8px #30d158;
}

.ai-status-text {
  font-size: 0.62rem;
}

.kpi-mini {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mini-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 8px;
  flex: 1;
  color: var(--text-color);
  font-size: 0.68rem;
}

.mini-trend {
  font-size: 0.58rem;
}

.trend-panel {
  background: rgba(0, 0, 0, 0.24);
  border-radius: 14px;
  padding: 8px;
}

.trend-title {
  display: flex;
  justify-content: space-between;
  font-size: 0.64rem;
  margin-bottom: 6px;
}

.trend-graph-wrap {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.14), rgba(0, 0, 0, 0));
  border: 1px solid rgba(197, 160, 89, 0.24);
  padding: 6px;
}

.trend-graph {
  width: 100%;
  height: 82px;
}

.trend-line {
  fill: none;
  stroke: #d7b26e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-area {
  fill: rgba(212, 175, 55, 0.22);
  stroke: none;
}

.trend-point {
  fill: #f6d58f;
  stroke: #fff2d2;
  stroke-width: 1.5;
}

.trend-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.58rem;
  color: var(--text-muted);
}

.console-note {
  margin-top: 8px;
  font-size: 0.6rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 7px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 40px 0 56px;
}

.product-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1px solid var(--border-light);
  padding: 28px;
  transition: all 0.2s;
  color: var(--text-color);
}

.product-badge {
  background: var(--accent-soft);
  border-radius: 40px;
  padding: 4px 12px;
  font-size: 0.7rem;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--text-color);
}

.product-badge-soft {
  background: var(--accent-soft);
}

.product-title {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Space Grotesk', monospace;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.product-copy {
  margin-bottom: 16px;
}

.product-btn {
  margin-top: 12px;
}

.feature-list {
  list-style: none;
  margin: 18px 0;
}

.feature-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-color);
}

.footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

body,
.product-card,
.hero-visual-card,
.btn-primary-modern,
.btn-secondary-modern {
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compact-console {
    max-width: 320px;
    justify-self: stretch;
  }

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

  .mk-app {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .mk-header {
    flex-direction: column;
    align-items: start;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .hero-desc {
    max-width: 100%;
  }
}
