@charset "UTF-8";

:root{
  --bg:#14110f;
  --bg-soft:#191512;
  --panel:#1d1815;
  --panel2:#241d19;
  --text:#f2e7da;
  --muted:#baa999;
  --line:#342923;
  --accent:#c68657;
  --accent2:#e0ab81;
  --danger:#d16c68;
  --radius:16px;
  --shadow:0 18px 42px rgba(0, 0, 0, .34);
  --pfp-ring:var(--accent);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;min-height:100%}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  line-height:1.65;
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(198,134,87,.16), transparent 55%),
    radial-gradient(700px 420px at 100% 0%, rgba(224,171,129,.07), transparent 52%),
    linear-gradient(180deg, #1a1512 0%, var(--bg) 100%);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:none}
.hidden{display:none !important}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.container.wide,
main.container.wide{
  max-width:1240px;
}

.fade-in,
.reveal{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .55s ease, transform .55s ease;
}
.fade-in.show,
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(20,17,15,.84);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(224,171,129,.08);
}

.nav{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo-wrap{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.logo{
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.01em;
}

.pfp{
  width:38px;
  height:38px;
  border-radius:50%;
  border:2px solid var(--pfp-ring);
  padding:2px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--panel);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}

.pfp img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
}

.nav-links{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}

.nav-links a{
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:background .18s ease, color .18s ease, border-color .18s ease;
}

.nav-links a:hover{
  background:rgba(198,134,87,.11);
  border-color:rgba(198,134,87,.16);
  color:var(--text);
}

.nav-links a.active{
  color:#18120f;
  background:var(--accent);
  border-color:var(--accent);
}

.hover-card{
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  width:320px;
  background:rgba(29,24,21,.98);
  border:1px solid var(--line);
  border-radius:18px;
  padding:15px;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:100;
}

.logo-wrap:hover .hover-card,
.logo-wrap:focus-within .hover-card{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.logo-wrap::after{
  content:"";
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:16px;
}

.hover-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.hover-title{font-weight:800}
.hover-status{
  font-size:12px;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(198,134,87,.12);
  color:var(--accent2);
}

.hover-text,
.hover-meta{
  color:var(--muted);
  font-size:14px;
  margin-bottom:8px;
}

.hover-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.hover-links a,
.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel2);
  transition:border-color .18s ease, transform .18s ease, background .18s ease;
}

.hover-links a:hover,
.text-link:hover{
  border-color:var(--accent);
  background:#2a211c;
  transform:translateY(-1px);
}

main.container,
main.container.wide{
  padding-top:10px;
  padding-bottom:30px;
}

.hero{
  padding:72px 0 40px;
}

.hero h1{
  font-size:clamp(2.2rem, 4vw, 4.2rem);
  line-height:1.05;
  letter-spacing:-.03em;
  margin:0 0 14px;
}

.hero h1 span{
  color:var(--accent);
}

.hero p,
.sub{
  color:var(--muted);
  max-width:72ch;
  margin:0;
}

section{margin-bottom:42px}
h2{
  margin:0 0 14px;
  font-size:1.7rem;
  letter-spacing:-.02em;
}
h3{
  margin:0 0 10px;
  font-size:1.08rem;
  letter-spacing:-.01em;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)), var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}

.intro-card{
  padding:30px;
}

.highlight-grid,
.info-grid,
.site-grid,
.link-list{
  display:grid;
  gap:18px;
}

.highlight-grid,
.info-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.mini-card{
  background:var(--panel2);
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
}

.mini-card p,
.card p,
.note-box p{
  margin:0;
  color:var(--muted);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  margin-bottom:16px;
  border-radius:999px;
  background:rgba(198,134,87,.11);
  color:var(--accent2);
  font-size:13px;
  font-weight:700;
}

.button-row,
.quick-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.social-btn,
.forget-btn,
button[type="submit"],
.form-submit{
  appearance:none;
  -webkit-appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--accent);
  color:#16110e;
  font-weight:800;
  line-height:1.1;
  cursor:pointer;
  box-shadow:0 12px 25px rgba(0,0,0,.24);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.social-btn:hover,
.forget-btn:hover,
button[type="submit"]:hover,
.form-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(0,0,0,.28);
}

.social-btn.secondary,
.ghost-btn,
.forget-btn.secondary{
  background:var(--panel2);
  color:var(--text);
  border-color:var(--line);
  box-shadow:none;
}

.social-btn.secondary:hover,
.ghost-btn:hover,
.forget-btn.secondary:hover{
  border-color:var(--accent);
  background:#2a211c;
}

