/* Bytesons.xyz — minimal, permanent, quiet */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

:root{
  --bg:#000000;
  --fg:#f2f2f2;
  --muted:rgba(242,242,242,.78);
  --faint:rgba(242,242,242,.55);
  --max: 760px;
  --pad: 24px;
  --section: 64px;
  --section-lg: 104px;
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height:1.7;
}

a{
  color:var(--fg);
  text-decoration:none;
  border-bottom:1px solid rgba(242,242,242,.35);
}
a:hover{ border-bottom-color: rgba(242,242,242,.75); }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px var(--pad) 80px;
}

.nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom: 44px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  letter-spacing: .02em;
}

.nav a{
  border-bottom:1px solid transparent;
  padding-bottom:2px;
  opacity:.85;
}
.nav a:hover{ opacity:1; border-bottom-color: rgba(242,242,242,.55); }
.nav a.active{ opacity:1; border-bottom-color: rgba(242,242,242,.9); }

h1,h2{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 400;
  margin: 0 0 18px;
}

h1{
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}


}

h2{
  font-size: 28px;
  line-height: 1.3;
  margin-top: 0;
}

p{ margin: 0 0 22px; font-size: 18px; }

/* Keep the small style, but do not force lowercase globally */
.small{ font-size:14px; letter-spacing:.08em; opacity:.7; }
.small.lc{ text-transform: lowercase; }

.sub{ font-size:16px; color:var(--muted); }

.section{ margin: var(--section) 0; }
.section.lg{ margin: var(--section-lg) 0; }

.hr{
  margin: var(--section-lg) 0;
  text-align:center;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.list{
  margin: 18px 0 26px 0;
  padding-left: 18px;
}
.list li{ margin: 10px 0; color: var(--muted); font-size: 18px; }

.kicker{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}

.footer{
  margin-top: var(--section-lg);
  padding-top: 24px;
  color: var(--faint);
  font-size: 14px;
}

/* simple “hero” */
.hero{
  margin: 74px 0 var(--section-lg);
}
.hero h1{ margin-bottom: 18px; }
.hero .sub{ max-width: 44ch; }

/* manifesto styling */
.manifesto p{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg);
}
.manifesto .muted{
  color: var(--muted);
  font-family: inherit;
  font-size: 18px;
  line-height: 1.7;
}

.center{ text-align:center; }

@media (max-width: 520px){
  .wrap{ padding-top: 36px; }
  h1{ font-size: 34px; }
  h2{ font-size: 24px; }
  p{ font-size: 17px; }
  .manifesto p{ font-size: 18px; }
}

.embed-wrap{
  margin-top: 18px;
  width: 100%;
  height: 1000px; /* you can change this later */
  border: 1px solid rgba(242,242,242,.15);
  border-radius: 14px;
  overflow: hidden;
}

.embed-wrap iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

.sample{
  display: inline-block;
  margin-top: 22px;
  text-align: left;
  border-bottom: none;
}

.sample img{
  display: block;
  width: 220px;          /* “sample size” */
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(242,242,242,.15);
}

.sample .small{
  display: inline-block;
  margin-top: 10px;
  opacity: .7;
}

.btn{
  background: rgba(242,242,242,.10);
  color: var(--fg);
  border: 1px solid rgba(242,242,242,.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
}
.btn:hover{ border-color: rgba(242,242,242,.35); }
.btn:disabled{ opacity:.5; cursor:not-allowed; }
.btn-ghost{ background: transparent; }

.input, .textarea{
  width: 100%;
  margin-top: 8px;
  background: rgba(242,242,242,.04);
  color: var(--fg);
  border: 1px solid rgba(242,242,242,.14);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 16px;
  outline: none;
}
/* Fix select + option visibility on dark backgrounds */
select{
  background-color: rgba(242,242,242,.04);
  color: var(--fg);
}

select option{
  background-color: #000000;
  color: var(--fg);
}

/* Ensure focus + hover states remain readable */
select:focus,
select:hover{
  border-color: rgba(242,242,242,.35);
  outline: none;
}


