
  
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;   /* 🔑 prevents flex overflow */
}




    

   html, body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
      background-color: #161516;
      color: #ffffff;
      overflow-x: hidden;
      overflow-y: visible;
      background :radial-gradient(
          1200px 800px at 85% 60%,
          rgba(191, 106, 73, 0.45) 0%,
          rgba(122, 73, 191, 0.25) 35%,
          rgba(122, 73, 191, 0.12) 55%,
          rgba(122, 73, 191, 0) 70%
        ),
        radial-gradient(
          600px 600px at 10% 10%,
          rgba(255, 140, 90, 0.12) 0%,
          rgba(255, 140, 90, 0) 60%
        ),
        linear-gradient(
          180deg,
          #05030a 0%,
          #0a0614 40%,
          #120a22 100%
        );
overflow-x: hidden;
      overflow-y: visible;
    }

    /* NAVBAR */
    .navbar {
      position: absolute;
      top: 0;
      width: 100%;
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
    }

    .logo {
      font-size: 1.3rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo span {
      color: #ff9f6e;
    }

 nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 0;
  
 /* background: linear-gradient(90deg, #420454,#0e081d);*/
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

nav button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  transition: 0.3s;
}

nav ul:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  color: black;
  border-radius: 8px;
  display: none;
  animation: fadeIn 0.3s ease;
}

nav ul:hover .dropdown {
  display: block;
}

/* Dropdown items */
.dropdown li {
  padding: 10px 15px;
}

.dropdown li:hover {
  background: #efefef;
}

.dropdown a {
  text-decoration: none;
  font-size: 18px;
  color: black;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

    .btn-signup {
      /*background: #ffffff;*/
      color: #ffffff;
      padding: 0.5rem 1rem;
      border-radius: 0.6rem;
      font-weight: 50;
    }


.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 600px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0b0b12;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-actions a {
    text-align: center;
  }
}






    /* HERO */
    .hero-big {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
  width: 100%;
    margin:0;
  overflow-x: hidden;
  overflow-y: visible;
  --moveX:0px;
  --moveY:0px;
    background-size:300% 300%;
      transition: background-position 0.1s linear;
      
      
      /* background-image: url("image.png.png");*/
      background :radial-gradient(
          1200px 800px at 85% 60%,
          rgba(191, 106, 73, 0.45) 0%,
          rgba(122, 73, 191, 0.25) 35%,
          rgba(122, 73, 191, 0.12) 55%,
          rgba(122, 73, 191, 0) 70%
        ),
        radial-gradient(
          600px 600px at 10% 10%,
          rgba(255, 140, 90, 0.12) 0%,
          rgba(255, 140, 90, 0) 60%
        ),
        linear-gradient(
          180deg,
          #05030a 0%,
          #0a0614 40%,
          #120a22 100%
        );

    }
    .hero-content {
      max-width: 900px;
      z-index: 2;
    }

    .badge {
      display: inline-block;
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      font-size: 0.75rem;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255, 159, 110, 0.6);
      color: #ff9f6e;
      background: rgba(255, 159, 110, 0.08);
    }

  .hero-content {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* Badge */
.hero-content .badge {
  display: inline-block;
  font-size: 0.85rem;
  border-radius: 20px;
  background: rgba(108, 242, 194, 0.15);
  color: #6cf2c2;
  margin-bottom: 20px;
}

/* Title */
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #6cf2c2, #5aa9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.hero-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Buttons container */
.hero-content > div:last-child {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid #6cf2c2;
  color: #6cf2c2;
}

/* =====================
   MOBILE OPTIMIZATION
===================== */
@media screen and (max-width: 430px) {

  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-content > div:last-child {
    display: flex;        /* ✅ required */
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}



    .btn-primary {
      background: #080606;
      color: #ece3e3;
      padding: 0.8rem 1.6rem;
      border-radius: 0.7rem;
      font-weight: 500;
      text-decoration: none;
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid rgb(240, 238, 238);
      color: #ffffff;
      padding: 0.8rem 1.6rem;
      border-radius: 0.7rem;
      text-decoration: none;
    }

    /* NOISE */
    .hero-big::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
    }



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


/* SECTION */
/* Base section wrapper + scroll reveal */
.feature-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;

  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.feature-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Feature card style */
.feature-card {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: .35s;
  text-decoration: none;
}
.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
}
.feature-card.wide {
  display: flex;
  flex-direction: column;
}









