:root {
  --bg: #020403;
  --panel: #0b1218;
  --panel-light: #111d27;
  --text: #f8fafc;
  --muted: #94a3b8;
  --navy: #192d3a;
  --green: #20c76a;
  --green-dark: #16a85a;
  --border: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
   scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(32, 199, 106, 0.18), transparent 34%),
    radial-gradient(circle at top left, rgba(25, 45, 58, 0.55), transparent 38%),
    var(--bg);
  color: var(--text);
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  position: relative;
  z-index: 100;
  
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(2, 4, 3, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 58px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
}

.nav-list {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-button {
  background: var(--green);
  color: #03140b;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.nav-button:hover {
  background: var(--green-dark);
  color: white;
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

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

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

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

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 70px 8%;
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  margin: 14px 0 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 24px;
}

.hero-text {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 660px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.primary {
  background: var(--green);
  color: #03140b;
}

.primary:hover {
  background: var(--green-dark);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(32, 199, 106, 0.35);
}

.secondary {
  border: 1px solid var(--border);
}

.secondary:hover {
  transform: scale(1.05);
}

.small-note {
  color: var(--muted);
  margin-top: 18px;
}

.small-note strong,
.discount strong {
  color: var(--green);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  perspective-origin: left center;
}

.hero-screenshot {
  width: 100%;
  max-width: 950px;
  height: auto;
  transform:
    scaleX(0.9)
    rotateY(-14deg);
  transform-origin: right center;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45));
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-screenshot:hover {
  transform:
    scaleX(1)
    rotateY(0deg);
  filter: drop-shadow(0 45px 90px rgba(0, 0, 0, 0.5));
}

.features,
.compliance,
.pricing {
  padding: 95px 8%;
}

.features {
  background: rgba(255, 255, 255, 0.03);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-grid article,
.compliance,
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-grid article {
  padding: 30px;
}

.feature-grid p,
.compliance p,
.pricing-card p {
  color: var(--muted);
  line-height: 1.7;
}

.compliance {
  max-width: 1100px;
  margin: 95px auto;
}

.pricing-card {
  max-width: 650px;
  margin: auto;
  text-align: center;
  padding: 52px;
}

.price {
  font-size: 4rem;
  color: var(--text) !important;
  font-weight: 900;
  margin: 10px 0;
}

.discount {
  font-size: 1.1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 8%;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-right {
  display: flex;
  gap: 24px;
}

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

.footer-right a:hover {
  color: var(--green);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 8% 120px;
  min-height: calc(100vh - 230px);
}

.legal-page h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-page ul {
  margin-left: 20px;
}

.legal-page a {
  color: var(--green);
}

.last-updated {
  color: var(--muted);
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding: 20px 8%;
  }

  .brand img {
    height: 48px;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;

    top: calc(100% + 12px);
    left: 8%;
    right: 8%;

    flex-direction: column;
    align-items: stretch;
    gap: 14px;

    padding: 20px;

    background: rgba(2, 4, 3, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    z-index: 200;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 8%;
  }

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

  .hero-screenshot {
    transform: none;
    max-width: 100%;
  }

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

  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}