@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");
.intro {
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;

  overflow: hidden;
}

.intro-logo-image {
  width: 75px;
  height: 75px;

  object-fit: contain;
}

/* Dark Overlay */

.intro-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(4px);
}

.intro-card {
  width: min(520px, 90%);

  padding: 70px 50px;

  /* border-radius:30px; */

  text-align: center;

  position: relative;

  z-index: 2;

  animation: cardAppear 1s ease;
}

.intro-title {
  margin-top: 10px;

  font-size: 4rem;

  font-weight: 800;

  letter-spacing: 6px;

  text-transform: uppercase;

  background: linear-gradient(90deg, #ffffff, #60a5fa, #38bdf8);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-subtitle {
  margin-top: 20px;

  color: #d7d7d7;

  font-size: 1.05rem;

  letter-spacing: 1px;
}

.loading-line {
  width: 100%;

  height: 5px;

  margin-top: 45px;

  background: linear-gradient(90deg, #ffffff, #ffffff);

  box-shadow: 0 0 25px rgba(56, 189, 248, 0.7);
}

@keyframes cardAppear {
  from {
    opacity: 0;

    transform: translateY(50px) scale(0.9);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);
  }
}

@keyframes logoGlow {
  0% {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
  }

  50% {
    box-shadow: 0 0 45px rgba(56, 189, 248, 0.8);
  }

  100% {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
  }
}

@media (max-width: 768px) {
  .intro-card {
    padding: 50px 25px;
  }

  .intro-title {
    font-size: 2.8rem;

    letter-spacing: 3px;
  }

  .intro-logo-image {
    width: 80px;
    height: 80px;

    font-size: 40px;
  }

  .intro-subtitle {
    font-size: 0.95rem;
  }
}
.login-page {
  width: 100%;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px 20px;
}

.login-card {
  width: min(460px, 92%);

  padding: 55px 45px;

  border-radius: 0px !important;

  text-align: center;

  animation: loginAppear 0.8s ease;
}

.login-title {
  font-size: 2.6rem;

  color: #ffffff;

  margin-bottom: 10px;

  font-weight: 700;
}

.login-subtitle {
  color: #cbd5e1;

  margin-bottom: 40px;

  font-size: 1rem;
}

.input-wrapper {
  width: 100%;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 16px 18px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: 0.35s;
}

.input-wrapper:hover {
  border-color: rgba(96, 165, 250, 0.4);
}

.input-wrapper:focus-within {
  border-color: #60a5fa;

  box-shadow: 0 0 20px rgba(96, 165, 250, 0.35);
}

.input-icon {
  color: #60a5fa;

  font-size: 20px;
}

.input-wrapper input {
  flex: 1;

  background: transparent;

  border: none;

  outline: none;

  color: #fff;

  font-size: 1rem;
}

.input-wrapper input::placeholder {
  color: #9ca3af;
}

.login-btn {
  margin-top: 35px;

  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 12px;

  padding: 16px;

  background: #2563eb;

  color: #fff;

  font-size: 1rem;

  font-weight: 600;

  transition: 0.35s;
}

.login-btn:hover {
  color: #2563eb;
  background-color: white;
}

.login-btn svg {
  transition: 0.3s;
}

.login-btn:hover svg {
  transform: translateX(6px);
}

@keyframes loginAppear {
  from {
    opacity: 0;

    transform: translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .login-card {
    padding: 40px 25px;
  }

  .login-title {
    font-size: 2rem;
  }

  .login-subtitle {
    font-size: 0.95rem;

    margin-bottom: 30px;
  }

  .input-wrapper {
    padding: 14px 15px;
  }

  .login-btn {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .login-card {
    width: 100%;

    padding: 35px 20px;
  }

  .login-title {
    font-size: 1.8rem;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  height: 90px;

  z-index: 1000;

  background: rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar-inner {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 157px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-image {
  width: 46px;
  height: 46px;
  object-fit: contain;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.nav-logo:hover .logo-image {
  transform: rotate(-8deg) scale(1.08);
  filter: drop-shadow(0 0 14px rgba(96, 165, 250, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;

  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;

  display: flex;
  align-items: center;
  gap: 8px;

  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;

  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #60a5fa;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: #60a5fa;
  transform: translateX(-50%);

  transition: width 0.35s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links svg {
  flex-shrink: 0;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .navbar-inner {
    padding: 0 60px;
  }
}

@media (max-width: 900px) {
  .navbar-inner {
    padding: 0 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 700px) {
  .navbar {
    height: 136px;
  }

  .navbar-inner {
    padding: 16px 20px;

    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-links a::after {
    bottom: -5px;
  }
}

@media (max-width: 450px) {
  .navbar-inner {
    padding: 14px 12px;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    gap: 5px;
    font-size: 0.85rem;
  }

  .nav-links svg {
    font-size: 13px;
  }
}.about-section{
    width:100%;
    padding:100px 20px;
    display:flex;
    justify-content:center;
}

.about-card{
    width:min(1200px,92%);
    padding:60px;
    border-radius:0px !important;
    text-align:center;
}

.about-title{

    font-size:3rem;

    font-weight:700;

    color:#fff;

    margin-bottom:20px;

}

.about-description{

    max-width:800px;

    margin:0 auto 60px;

    font-size:1.05rem;

    line-height:1.9;

    color:#cbd5e1;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-card{

    padding:35px 25px;

    border-radius:0px !important;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);

}

.feature-icon{

    font-size:42px;

    color:#60a5fa;

    margin-bottom:20px;

}

.feature-card h3{

    font-size:1.4rem;

    color:#fff;

    margin-bottom:15px;

}

.feature-card p{

    color:#cbd5e1;

    line-height:1.8;

}

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

@media(max-width:992px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about-card{

padding:40px 25px;

}

.about-title{

font-size:2.3rem;

}

.about-description{

margin-bottom:40px;

}

.feature-grid{

grid-template-columns:1fr;

}

}

@media(max-width:480px){

.about-title{

font-size:2rem;

}

.feature-card{

padding:30px 20px;

}

}/* ==========================================
   FOOTER
========================================== */

.footer{
    width:min(1200px,92%);
    margin:80px auto 40px;

    padding:50px;

    border-radius:0px !important;
}

/* ==========================================
   TOP
========================================== */

.footer-top{

    display:grid;

    grid-template-columns:
        2fr
        1fr
        1fr;

    gap:50px;

    padding-bottom:35px;

    border-bottom:
        1px solid rgba(255,255,255,.1);

}

.footer-brand h2{

    font-size:2rem;

    margin-bottom:18px;

    color:#ffffff;

}

.footer-brand p{

    color:#cbd5e1;

    line-height:1.8;

    max-width:420px;

}

/* ==========================================
   LINKS
========================================== */

.footer-links h4,
.footer-social h4{

    font-size:1.1rem;

    margin-bottom:20px;

    color:#fff;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#cbd5e1;

    margin-bottom:14px;

    transition:.3s;

    width:fit-content;

}

.footer-links a:hover{

    color:#60a5fa;

    transform:translateX(6px);

}

/* ==========================================
   SOCIAL ICONS
========================================== */

.social-icons{

    display:flex;

    gap:16px;

    margin-top:15px;

}

.social-icons a{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    color:#ffffff;

    font-size:20px;

    transition:.35s;

}

.social-icons a:hover{

    background:#60a5fa;

    color:#fff;

    transform:translateY(-6px);

    box-shadow:
        0 0 25px rgba(96,165,250,.45);

}

/* ==========================================
   BOTTOM
========================================== */

.footer-bottom{

    margin-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    color:#cbd5e1;

}

.made-with{

    display:flex;

    align-items:center;

    gap:8px;

}

.heart{

    color:#ef4444;

    animation:heartbeat 1.4s infinite;

}

/* ==========================================
   ANIMATION
========================================== */

@keyframes heartbeat{

    0%{

        transform:scale(1);

    }

    20%{

        transform:scale(1.2);

    }

    40%{

        transform:scale(1);

    }

    60%{

        transform:scale(1.2);

    }

    100%{

        transform:scale(1);

    }

}

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

@media(max-width:900px){

.footer{

padding:40px 25px;

}

.footer-top{

grid-template-columns:1fr;

gap:35px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}

@media(max-width:500px){

.footer-brand h2{

font-size:1.7rem;

}

.social-icons{

justify-content:center;

}

.social-icons a{

width:45px;
height:45px;

font-size:18px;

}

}.home {
  width: 100%;
  min-height: 100vh;
  color: #fff;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 80px;
}

.hero-content {
  width: min(900px, 92%);
  text-align: center;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}

.greeting {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.greeting span {
  color: #60a5fa;
  font-weight: 700;
}

.hero-title {
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #ffffff,
    #60a5fa,
    #38bdf8
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 20px;
}

.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #60a5fa;
  font-size: 2rem;
  margin-bottom: 30px;
}

.coming-soon svg {
  animation: pulseIcon 2s infinite;
}

.hero-description {
  max-width: 650px;
  margin: 0 auto 45px;
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.9;
}

.notify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border: none;
  border-radius: 0;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.notify-btn:hover {
  color: #2563eb;
  background-color: #ffffff;
}

.notify-btn svg {
  transition: transform 0.3s ease;
}

.notify-btn:hover svg {
  transform: translateX(6px);
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/* Modal overlay */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  background:
    linear-gradient(
      rgba(1, 6, 18, 0.9),
      rgba(1, 6, 18, 0.9)
    );

  backdrop-filter: blur(42px) brightness(0.42);
  -webkit-backdrop-filter: blur(42px) brightness(0.42);

  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Extra dark layer for browsers where blur looks weaker */

.modal-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(25, 73, 150, 0.12),
      rgba(0, 0, 0, 0.48) 65%
    );
  pointer-events: none;
}

/* Modal cards */

.notify-modal,
.success-modal {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;

  background:
    linear-gradient(
      145deg,
      rgba(24, 46, 82, 0.96),
      rgba(10, 25, 51, 0.97)
    );

  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.72),
    0 0 80px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  color: #ffffff;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.notify-modal h2,
.success-modal h2 {
  margin: 0 0 10px;
  padding-right: 45px;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.2;
}

.notify-modal > p,
.success-modal > p {
  margin: 0 0 28px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

/* Close button */

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;

  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Notify form */

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notify-form label {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.modal-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;

  background: rgba(255, 255, 255, 0.08);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.modal-input-wrapper:focus-within {
  border-color: #5aa7ff;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(90, 167, 255, 0.16);
}

.modal-input-wrapper svg {
  flex: 0 0 auto;
  color: #66adff;
}

.modal-input-wrapper input {
  width: 100%;
  min-width: 0;
  padding: 15px 0;

  border: 0;
  outline: none;

  background: transparent;
  color: #ffffff;

  font: inherit;
}

.modal-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

/* Submit button */

.modal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  margin-top: 16px;
  padding: 15px 20px;

  border: 0;
  border-radius: 0;

  background: linear-gradient(
    135deg,
    #2563eb,
    #59a9ff
  );

  color: #ffffff;

  font: inherit;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 14px 34px rgba(37, 99, 235, 0.28);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.modal-submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.36);
  filter: brightness(1.05);
}

.modal-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

/* Form error */

.form-error {
  margin: 6px 0 0;
  color: #ffaaaa;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Success modal */

.success-modal {
  text-align: center;
}

.success-modal h2 {
  padding-right: 0;
}

.success-icon {
  margin-bottom: 18px;
  font-size: 4rem;
  color: #67e8a5;

  filter: drop-shadow(
    0 0 22px rgba(103, 232, 165, 0.3)
  );
}

/* Tablet */

@media (max-width: 992px) {
  .hero-content {
    padding: 60px 35px;
  }

  .hero-title {
    font-size: 4.5rem;
    letter-spacing: 5px;
  }

  .coming-soon {
    font-size: 1.6rem;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .hero-section {
    padding-top: 120px;
  }

  .hero-content {
    padding: 45px 25px;
  }

  .hero-title {
    font-size: 3.2rem;
    letter-spacing: 3px;
  }

  .greeting {
    font-size: 1.05rem;
  }

  .coming-soon {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .notify-btn {
    padding: 14px 28px;
  }

  .modal-overlay {
    align-items: center;
    padding: 18px;
    backdrop-filter: blur(36px) brightness(0.38);
    -webkit-backdrop-filter: blur(36px) brightness(0.38);
  }

  .notify-modal,
  .success-modal {
    width: min(100%, 520px);
    padding: 32px 24px;
    border-radius: 0;
  }
}

/* Small mobile */

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-content {
    padding: 35px 20px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .notify-btn {
    width: 100%;
  }

  .modal-overlay {
    padding: 14px;
  }

  .notify-modal,
  .success-modal {
    width: 100%;
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    padding: 30px 22px;
    border-radius: 0;
  }

  .notify-modal h2,
  .success-modal h2 {
    font-size: 1.75rem;
  }

  .notify-modal > p,
  .success-modal > p {
    margin-bottom: 22px;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

/* Force sharp modal corners */
.modal-overlay .notify-modal,
.modal-overlay .notify-modal.glass,
.modal-overlay .success-modal,
.modal-overlay .success-modal.glass {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  clip-path: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

/* Remove rounding from any modal pseudo-elements */
.modal-overlay .notify-modal::before,
.modal-overlay .notify-modal::after,
.modal-overlay .success-modal::before,
.modal-overlay .success-modal::after {
  border-radius: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
#root {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  background: #060b17;
  overflow-x: hidden;
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input {
  font-family: inherit;
  outline: none;
}

ul {
  list-style: none;
}

.app {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ---------- Animated Background ---------- */

.gradient-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -2;

  background: linear-gradient(135deg, #050816, #0b1220, #111827, #050816);

  background-size: 400% 400%;

  animation: bgMove 18s ease infinite;
}

/* Floating Blobs */

.blob {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  opacity: 0.5;

  animation: float 15s infinite ease-in-out;
}

.blob1 {
  width: 400px;
  height: 400px;

  background: #2575fc;

  top: -100px;
  left: -100px;
}

.blob2 {
  width: 350px;
  height: 350px;

  background: #7f5af0;

  bottom: -80px;
  right: -100px;

  animation-delay: 2s;
}

.blob3 {
  width: 250px;
  height: 250px;

  background: #22d3ee;

  top: 40%;
  left: 45%;

  animation-delay: 5s;
}

@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-60px) translateX(40px);
  }

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

/* Glass Card */

.glass {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);

  border-radius: 24px;
}

/* Common Fade Animation */

.fade-up {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Text */

h1,
h2,
h3 {
  letter-spacing: 1px;
}

p {
  line-height: 1.7;
  color: #d7d7d7;
}
.app {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

::selection {
  background: #5ca9ff;
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #09111f;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.35s;
  font-family: inherit;
}

button:hover {
  transform: translateY(-3px);
}

button:active {
  transform: scale(0.96);
}

a {
  color: #ffffff;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

p {
  color: #d8d8d8;
  line-height: 1.8;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
}

section {
  padding: 90px 0;
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

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

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

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(92, 169, 255, 0.25);
  }

  50% {
    box-shadow: 0 0 30px rgba(92, 169, 255, 0.7);
  }

  100% {
    box-shadow: 0 0 10px rgba(92, 169, 255, 0.25);
  }
}

@media (max-width: 900px) {
  section {
    padding: 70px 20px;
  }

  .container {
    width: 94%;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
}.gradient-bg{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-10;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #030712,
        #081120,
        #0d1b2a,
        #121f3b,
        #050816
    );

    background-size:400% 400%;

    animation:gradientMove 20s ease infinite;

}

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.55;

    animation:blobFloat 18s ease-in-out infinite;

}

/* Blue */

.blob1{

    width:420px;
    height:420px;

    background:#3b82f6;

    top:-120px;
    left:-80px;

}

/* Purple */

.blob2{

    width:360px;
    height:360px;

    background:#7c3aed;

    right:-100px;
    bottom:-80px;

    animation-delay:4s;

}

/* Cyan */

.blob3{

    width:260px;
    height:260px;

    background:#06b6d4;

    top:40%;
    left:45%;

    animation-delay:8s;

}

/* ==========================================
   EXTRA GLOW CIRCLES
========================================== */

.gradient-bg::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:#60a5fa;

    opacity:.12;

    filter:blur(80px);

    top:18%;
    right:18%;

    animation:blobFloat 16s infinite;

}

.gradient-bg::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:#9333ea;

    opacity:.10;

    filter:blur(90px);

    left:12%;
    bottom:12%;

    animation:blobFloatReverse 22s infinite;

}

/* ==========================================
   PARTICLES
========================================== */

.particle{

    position:absolute;

    width:4px;
    height:4px;

    border-radius:50%;

    background:white;

    opacity:.25;

    animation:particleMove linear infinite;

}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes gradientMove{

    0%{

        background-position:0% 50%;

    }

    50%{

        background-position:100% 50%;

    }

    100%{

        background-position:0% 50%;

    }

}

@keyframes blobFloat{

    0%{

        transform:
        translate(0,0)
        scale(1);

    }

    25%{

        transform:
        translate(70px,-40px)
        scale(1.08);

    }

    50%{

        transform:
        translate(20px,-90px)
        scale(.95);

    }

    75%{

        transform:
        translate(-60px,-30px)
        scale(1.04);

    }

    100%{

        transform:
        translate(0,0)
        scale(1);

    }

}

@keyframes blobFloatReverse{

    0%{

        transform:
        translate(0,0);

    }

    25%{

        transform:
        translate(-70px,40px);

    }

    50%{

        transform:
        translate(-20px,90px);

    }

    75%{

        transform:
        translate(60px,20px);

    }

    100%{

        transform:
        translate(0,0);

    }

}

@keyframes particleMove{

    from{

        transform:
        translateY(100vh);

        opacity:0;

    }

    20%{

        opacity:.35;

    }

    80%{

        opacity:.35;

    }

    to{

        transform:
        translateY(-100px);

        opacity:0;

    }

}

/* ==========================================
   OPTIONAL NOISE EFFECT
========================================== */

.noise{

    position:fixed;

    inset:0;

    pointer-events:none;

    opacity:.03;

    background-image:
    radial-gradient(circle at center,
    white 1px,
    transparent 1px);

    background-size:4px 4px;

    z-index:-5;

}

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

@media(max-width:768px){

.blob1{

width:280px;
height:280px;

}

.blob2{

width:240px;
height:240px;

}

.blob3{

width:180px;
height:180px;

}

}