/* LOVE EARTH — Style (2+3 mix: dark futurism + warm earth)by Michael Ferber */

:root{
  --bg0: #07090f;
  --bg1: #0b1020;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.12);

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);

  --earth: #35d0a6;     /* green-teal */
  --warm: #f5b54a;      /* warm amber */
  --hot:  #ff4d7d;      /* subtle neon accent */
  --link: #86ffe0;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(53,208,166,0.14), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(245,181,74,0.10), transparent 55%),
    radial-gradient(1200px 800px at 50% 85%, rgba(255,77,125,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height:100vh;
}

a{ color: var(--link); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 18px 54px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  border-radius: 14px;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand .title{
  font-weight: 750;
  letter-spacing: 0.6px;
  font-size: 16px;
}

.brand .tagline{
  font-size: 12px;
  color: var(--muted);
}

.lang{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 13px;
  color: var(--muted);
}

.lang a{
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--text);
  background: transparent;
}

.lang a:hover{
  border-color: var(--border);
  background: rgba(255,255,255,0.05);
  text-decoration:none;
}

.lang a.active{
  border-color: rgba(53,208,166,0.35);
  background: rgba(53,208,166,0.10);
}

.hero{
  margin-top: 22px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}

.hero h1{
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: 0.2px;
}

.hero p{
  margin-top: 12px;
  color: var(--muted);
  max-width: 75ch;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.badge .dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--earth);
  box-shadow: 0 0 14px rgba(53,208,166,0.35);
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

@media (min-width: 860px){
  .grid{ grid-template-columns: 1.1fr 0.9fr; }
}

.card{
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
}

.card h2{
  font-size: 18px;
  margin-bottom: 10px;
}

.card p{
  color: var(--muted);
  margin-bottom: 10px;
  max-width: 80ch;
}

.list{
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.list li{ margin: 6px 0; }

.section{
  margin-top: 18px;
}

.section h2{
  font-size: 18px;
  margin: 18px 0 10px;
}

hr.sep{
  margin: 18px 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.video-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 860px){
  .video-grid{ grid-template-columns: 1fr 1fr; }
}

.video{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
}

.video iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(245,181,74,0.22);
  background: rgba(245,181,74,0.08);
  color: rgba(255,255,255,0.80);
}

.small{
  font-size: 13px;
  color: var(--muted);
}

.footer{
  margin-top: 28px;
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.18);
  color: var(--muted);
  font-size: 13px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
}

.footer a{ color: var(--link); }

.cta{
  display:inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(53,208,166,0.35);
  background: rgba(53,208,166,0.10);
  color: var(--text);
  font-weight: 650;
}

.cta:hover{
  background: rgba(53,208,166,0.14);
  text-decoration:none;
}
