* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  background: #101827;
  color: #f8fafc;
}

.top {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.95), rgba(245, 158, 11, 0.75)),
    linear-gradient(45deg, #111827, #1e293b);
  color: #101827;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

.page-head {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #101827;
}

nav {
  max-width: 1100px;
  margin: auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

nav a {
  color: #101827;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 800;
}

.intro {
  max-width: 900px;
  margin: 90px auto 0;
  padding: 0 24px;
}

.intro h1 {
  font-size: 56px;
  max-width: 760px;
  line-height: 1.05;
  margin: 0 0 20px;
}

.intro p {
  max-width: 670px;
  font-size: 19px;
  line-height: 1.7;
}

main {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 24px;
}

.feature {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.feature h2 {
  color: #facc15;
}

.feature p {
  line-height: 1.8;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.tile {
  background: #0f172a;
  border-radius: 18px;
  padding: 26px;
  border-top: 5px solid #facc15;
}

.tile h3 {
  color: #facc15;
}

.tile p {
  line-height: 1.7;
  color: #cbd5e1;
}

.policy-wrap {
  max-width: 900px;
}

.policy-box {
  background: #1e293b;
  border-radius: 24px;
  padding: 36px;
  border-left: 7px solid #facc15;
}

.policy-box h1,
.policy-box h2 {
  color: #facc15;
}

.policy-box p {
  color: #e2e8f0;
  line-height: 1.8;
}

footer {
  background: #020617;
  color: #cbd5e1;
  text-align: center;
  padding: 24px;
}

@media (max-width: 800px) {
  nav {
    flex-direction: column;
    gap: 14px;
  }

  .intro {
    margin-top: 55px;
  }

  .intro h1 {
    font-size: 38px;
  }

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