@font-face {
  font-family: 'SpaceX';
  src: url('fonts/SpaceX.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
}
@media (min-width: 769px) {
  .hero {
    min-height: 85vh;
  }

  .section.story {
    margin: -200px auto 120px !important;
  }
}
/* HERO BACKGROUND */
.hero {
  min-height: 100vh;
  
  position: relative;
 overflow-x: hidden;
  background: radial-gradient(circle at 30% 30%, #14002b, #000);
}

@media (min-width: 769px) {
  .center {
    transform: translateY(-50px); /* 🔥 main global lift */
  }
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 60px;

  position: sticky;
  top: 0;
  z-index: 100;

  background: linear-gradient(
    180deg,
    #050608 0%,
    #0a0d12 100%
  );

  border-bottom: 1px solid rgba(255,140,0,0.25);

  box-shadow:
    0 0 20px rgba(255,120,60,0.15),
    inset 0 0 10px rgba(255,120,60,0.05);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 28px;               /* keep layout size */
  height: 28px;

  transform: scale(1.8);     /* make it visually bigger */
  transform: scale(1.8) translateX(-4px);
  transform-origin: left center;

  border-radius: 50%;
  background-image: url('https://res.cloudinary.com/daz8so5gl/image/upload/v1776811021/ChatGPT_Image_Apr_21_2026_11_36_53_PM_hykwfq.png');
  background-size: cover;
  background-position: center;
}

.logo span {
  font-family: 'SpaceX', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: white;

  text-shadow:
    0 0 6px rgba(255,200,140,0.9),
    0 0 12px rgba(255,180,120,0.8),
    0 0 24px rgba(255,150,90,0.6);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 42px;
  
}

.nav-links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;

  color: white;          /* full white */
  opacity: 0.85;         /* slight softness */
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffb86b;        /* your orange */
  opacity: 1;
}

/* CTA BUTTON */
.cta {
  background: linear-gradient(to right, #ffb86b, #ff7a2f);
  color: black;
  border: none;

  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;

  box-shadow: 
    0 0 10px rgba(255,180,120,0.7),
    0 0 20px rgba(255,120,60,0.5);

  transition: 0.3s;
}

.cta:hover {
  box-shadow: 
    0 0 15px rgba(255,200,140,0.9),
    0 0 30px rgba(255,150,80,0.7);
}

/* HERO CENTER */
.center {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 40px;
}

/* MASCOT (circle glow like astroid) */
.mascot {
  width: 200px;
  height: 200px;
  margin: auto;
    margin-top: 60px;   /* 🔥 pushes mascot down */
  border-radius: 50%;
  position: relative;

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





  animation: floaty 4s ease-in-out infinite;
}

/* IMAGE */
.mascot img {
  width: 180%;
  height: 180%;
  object-fit: contain;
  border-radius: 50%;
  z-index: 2;
}

/* GLOW AURA (this is what makes it feel premium) */
.mascot::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(255,140,0,0.3), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}

/* FLOAT ANIMATION */
@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* TITLE */
h1 {
  font-family: 'SpaceX', sans-serif;
  font-size: 90px;
  margin: 10px 0 10px;
  color: white;
  letter-spacing: 8px;

  text-shadow:
    0 0 12px rgba(255,200,140,0.9),
    0 0 24px rgba(255,180,120,0.8),
    0 0 48px rgba(255,150,90,0.7),
    0 0 90px rgba(255,120,60,0.6);
}

/* TICKER */
.ticker {
  color: #ffb86b;
  letter-spacing: 5px;
  font-size: 18px;
}

/* SUBTEXT */
.subtitle {
  max-width: 520px;
  margin: 20px auto;
  color: #9ca3af;
  font-size: 16px;
}

/* BUTTONS */
.buttons {
  margin-top: 40px;
}

button {
  padding: 14px 26px;
  margin: 0 10px;
  cursor: pointer;
  letter-spacing: 2px;

  transition: transform 0.2s ease, box-shadow 0.2s ease; /* ← add this */
}

/* PRIMARY BUTTON */
.primary {
  background: linear-gradient(to right, #ffb86b, #ff7a2f);
  border: none;
  color: black;
  font-weight: bold;

  box-shadow: 
    0 0 10px rgba(255,180,120,0.7),
    0 0 20px rgba(255,120,60,0.5);
}

.primary:hover {
  box-shadow: 
    0 0 15px rgba(255,200,140,0.9),
    0 0 30px rgba(255,150,80,0.7);
}

/* SECONDARY */
.secondary {
  background: transparent;
  border: 1px solid #ffb86b;
  color: #ffb86b;
}

.secondary:hover {
  box-shadow: 0 0 15px rgba(255,150,80,0.7);
}

/* STAR LAYERS */
#stars, #stars2, #stars3 {
  position: fixed;
  top: 0;
  left: 0;

  width: 1px;
  height: 1px;

  pointer-events: none;
  z-index: 0; /* ← IMPORTANT (was too low before) */
}

#stars { width: 1px; height: 1px; animation: animStar 50s linear infinite; }
#stars2 { width: 2px; height: 2px; animation: animStar 100s linear infinite; }
#stars3 { width: 3px; height: 3px; animation: animStar 150s linear infinite; }

@keyframes animStar {
  from { transform: translateY(0); }
  to { transform: translateY(-2000px); }
}

/* SMALL STARS */
#stars {
  width: 1px;
  height: 1px;
  box-shadow:
    100px 200px white, 400px 800px white, 900px 1200px white,
    1500px 300px white, 1800px 700px white, 1300px 900px white,
    600px 400px white, 200px 1500px white, 1700px 1400px white;
  animation: animStar 50s linear infinite;
}

