@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Inter:wght@400;500;700;900&display=swap');

:root{
  --bg:#0d1117;
  --bg2:#121826;
  --panel:#171f2d;
  --panel2:#1e293b;
  --text:#f8fafc;
  --muted:#a9b4c4;
  --line:rgba(255,255,255,.12);
  --cyan:#39d5ff;
  --amber:#ffb84d;
  --pink:#ff4fa3;
  --green:#56f0a7;
  --shadow:rgba(0,0,0,.35);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(circle at 18% 18%, rgba(57,213,255,.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255,184,77,.12), transparent 26%),
    radial-gradient(circle at 58% 76%, rgba(255,79,163,.10), transparent 25%),
    linear-gradient(145deg,var(--bg),#080b10 80%);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.noise{
  position:fixed;
  inset:0;
  opacity:.08;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(to bottom, black, transparent 90%);
}

.topbar{
  width:min(1180px,calc(100% - 32px));
  margin:18px auto 0;
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  position:sticky;
  top:12px;
  z-index:20;
  background:rgba(13,17,23,.72);
  border:1px solid var(--line);
  border-radius:24px;
  backdrop-filter:blur(18px);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  text-decoration:none;
}

.brand-mark{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:#091016;
  font-weight:900;
  font-size:1.25rem;
  background:linear-gradient(135deg,var(--cyan),var(--amber));
}

.brand strong,
.brand small{
  display:block;
}

.brand small{
  color:var(--muted);
  margin-top:2px;
}

nav{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:800;
  padding:10px 12px;
  border-radius:999px;
}

nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.07);
}

main{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
}

.hero{
  min-height:calc(100vh - 104px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
  padding:56px 0 72px;
}

.eyebrow{
  color:var(--amber);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  margin:0 0 14px;
}

h1,h2,h3,p{margin-top:0}

h1,
h2,
h3{
  font-family:"Space Grotesk",Inter,sans-serif;
}

h1{
  font-size:clamp(3.25rem,7vw,6.8rem);
  line-height:.9;
  letter-spacing:-.07em;
  margin-bottom:24px;
}

.lead{
  color:#d9e2ee;
  font-size:clamp(1.08rem,2vw,1.28rem);
  line-height:1.65;
  max-width:760px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:30px 0;
}

.button{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:18px;
  text-decoration:none;
  font-weight:900;
  border:1px solid var(--line);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover{
  transform:translateY(-2px);
}

.primary{
  color:#061016;
  background:linear-gradient(135deg,var(--cyan),var(--green));
  box-shadow:0 18px 42px rgba(57,213,255,.20);
}

.secondary{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.large{
  min-height:64px;
  font-size:1.06rem;
}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  max-width:720px;
}

.trust-strip div{
  padding:18px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:22px;
}

.trust-strip strong{
  display:block;
  font-size:clamp(1.4rem,3vw,2.1rem);
  font-weight:900;
}

.trust-strip span{
  color:var(--muted);
  font-weight:800;
}

.microcopy{
  color:var(--muted);
  margin-top:16px;
  font-size:.96rem;
}

.hero-media{
  position:relative;
  min-height:590px;
}

.photo-card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:30px;
  padding:12px;
  box-shadow:0 26px 70px var(--shadow);
  overflow:hidden;
}

.photo-card.big{
  transform:rotate(1.5deg);
}

.photo-card img{
  display:block;
  width:100%;
  height:510px;
  object-fit:cover;
  border-radius:22px;
}

.photo-card span{
  display:block;
  padding:12px 8px 4px;
  color:var(--muted);
  font-weight:800;
}

.floating-card{
  position:absolute;
  left:-28px;
  bottom:18px;
  width:240px;
  padding:18px;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(255,184,77,.95),rgba(255,79,163,.92));
  color:#111827;
  box-shadow:0 24px 50px rgba(0,0,0,.35);
  transform:rotate(-3deg);
}

.floating-card strong,
.floating-card span,
.floating-card small{
  display:block;
}

.floating-card span{
  font-size:3rem;
  font-weight:900;
  letter-spacing:-.06em;
}

