:root{
  --bg:#0b0c10;
  --card:#12141b;
  --text:#f4f5f7;
  --muted:#b8bdc9;
  --accent:#7CFF8A;
  --accent2:#6aa7ff;
  --line:rgba(255,255,255,.10);
  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --max: 1080px;
  --pad: clamp(18px, 3vw, 28px);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 30% -10%, rgba(122,255,138,.18), transparent 55%),
              radial-gradient(900px 500px at 90% 10%, rgba(106,167,255,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
.small{font-size:.95rem; color:var(--muted)}
.kbd{font: 600 .86rem/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  padding:.18rem .5rem; border:1px solid var(--line); border-radius:999px; color:var(--muted);}

.container{max-width:var(--max); margin:0 auto; padding: 0 var(--pad);}
.nav{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.65);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px;}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.3px;}
.logo-dot{
  width:12px; height:12px; border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(124,255,138,.10);
}
.nav-links{display:flex; gap:14px; flex-wrap:wrap}
.nav-links a{color:var(--muted); font-weight:600; padding:8px 10px; border-radius:999px; border:1px solid transparent}
.nav-links a:hover{border-color:var(--line); color:var(--text)}
.cta{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  background: linear-gradient(135deg, rgba(124,255,138,.16), rgba(106,167,255,.16));
  border:1px solid rgba(255,255,255,.14);
}
.cta strong{font-weight:800}

.hero{padding: 44px 0 26px;}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items:stretch}
@media (max-width: 920px){ .hero-grid{grid-template-columns: 1fr; } }

.card{
  background: rgba(18,20,27,.72);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-pad{padding: 22px}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin: 0 0 10px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  background: rgba(255,255,255,.03);
  font-weight:650;
  font-size:.92rem;
}
.h1{font-size: clamp(2.05rem, 4vw, 3.1rem); line-height:1.15; margin: 10px 0 12px; letter-spacing:-.6px}
.sub{font-size:1.08rem; color:var(--muted); margin:0 0 16px}

.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  font-weight:800;
}
.btn:hover{background: rgba(255,255,255,.06)}
.btn-primary{
  background: linear-gradient(135deg, rgba(124,255,138,.22), rgba(106,167,255,.20));
  border-color: rgba(255,255,255,.22);
}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px}
@media (max-width: 920px){ .grid-3{grid-template-columns:1fr} }

.section{padding: 14px 0 32px}
.section h2{font-size:1.25rem; letter-spacing:-.2px; margin:0 0 10px}
.hr{height:1px; background: var(--line); margin: 18px 0}

.list{margin:0; padding-left: 1.1rem; color:var(--muted)}
.list li{margin: 6px 0}
.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  padding:10px 12px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.pill strong{display:block}
.pill span{color:var(--muted); font-size:.95rem}

.footer{
  padding: 26px 0 40px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer a{color:var(--text); font-weight:700}
.note{
  font-size:.92rem;
  color: var(--muted);
}

/* --- Media / Photos --- */
.hero-photo-wrap{margin-top:14px}
.hero-photo{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  display:block;
}

.photo-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width: 1100px){ .photo-grid{grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 560px){ .photo-grid{grid-template-columns: 1fr;} }

.photo-card{
  margin:0;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
}
.photo-card img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display:block;
}
.photo-card a{display:block; cursor:pointer;}
.photo-card figcaption{
  padding: 10px 12px;
  color: var(--muted);
  font-size: .92rem;
}

/* --- WAFEL footer line --- */
.wafel-line{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top: 6px;
}
.wafel-logo{
  height: 28px;
  width:auto;
  opacity: .92;
}

/* --- Video embeds (responsive, no JS) --- */
.video-embed{
  margin-top: .75rem;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  /* modern browsers */
  aspect-ratio: 16 / 9;
  position: relative;
}
.video-embed iframe{
  width: 100%;
  height: 100%;
  display: block;
}
/* fallback for browsers without aspect-ratio */
@supports not (aspect-ratio: 16 / 9){
  .video-embed{ height: 0; padding-top: 56.25%; }
  .video-embed iframe{ position:absolute; inset:0; height:100%; }
}