/* MEDIUM STARS */
#stars2 {
  width: 2px;
  height: 2px;
  box-shadow:
    300px 600px white, 800px 200px white,
    1200px 1000px white, 1700px 500px white,
    1400px 1600px white;
  animation: animStar 100s linear infinite;
}

/* BIG STARS */
#stars3 {
  width: 3px;
  height: 3px;
  box-shadow:
    500px 300px white, 1000px 700px white,
    1600px 200px white, 1800px 1200px white;
  animation: animStar 150s linear infinite;
}

/* ANIMATION */
@keyframes animStar {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-2000px);
  }
}
.hero {
  position: relative;
  overflow: hidden;
}

.title-img {
  width: clamp(500px, 60vw, 1000px);
  margin-top: -80px;
}

.logo-text {
  height: 24px;          /* keeps nav height small */
 transform: scale(8); /* visually bigger */
  transform-origin: left center;
}

.tagline {
  margin-top: -430px;
  font-family: 'SpaceX', sans-serif;
  font-size: 30px;
  letter-spacing: 6px;
  color: white;

  text-shadow:
    0 0 6px rgba(255,200,140,0.7),
    0 0 12px rgba(255,150,90,0.5);
}

.tagline-img {
  width: clamp(250px, 30vw, 500px);
  position: relative;
  top: -140px; /* 🔥 moved up a bit */
}

.ticker,
.subtitle,
.buttons {
  position: relative;
  top: -120px;
}

.primary:hover,
.secondary:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {

  /* shrink logo text */
  .logo-text {
    transform: scale(3);
  }

  /* stack nav nicer */
  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none; /* optional: hide for now */
  }

@media (max-width: 768px) {

  /* HERO FIX */
  .center {
    margin-top: 60px;
    top: -20px;
  }

  .mascot {
    margin-top: 20px; /* 🔥 was 60px → moves UP */
  }

  .mascot img {
    width: 140%;
    height: 140%;
  }

  .title-img {
    width: 90%;
    margin-top: -220px; /* 🔥 was -140px → moves UP */
  }

}

  .tagline-img {
    width: 80%;
    top: -210px;
  }



  .subtitle {
    font-size: 14px;
    padding: 0 20px;
  }

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

  button {
    width: 100%;
  }
}
@media (max-width: 768px) {

  button {
    width: auto;            /* stop full stretch */
    max-width: 220px;       /* control width */
    margin: 0 auto;         /* center them */
  }

}


@media (max-width: 768px) {

.logo-text {
  height: 18px;
  transform: scale(9);
  transform-origin: left center;
  display: block;
}

  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .logo {
    grid-column: 1;
  }

  .cta {
    grid-column: 3;
    justify-self: end; /* pushes it fully right */
  }

  .nav-links {
    display: none; /* remove middle */
  }

}

@media (max-width: 768px) {

  .cta {
    padding: 6px 12px;   /* smaller */
    font-size: 10px;
    letter-spacing: 1px;
  }

}

.section {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 50px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
   color: #ffb86b;
  opacity: 0.8;
}

.section h2 {
  font-family: 'SpaceX', sans-serif;
  font-size: 42px;
  margin-top: 10px;

  color: white;
}

/* CARD GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CARD */
.card {
  padding: 28px;
  border-radius: 12px;

  background: linear-gradient(
    180deg,
    #050608 0%,
    #0a0d12 100%
  );

  border: 1px solid rgba(255,140,0,0.25); /* changed */

  box-shadow:
    0 0 40px rgba(0,0,0,0.95),            /* added */
    0 0 30px rgba(255,120,60,0.12),       /* changed */
    inset 0 0 25px rgba(255,120,60,0.04); /* changed */
z-index: 1;
  transition: 0.3s;
}

/* subtle glow edge like astroid */
.card:hover {
  border: 1px solid rgba(255,180,120,0.5);

  box-shadow:
    0 0 30px rgba(255,150,80,0.25),
    0 0 80px rgba(255,120,60,0.12),
    inset 0 0 20px rgba(255,120,60,0.05);

  transform: translateY(-6px);
}

.icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.label {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}

.value {
  margin-top: 8px;
  font-size: 20px;
  color: #ffb86b;
}


.steps {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

/* vertical line */
.steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;

  background: linear-gradient(to bottom, #ffb86b, transparent);
}

/* step row */
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

/* circle number */
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: linear-gradient(to right, #ffb86b, #ff7a2f);
  color: black;

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

  font-weight: bold;
  z-index: 2;

  box-shadow: 0 0 15px rgba(255,120,60,0.6);
}

/* content box */
.step-content {
  position: relative;

  background: linear-gradient(
    180deg,
    #050608 0%,
    #0a0d12 100%
  );

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

  box-shadow:
    0 0 20px rgba(255,120,60,0.08),
    inset 0 0 15px rgba(255,120,60,0.03);

  padding: 20px;
  border-radius: 10px;

  transition: 0.3s;
}

.step-content h3 {
  margin: 0;
  font-family: 'SpaceX', sans-serif;
  font-size: 18px;
}

.step-content p {
  margin-top: 8px;
  color: #9ca3af;
  font-size: 14px;
}

/* hover */
.step:hover .step-content {
  transform: translateX(6px);

  box-shadow:
    0 0 30px rgba(255,150,80,0.2),
    inset 0 0 20px rgba(255,120,60,0.05);
}

/* STORY LAYOUT */
.story-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT STYLE */
.story-text p {
  font-family: 'SpaceX', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  margin: 12px 0;

  color: white;
  opacity: 0.9;

  text-transform: lowercase; /* keeps that degen aesthetic */
}

/* make certain letters behave if font acts weird */
.story-text p::first-letter {
  text-transform: lowercase;
}

/* IMAGE */
.story-img {
  width: 100%;
  border-radius: 12px;

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

  box-shadow: 0 0 30px rgba(255,120,60,0.15);

  transition: 0.3s;
}

.story-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 50px rgba(255,150,80,0.25);
}

@media (max-width: 768px) {

  .story-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-text {
    text-align: center;
  }

  .story-text p {
    font-size: 16px;
  }

}

/* STORY CARD (CLEAN) */
.story-wrap {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;

  padding: 40px;
  border-radius: 14px;

  /* 🔥 deeper space base */
  background: linear-gradient(
    180deg,
    #050608 0%,
    #0a0d12 100%
  );

  /* 🔥 cleaner orange edge */
  border: 1px solid rgba(255,140,0,0.25);

  /* 🔥 glow like your buttons */
  box-shadow:
    0 0 30px rgba(255,120,60,0.12),
    0 0 80px rgba(255,120,60,0.05),
    inset 0 0 25px rgba(255,120,60,0.04);
}

/* HOVER */
.story-wrap:hover {
  border: 1px solid rgba(255,180,120,0.4);
  box-shadow: 0 0 60px rgba(255,120,60,0.15);
}

/* TEXT */
.story-text p {
  font-family: 'SpaceX', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  margin: 12px 0;
  color: white;
  opacity: 0.9;
  text-transform: lowercase;
}

/* IMAGE */
.story-img {
  width: 100%;
  border-radius: 10px;

  filter: brightness(0.7);
  transition: 0.3s;
}

.story-img:hover {
  filter: brightness(1);
  transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 768px) {
  .story-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-text {
    text-align: center;
  }

  .story-text p {
    font-size: 16px;
  }
}
.section.story {
  margin: -140px auto 120px !important;
  position: relative;
  z-index: 3;
}



@media (max-width: 768px) {

  /* section titles (NOT hero h1) */
  .section h2 {
    font-size: 34px; /* was 42px → slight shrink */
  }

  /* step titles */
  .step-content h3 {
    font-size: 16px; /* was 18px */
  }

  /* card values */
  .value {
    font-size: 18px; /* was 20px */
  }

  /* small labels */
  .label {
    font-size: 10px; /* was 11px */
  }

}

.story-gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-gallery img {
  width: 100%;
  border-radius: 10px;
  filter: brightness(0.55);
  transition: 0.3s;
}

.story-gallery img:hover {
  filter: brightness(0.9);
  transform: scale(1.03);
}

.story-gallery img {
  display: block;

  width: 100%;
  border-radius: 12px;

  filter: brightness(0.6);

  /* ❌ remove direct border */
  border: none;

  /* 🔥 use outline instead (fixes uneven feel) */
  outline: 2px solid rgba(255,140,0,0.35);
  outline-offset: 0px;

  /* subtle depth */
  box-shadow:
    0 0 20px rgba(255,120,60,0.12),
    inset 0 0 10px rgba(255,120,60,0.04);

  transition: 0.3s;
}

