:root {
  --bg: #07080d;
  --bg2: #0f1118;
  --card: rgba(18, 20, 28, 0.85);

  --border: rgba(255, 255, 255, 0.08);

  --purple: #8b5cf6;
  --purple2: #6d28d9;

  --green: #22c55e;
  --green2: #16a34a;

  --text: #ffffff;
  --muted: #a8acb9;

  --radius: 20px;

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;

  background: var(--bg);

  color: var(--text);

  overflow-x: hidden;

  min-height: 100vh;
}

.background {
  position: fixed;

  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(139, 92, 246, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(34, 197, 94, 0.14),
      transparent 35%
    ),
    linear-gradient(180deg, #07080d, #090b12);

  z-index: -2;
}

body::before {
  content: "";

  position: fixed;

  inset: 0;

  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.02),
    transparent
  );

  pointer-events: none;

  z-index: -1;
}

/* ====================== */

header {
  position: sticky;

  top: 0;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 20px 7%;

  background: rgba(10, 10, 16, 0.72);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  z-index: 999;
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 2rem;

  font-weight: 800;

  color: white;

  letter-spacing: -1px;
}

.logo span {
  color: var(--green);
}

nav {
  display: flex;

  gap: 35px;
}

nav a {
  text-decoration: none;

  color: #cfd2da;

  font-weight: 600;

  transition: 0.3s;

  position: relative;
}

nav a:hover {
  color: white;
}

nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: linear-gradient(90deg, var(--green), var(--purple));

  transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.wallet-btn {
  border: none;

  padding: 15px 28px;

  border-radius: 999px;

  font-weight: 700;

  cursor: pointer;

  color: white;

  background: linear-gradient(135deg, var(--green), var(--purple));

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.25);
}

.wallet-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.35);
}

/* ====================== */

main {
  width: min(1300px, 92%);

  margin: auto;
}

/* ====================== */

.hero {
  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  gap: 70px;

  align-items: center;

  padding: 90px 0;
}

.badge {
  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  background: #151826;

  border: 1px solid rgba(34, 197, 94, 0.25);

  color: #8ef3b1;

  font-size: 0.9rem;

  margin-bottom: 22px;
}

.hero h2 {
  font-size: 4rem;

  line-height: 1.1;

  margin-bottom: 22px;

  background: linear-gradient(90deg, white, #b59cff, #78ffb1);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--muted);

  font-size: 1.08rem;

  line-height: 1.8;

  max-width: 700px;

  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;

  gap: 18px;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;

  padding: 15px 30px;

  border-radius: 15px;

  font-weight: 700;

  transition: 0.3s;
}

.primary-btn {
  background: linear-gradient(135deg, var(--green), var(--purple));

  color: white;
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: white;
}

.secondary-btn:hover {
  background: #171a27;
}

.hero-card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 30px;

  backdrop-filter: blur(20px);

  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-bottom: 20px;
}

.status {
  display: flex;

  justify-content: space-between;

  padding: 16px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status strong {
  color: var(--green);
}

/* ====================== */

.stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  margin-bottom: 90px;
}

.stat-card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 18px;

  padding: 30px;

  text-align: center;

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-5px);

  border-color: rgba(34, 197, 94, 0.3);
}

.stat-card h2 {
  font-size: 2.3rem;

  color: var(--green);

  margin-bottom: 10px;
}

.stat-card p {
  color: var(--muted);
}

/* ====================== */

.features {
  padding-bottom: 80px;
}

.features h2 {
  text-align: center;

  font-size: 2.6rem;

  margin-bottom: 45px;
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.feature-card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 30px;

  transition: 0.35s;
}

.feature-card:hover {
  transform: translateY(-6px);

  border-color: rgba(139, 92, 246, 0.4);
}

.feature-card h3 {
  margin-bottom: 15px;

  font-size: 1.3rem;
}

.feature-card p {
  color: var(--muted);

  line-height: 1.7;
}

/* ====================== */

.launchpad {
  padding: 60px 0 100px;
}