.features-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.features-section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.gradient-text {
  background: linear-gradient(90deg, #b57cff, #ff9f6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}



/* MAIN SECTION */
.feature-section {
  padding: 50px;
  display: flex;
  justify-content: center;
}

/* GRID LAYOUT */
/* ==============================
   FEATURE GRID – RESPONSIVE
================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: auto;
}

/* Feature card */
.feature-card {
  background: #14141f;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Image box */
.feature-visual {
  margin-bottom: 20px;
}

.feature-visual img {
  width: 100%;
  max-width: 160px;
  margin: auto;
}

/* Text */
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.features-section {
  opacity: 0;
  transform: none;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.features-section.show {
  opacity: 1;
  transform: scale(1);
}
/* CLICKABLE BOX */
/* ==============================
   FEATURE TITLE SECTION
================================ */
.feature-feature {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.feature-feature h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.2;
}

.feature-feature article h2 {
  margin-top: 10px;
  color: #6cf2c2;
}

/* ==============================
   FEATURES GRID
================================ */
.features-section {
  padding: 80px 20px;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Feature card */
.features-grid .feature-card {
  background: #14141f;
  border-radius: 18px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-grid .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

/* Icon */
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

/* Card title */
.features-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* Card text */
.features-grid p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

/* Laptop */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .features-section {
  
  }

  .feature-feature h2 {
    font-size: 1.8rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .features-grid .feature-card {
  
  }
}



/* HOVER */
.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(181,124,255,0.5);
  box-shadow:
    0 20px 40px rgba(181,124,255,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* CLICK */
.feature-box:active {
  transform: scale(0.97);
}






/* ===============================
   ACCESS SECTION
================================ */
.access-section {

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1.2s ease;
}

.access-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   WRAPPER
================================ */
.access-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;

  border-radius: 20px;
  background:
    linear-gradient(#151515, #151515) padding-box,
    linear-gradient(120deg, #8b5cf6, #f97316) border-box;
  border: 2px solid transparent;
}

/* ===============================
   LEFT CARD
================================ */
.project-card {
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-all {
  color: #999;
  font-size: 14px;
}

.project-desc {
  margin: 16px 0 30px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* User Grid */
.user-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.user-card {
  width: 160px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  margin-bottom: 16px;
}

.user-card h4 {
  margin: 0 0 6px;
}

.user-card span {
  font-size: 12px;
  color: #aaa;
}

.add-card {
  width: 160px;
  height: 200px;
  border-radius: 14px;
  border: 2px dashed #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #aaa;
}

/* ===============================
   RIGHT CONTENT
================================ */
.content-area {
  width: 100%;
  max-width: 520px;
}

.content-area h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1.2;
}

.content-area h1 span {
  background: linear-gradient(90deg, #a78bfa, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-desc {
  margin: 24px 0;
  color: #b5b5b5;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: #ddd;
}

.feature-list span {
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Tablet */
@media (max-width: 992px) {
  .access-section {
    padding: 60px 20px;
  }

  .access-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 40px;
  }

  .project-card,
  .content-area {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .access-wrapper {
    padding: 30px 20px;
  }

  .user-grid {
    display: flex;
  }

 .user-card {
  width: 100%;
  height: auto;
}

.add-card {
  width: 100%;
  height: 80px;
  font-size: 32px;
}



  .content-area h1 {
    font-size: 1.8rem;
  }
}



/* ===============================
   INTEGRATION SECTION
================================ */
.integration {
  padding: 100px 120px;
  max-width: 1200px;
  margin: 6rem auto;
  background: #0e0e0e;
  border-radius: 20px;
  color: #fff;
 overflow-x: hidden;
 overflow-y: visible;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

/* Reveal */
.integration.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   TEXT
================================ */
.integration h2 {
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.integration p {
  color: #cccccc;
  font-size: 1.05rem;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ===============================
   CONTENT BOX
================================ */
.integration .content-box {
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
}

/* ===============================
   FLEX LAYOUT
================================ */
.integration-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

/* LEFT */
.left h1 {
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 40px;
}

.left h1 span {
  background: linear-gradient(90deg, #a78bfa, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTON */
.view-btn {
  width: 140px;
  height: 56px;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.view-btn:hover {
  background: #fff;
  color: #000;
}

/* RIGHT */
.right {
  width: 100%;
  max-width: 520px;
}

.right p {
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.8;
}

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

/* Laptop */
@media (max-width: 1200px) {
  .integration {
    padding: 80px 60px;
  }

  .integration-container {
    gap: 60px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .integration {
    padding: 70px 40px;
  }

  .integration-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .right {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .integration {
    padding: 60px 20px;
    margin: 4rem 0;
  }

  .left h1 {
    font-size: 2rem;
  }

  .view-btn {
    display: block;
    width: 100%;
  }

  .integration p {
    font-size: 0.95rem;
  }
}


/*moving logos*/

/* ===============================
   LOGO SECTIONS
================================ */
.logo-section {
  padding: 100px 0;
 overflow-x: hidden;
 overflow-y: visible;
}

.logo-section2 {
  overflow-x: hidden;
  overflow-y: visible;
}

/* ===============================
   TRACKS
================================ */
.logo-track,
.movinglogos {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.logo-track {
  gap: 28px;
  padding-left: 60px;
}

.movinglogos {
  gap: 30px;
}

/* ===============================
   LOGO CARD
================================ */
.logo-card {
  min-width: 260px;
  height: 140px;
  background: #141414;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #6aa5ff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.3s ease;
}

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

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

/* Laptop */
/* Laptop */
@media (max-width: 1200px) {
  .logo-card {
   
       min-width: unset;
    width: 160px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .logo-section {
    padding: 80px 20px;
  }

  .logo-track {
    gap: 22px;
  }

  .movinglogos {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .logo-card {
    
    width: 160px;
  }
}


/* Mobile */
@media (max-width: 600px) {
  .logo-section {
    padding: 60px 20px;
  }

  .logo-track {
    gap: 18px;
  }

  .movinglogos {
    gap: 20px;
  }

}



/* ---------------- HERO SECTION ---------------- */
/* ===============================
   HERO SECTION
================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #0e0e0e;
  color: #fff;
  text-align: center;

  opacity: 0;
  transform: translateY(60px);
  transition: 0.9s ease;
}

.hero.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   CONTENT
================================ */

.hero-content {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}



/* ===============================
   TITLE
================================ */
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
}

.hero h1 span {
  background: linear-gradient(90deg, #a78bfa, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   TEXT
================================ */
.hero p {
  margin: 20px auto 0;
  color: #bdbdbd;
  font-size: clamp(1rem, 3vw, 1.15rem);
  line-height: 1.8;
  max-width: 820px;
}

/* ===============================
   BUTTON
================================ */
.hero .btn {
  margin-top: 30px;
  padding: 14px 32px;
  background: #7f5bff;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.hero .btn:hover {
  transform: scale(1.05);
  background: #9a7aff;
}

/* ===============================
   EXTRA
================================ */
.feature-feature {
  text-align: center;
}

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

/* Tablet */
@media (max-width: 900px) {
  .hero {
    padding: 70px 16px;
  }

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

/* Mobile */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

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

  .hero .btn {
    width: 100%;
    padding: 14px 0;
  }
}







/* IMAGE */
/* ===============================
   FEATURE SECTION
================================ */
.feature-section {
  background: #0e0b1b;
  padding: 80px 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* ===============================
   CONTAINER
================================ */
.feature-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* ===============================
   IMAGE
================================ */
.feature-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
}

/* ===============================
   CONTENT
================================ */
.feature-content {
  flex: 1;
}

/* Feature Item */
.feature-item {
  margin-bottom: 40px;
  padding-left: 18px;
  border-left: 3px solid transparent;
  transition: 0.3s ease;
}

.feature-item:hover {
  border-left: 3px solid #ff4d6d;
}

.feature-item h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-item p {
  color: #bfbfc9;
  line-height: 1.7;
  font-size: 1rem;
}

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

/* Laptop */
@media (max-width: 1200px) {
  .feature-container {
    gap: 40px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .feature-container {
    flex-direction: column;
    text-align: center;
  }

  .feature-image img {
    max-width: 100%;
  }

  .feature-item {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid transparent;
    padding-top: 20px;
  }

  .feature-item:hover {
    border-top: 3px solid #ff4d6d;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .feature-section {
    padding: 60px 0;
  }

  .feature-container {
    gap: 30px;
  }

  .feature-item {
    margin-bottom: 30px;
  }

  .feature-item p {
    font-size: 0.95rem;
  }
}

/*stunning result css*/

@property --＠color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(98 100% 62%);
}

@property --＠color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(204 100% 59%);
}

/* gradient animation */
@keyframes gradient-change {
  to {
    --＠color-1: hsl(210 100% 59%);
    --＠color-2: hsl(310 100% 59%);
  }
}

article {
  animation: gradient-change 2s linear infinite alternate;
  background: linear-gradient(to right in oklch, var(--＠color-1), var(--＠color-2));

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




/* ↓↓↓ smaller font adjustments ↓↓↓ */

@layer demo.support {
  h1 {
    font-size: 6vmin;        /* was 10vmin → smaller now */
    line-height: 1.1;
  }

  body {
    background: hsl(204 100% 5%);
    min-block-size: 100%;
    display: grid;
    place-content: center;
    font-family: system-ui, sans-serif;

    font-size: min(140%, 2.8vmin);   /* reduced text size */
    padding: 5vmin;
  }

  p {
    font-size: 0.9rem;       /* custom text size */
  }

  article {
    display: grid;
    gap: 1lh;
    text-align: center;
  }
}

.company{
text-align: center;


}
.company h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #a78bfa, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company p {
  font-size: 18px;
  color: #bdbdbd;
}

/* Responsive */
@media (max-width: 768px) {
  .company h2 {
    font-size: 40px;
  }
}


/*FAQs*/


/* ===============================
   FAQ ITEM
================================ */
.faq-item {
  border-radius: 12px;
  background: #1a1a1a;
  margin-bottom: 16px;
overflow-x: hidden;
overflow-y: visible;
}

/* ===============================
   QUESTION
================================ */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 20px 24px;
  font-size: clamp(16px, 2.5vw, 18px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  flex: 1;                 /* text wraps nicely */
}

/* ICON */
.faq-question .icon {
  font-size: clamp(20px, 4vw, 24px);
  transition: transform 0.3s ease;
}

/* ===============================
   ANSWER
================================ */
.faq-answer {
  max-height: 0;
 overflow-x: hidden;
 overflow-y: visible;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: #ccc;
  padding-bottom: 20px;
  margin: 0;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.7;
}

/* ===============================
   ACTIVE STATE
================================ */
.faq-item.active .faq-answer {
  max-height: 500px;   /* supports long answers */
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* ===============================
   MOBILE ADJUSTMENTS
================================ */
@media (max-width: 600px) {
  .faq-question {
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }
}


/* ===============================
   FOOTER
================================ */
.footer {
  background: #0d0d1a;
  color: #fff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

/* ===============================
   CONTAINER
================================ */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* ===============================
   COLUMNS
================================ */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  font-size: clamp(18px, 2.5vw, 20px);
}

.footer-col p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   LINKS
================================ */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #b4b4ff;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* ===============================
   SOCIAL LINKS
================================ */
.social a {
  display: block;
  margin: 6px 0;
  color: #b4b4ff;
  text-decoration: none;
  transition: 0.3s ease;
}

.social a:hover {
  color: #fff;
  padding-left: 5px;
}

/* ===============================
   FOOTER BOTTOM
================================ */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #2a2a3e;
  padding-top: 15px;
  color: #ccc;
  font-size: 14px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .footer {
    padding: 40px 16px;
  }

  .footer-container {
    gap: 24px;
  }

  .footer-bottom {
    margin-top: 30px;
    font-size: 13px;
  }
}



html, body {
  max-width: 100%;
  overflow-x: hidden;
}

section {
  height: auto;
  overflow: visible;
}

