:root{
  /* Dark premium palette */
  --bg1:#0b1220;
  --bg2:#0f172a;

  --panel:rgba(255,255,255,0.05);
  --panel2:rgba(255,255,255,0.07);

  --text:rgba(255,255,255,0.92);
  --muted:rgba(255,255,255,0.65);
  --line:rgba(255,255,255,0.10);

  /* Accent colours (subtle) */
  --accent:#7c7cff;
  --accent2:#3fb8ff;

  --shadow:0 20px 60px rgba(0,0,0,0.35);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(800px 520px at 15% 10%, rgba(124,124,255,0.15), transparent 60%),
    radial-gradient(850px 560px at 85% 20%, rgba(63,184,255,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  line-height:1.65;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1100px,92vw);
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(11,18,32,0.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:16px;
}

.brand{ display:flex; gap:12px; align-items:center; }
.logo-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(124,124,255,0.7), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(63,184,255,0.6), transparent 55%);
}

.brand-name{ font-weight:720; letter-spacing:0.2px; }
.brand-tag{ font-size:12px; color:var(--muted); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(124,124,255,0.25), rgba(63,184,255,0.18));
  color:white;
  text-decoration:none !important;
  transition:0.2s ease;
}
.btn:hover{ transform:translateY(-1px); filter:brightness(1.06); }

.btn-ghost{
  background:transparent;
  border:1px solid var(--line);
}

/* Hero */
.hero{ padding:90px 0 60px; }

.hero-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel);
  font-size:13px;
  color:var(--muted);
  margin-bottom:18px;
}

h1{
  font-size:clamp(34px,4vw,56px);
  margin:0 0 14px;
  letter-spacing:-0.5px;
}

.subhead{
  color:var(--muted);
  max-width:62ch;
  margin:0 0 22px;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.meta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.meta-chip{
  padding:10px 14px;
  border-radius:14px;
  background:var(--panel);
  border:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
}

.hero-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}

.note{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.03);
  color:var(--muted);
  font-size:13px;
}

/* Global sections */
.section{ padding:80px 0; }

.section.alt{
  background:rgba(255,255,255,0.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

/* Lists */
.list{ margin:0; padding-left:18px; color:var(--muted); }
.muted{ color:var(--muted); }

/* Philosophy */
.philo{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:30px;
  align-items:start;
}

.points{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.point{
  border:1px solid var(--line);
  background:rgba(255,255,255,0.03);
  border-radius:18px;
  padding:14px;
}

.kicker{
  font-size:12px;
  color:var(--muted);
  letter-spacing:0.2px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.point-text{ font-weight:620; }

.philo-card{
  background:var(--panel);
  border-radius:18px;
  border:1px solid var(--line);
  padding:20px;
  box-shadow:var(--shadow);
}

.philo-card-title{
  font-weight:760;
  margin-bottom:10px;
}

.timeline{
  list-style:none;
  padding:0;
  margin:0;
  color:var(--muted);
}

.timeline li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:9px 0;
  border-bottom:1px solid var(--line);
}

.timeline li:last-child{ border-bottom:none; }

.timeline span{
  color:var(--text);
  font-weight:700;
  white-space:nowrap;
}

.philo-btn{ width:100%; margin-top:12px; }

/* About */
.about{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:30px;
  align-items:start;
}

.about-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow);
}

.about-title{
  font-weight:760;
  margin-bottom:10px;
}

/* Workshops */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:22px;
}

.card{
  background:var(--panel);
  border-radius:18px;
  border:1px solid var(--line);
  padding:18px;
  transition:0.2s ease;
}

.card:hover{
  transform:translateY(-3px);
  border-color:rgba(124,124,255,0.40);
}

.card p{ color:var(--muted); }

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.tag{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.03);
  font-size:12px;
  color:var(--muted);
}

/* Contact */
.contact-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:16px;
}

.contact-item{
  border:1px solid var(--line);
  background:rgba(255,255,255,0.03);
  border-radius:18px;
  padding:14px;
}

.label{ font-size:12px; color:var(--muted); margin-bottom:6px; }
.contact-link{ font-weight:650; }
.hint{ font-size:12px; color:var(--muted); margin-top:6px; }

/* Footer */
.site-footer{
  padding:30px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.footer-links{ display:flex; gap:12px; }

/* Responsive */
@media(max-width:900px){
  .hero-inner{ grid-template-columns:1fr; gap:26px; }
  .philo{ grid-template-columns:1fr; }
  .about{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
}