.card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 45px;

  backdrop-filter: blur(20px);

  box-shadow: var(--shadow);
}

.card h2 {
  margin-bottom: 12px;
}

.section-desc {
  color: var(--muted);

  margin-bottom: 35px;
}

form {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

.row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 22px;
}

.input-group {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

label {
  font-size: 0.92rem;

  font-weight: 600;

  color: #d5d7de;
}

input,
textarea {
  width: 100%;

  padding: 16px 18px;

  border-radius: 14px;

  background: #131621;

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: white;

  outline: none;

  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: var(--green);

  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

textarea {
  resize: vertical;

  min-height: 130px;
}
textarea {
  resize: vertical;

  min-height: 130px;
}

/* ====================== */
/* Authority Options */
/* ====================== */

.authority-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.checkbox {
  background: #131621;

  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 20px;

  border-radius: 16px;

  transition: 0.3s;
}

.checkbox:hover {
  border-color: rgba(139, 92, 246, 0.45);

  transform: translateY(-3px);
}

.checkbox label {
  display: flex;

  align-items: center;

  gap: 12px;

  cursor: pointer;

  color: white;
}

.checkbox input {
  width: 18px;

  height: 18px;

  accent-color: var(--green);
}

/* ====================== */
/* Calculator */
/* ====================== */

.calculator {
  margin-top: 25px;

  background: #0d1018;

  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 30px;

  border-radius: 20px;
}

.calculator h3 {
  margin-bottom: 25px;

  font-size: 1.4rem;
}

.fee {
  display: flex;

  justify-content: space-between;

  padding: 15px 0;

  color: #d8dae2;
}

.fee span:last-child {
  font-weight: 700;

  color: white;
}

hr {
  border: none;

  height: 1px;

  background: rgba(255, 255, 255, 0.08);

  margin: 15px 0;
}

.total {
  font-size: 1.3rem;
}

.total span:last-child {
  color: var(--green);
}

/* ====================== */
/* Create Button */
/* ====================== */

.create-btn {
  margin-top: 25px;

  width: 100%;

  padding: 18px;

  border: none;

  border-radius: 16px;

  font-size: 1.1rem;

  font-weight: 800;

  cursor: pointer;

  color: white;

  background: linear-gradient(135deg, var(--green), var(--purple));

  transition: 0.35s;

  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.25);
}

.create-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 55px rgba(139, 92, 246, 0.4);
}

/* ====================== */
/* Roadmap */
/* ====================== */

.roadmap {
  padding: 50px 0 100px;
}

.roadmap h2 {
  text-align: center;

  font-size: 2.6rem;

  margin-bottom: 45px;
}

.roadmap-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.roadmap-card {
  background: var(--card);

  border: 1px solid var(--border);

  padding: 30px;

  border-radius: 20px;

  transition: 0.35s;
}

.roadmap-card:hover {
  transform: translateY(-5px);

  border-color: rgba(139, 92, 246, 0.4);
}

.roadmap-card h3 {
  margin-bottom: 15px;
}

.roadmap-card p {
  color: var(--muted);

  line-height: 1.6;
}

.roadmap-card.complete {
  border-color: rgba(34, 197, 94, 0.35);
}

/* ====================== */
/* Footer */
/* ====================== */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding: 70px 7% 30px;

  background: #05060a;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 40px;
}

.footer-grid h2 {
  font-size: 2rem;

  margin-bottom: 15px;
}

.footer-grid span {
  color: var(--green);
}

.footer-grid h3 {
  margin-bottom: 20px;
}

.footer-grid p {
  color: var(--muted);

  line-height: 1.7;
}

.footer-grid a {
  display: block;

  text-decoration: none;

  color: #bfc3cf;

  margin-bottom: 12px;

  transition: 0.3s;
}

.footer-grid a:hover {
  color: var(--green);
}

.copyright {
  text-align: center;

  margin-top: 50px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #777b88;
}

/* ====================== */
/* Toast Notifications */
/* ====================== */

