@font-face {
    font-family: "Product Sans Light";
    src: url("../fonts/ProductSans-Light.ttf");
}

@font-face {
    font-family: "Product Sans Thin";
    src: url("../fonts/ProductSans-Thin.ttf");
}

body{
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

/* NAVBAR */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    pad: 14px 40px;
    border-bottom: 1px solid #ebd2d22f;
    padding: 13px 20px;    
}

/* LEFT SIDE */
.left{
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-container{
    display: flex;  
    gap: 10px;
    align-items: end;
}

.logo-container:hover{
    cursor: pointer;
}

.logo-circle{
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 50%;
}

.logo-container h1 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
}

.logo-container h3 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: "Product Sans Thin";
}

/* NAV LINKS */
nav ul{
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a{
    text-decoration: none;
    color: #aaa;
    font-weight: 500;
    padding-bottom: 6px;
    letter-spacing: 1px;
}

nav ul li.active a {
    color: white;
    padding-bottom: 24px;
    border-bottom:  2px solid white;
}

nav ul li a:hover{
    color: white
}

/* RIGHT SIDE */
.right{
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 1px;
}

.right input{
    background-color: transparent;
    border: 1px solid #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
}

.right button{
    background-color: #eee;
    color: black;
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.right button:hover{
    background-color: white;
}

/* MAIN */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* center content horizontally */
    padding: 20px 20px;
    background: linear-gradient(180deg, #010101, #121212); /* subtle gradient */
}
.hero {
    text-align: center;
    padding: 80px 20px 40px;
}
.hero-title {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 4px;
    margin: 0;
    background: linear-gradient(90deg, #ffffff, #8888ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.307);
}

.hero-subtitle {
    font-family: "Product Sans Light", Arial, sans-serif;
    font-size: 20px;
    color: #aaa;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Container for cards: use row layout on large screens */
.floater-container {
    display: flex;
    flex-wrap: wrap;       /* cards wrap on smaller screens */
    justify-content: center; /* center cards horizontally */
    gap: 15px;
    margin-top: 45px;
}

/* Individual card styling */
.floater {
    font-family: "Product Sans Light", Arial, sans-serif;
    font-size: 15px;
    display: flex;
    letter-spacing: 1px;
    flex-direction: column;
    background-color: rgba(16, 19, 83, 0.3);
    height: 650px;
    width: 320px;             /* responsive width */
    margin: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for cards */
.floater:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

/* Card headings */
.floater h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #49416a;
}

/* Card paragraphs */
.floater p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Optional: bullet lists inside cards */
.floater ul {
    padding-left: 20px;
    color: #aaa;
    line-height: 1.5;
}
.floater ul li {
    margin-bottom: 8px;
}

/* FOOTER */
.footer{
    display: flex;
    position: fixed;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    pad: 18px 40px;
    border-top: 1px solid #ebd2d22f;
    padding: 13px 20px;  
    bottom: 0;
    background-color: #000;
}

/* SIGNUP PAGE */ 
/* ===== HOW IT WORKS + GET STARTED ===== */

.how-section{
  margin-top: 50px;
  padding: 60px 5% 90px;
}

.how-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  align-items: start;
}

.how-card, .start-card{
  background: rgba(12, 14, 20, 0.85);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}

.chip{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}

.how-card h2{
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
}

.how-desc{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-size: 14px;
}

.steps{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step{
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.step-dot{
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, #2b6cff, #00ffb3);
  box-shadow: 0 0 14px rgba(0,255,179,0.25);
}

.step h4{
  margin: 0 0 4px;
  font-size: 14px;
}

.step p{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.45;
}

.mini-metrics{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.metric{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}


/* =========================================================
   SIGNUP PAGE ONLY (SCOPED) — will NOT affect index.html
   Add class="page-signup" on <main>
========================================================= */

.page-signup{
  flex: 1;
  width: 100%;
  padding: 20px 20px 80px;
  background: linear-gradient(180deg, #010101, #121212);
}

/* layout container */
.page-signup .how-section{
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 20px 0 70px;
}

.page-signup .how-grid{
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
  align-items: start;
}

.page-signup .how-card,
.page-signup .start-card{
  background: rgba(12, 14, 20, 0.86);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}

/* left card */
.page-signup .chip{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}

.page-signup .how-card h2{
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
}

.page-signup .how-desc{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-size: 14px;
}

.page-signup .steps{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.page-signup .step{
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.page-signup .step-dot{
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, #2b6cff, #00ffb3);
  box-shadow: 0 0 14px rgba(0,255,179,0.25);
}

.page-signup .step h4{
  margin: 0 0 4px;
  font-size: 14px;
}

.page-signup .step p{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.45;
}

.page-signup .mini-metrics{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-signup .metric{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

/* ===== RIGHT CARD PRO (clean + fixed spacing) ===== */
.page-signup .start-card--pro{
  position: relative;
  overflow: hidden;
}

.page-signup .start-border{
  position:absolute;
  inset: -2px;
  border-radius: 20px;
  background: conic-gradient(
    from 180deg,
    rgba(43,108,255,.0),
    rgba(43,108,255,.75),
    rgba(0,255,179,.60),
    rgba(0,195,255,.70),
    rgba(43,108,255,.75),
    rgba(43,108,255,.0)
  );
  filter: blur(12px);
  opacity: .45;
  animation: spin 7s linear infinite;
  pointer-events:none;
}

@keyframes spin { to { transform: rotate(360deg); } }

.page-signup .start-head{ position: relative; z-index: 2; }

.page-signup .start-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 14px;
}

.page-signup .start-badge .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(90deg, #2b6cff, #00ffb3);
  box-shadow: 0 0 14px rgba(0,255,179,.30);
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot{
  0%,100%{ transform: scale(1); opacity: .9; }
  50%{ transform: scale(1.22); opacity: 1; }
}

.page-signup .bookmark-btn--pro{
  display:block;
  text-align:center;
  text-decoration:none;
  width: 100%;
  margin-top: 16px;
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(90deg, #2b6cff, #00c3ff);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: grab;
  user-select: none;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 18px 40px rgba(43,108,255,.18);
}

.page-signup .bookmark-btn--pro:active{ cursor: grabbing; }

.page-signup .bookmark-btn--pro .btn-text{
  position: relative;
  z-index: 3;
  font-weight: 900;
  letter-spacing: .02em;
  color:#fff;
}

.page-signup .bookmark-btn--pro:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(43,108,255,.26);
}

.page-signup .btn-glow{
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.20), transparent 60%);
  opacity: .75;
  transform: translateX(-10%);
  transition: transform .25s ease, opacity .25s ease;
  z-index: 1;
}

.page-signup .bookmark-btn--pro:hover .btn-glow{
  transform: translateX(8%);
  opacity: .95;
}

.page-signup .btn-shine{
  position:absolute;
  top:-80%;
  left:-40%;
  width: 60%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transform: rotate(18deg);
  opacity: 0;
  z-index: 2;
}

.page-signup .bookmark-btn--pro:hover .btn-shine{
  opacity: .9;
  animation: shine 1.1s ease forwards;
}

@keyframes shine{
  from{ transform: translateX(-40%) rotate(18deg); }
  to{ transform: translateX(260%) rotate(18deg); }
}

.page-signup .shortcut-info--pro{
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 2;
}

.page-signup .shortcut-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 6px;
}

.page-signup .keys{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-signup .plus{ opacity:.45; font-size:12px; }

.page-signup code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

.page-signup .note--pro{
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  position: relative;
  z-index: 2;
}

.page-signup .start-particles{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.55;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 75%);
}

.page-signup .start-particles i{
  position:absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 18px rgba(0,255,179,.12);
  animation: floatUp 6.5s ease-in-out infinite;
}

.page-signup .start-particles i:nth-child(1){ left: 12%; top: 78%; animation-delay: 0s; }
.page-signup .start-particles i:nth-child(2){ left: 28%; top: 88%; animation-delay: 1.2s; }
.page-signup .start-particles i:nth-child(3){ left: 52%; top: 82%; animation-delay: 2.1s; }
.page-signup .start-particles i:nth-child(4){ left: 70%; top: 90%; animation-delay: .7s; }
.page-signup .start-particles i:nth-child(5){ left: 84%; top: 80%; animation-delay: 1.8s; }
.page-signup .start-particles i:nth-child(6){ left: 40%; top: 92%; animation-delay: 2.6s; }

@keyframes floatUp{
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .55; }
  50%  { transform: translateY(-36px) translateX(8px); opacity: .30; }
  100% { transform: translateY(-78px) translateX(-8px); opacity: 0; }
}

/* responsive */
@media (max-width: 980px){
  .page-signup .how-grid{ grid-template-columns: 1fr; }
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .how-grid{ grid-template-columns: 1fr; }
}