
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bungee&family=Gidole&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');


:root {
    --primary-accent: #9c4dff;
    --primary-accent-light: #cf10ff;
    --primary-accent-lighter: #ff4dff;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: #aaaaaa;
    --bg-primary: #000000;
    --bg-secondary: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

:root {
    --card-bg: rgba(23, 12, 61, 0.7);
    --card-border: rgba(156, 77, 255, 0.3);
    --card-highlight-bg: rgba(35, 18, 92, 0.85);
    --card-highlight-border: rgba(156, 77, 255, 0.6);
}

@font-face {
    font-family: "1";
    src: url('fonts/Frizon.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
margin: 0;
padding: 0;
background-repeat: no-repeat;
background-size: contain;
font-family: 'Poppins', sans-serif;
color: white;
background-image: url('images/body.png');
background-color: black;
overflow-x: hidden;
scroll-behavior: smooth;
max-width: 100%;
color: var(--text-light-87);
    font-family: 'Poppins', sans-serif;
}

.planets {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.planet {
    display: none;
    position: absolute;
    width: 50vw;
    z-index: 2;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}



@media (max-width: 1000px) {
    .planet {
      display: block;
    }
  
    .planet1 {
      left: -25vw;
      bottom: 50%;
      animation-name: slidePlanet1;
    }
  
    .planet2 {
      right: -25vw;
      bottom: 25%;
      animation-name: slidePlanet2;
    }
}

@keyframes slidePlanet1 {
    0% {
      transform: translateY(100%) translateX(-100%) rotate(0deg);
      opacity: 0;
    }
    100% {
      transform: translateY(0) translateX(0) rotate(360deg);
      opacity: 1;
    }
}
  
@keyframes slidePlanet2 {
    0% {
      transform: translateY(100%) translateX(100%) rotate(0deg);
      opacity: 0;
    }
    100% {
      transform: translateY(0) translateX(0) rotate(360deg);
      opacity: 1;
    }
}


#starry-sky {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite ease-in-out;
    opacity: 0.8;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(-45deg, white, rgba(255,255,255,0));
    opacity: 0.8;
    transform: rotate(45deg);
    animation: shoot 1s linear forwards;
}

@keyframes shoot {
    from {
      transform: translateX(0) translateY(0) rotate(45deg);
      opacity: 1;
    }
    to {
      transform: translateX(-600px) translateY(600px) rotate(45deg);
      opacity: 0;
    }
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 10px 30px;
    background-color: var(--bg-secondary);
    backdrop-filter: blur(6px);
    border-radius: var(--border-radius);
    z-index: 100;
}

.navbar a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.navbar a:hover {
    color: #c77dff;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c77dff;
    transition: var(--transition);
}

.navbar a:hover::after {
    width: 100%;
}


.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

@font-face {
    font-family: "Orbit";
    src: url('fonts/orbit.ttf')
}


.hero-title img {
height: 140px;
margin: 0;
}

@media (max-width: 768px) {
    .hero-title img {
        height: 100px;
        margin: 0;
        padding: 0;
    }
}

.hero-subtitle {
font-family: 'Poppins', sans-serif;
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 40px;
letter-spacing: 3px;
text-transform: uppercase;
animation: fadeInUp 1s ease-out 0.2s forwards;
opacity: 0;
font-weight: 500;
line-height: 0;
padding-bottom: 10px;
}

@media (max-width: 768px) {
.hero-title {
font-size: 4.5rem;
letter-spacing: 0;
-webkit-text-stroke: 0.2px black;
}

.hero-subtitle {
font-size: 0.9rem;
letter-spacing: 2px;
margin-bottom: 30px;
padding-bottom: 10px;
}

.hero-buttons {
flex-direction: column;
gap: 15px;
width: 100%;
max-width: 300px;
}

.btn {
width: 100%;
padding: 12px 20px;
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 3.5rem;

}

.hero-subtitle {
font-size: 0.8rem;
letter-spacing: 1px;
margin-bottom: 25px;
}
}

@media (max-width: 360px) {
.hero-title {
font-size: 2.2rem;
}

.hero-subtitle {
font-size: 0.7rem;
}
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, #a855f7, #7e22ce);

    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plans-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 300px;
}

@media (max-width: 768px) {
    .plans-section {
        margin-top: 0;
    }
}

.section-title-plan {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 5px rgba(207, 16, 255, 0.5), 0 2px 4px black;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--card-bg);
      border-radius: 20px;
      padding: 2.5rem 1.2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: white;
      border: 1px solid var(--card-border);
      backdrop-filter: blur(10px);
      
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(156, 77, 255, 0.2);
    border-color: rgba(156, 77, 255, 0.3);
}

.plan-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.plan-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(156, 77, 255, 0.6));
}

