: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);
}

* {
  box-sizing: border-box;
}

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%;
}

.brand img {
  height: 58px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
}
.nav-list:hover{
	color:white;
}

.nav-button {
  background: var(--green);
  color: #03140b;

  padding: 12px 20px;

  border-radius: 999px;
  border: none;

  font-weight: 700;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-button:hover {
  background: var(--green-dark);

  transform: scaleX(1.05)
			 scaleY(1.05);
  color: white;

}

.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;
}

.primary {
  background: var(--green);
  color: #03140b;
}

.primary:hover {
  background: var(--green-dark);
  color: white;

  transform: scaleX(1.05)
			 scaleY(1.05);


}

.secondary {
  border: 1px solid var(--border);
}

.secondary:hover{
	transform:	scaleX(1.05)
				scaleY(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:
    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;
}

footer {
  padding: 34px 8%;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .site-header,
  nav,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 46px;
  }
}