﻿:root {
  --bg: #0a0f16;
  --bg-soft: #0f1722;
  --line: rgba(255, 255, 255, 0.08);
  --text: #e7edf7;
  --muted: #9fb2c6;
  --blue: #3b79ff;
  --blue-dark: #2755c8;
  --orange: #f2992e;
  --orange-dark: #c8751a;
  --card: rgba(20, 28, 40, 0.85);
  --glow: rgba(92, 133, 255, 0.25);
  --glow-orange: rgba(242, 153, 46, 0.25);
  font-size: 16px;
}

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

body {
  font-family: "Sora", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(60, 115, 255, 0.3), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255, 173, 89, 0.2), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(25, 38, 56, 0.8), transparent 50%),
    linear-gradient(180deg, #0a0f16 0%, #0c131d 45%, #0a0f16 100%);
  z-index: -2;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 120px
  );
  opacity: 0.2;
  z-index: -1;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(59, 121, 255, 0.85), rgba(14, 21, 33, 0.4));
  box-shadow: 0 0 20px rgba(59, 121, 255, 0.5);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.lede {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.download-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.compare-block {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 100%;
  margin: 1.5rem 0 0;
  width: 100%;
}

.compare-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(8, 12, 18, 0.65);
  background: rgba(10, 15, 22, 0.9);
}

.compare-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.compare-after {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 calc(100% - var(--slider)) 0 0);
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider);
  width: 2px;
  background: linear-gradient(180deg, rgba(59, 121, 255, 0.9), rgba(242, 153, 46, 0.9));
  transform: translateX(-1px);
  box-shadow: 0 0 12px rgba(59, 121, 255, 0.45);
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--slider);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(10, 15, 22, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
}

.compare-handle::before,
.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.8);
}

.compare-handle::before {
  left: 9px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-handle::after {
  right: 9px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(59, 121, 255, 0.35);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #151515;
  box-shadow: 0 15px 35px rgba(242, 153, 46, 0.35);
}

.hero-card {
  position: relative;
  align-self: end;
  justify-self: end;
  padding: 2rem;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(7, 12, 18, 0.65);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% 40% auto -40%;
  height: 140%;
  background: radial-gradient(circle, var(--glow), transparent 60%);
  opacity: 0.8;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.card-title {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--muted);
}

.card-value {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.4rem;
  margin: 0.75rem 0 1.5rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.card-meta strong {
  color: var(--text);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.chip {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(59, 121, 255, 0.15);
  color: var(--text);
  border: 1px solid rgba(59, 121, 255, 0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pillars {
  padding: 2.5rem 0 4rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.pillar {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(15, 22, 33, 0.7);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 121, 255, 0.45);
  box-shadow: 0 18px 40px rgba(12, 20, 34, 0.6), 0 0 24px rgba(59, 121, 255, 0.35);
}

.pillar h3 {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.pillar p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand-footer {
  margin-bottom: 0.6rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

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

.legal {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.75rem;
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

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

  .hero {
    padding-top: 4rem;
  }

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

  .btn {
    width: 100%;
  }

  .compare-frame {
    width: 100%;
  }
}