.plan-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-highlight {
    background: var(--card-highlight-bg);
    border: 1px solid var(--card-highlight-border);
    box-shadow: 0 10px 40px rgba(156, 77, 255, 0.4);
}

.plan-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.price-currency {
    font-size: 1.25rem;
    margin-right: 0.25rem;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-period {
    font-size: 1rem;
    opacity: 0.7;
    margin-left: 0.6rem;
    margin-top: 0.2rem;
    align-self: flex-end;
}

.plan-features li {
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: bold;
}

.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.plan-btn:hover {
    background: linear-gradient(45deg, #9c4dff, #cf10ff);
    box-shadow: 0 0 15px rgba(156, 77, 255, 0.5);
}



.stripe-button {
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(156, 77, 255, 0.3);

}

.stripe-button .hover-text,
.stripe-button .default-text {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stripe-button .hover-text {
    opacity: 0;
    transform: translateY(10px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.stripe-button .default-text {
    opacity: 1;
}

.stripe-button:hover .default-text {
    opacity: 0;
    transform: translateY(-10px);
}

.stripe-button:hover .hover-text {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.stripe-button .stripe-logo {
    
    vertical-align: middle;
    margin-left: 1px;
    color: #635bff;
    font-size: 30px;
}


.highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff4dff, #cf10ff);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.highlight-btn {
    background: linear-gradient(45deg, #9c4dff, #cf10ff);
    box-shadow: 0 0 4px rgba(156, 77, 255, 0.9), 0 0 8px rgba(156, 77, 255, 0.7);
    animation: subtleGlow 1.5s infinite;
}

.highlight-btn .stripe-logo {
    color: black;
}

.highlight-btn:hover {
    background: linear-gradient(45deg, #9b5eff, #e055ff);


}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 4px rgba(156, 77, 255, 0.9), 0 0 8px rgba(156, 77, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 6px rgba(156, 77, 255, 1), 0 0 10px rgba(156, 77, 255, 0.9);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(207, 16, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(207, 16, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(207, 16, 255, 0); }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .plan-card {
        width: 100%;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        gap: 20px;
        padding: 10px 20px;
    }
    
    .navbar a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        gap: 15px;
        padding: 8px 15px;
    }
    
    .navbar a {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .plan-card {
        padding: 20px;
    }
}

.about-section {
    position: relative;
    width: 100%;
    padding: clamp(4rem, 8vw, 8rem) 2rem;
    isolation: isolate;
    overflow: hidden;
    z-index: 1;
    background: radial-gradient(ellipse at 50% 0%, #200c27 0%, #200c27 20%, black 80%, black 100%);
}

@media (max-width: 1000px) {
    html, body {
      background: 
        radial-gradient(
          ellipse at 50% 0%,
          #200c27 0%,
          #200c27 40%,
          black 80%,
          black 100%
        );
        position: relative;

    }
    
      
}

@media (max-width: 1000px) {
    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('images/mobile-bg.png');
      background-repeat: no-repeat;
      background-position: center ;
      background-size: contain;
      opacity: 0;
      animation: fadeInBg 0.5s ease-in 0.8s forwards;
      z-index: -1;
      pointer-events: none;
    }
  
    .hero {
      position: relative;
      z-index: 6;
    }
    
    @keyframes fadeInBg {
        to {
          opacity: 1;
        }
      }

      .btn-primary {
        z-index: 5;
      }
      
  }
  
@media (max-width: 768px) {
    .about-bg {
        background-color: black;
        z-index: -2;
    }
    .divider2 {
        margin-bottom: 0;
    }
    .bg-grad {
        z-index: -1;
        background: #0d0d15;
    }
    .contact-wrapper-64 {
        margin-top: -50px !important;
    }
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><circle cx="20%" cy="30%" r="2" fill="white" opacity="0.8"/><circle cx="85%" cy="25%" r="1" fill="white" opacity="0.6"/><circle cx="50%" cy="70%" r="1.5" fill="white" opacity="0.7"/><circle cx="70%" cy="50%" r="1" fill="white" opacity="0.5"/><circle cx="15%" cy="80%" r="1" fill="white" opacity="0.6"/><circle cx="90%" cy="90%" r="2" fill="white" opacity="0.8"/></svg>');
    z-index: -1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

@media (max-width: 768px) {
    .section-header {
        text-align: left;
    }
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff, #cf10ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cf10ff, transparent);
    box-shadow: 0 0 15px rgba(207, 16, 255, 0.5);
}

@media (max-width: 768px) {
    .section-header h2::after {
        left: 0;
        transform: none;
        width: 30%;
    }
}

.divider {
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f1bfff, transparent);
    box-shadow: 0 0 15px rgba(207, 16, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: -6.7rem;
    margin-bottom: 10rem;
}

.divider2 {
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f1bfff, transparent);
    box-shadow: 0 0 15px rgba(207, 16, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.divider3 {
    width: 100%;
    background: #fff;
    opacity: 0.2;
    height: 1px;
    margin-bottom: 50px;
    position: absolute;
}

.headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.headline.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4) { transition-delay: 0.4s; }

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(156, 77, 255, 0.7));
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.mission-section {
    max-width: 800px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    position: relative;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.mission-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(156, 77, 255, 0.1) 0%, transparent 70%);
    border-radius: 1rem;
    z-index: -1;
}

.mission-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    text-align: center;
    font-style: italic;
    position: relative;
}

.mission-text::before,
.mission-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-accent);
    opacity: 0.5;
    position: absolute;
}

.mission-text::before {
    top: -1.5rem;
    left: -1rem;
}

.mission-text::after {
    bottom: -3rem;
    right: -1rem;
}

.highlight {
    font-weight: 600;
    background: linear-gradient(90deg, #cf10ff, #9c4dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    background: linear-gradient(to right, #9c4dff, #5c27fe);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(156, 77, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s ease;
}

.cta-button.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(156, 77, 255, 0.8);
}

.tos-section {
    padding: clamp(2rem, 6vw, 6rem) 2rem;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin-top: 80px;
}

.tos-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 768px) {
    .tos-section {
        padding-bottom: 5rem;
    }
}

.tos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
    border-radius: 3px;
}

.last-updated {
    color: #8a8a8a;
    font-size: 0.9rem;
}

.tos-content {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tos-item:first-child {
    position: relative;
    z-index: 1;
}

.tos-item {
    background: rgba(13, 13, 21, 0.7);
    border: 1px solid rgba(149, 76, 233, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.tos-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tos-item-text {
    margin-bottom: 0.5rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.tos-list {
    padding-left: 1.2rem;
    margin: 0.8rem 0;
}

.tos-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.tos-list li::before {
    content: '–';
    position: absolute;
    left: -1rem;
    color: #8a2be2;
}

.email-link {
    color: #b57aff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.email-link:hover {
    color: #d4b3ff;
    text-decoration: underline;
}

strong {
    color: white;
    font-weight: 500;
}

.blur-overlay {
    position: absolute;
    top: calc(100% - 60px);
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(13, 13, 21, 0.1) 20%, rgba(13, 13, 21, 0.9) 100%);
    backdrop-filter: blur(8px);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
    .divider3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .reach-out-39,
    .support-box-84 {
      backdrop-filter: none !important;
      background: rgba(13, 13, 21, 0.95) !important;
      box-shadow: none !important;
      color: #f0f0f0;
      overflow-x: hidden;
    }
  
    .contact-detail-34 p,
    .contact-detail-34 a,
    .support-content-88 p {
      color: #eaeaea !important;
      text-shadow: none !important;
    }

    .contact-detail-34 a {
      font-size: 15px;
    }
}

.hidden-content {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    z-index: 0;
}

@media (max-width: 768px) {
    .section-header {
        text-align: center;
    }

    .section-header h2 {
        text-align: center;
        margin: 0 auto;
    }

    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
    }
}

.expand-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 1rem auto;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.5);
    border-radius: 50%;
    color: #b57aff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-button:hover {
    background: rgba(138, 43, 226, 0.3);
    color: white;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.tos-container.expanded .hidden-content {
    max-height: 3000px;
}

.tos-container.expanded .blur-overlay {
    opacity: 0;
}

.tos-container.expanded .arrow-icon {
    transform: rotate(180deg);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(138, 43, 226, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background: rgba(138, 43, 226, 1);
    transform: translateY(-3px);
  }

  @media (max-width: 768px) {
    .tos-item {
      padding: 1.2rem;
    }
    
    .expand-button {
      width: 45px;
      height: 45px;
    }
    
    .back-to-top {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
      bottom: 1rem;
      right: 1rem;
    }
  }

button, h1, h2, p, span, .plan-card {
    z-index: 6;
}


/* 
Contact --------------------------------
 */




 :root {
    --dark-bg-42: #0d0d15;
    --text-light-87: #e0e0e0;
    --text-muted-36: #ccc;
    --accent-purple-19: #9544e0;
    --accent-blue-73: #00bfff;
    --glow-effect-55: 0 0 10px rgba(138, 43, 226, 0.7);
    --card-bg-28: rgba(20, 20, 30, 0.7);
    --contact-item-bg-91: rgba(255, 255, 255, 0.1);
}


.contact-wrapper-64 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    overflow: hidden;
}

.contact-wrapper-64::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    z-index: -2;
}

.main-heading-23 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Orbit', sans-serif;
}

.main-heading-23::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
    border-radius: 3px;
}