.toast-container {
  position: fixed;

  top: 25px;

  right: 25px;

  display: flex;

  flex-direction: column;

  gap: 15px;

  z-index: 9999;
}

.toast {
  padding: 18px 25px;

  border-radius: 15px;

  background: #151823;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: var(--shadow);

  animation: slideIn 0.3s;
}

.toast.success {
  border-color: rgba(34, 197, 94, 0.5);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.5);
}

.toast.info {
  border-color: rgba(139, 92, 246, 0.5);
}

/* ====================== */
/* Wallet Connected */
/* ====================== */

.wallet-connected {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
}

/* ====================== */
/* Scrollbar */
/* ====================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #07080d;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple), var(--green));

  border-radius: 999px;
}

/* ====================== */
/* Animations */
/* ====================== */

@keyframes slideIn {
  from {
    opacity: 0;

    transform: translateX(50px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.hero-left,
.hero-right,
.feature-card,
.stat-card,
.card {
  animation: fadeUp 0.7s ease;
}

/* ====================== */
/* Responsive */
/* ====================== */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero p {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  header {
    flex-direction: column;

    gap: 20px;
  }

  nav {
    gap: 18px;

    flex-wrap: wrap;

    justify-content: center;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .authority-grid {
    grid-template-columns: 1fr;
  }

  .stats,
  .feature-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wallet-btn {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    text-align: center;
  }
}
/* ====================== */
/* File Upload Styling */
/* ====================== */

input[type="file"] {
  background: #131621;

  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 12px;

  border-radius: 14px;

  color: #a8acb9;

  cursor: pointer;
}

input[type="file"]::file-selector-button {
  background: linear-gradient(135deg, var(--green), var(--purple));

  border: none;

  color: white;

  padding: 10px 18px;

  border-radius: 10px;

  font-weight: 700;

  cursor: pointer;

  margin-right: 15px;

  transition: 0.3s;
}

input[type="file"]::file-selector-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

input[type="file"]:hover {
  border-color: rgba(34, 197, 94, 0.45);
}

input[type="file"]:focus {
  outline: none;

  border-color: var(--green);

  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}
select {
  width: 100%;
  padding: 16px 18px;
  background: #131621;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
  outline: none;
  transition: 0.3s;
  cursor: pointer;
}

select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

select option {
  background: #131621;
  color: #fff;
}
/* FAQ */

.faq-item {
  cursor: pointer;
  transition: 0.35s;
}

.faq-item:hover {
  border-color: rgba(34, 197, 94, 0.35);
  transform: translateY(-4px);
}

.faq-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}
/* ====================== */
/* Privacy / Terms */
/* ====================== */

.policy-section {
  background: rgba(18, 22, 32, 0.75);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 18px;

  padding: 28px;

  margin-bottom: 24px;

  transition: 0.3s;

  backdrop-filter: blur(12px);
}

.policy-section:hover {
  border-color: rgba(34, 197, 94, 0.35);

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.policy-section h2 {
  font-size: 1.45rem;

  margin-bottom: 15px;

  color: white;
}

.policy-section p {
  color: var(--muted);

  font-size: 1rem;

  line-height: 1.8;
}
.pool-card{

margin-top:35px;

padding:30px;

border-radius:20px;

background:rgba(18,22,32,.85);

border:1px solid rgba(255,255,255,.08);

animation:fadeUp .5s;

}

.pool-card h2{

margin-bottom:25px;

color:var(--green);

}

.pool-row{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:1px solid rgba(255,255,255,.08);

}

.pool-row:last-of-type{

margin-bottom:25px;

}
.support-links{

margin-top:18px;

font-size:1rem;

line-height:1.8;

color:var(--muted);

}

.support-links a{

color:var(--green);

text-decoration:none;

font-weight:600;

transition:.3s;

position:relative;

}

.support-links a::after{

content:"";

position:absolute;

left:0;

bottom:-2px;

width:0;

height:2px;

background:linear-gradient(90deg,var(--green),var(--purple));

transition:.3s;

}

.support-links a:hover{

color:#fff;

}

.support-links a:hover::after{

width:100%;

}