.floating-card small{
  font-weight:900;
}

.section{
  padding:74px 0;
}

.section-lead{
  color:#d9e2ee;
  line-height:1.6;
  font-size:1.08rem;
}

.video-section{
  padding-top:40px;
}

.video-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.video-panel{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:30px;
  padding:14px;
  box-shadow:0 26px 70px rgba(0,0,0,.25);
}

.video-panel.main-video{
  background:
    radial-gradient(circle at 30% 20%, rgba(57,213,255,.16), transparent 32%),
    rgba(255,255,255,.06);
}

.video-shell{
  width:100%;
  aspect-ratio:16/9;
  border-radius:24px;
  overflow:hidden;
  background:#05070b;
  border:1px solid rgba(255,255,255,.1);
  position:relative;
}

.video-shell video,
.video-shell img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-poster{
  width:100%;
  height:100%;
  border:0;
  padding:0;
  cursor:pointer;
  position:relative;
  color:var(--text);
  background:#05070b;
}

.video-poster:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.62), transparent 58%);
  z-index:1;
}

.play-button{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:96px;
  height:96px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--cyan),var(--green));
  box-shadow:0 18px 44px rgba(57,213,255,.35);
  z-index:2;
}

.play-button:after{
  content:"";
  position:absolute;
  left:39px;
  top:30px;
  width:0;
  height:0;
  border-top:18px solid transparent;
  border-bottom:18px solid transparent;
  border-left:28px solid #061016;
}

.poster-label{
  position:absolute;
  left:22px;
  bottom:20px;
  z-index:2;
  display:inline-flex;
  padding:10px 13px;
  border-radius:999px;
  color:#061016;
  background:var(--amber);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

.video-copy{
  padding:18px 8px 6px;
}

.video-copy h3{
  font-size:1.7rem;
  letter-spacing:-.04em;
  margin:8px 0 10px;
}

.video-copy p{
  color:var(--muted);
  line-height:1.6;
}

.video-copy code{
  color:var(--green);
  background:rgba(86,240,167,.08);
  padding:2px 5px;
  border-radius:7px;
}

.mission{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:center;
}

.section-copy,
.profile-card,
.support-box,
.money-card,
.build-card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:0 26px 70px rgba(0,0,0,.22);
}

.section-copy{
  padding:clamp(26px,5vw,54px);
}

.section-copy h2,
.section-heading h2,
.support-box h2{
  font-size:clamp(2.4rem,5vw,4.8rem);
  line-height:.95;
  letter-spacing:-.055em;
  margin-bottom:20px;
}

.section-copy p,
.support-box p{
  color:#d9e2ee;
  line-height:1.7;
  font-size:1.08rem;
}

.profile-card{
  padding:18px;
}

.profile-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:24px;
  margin-bottom:18px;
}

.profile-card strong{
  display:block;
  font-size:1.35rem;
  font-weight:900;
}

.profile-card p{
  color:var(--muted);
  line-height:1.55;
}

.section-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 30px;
}

.build-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.build-card{
  overflow:hidden;
  padding:14px;
}

.build-card.feature{
  grid-column:span 2;
  grid-row:span 2;
  display:flex;
  flex-direction:column;
}

.build-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:22px;
  background:#111827;
  margin-bottom:16px;
}

.build-card.feature img{
  height:380px;
}

.tag{
  display:inline-flex;
  width:max-content;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  color:#061016;
  background:var(--cyan);
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:10px;
}

.tag.amber{
  background:var(--amber);
}

.build-card h3{
  font-size:1.55rem;
  letter-spacing:-.035em;
  margin-bottom:10px;
}

.build-card p{
  color:var(--muted);
  line-height:1.55;
  margin-bottom:4px;
}

.money-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.money-card{
  padding:24px;
}

.money-card strong{
  display:block;
  font-size:1.45rem;
  margin-bottom:8px;
}

.money-card span{
  color:var(--muted);
  line-height:1.55;
}