.subheading-78 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted-36);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-grid-51 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.reach-out-39, .support-box-84 {
    background: var(--card-bg-28);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow-x: hidden;
}

.card-header-67, .support-header-92 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.card-header-67 h3, .support-header-92 h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.contact-list-45 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-12 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: var(--contact-item-bg-91);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method-12:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon-56 {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 50%;
}

.contact-detail-34 {
    flex: 1;
}

.contact-detail-34 h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: white;
}

.contact-detail-34 p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted-36);
}

.contact-detail-34 a {
    color: var(--text-light-87);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-detail-34 a:hover {
    color: #b57aff;
    text-shadow: 0 0 1px rgba(156, 77, 255, 0.9), 0 0 25px rgba(156, 77, 255, 0.7), 0 0 35px rgba(156, 77, 255, 0.5);
}

.support-list-29 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.support-item-63 {
    display: flex;
    gap: 1.5rem;
}

.support-icon-47 {
    font-size: 1.3rem;
    color: var(--accent-purple-19);
    margin-top: 0.2rem;
}

.support-content-88 h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: white;
}

.support-content-88 p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted-36);
}

.hours-section-71 {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(138, 43, 226, 0.3);
}

.hours-header-54 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.hours-header-54 h4 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.hours-list-96 p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted-36);
}

