:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --accent: #2f9e44;
  --accent-2: #74c69d;
  --text: #1c1f33;
  --muted: #5c6275;
  --stroke: #dbe2ea;
  --radius: 18px;
  --font: "Space Grotesk", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at 12% 12%, #eaf3f9, #f4f7fb 45%),
    radial-gradient(circle at 82% 0%, #d9f1e3, #f4f7fb 35%),
    linear-gradient(180deg, #f9fbff 0%, #edf2f8 60%, #e8f4ee 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin: -8px -8px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 12px 32px rgba(45, 86, 133, 0.08);
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 18px rgba(24, 55, 98, 0.08);
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.links {
  display: flex;
  gap: 14px;
  font-weight: 500;
}

.links a {
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.links a:hover {
  background: #e9f6ec;
}

.section {
  margin-bottom: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--stroke);
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 32px;
}

.section-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(47, 158, 68, 0.14), rgba(47, 158, 68, 0));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(61, 142, 98, 0.12);
}

.hero h1 {
  font-size: 42px;
  margin: 10px 0;
}

.hero .lede {
  color: var(--muted);
  line-height: 1.6;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(24, 55, 98, 0.08);
}

.card.workshop-card {
  display: grid;
  gap: 12px;
  grid-template-rows: 160px 1fr;
  overflow: hidden;
}

.workshop-image {
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 1px solid #e2efe6;
  position: relative;
  overflow: hidden;
}

.workshop-copy h3 {
  margin: 0 0 8px;
}

.workshop-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(12, 46, 29, 0.18);
  background: linear-gradient(145deg, rgba(214, 242, 223, 0.95), rgba(190, 234, 205, 0.92));
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #0f3821;
  transition: all 0.2s ease;
}

.slide-btn:hover {
  background: linear-gradient(145deg, rgba(190, 234, 205, 0.98), rgba(214, 242, 223, 0.96));
  transform: translateY(-50%) translateY(-1px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.slide-btn.prev {
  left: 10px;
}

.slide-btn.next {
  right: 10px;
}

.card.highlight {
  background: linear-gradient(145deg, #f1fff5, #ebf8f0);
}

.card.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 158, 68, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

.panel {
  margin-top: 28px;
}

.panel h2 {
  margin: 0 0 10px;
}

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

.cta-row {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0c0d11;
  border: none;
}

.btn.ghost {
  background: transparent;
  color:#a1ffbd;
  border-color: #000000;
}

.grid {
  display: grid;
  gap: 12px;
}

.grid.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.thumbs {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.thumb {
  background: linear-gradient(135deg, #e8f3ed, #d9e8f5);
  border: 1px dashed var(--stroke);
  border-radius: 14px;
  min-height: 110px;
}

.thumb.photo {
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: 0 10px 22px rgba(31, 63, 52, 0.14);
}

.thumb.tall {
  min-height: 180px;
}

.thumb.wide {
  grid-column: span 2;
  min-height: 140px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #f8fbff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  font-weight: 600;
  transition: border 0.2s ease;
}

.logo:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.founders .avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d6f1df, #e2f7f6);
  margin-bottom: 10px;
}

.founders .avatar.photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.toc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.toc-step {
  padding: 14px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  text-align: center;
  background: #f9fcff;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.form input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
  color: var(--text);
  font-size: 14px;
}

.form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  resize: vertical;
}

.footer {
  margin-top: 36px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 720px) {
  .links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    padding: 18px;
  }

  .page {
    padding: 16px;
  }
}
