@import "https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap";

/* src/style.css */
:root {
  --green: #02e555;
  --green-text: #087a36;
  --bg: #f7f7f4;
  --panel: #fff;
  --text: #080808;
  --muted: #6f6d68;
  --line: #deded8;
  --soft: #edede8;
  --nav-gutter: clamp(16px, 2.8vw, 40px);
}

[data-theme="dark"] {
  --bg: #0f0f0f;
  --panel: #171717;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --line: #2b2b2b;
  --soft: #1f1f1f;
  --green-text: #02e555;
  --buncss-light: ;
  --buncss-dark: initial;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Space Grotesk, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

main {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 32px 48px;
}

button, a {
  font: inherit;
}

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

nav {
  position: sticky;
  z-index: 10;
  padding: 0 var(--nav-gutter);
  display: flex;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(16px);
  justify-content: space-between;
  align-items:  center;
  height: 66px;
  margin: 0 calc(50% - 50vw);
  top: 0;
}

nav div {
  display: flex;
  align-items:  center;
  gap: 28px;
}

.brand {
  display: flex;
  color: var(--text);
  letter-spacing: -.04em;
  cursor: pointer;
  background: none;
  border: 0;
  align-items:  center;
  gap: 10px;
  padding: 0;
  font-size: 24px;
  font-weight: 700;
}

.brand img {
  width: 24px;
}

.icon, nav a, .actions a, .membership a {
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex;
  background: none;
  border-radius: 999px;
  align-items:  center;
  height: 40px;
  padding: 0 16px;
  font-weight: 600;
}

.icon {
  justify-content: center;
  width: 40px;
  padding: 0;
}

nav a {
  color: var(--muted);
  border: 0;
  height: auto;
  padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:  center;
  gap: 58px;
  min-height: 640px;
}

.hero small, .band small, .section-head small, .flow small, .membership small {
  color: var(--green-text);
  letter-spacing: .12em;
  font-family: IBM Plex Mono, monospace;
  font-size: 12px;
  font-weight: 700;
}

.hero h1 {
  letter-spacing: -.08em;
  margin: 12px 0;
  font-size: clamp(76px, 10vw, 132px);
  line-height: .9;
}

.lead {
  font-size: 24px;
  color: var(--text) !important;
  margin: 0 0 16px !important;
}

.hero p, .band p, .section-head p, .membership p {
  color: var(--muted);
  max-width: 680px;
  font-size: 17px;
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}

.actions .primary {
  background: var(--green);
  color: #05100a;
  border-color: var(--green);
}

.proof {
  font-family: IBM Plex Mono, monospace;
  font-size: 13px !important;
}

.reserve-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 80px #0001;
}

.pie {
  background: conic-gradient(var(--green) 0 40%, var(--soft) 40% 100%);
  position: relative;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: 0 auto 26px;
}

.pie:after {
  content: "";
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 50%;
  inset: 56px;
}

.reserve-card b {
  display: block;
  letter-spacing: -.06em;
  font-size: 56px;
}

.reserve-card span {
  color: var(--muted);
}

dl {
  display: grid;
  gap: 0;
  margin: 24px -28px -28px;
}

dt, dd {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 14px 28px;
}

dt {
  font-weight: 700;
}

dd {
  color: var(--muted);
  text-align: right;
  margin-top: -14px;
}

.band, section {
  padding: 80px 0;
}

.band h2, .section-head h2, .flow h2, .membership h2, .benefits h2 {
  letter-spacing: -.06em;
  margin: 12px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .95;
}

.pillars, .grid, .initiatives {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.pillars article, .strategy, .benefits article, .membership a {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.pillars span {
  display: grid;
  background: var(--green);
  color: #05100a;
  border-radius: 50%;
  place-items:  center;
  width: 42px;
  height: 42px;
  font-weight: 800;
}

.strategy small, .initiatives small {
  color: var(--green-text);
  text-transform: uppercase;
  font-family: IBM Plex Mono, monospace;
  font-size: 11px;
}

.strategy h3, .pillars h3, .benefits h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.strategy p, .pillars p, .benefits p, .initiatives span {
  color: var(--muted);
  line-height: 1.5;
}

.flow-box {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items:  center;
  gap: 14px;
  margin-top: 28px;
}

.flow-box span {
  background: var(--panel);
  border: 1px solid var(--line);
  text-align: center;
  border-radius: 16px;
  padding: 20px;
  font-weight: 700;
}

.flow-box i {
  background: var(--green);
  height: 1px;
}

.membership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items:  start;
  gap: 32px;
}

.initiatives {
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
}

.initiatives a {
  display: grid;
  border-radius: 18px;
  gap: 8px;
  height: auto;
}

.initiatives b {
  font-size: 28px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 28px 0;
}

footer b {
  color: var(--text);
}

@media (max-width: 820px) {
  main {
    padding: 0 18px 32px;
  }

  nav {
    height: 64px;
  }

  nav a {
    display: none;
  }

  .hero, .membership {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 70px;
  }

  .pillars, .grid, .three, .flow-box {
    grid-template-columns: 1fr;
  }

  .flow-box i {
    width: 1px;
    height: 28px;
    margin: auto;
  }

  .actions {
    display: grid;
  }

  .reserve-card {
    padding: 20px;
  }

  .pie {
    width: 210px;
    height: 210px;
  }

  footer {
    display: grid;
    gap: 8px;
  }
}
