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

:root{
  --ink: #111214;
  --gray-mid: #8A8D93;
  --gray-light: #B4B7BC;
  --red: #FF4D4D;
  --paper: #F1F1EF;
}

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

html{ scroll-behavior:smooth; }

body{
  background: var(--paper);
  color: var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
}

a, button{ cursor:default; }

.wrap{
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 60px;
}

/* NAV */
nav.wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 32px;
  padding-bottom: 32px;
}

.nav-links{
  display:flex;
  gap: 28px;
}
.nav-links a{
  font-size: 13px;
  font-weight:500;
  color: var(--ink);
  text-decoration:none;
  letter-spacing:0.01em;
}
.nav-links a:hover{ color: var(--red); }

@media (max-width: 640px){
  .nav-links{ display:none; }
}

/* INTRO REVEAL */
.intro{
  position:fixed;
  inset:0;
  background: var(--ink);
  color: var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 999;
  text-align:center;
  padding: 24px;
  animation: introSlide 2.6s cubic-bezier(.77,0,.18,1) forwards;
}

.intro p{
  font-family:'Syne', sans-serif;
  font-weight:700;
  font-size: clamp(20px, 4vw, 32px);
  max-width: 560px;
  letter-spacing:-0.01em;
  opacity:0;
  animation: introText 2.6s ease forwards;
}

.intro p span{ color: var(--red); }

@keyframes introText{
  0%   { opacity:0; transform: translateY(8px); }
  18%  { opacity:1; transform: translateY(0); }
  62%  { opacity:1; }
  80%  { opacity:0; }
  100% { opacity:0; }
}

@keyframes introSlide{
  0%   { transform: translateY(0); }
  70%  { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

@media (prefers-reduced-motion: reduce){
  .intro{ display:none; }
}


.nav-mark{
  display:flex;
  align-items:center;
  gap: 8px;
  font-family:'Syne', sans-serif;
  font-weight:800;
  font-size: 20px;
  letter-spacing:-0.01em;
}
.nav-mark svg{ width: 40px; height: 40px; }
.nav-mark span span{ color: var(--red); }

.nav-tag{
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero{
  padding: 0;
  min-height: 92vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background-image: url('../img/bg-dandelion.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.38;
  z-index: 0;
}

.hero > .wrap{
  width: 100%;
}

.hero-content{
  position:relative;
  z-index: 1;
  text-align:left;
  max-width: 520px;
}

.hero h1{
  font-family:'Syne', sans-serif;
  font-weight:800;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing:-0.02em;
  margin-top: 12px;
}
.hero h1 span{ color: var(--red); }

.hero .tagline{
  font-family:'Syne', sans-serif;
  font-weight:600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 14px;
}

.hero p.lede{
  max-width: 480px;
  margin: 22px 0 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4c54;
}

/* ECOSYSTEM */
.section-label{
  font-family:'Syne', sans-serif;
  font-weight:700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 10px;
}

.section-title{
  font-family:'Syne', sans-serif;
  font-weight:700;
  font-size: 28px;
  letter-spacing:-0.01em;
  max-width: 480px;
  margin-bottom: 48px;
}

.ecosystem{
  padding: 20px 0 100px;
}

.seed-row{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 44px;
}
.seed-row .dot{
  width: 8px; height: 8px; border-radius:50%;
  background: var(--red);
}
.seed-row .line{
  flex:1;
  height:1px;
  background: linear-gradient(to right, var(--gray-light), transparent);
}

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

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

.card{
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
  min-height: 320px;
  box-shadow: 0 1px 2px rgba(17,18,20,0.04), 0 6px 20px rgba(17,18,20,0.05);
  display:flex;
  flex-direction:column;
  gap: 20px;
}

.card.grown{
  border: 1.5px solid rgba(255,77,77,0.25);
}

.card .badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:'Syne', sans-serif;
  font-weight:700;
  font-size: 12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--red);
  width:fit-content;
}

.card .badge.muted{ color: var(--gray-mid); }

.card .badge .dot{
  width:6px; height:6px; border-radius:50%;
  background: currentColor;
}

.card h3{
  font-family:'Syne', sans-serif;
  font-weight:700;
  font-size: 26px;
}

.card p{
  font-size: 15.5px;
  line-height:1.55;
  color: #5c5e66;
}

.card.pending h3, .card.pending p{
  color: var(--gray-mid);
}

.card .cta{
  margin-top: auto;
  font-family:'Syne', sans-serif;
  font-weight:700;
  font-size: 13px;
  color: var(--ink);
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
}
a.cta:hover{ color: var(--red); cursor:pointer; }
.card.pending .cta{ color: var(--gray-light); }

/* FOOTER */
footer{
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 0;
  margin-top: 40px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(241,241,239,0.12);
}

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

footer .f-mark{
  font-family:'Syne', sans-serif;
  font-weight:800;
  font-size: 18px;
}
footer .f-mark span{ color: var(--red); }

.footer-blurb{
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-light);
  margin-top: 14px;
  max-width: 220px;
}

.footer-social{
  display:flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(241,241,239,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--paper);
  text-decoration:none;
}
.footer-social a:hover{ background: var(--red); }
.footer-social svg{ width:16px; height:16px; }

.footer-col .col-title{
  font-family:'Syne', sans-serif;
  font-weight:700;
  font-size: 12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.footer-col ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.footer-col a{
  font-size: 14px;
  color: rgba(241,241,239,0.82);
  text-decoration:none;
}
.footer-col a:hover{ color: var(--red); }

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 10px;
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--gray-mid);
}
