:root{
  color-scheme:light dark;
  --bg:#eef0f3;
  --bg-top:#fafbfc;
  --ink:#101214;
  --muted:#62676d;
  --subtle:#7c838a;
  --line:rgba(14,18,24,.14);
  --line-strong:rgba(14,18,24,.24);
  --glass:rgba(255,255,255,.62);
  --glass-strong:rgba(255,255,255,.78);
  --glass-soft:rgba(255,255,255,.42);
  --control:rgba(255,255,255,.72);
  --control-pressed:rgba(255,255,255,.9);
  --accent:#0f6bff;
  --accent-ink:#ffffff;
  --danger:#c0261d;
  --success:#167a47;
  --shadow:0 24px 70px rgba(20,24,31,.14);
  --shadow-soft:0 12px 38px rgba(20,24,31,.08);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --page:1120px;
}
*{box-sizing:border-box}
html{background:var(--bg)}
body{
  min-height:100vh;
  margin:0;
  background:
    linear-gradient(180deg,var(--bg-top) 0%,var(--bg) 42%,#e5e8ec 100%),
    linear-gradient(135deg,rgba(255,255,255,.9),rgba(210,216,224,.42));
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","SF Pro Display","Segoe UI",system-ui,sans-serif;
  font-size:17px;
  line-height:1.55;
  letter-spacing:0;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(115deg,rgba(255,255,255,.74),rgba(255,255,255,0) 34%),
    linear-gradient(245deg,rgba(174,183,196,.18),rgba(255,255,255,0) 48%);
  pointer-events:none;
}
a{color:inherit;text-underline-offset:4px}
button,input,select,textarea{font:inherit;letter-spacing:0}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  padding:14px clamp(16px,4vw,40px);
  pointer-events:none;
}
.header-glass{
  width:min(var(--page),100%);
  min-height:60px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:9px 10px 9px 12px;
  border:1px solid rgba(255,255,255,.62);
  border-bottom-color:rgba(12,16,22,.14);
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,255,255,.78),rgba(255,255,255,.44));
  box-shadow:var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter:blur(28px) saturate(1.45);
  -webkit-backdrop-filter:blur(28px) saturate(1.45);
  pointer-events:auto;
}
.brand{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 12px 0 6px;
  color:var(--ink);
  text-decoration:none;
  font-size:15px;
  font-weight:750;
  white-space:nowrap;
}
.brand-mark{
  display:inline-grid;
  place-items:center;
  width:36px;
  height:36px;
  border:1px solid rgba(255,255,255,.68);
  border-bottom-color:rgba(11,16,24,.18);
  border-radius:50%;
  background:linear-gradient(160deg,rgba(255,255,255,.96),rgba(235,238,242,.48));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 6px 16px rgba(20,24,31,.08);
  font-size:11px;
  font-weight:850;
}
.site-header nav{
  display:flex;
  align-items:center;
  gap:4px;
}
.site-header nav a{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  padding:0 15px;
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  font-weight:650;
  text-decoration:none;
  transition:background .18s ease,color .18s ease,box-shadow .18s ease;
}
.site-header nav a:hover,.site-header nav a:focus-visible{
  color:var(--ink);
  background:rgba(255,255,255,.58);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.62);
  outline:0;
}
.hero,.app-list,.page-shell{
  width:min(var(--page),calc(100% - 32px));
  margin:0 auto;
}
.hero{
  min-height:clamp(520px,72vh,760px);
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,360px);
  gap:clamp(22px,5vw,64px);
  align-items:center;
  padding:clamp(64px,9vw,116px) 0 clamp(46px,7vw,86px);
}
.hero-copy{
  max-width:760px;
}
.hero-panel,.app-card,.page-content,.bug-form,.app-summary,.feature-list li,.content .quiet-note{
  border:1px solid rgba(255,255,255,.64);
  border-bottom-color:rgba(12,16,22,.14);
  background:linear-gradient(180deg,var(--glass-strong),var(--glass-soft));
  box-shadow:var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.78);
  backdrop-filter:blur(24px) saturate(1.35);
  -webkit-backdrop-filter:blur(24px) saturate(1.35);
}
.hero-panel{
  align-self:end;
  padding:22px;
  border-radius:var(--radius-xl);
}
.hero-panel span,.app-summary span{
  display:block;
  color:var(--subtle);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero-panel strong{
  display:block;
  margin-top:8px;
  font-size:24px;
  line-height:1.1;
}
.hero-panel p{
  margin:12px 0 0;
  color:var(--muted);
}
.eyebrow{
  margin:0 0 14px;
  color:var(--subtle);
  font-size:12px;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
}
h1,h2,h3,p{letter-spacing:0}
h1{
  max-width:850px;
  margin:0;
  font-size:clamp(48px,8.5vw,104px);
  line-height:.96;
  font-weight:820;
}
.lede{
  max-width:720px;
  margin:22px 0 0;
  color:var(--muted);
  font-size:clamp(19px,2vw,24px);
  line-height:1.42;
}
.lede a,.content a,.site-footer a{
  color:var(--ink);
  font-weight:750;
}
.app-list{
  padding:clamp(42px,6vw,76px) 0 clamp(74px,8vw,112px);
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size:clamp(30px,4.4vw,56px);
  line-height:1;
}
.section-note{
  color:var(--muted);
  font-size:15px;
  font-weight:650;
}
.app-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  padding:clamp(24px,3.4vw,40px);
  border-radius:var(--radius-xl);
  color:var(--ink);
  text-decoration:none;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.app-card:hover,.app-card:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(15,107,255,.24);
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.82);
  outline:0;
}
.app-card h3{
  margin:12px 0 10px;
  font-size:clamp(34px,5vw,64px);
  line-height:1;
}
.app-card p:not(.status){
  max-width:760px;
  margin:0;
  color:var(--muted);
  font-size:18px;
}
.status-row{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.status{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  margin:0;
  padding:0 10px;
  border:1px solid rgba(255,255,255,.68);
  border-bottom-color:rgba(12,16,22,.12);
  border-radius:999px;
  background:rgba(255,255,255,.58);
  color:var(--ink);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.status-soft{color:var(--muted)}
.card-action{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border-radius:999px;
  background:rgba(15,107,255,.94);
  color:var(--accent-ink);
  font-size:14px;
  font-weight:760;
  white-space:nowrap;
  box-shadow:0 10px 26px rgba(15,107,255,.28),inset 0 1px 0 rgba(255,255,255,.3);
}
.page-shell{
  padding:clamp(34px,6vw,72px) 0 clamp(74px,8vw,112px);
}
.page-content{
  max-width:var(--page);
  padding:clamp(22px,4vw,44px);
  border-radius:var(--radius-xl);
}
.page-title{
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
  margin-bottom:30px;
}
.content{
  color:var(--ink);
  font-size:18px;
}
.content h2{
  margin:44px 0 12px;
  font-size:clamp(28px,4vw,46px);
  line-height:1.08;
}
.content h3{
  margin:28px 0 8px;
  font-size:24px;
}
.content p,.content ul{
  color:var(--muted);
}
.content ul{padding-left:20px}
.content code{
  padding:.08em .28em;
  border-radius:7px;
  background:rgba(255,255,255,.58);
  color:var(--ink);
  font-family:"SF Mono","Menlo","Consolas",monospace;
  font-size:.92em;
}
.content pre{
  overflow:auto;
  padding:16px;
  border:1px solid rgba(255,255,255,.58);
  border-bottom-color:rgba(12,16,22,.12);
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.48);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.66);
}
.content pre code{
  display:block;
  padding:0;
  background:transparent;
  line-height:1.55;
  white-space:pre;
}
.app-summary{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  margin:30px 0;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.48);
}
.app-summary div{
  padding:18px;
  background:rgba(255,255,255,.34);
}
.app-summary strong{
  display:block;
  margin-top:6px;
  font-size:18px;
}
.feature-list{
  display:grid;
  gap:10px;
  margin:20px 0 0;
  padding:0;
  list-style:none;
}
.feature-list li{
  padding:15px 16px;
  border-radius:var(--radius-md);
  color:var(--muted);
}
.content .quiet-note{
  padding:18px;
  border-radius:var(--radius-lg);
  color:var(--ink);
}
.bug-action{margin:28px 0 0}
.bug-toggle,.bug-form button{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid rgba(15,107,255,.72);
  border-radius:999px;
  background:linear-gradient(180deg,rgba(34,127,255,.96),rgba(9,94,230,.94));
  color:#ffffff;
  font:inherit;
  font-size:15px;
  font-weight:760;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(15,107,255,.24),inset 0 1px 0 rgba(255,255,255,.26);
}
.bug-toggle:hover,.bug-toggle:focus-visible,.bug-form button:hover,.bug-form button:focus-visible{
  border-color:rgba(15,107,255,.95);
  background:linear-gradient(180deg,rgba(44,137,255,.98),rgba(4,84,220,.98));
  outline:0;
}
.bug-form{
  display:grid;
  gap:16px;
  margin:18px 0 0;
  padding:20px;
  border-radius:var(--radius-xl);
}
.bug-form[hidden]{display:none}
.bug-form label{
  display:grid;
  gap:7px;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
}
.required-star{
  color:var(--danger);
  font-weight:850;
}
.bug-form input,.bug-form select,.bug-form textarea{
  width:100%;
  min-height:46px;
  border:1px solid rgba(12,16,22,.16);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.68);
  color:var(--ink);
  font:inherit;
  font-size:16px;
  font-weight:500;
  padding:11px 13px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.62);
}
.bug-form input:focus,.bug-form select:focus,.bug-form textarea:focus{
  border-color:rgba(15,107,255,.66);
  outline:3px solid rgba(15,107,255,.18);
  background:rgba(255,255,255,.88);
}
.bug-form textarea{
  min-height:116px;
  resize:vertical;
}
.bug-file-drop{
  display:grid;
  gap:8px;
  padding:16px;
  border:1px dashed rgba(12,16,22,.28);
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.42);
}
.bug-file-drop[data-dragging="true"]{
  border-color:rgba(15,107,255,.7);
  background:rgba(15,107,255,.08);
}
.bug-file-drop input{
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}
.file-list{
  margin:0;
  color:var(--muted);
  font-size:14px;
  font-weight:650;
}
.bug-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.bug-form .trap{
  position:absolute;
  left:-10000px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.form-status{
  margin:0;
  color:var(--muted);
  font-size:15px;
  font-weight:700;
}
.form-status[data-state="error"]{color:var(--danger)}
.form-status[data-state="success"]{color:var(--success)}
.kg-width-wide{
  width:min(var(--page),100%);
  max-width:var(--page);
  margin-left:auto;
  margin-right:auto;
}
.kg-width-full{
  width:100vw;
  margin-left:50%;
  transform:translateX(-50%);
}
.site-footer{
  width:min(var(--page),calc(100% - 32px));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin:0 auto 24px;
  padding:18px 22px;
  border:1px solid rgba(255,255,255,.56);
  border-bottom-color:rgba(12,16,22,.12);
  border-radius:999px;
  background:rgba(255,255,255,.42);
  color:var(--muted);
  font-size:14px;
  backdrop-filter:blur(20px) saturate(1.25);
  -webkit-backdrop-filter:blur(20px) saturate(1.25);
}
.coffee-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 12px 6px 6px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.5);
  color:var(--ink);
  font-weight:800;
  text-decoration:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
}
.coffee-link:hover,.coffee-link:focus-visible{
  background:rgba(255,255,255,.76);
}
.coffee-link img{
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 1px 4px rgba(0,0,0,.16);
}
@media(prefers-color-scheme:dark){
  :root{
    --bg:#101215;
    --bg-top:#171a1f;
    --ink:#f4f6f8;
    --muted:#b0b6bd;
    --subtle:#8e98a4;
    --line:rgba(255,255,255,.14);
    --line-strong:rgba(255,255,255,.24);
    --glass:rgba(30,34,40,.64);
    --glass-strong:rgba(43,48,56,.76);
    --glass-soft:rgba(25,29,35,.46);
    --control:rgba(255,255,255,.1);
    --control-pressed:rgba(255,255,255,.16);
    --shadow:0 24px 72px rgba(0,0,0,.36);
    --shadow-soft:0 12px 38px rgba(0,0,0,.26);
    --accent:#5ba2ff;
  }
  body{
    background:
      linear-gradient(180deg,var(--bg-top) 0%,var(--bg) 52%,#0b0d10 100%),
      linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,0));
  }
  .header-glass,.hero-panel,.app-card,.page-content,.bug-form,.app-summary,.feature-list li,.content .quiet-note,.site-footer{
    border-color:rgba(255,255,255,.16);
    border-bottom-color:rgba(255,255,255,.08);
    background:linear-gradient(180deg,var(--glass-strong),var(--glass-soft));
    box-shadow:var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.12);
  }
  .brand-mark,.status,.site-header nav a:hover,.site-header nav a:focus-visible,.bug-form input,.bug-form select,.bug-form textarea,.bug-file-drop{
    background:rgba(255,255,255,.1);
    border-color:rgba(255,255,255,.16);
  }
  .coffee-link{
    background:rgba(255,255,255,.1);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
  }
  .coffee-link:hover,.coffee-link:focus-visible{
    background:rgba(255,255,255,.16);
  }
  .bug-form input:focus,.bug-form select:focus,.bug-form textarea:focus{
    background:rgba(255,255,255,.14);
  }
}
@media(max-width:820px){
  .site-header{
    padding:10px 12px;
  }
  .header-glass{
    align-items:flex-start;
    flex-direction:column;
    border-radius:24px;
  }
  .site-header nav{
    width:100%;
    overflow-x:auto;
    padding-bottom:2px;
  }
  .hero{
    min-height:auto;
    grid-template-columns:1fr;
    padding-top:46px;
  }
  .hero-panel{align-self:auto}
  .app-card,.app-summary,.bug-grid{grid-template-columns:1fr}
  .card-action{justify-self:start}
  .section-head{align-items:start;flex-direction:column}
  .site-footer{
    align-items:flex-start;
    flex-direction:column;
    border-radius:24px;
  }
}
@media(max-width:520px){
  .hero,.app-list,.page-shell,.site-footer{width:min(100% - 20px,var(--page))}
  h1{font-size:clamp(42px,15vw,64px)}
  .page-content{padding:18px}
  .bug-form{padding:16px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    scroll-behavior:auto!important;
    transition:none!important;
    animation:none!important;
  }
}
