:root{
  --green:#1f381f;
  --green-2:#274a27;
  --text:#0f172a;
  --muted:#64748b;
  --bg:#ffffff;
  --card:#ffffff;
  --border:rgba(15,23,42,0.10);
  --shadow:0 18px 60px rgba(15,23,42,0.12);
  --max:1080px;
}
*{box-sizing:border-box}

html, body { height: 100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: var(--text);
  min-height: 100vh;
}

.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.wrap{
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-inner{
  width: 100%;
  padding-bottom: 100px;    /* nudges it slightly up so it feels like your reference */
}

a{color:inherit}
.topbar{
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ← this is the key */
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:-0.01em;
  color:var(--green);
}
.brand img{width:28px;height:28px;border-radius:999px}
.links{
  display:flex;
  gap:14px;
  font-size:14px;
  color:var(--muted);
}
.links a{ text-decoration:none; }
.links a:hover{ color: var(--text); }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 18px;
  width: 100%;
}

.logo-big{
  width:120px;
  height:120px;
  border-radius:999px;
  display:block;
  margin:0 0 18px 0;
}

h1{
  margin:0 0 14px 0;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height:1.02;
  letter-spacing:-0.03em;
  color:var(--green);
}
.sub{
  margin:0 0 18px 0;
  font-size:18px;
  line-height:1.55;
  color:var(--muted);
  max-width: 560px;
}

/* "Chaos" glitch-ish style */
.chaos{
  position:relative;
  display:inline-block;
  color:#111;
  font-weight:900;
  letter-spacing:-0.02em;
}
.chaos::before,
.chaos::after{
  content: attr(data-text);
  position:absolute;
  left:0;
  top:0;
  opacity:0.9;
  pointer-events:none;
  mix-blend-mode:multiply;
}
.chaos::before{ transform: translate(1px, 0); clip-path: inset(0 0 55% 0); }
.chaos::after{ transform: translate(-1px, 0); clip-path: inset(45% 0 0 0); }
.chaos span{
  /* rough underline */
  background: linear-gradient(transparent 60%, rgba(31,56,31,0.16) 60%);
  padding: 0 2px;
}

.cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:999px;
  border:1px solid var(--green);
  background: var(--green);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  box-shadow: 0 14px 40px rgba(31,56,31,0.18);
}
.btn.secondary{
  background:transparent;
  color:var(--green);
  box-shadow:none;
}
.hint{
  font-size:13px;
  color:var(--muted);
  margin-top:10px;
}

footer{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 18px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}
footer{ margin-top: 0; }

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
footer a{
  color:var(--muted);
  text-decoration:none;
}
footer a:hover{ color: var(--text); }