.social-btn span{
  display:inline-block;
  white-space:normal;
}

.social-btn svg{
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.tab-btn{
  appearance:none;
  border:1px solid var(--line);
  background:var(--panel2);
  color:var(--muted);
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}

.tab-btn.active{
  background:var(--accent);
  border-color:var(--accent);
  color:#16110e;
}

.tab-panel{display:none}
.tab-panel.active{display:block}

input,textarea,select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#17120f;
  color:var(--text);
  font:inherit;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input:focus,textarea:focus,select:focus{
  outline:none;
  border-color:rgba(198,134,87,.55);
  box-shadow:0 0 0 4px rgba(198,134,87,.10);
  background:#1b1512;
}

textarea{resize:vertical}

.note-box{
  background:linear-gradient(180deg, rgba(198,134,87,.08), rgba(198,134,87,.04));
  border:1px solid rgba(198,134,87,.22);
  border-radius:16px;
  padding:18px;
}

.link-list{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.link-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  background:var(--panel2);
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  min-height:100%;
}

.link-card strong{
  font-size:1rem;
}

.link-card small,
.muted{
  color:var(--muted);
}

.footer{
  margin-top:24px;
  padding:28px 0 0;
  border-top:1px solid rgba(224,171,129,.10);
  color:var(--muted);
  text-align:center;
}

.site-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-top:20px;
}

.site-card{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.site-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.site-title{
  font-size:1.05rem;
  font-weight:800;
}

.site-badge{
  white-space:nowrap;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(198,134,87,.11);
  color:var(--accent2);
  font-size:12px;
  font-weight:700;
}

.site-frame{
  width:100%;
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#130f0d;
  position:relative;
}

.site-frame-inner{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.site-frame-inner iframe,
.site-frame > iframe{
  width:1440px;
  height:810px;
  border:0;
  display:block;
  transform-origin:0 0;
}

.site-hint{
  color:var(--accent2);
  font-weight:700;
}

.site-hint:hover{
  text-decoration:underline;
}

.stats-row{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:20px;
}

.stat-box{
  padding:18px;
  border-radius:16px;
  background:var(--panel2);
  border:1px solid var(--line);
}

.stat-box strong{
  display:block;
  font-size:1.35rem;
  letter-spacing:-.03em;
}

.stat-box span{
  color:var(--muted);
  font-size:14px;
}

@media (max-width:1000px){
  .site-grid,
  .highlight-grid,
  .info-grid,
  .link-list,
  .stats-row{
    grid-template-columns:1fr;
  }
}

@media (max-width:820px){
  .nav{
    align-items:flex-start;
    padding:14px 0;
    min-height:auto;
    flex-direction:column;
  }

  .hero{
    padding:56px 0 28px;
  }

  .intro-card{
    padding:22px;
  }
}

@media (max-width:700px){
  .container,
  .container.wide,
  main.container.wide{
    padding:0 16px;
  }

  .hover-card{
    width:min(320px, calc(100vw - 32px));
  }

  .social-btn,
  .forget-btn,
  button[type="submit"],
  .form-submit,
  .tab-btn{
    width:100%;
    justify-content:center;
  }
}

code,
pre{
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

code{
  background:#231b16;
  border:1px solid #3b2d24;
  border-radius:8px;
  padding:2px 6px;
  color:#f0b78c;
}

pre{
  white-space:pre-wrap;
  overflow:auto;
  background:#17120f;
  border:1px solid #3b2d24;
  border-radius:16px;
  padding:16px;
  color:#dcc9ba;
}

ul,ol{
  padding-left:20px;
}

li + li{
  margin-top:6px;
}

body:has(#modeToggle) [style*="color:#fff"]{ color:var(--text) !important; }
body:has(#modeToggle) [style*="color:#a7b4d6"]{ color:var(--muted) !important; }
body:has(#modeToggle) [style*="background:#7c5cff"]{ background:var(--accent) !important; }
body:has(#modeToggle) [style*="border-color:#7c5cff"]{ border-color:var(--accent) !important; }
body:has(#modeToggle) [style*="background: rgba(255,255,255,.02)"]{ background:var(--panel2) !important; }
body:has(#modeToggle) .pill{ background:var(--panel2) !important; color:var(--muted) !important; }
body:has(#modeToggle) .slider{ background:#30261f !important; border-color:var(--line) !important; }
body:has(#modeToggle) .slider:before{ background:var(--accent2) !important; }