.urgent-help-32 {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 15px;
    border: 1px solid var(--accent-purple-19);
    box-shadow: var(--glow-effect-55);
    position: relative;
}


.urgent-help-32 h3 {
    margin-top: 0;
    color: white;
    font-size: 1.5rem;
}

.urgent-help-32 p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.action-button-17 {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(90deg, #8a2be2, #5c27fe);
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    font-size: 1rem;
}

.action-button-17:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.8);
}


@keyframes float-anim-82 {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 768px) {
    .contact-grid-51 {
        grid-template-columns: 1fr;
    }
    
    
    .action-button-17 {
        width: 100%;
        text-align: center;
    }
    
}



@media (max-width: 768px) {
    .contact-wrapper-64 {
        padding: 3rem 1rem;
    }
    
    .contact-grid-51 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method-12 {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem !important;
        
    }
    
    .contact-icon-56 {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .urgent-help-32 {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .urgent-help-32::before {
        top: -12px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-wrapper-64 {
        padding: 2rem 0.5rem;
    }
    
    .main-heading-23 {
        font-size: 1.8rem;
    }
    
    .reach-out-39, .support-box-84 {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .card-header-67 h3, 
    .support-header-92 h3 {
        font-size: 1.3rem;
    }
    
    .contact-method-12 {
        padding: 1rem;
    }
    
    .action-button-17 {
        width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .support-item-63 {
        gap: 1rem;
    }
    
    .hours-section-71 {
        padding-top: 1.5rem;
    }
}






.bg {
    background: linear-gradient(
        to bottom,
        #000 0%,
        #06060b 50vh,
        #0d0d15 100vh,
        #0d0d15 200vh
    ) !important;
}

.bg-grad {
    background: #0d0d15;
}



.site-footer {
    background: #0b0b13;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(156, 77, 255, 0.5), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #9c4dff, #cf10ff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-sparkle {
    animation: twinkle 2s infinite ease-in-out alternate;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link {
    color: #ccc;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #9c4dff;
 
}

.footer-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #aaa;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #9c4dff;
    transform: translateY(-2px);
}

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-copyright p {
    margin: 0;
}

.invisible-icon {
    opacity: 0;
    pointer-events: none;
}


.rocket {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.footer-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(156, 77, 255, 0.2);
    border: 1px solid rgba(156, 77, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.footer-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.footer-back-to-top:hover {
    background: rgba(156, 77, 255, 0.4);
    box-shadow: 0 0 15px rgba(156, 77, 255, 0.5);
}


@keyframes twinkle {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
  
  
  

@media (max-width: 768px) {
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        order: 2;
    }

    .footer-social {
        order: 3;
    }

    .footer-brand {
        order: 1;
        justify-content: center;
    }

    .footer-copyright {
        order: 4;
    }

    .footer-back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
}



.tos-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease-out, transform 0.6s ease-out;
}

.contact-method-12.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.support-box-84.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
  

.headline, .feature-item, .mission-section, .cta-button, .tos-item, .contact-method-12, .support-box-84 {
    opacity: 0;
    transform: translateY(20px);
}

.stripe-button-link {
    all: unset; 
    display: contents; 
  }