/* Global Reset & Fonts */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header nav a {
  margin-left: 1.5rem;
  font-weight: 600;
  transition: color 0.3s;
}
.header nav a:hover {
  color: #ff6a00;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ff6a00, #ee0979, #7928ca);
  color: #fff;
  animation: gradientShift 10s ease infinite;
  background-size: 300% 300%;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  max-width: 700px;
  margin: 1rem auto 2rem;
  font-size: 1.2rem;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  color: #fff;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,106,0,0.6);
}
.btn-outline {
  border: 2px solid #fff;
  margin-left: 1rem;
}
.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Features */
.features {
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.05);
}
.features h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
}
.feature {
  background: rgba(255,255,255,0.08);
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Commission Section */
.commission {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #7928ca, #ff0080, #ff6a00);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}
.commission h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.commission .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
}
.commission-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}
.commission-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.commission-list .icon {
  font-size: 2rem;
  margin-right: 1rem;
}
.commission-list h3 {
  margin: 0;
  font-size: 1.3rem;
}
.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #111;
  padding: 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
}
.footer .logo {
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
