:root {
--bg:        #f0edf5;
--bg-2:      #c6bbdf;
--accent:    #7430f0;
--accent-secondary:  #8b6cff;
--text:      #37354a;
--muted:     #6c6a7e;
--border:    rgb(188, 177, 226);
--surface:   #ffffff;
--deep:      #1c1a30;
}

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

html { 
  scroll-behavior: smooth; 
  background: var(--bg); 
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
}

.main{
max-width: 1200px;
margin: 0 auto; /* This line centers the body */
}

.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: #b7b1c33d;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 680px) { .nav-links { gap: 12px; font-size: 13px; } }

/* Texts Classes */
a{text-decoration: none; color: #411aad;}

h1 {
font-size: clamp(2.375rem, 1.589rem + 3.22vw, 4.5rem);

line-height: 1.04;
letter-spacing: -1px;
font-weight: 900;
margin-bottom: 22px;
text-align: center;
}

h2{
    font-size: clamp(32px, 7vw, 65px);
    font-size: clamp(1.5rem, 1.589rem + 3.22vw, 3rem);

}

.grad-text {
background: linear-gradient(120deg, var(--accent-secondary), 50%, var(--accent));
-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
font-family:'Times New Roman', Times, serif;
font-weight: bold;
}


/* button classes */
.btn-primary {
background-color:  var(--accent);
color: white;
display: inline-flex; align-items: center; gap: 8px;
font-weight: 600; font-size: 14px; padding: 10px 30px; border-radius: 10px;
transition: transform 0.15s, box-shadow 0.25s, background 0.2s;
cursor: pointer; border: none;
}
.btn-primary:hover { transform: translateY(-2px);}
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }
.btn-secondary {
background-color: #411aad;
color: #ffffff;
}

.download-btns-row { display: flex;  justify-content: space-evenly; margin-top: 25px; }
@media (max-width: 720px) {
  .download-btns-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .download-btns-row .btn-primary { justify-content: center; }
}


/* Containers Utilities */
#luffy-features{
    background-color: rgb(7, 1, 24);
    padding: 50px 0px;
    color: white;
    text-align: center;
}

/* Utility Class */
.animated-dot {
  display: flex;           
  width: max-content;       
  margin: 6px auto;  
  margin-top: 15px;      
  align-items: center; gap: 8px;
  background: var(--accent); border:none;
  color:white; font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 28px;
}

.animated-dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #edfff4; /* Vibrant green */
  animation: pulse-dot 1s infinite;
}

/* Creates the outward pulse effect using box-shadow */
@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 235, 222, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: white;
  background: var(--accent);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
}

.surface-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(55, 53, 74, 0.14);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--deep);
  padding: 34px 0;
  color: #c9c4db;
  font-size: 14px;
}

.site-footer a { color: #ffffff; }
