/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #020617;
  color: #fff;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: transparent;
  flex-wrap: wrap;
}

.logo-container img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav a:hover {
  color: #38bdf8;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background: radial-gradient(circle at top, #1e3a8a, #020617);
  overflow: hidden;
}

.hero {

  justify-content: space-between;
}

.hero-image {
  width: 400px;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

.hero-content {
  max-width: 600px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #38bdf8, transparent);
  filter: blur(120px);
  opacity: 0.2;
  top: -100px;
  left: -100px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gradient {
  background: linear-gradient(90deg, #38bdf8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 20px;
  color: #94a3b8;
  font-size: 18px;
  max-width: 500px;
}

/* ================= BUTTON ================= */
.btn {
  margin-top: 30px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #38bdf8);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
  transition: 0.3s;
}

.hero-btn {
  width: fit-content;
  min-width: 220px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.4);
}

/* ================= SECTIONS ================= */
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
}

.text h2 {
  font-size: 40px;
}

.text p {
  color: #94a3b8;
  margin-top: 10px;
}

/* IMAGE BOX */
.visual {
  width: 420px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: float 6s ease-in-out infinite;
  transition: 0.4s;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual:hover {
  transform: scale(1.03);
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================= CTA ================= */
.cta {
  text-align: center;
  padding: 120px 20px;
}

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
.footer {
  position: relative;
  padding: 70px 80px 30px;

  background: linear-gradient(to right,
      rgba(2, 6, 23, 0.95),
      rgba(30, 58, 138, 0.7));

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Glow */
.footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #38bdf8, transparent);
  filter: blur(120px);
  opacity: 0.08;
  bottom: -100px;
  right: -100px;
}

/* LAYOUT */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* LOGO */
.footer-logo {
  height: 40px;
  margin-bottom: 12px;
}

/* BRAND TEXT */
.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  max-width: 260px;
}

/* HEADINGS */
.footer h4 {
  margin-bottom: 12px;
  font-size: 14px;
  color: #e2e8f0;
}

/* LINKS */
.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
}

/* CONTACT */
.footer-contact p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 6px;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 13px;
}

/* CONTACT ITEMS */
/* .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.3s;
} */

.contact-item:hover {
  color: #38bdf8;
}

/* ICON SIZE */
.contact-item svg {
  width: 16px;
  height: 16px;
}

/* LOGO CLICK EFFECT */
.footer-logo {
  height: 40px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-logo:hover {
  transform: scale(1.05);
}


/* CONTACT ITEMS */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.3s;

  word-break: break-word; /* prevents overflow */
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .footer-contact {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap; /* allows wrapping */
  }

  .contact-item span {
    width: 100%;
  }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer {
    padding: 60px 40px 25px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    padding: 0 40px;
  }

  .split {
    padding: 80px 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .nav {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .logo-container img {
    height: 32px;
  }

  .nav nav {
    gap: 15px;
  }

  .hero {
    padding: 40px 20px;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero p {
    font-size: 15px;
    margin: 15px auto;
  }

  .hero-btn {
    margin: 20px auto 0;
  }

  .split {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .split.reverse {
    flex-direction: column;
  }

  .visual {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .text h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
    margin-top: 30px;
  }
}

/* style for terms */

/* SUB HERO */
.sub-hero {
  padding: 100px 60px 60px;
  text-align: center;
  background: radial-gradient(circle at top, #1e3a8a, #020617);
}

.sub-hero h1 {
  font-size: 48px;
}

.sub-hero p {
  margin-top: 10px;
  color: #94a3b8;
}

/* LEGAL CONTENT */
.legal-container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARDS */
.legal-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.legal-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.legal-card h2 {
  margin-bottom: 10px;
  color: #38bdf8;
}

.legal-card p,
.legal-card li {
  color: #94a3b8;
  line-height: 1.6;
}

.legal-card ul {
  padding-left: 20px;
}

/* ACTIVE NAV */
.nav .active {
  color: #38bdf8;
}



/* support  */


/* SUPPORT PAGE */
.support-container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.support-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.support-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.support-card p,
.support-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.support-card ul {
  list-style: none;
  padding: 0;
}

/* ICON SIZE */
.support-card svg {
  width: 18px;
  height: 18px;
  stroke: #38bdf8;
}