.support-box{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  padding:clamp(28px,5vw,62px);
  background:
    radial-gradient(circle at 20% 10%, rgba(57,213,255,.22), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255,184,77,.16), transparent 28%),
    rgba(255,255,255,.06);
}

.copy-button{
  display:block;
  margin:14px auto 0;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}

.legal{
  color:var(--muted) !important;
  font-size:.92rem !important;
  margin:20px auto 0;
  max-width:720px;
}

footer{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding:34px 0 54px;
  color:var(--muted);
  text-align:center;
}



.project-network{
  position:relative;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.project-card{
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
  padding:22px;
  color:var(--text);
  text-decoration:none;
  background:
    linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035)),
    radial-gradient(circle at 20% 0%,rgba(57,213,255,.16),transparent 38%);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:0 18px 50px rgba(0,0,0,.20);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.project-card:hover{
  transform:translateY(-4px);
  border-color:rgba(57,213,255,.46);
  background:
    linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.045)),
    radial-gradient(circle at 20% 0%,rgba(255,184,77,.18),transparent 40%);
}

.project-kicker{
  color:var(--amber);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.project-card strong{
  display:block;
  font-family:"Space Grotesk",Inter,sans-serif;
  font-size:1.35rem;
  line-height:1.05;
}

.project-card p{
  color:var(--muted);
  line-height:1.55;
  margin:0;
}

.project-card em{
  color:var(--cyan);
  font-style:normal;
  font-weight:900;
  overflow-wrap:anywhere;
}


@media (max-width:980px){
  .hero,
  .mission,
  .video-grid{
    grid-template-columns:1fr;
  }

  .hero-media{
    min-height:auto;
  }

  .build-grid,
  .money-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .build-card.feature{
    grid-column:span 2;
  }
}

@media (max-width:640px){
  .topbar{
    position:relative;
    top:auto;
    align-items:flex-start;
  }

  nav{
    display:none;
  }

  main,
  .topbar,
  footer{
    width:min(100% - 20px,1180px);
  }

  .hero{
    padding:36px 0 42px;
  }

  .hero-actions,
  .trust-strip,
  .build-grid,
  .money-grid{
    grid-template-columns:1fr;
  }

  .button{
    width:100%;
  }

  .trust-strip{
    display:grid;
  }

  .build-card.feature{
    grid-column:auto;
  }

  .photo-card img,
  .build-card.feature img{
    height:auto;
    max-height:420px;
  }

  .floating-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin:-20px auto 0;
  }

  .play-button{
    width:74px;
    height:74px;
  }

  .play-button:after{
    left:31px;
    top:23px;
    border-top-width:14px;
    border-bottom-width:14px;
    border-left-width:22px;
  }
}


@media (max-width:1100px){
  .project-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:680px){
  .project-grid{
    grid-template-columns:1fr;
  }

  .project-card{
    min-height:auto;
  }
}


.build-gallery-section{
  position:relative;
}

.gallery-feature{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:center;
  margin-bottom:20px;
  padding:14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:0 26px 70px rgba(0,0,0,.22);
}

.gallery-feature-copy{
  padding:18px;
}

.gallery-feature-copy h3{
  font-size:clamp(2rem,4vw,3.6rem);
  line-height:.95;
  letter-spacing:-.055em;
  margin:8px 0 14px;
}

.gallery-feature-copy p{
  color:var(--muted);
  line-height:1.6;
  font-size:1.04rem;
}

.build-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.gallery-card{
  margin:0;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.gallery-card img{
  display:block;
  width:100%;
  height:240px;
  object-fit:cover;
  background:#111827;
}

.gallery-card figcaption{
  min-height:72px;
  padding:14px;
  color:var(--muted);
  line-height:1.45;
  font-weight:800;
}

@media (max-width:1100px){
  .build-gallery{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:980px){
  .gallery-feature{
    grid-template-columns:1fr;
  }
}

@media (max-width:680px){
  .build-gallery{
    grid-template-columns:1fr;
  }

  .gallery-card img{
    height:auto;
    max-height:420px;
  }
}