.story-gallery img:hover {
  filter: brightness(0.9);

  outline: 2px solid rgba(255,180,120,0.6);

  box-shadow:
    0 0 30px rgba(255,150,80,0.25),
    inset 0 0 15px rgba(255,120,60,0.05);

  transform: scale(1.02);
}

.ca-box {
  position: relative;   /* 🔥 required */
  z-index: 2;           /* 🔥 above stars (which are 0) */

 padding: 16px 18px; /* thinner */
  border-radius: 12px;

  background: linear-gradient(
    180deg,
    #050608 0%,
    #0a0d12 100%
  );

  border: 1px solid rgba(255,140,0,0.25);

  box-shadow:
    0 0 30px rgba(255,120,60,0.12),
    inset 0 0 20px rgba(255,120,60,0.04);
}

.ca-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.ca-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  font-family: monospace;
  color: #ffb86b;
}

.copy-btn {
  background: linear-gradient(to right, #ffb86b, #ff7a2f);
  color: black;
  border: none;

  padding: 10px 18px;
  cursor: pointer;
  letter-spacing: 2px;

  box-shadow:
    0 0 10px rgba(255,180,120,0.7),
    0 0 20px rgba(255,120,60,0.5);
  position: relative;
  top: -11px; /* 👈 move it slightly up */

  transition: 0.3s;
}

.copy-btn:hover {
  box-shadow:
    0 0 15px rgba(255,200,140,0.9),
    0 0 30px rgba(255,150,80,0.7);
}

.link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.link-btn {
  padding: 12px 20px;
  text-decoration: none;

  border-radius: 8px;
  border: 1px solid rgba(255,140,0,0.25);

  color: #ffb86b;
  letter-spacing: 2px;

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

  transition: 0.3s;
}

.link-btn:hover {
  border: 1px solid rgba(255,180,120,0.6);

  box-shadow:
    0 0 20px rgba(255,120,60,0.2);

  transform: translateY(-3px);
}

html {
  scroll-behavior: smooth;
}

.ca-block {
  margin-top: -60px;   /* pull it UP */
}

section {
  scroll-margin-top: 100px;
}



 .hero-container {
  width: 100%;
  max-width: 1200px;   /* 🔥 controls wideness */
  margin: 0 auto;      /* keeps it centered */
  padding: 0 20px;     /* breathing room on smaller screens */
}

@media (min-width: 1600px) {

  .hero-container {
    max-width: 1300px;
  }

  .center {
    transform: scale(1.05); /* makes it feel bigger without breaking */
  }

}

.hero-stack {
  position: relative;
}

.hero-stack {
  position: relative;
}

/* 🔥 DESKTOP CONTROL */
@media (min-width: 769px) {
  .hero-stack {
    top: -260px;   /* 🔥 strong but stable */
  }
.ticker {
  margin-top: -10px;   /* 🔥 pulls it closer to tagline */
}
  .hero-sub {
    position: relative;
    top: -300px;   /* 🔥 tighter under title */
  }
}

/* mascot independent */
.mascot {
  margin-top: 100px;   /* push it down more if needed */
}

@media (min-width: 769px) {
  .section.story {
    margin-top: -600px !important;  /* 🔥 pull it UP hard */
  }
}
@media (max-width: 768px) {
  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .title-img,
  .tagline-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .buttons {
    align-items: center;
  }
}
@media (max-width: 768px) {

  /* TITLE IMAGE */
  .title-img {
    width: 90%;
    margin-top: -140px;
  }

  /* 🔥 SECOND TITLE (tagline image) — MOVE IT DOWN */
  .tagline-img {
    width: 80%;
    position: relative;
    top: -140px; /* was -210 → this moves it DOWN */
  }

  /* 🔥 EVERYTHING UNDER IT */
  .ticker,
  .subtitle,
  .buttons {
    position: relative;
    top: -140px; /* keep aligned with tagline */
  }

}

body {
  overflow-x: hidden;
}
@media (max-width: 768px) {

  .tagline-img {
    width: 80%;
    position: relative;
    top: -230px; /* 🔥 final position */
  }

  .ticker,
  .subtitle,
  .buttons {
    position: relative;
    top: -230px; /* 🔥 perfectly aligned */
  }

}



}
.story-images img:hover {
  filter: brightness(1);
  transform: scale(1.02);
}

@media (max-width: 768px) {

  .mascot {
    transform: translateY(-40px) !important;
  }

  .title-img {
    transform: translateY(-60px) !important;
  }

}

.story-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 🔥 spreads lines evenly */
  height: 100%;
}

.story-text p {
  margin: 0;
  line-height: 1.8;   /* 🔥 more breathing room */
  padding: 10px 0;    /* 🔥 extra spacing between lines */
}

@media (max-width: 768px) {

  /* force true centering */
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .center {
    text-align: center;
    width: 100%;
  }

  .buttons {
    align-items: center;
  }

