:root{
  --bg:#F5F7FA;
  --paper:#FFFFFF;
  --ink:#0F172A;
  --muted:#475569;
  --accent:#B8FF3B;
  --accent-bright:#B8FF3B;
  --accent-soft:#E8FFC0;
  --line:#DDE4EC;

  --font-sans:ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display:ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-sans);
  line-height:1.55;
  letter-spacing:-.005em;
}

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

.wrap{
  width:min(1080px, calc(100% - 40px));
  margin:0 auto;
}

.mono{font-family:var(--font-mono)}

.display{
  font-family:var(--font-display);
  font-weight:700;
  letter-spacing:-.02em;
}

header{
  padding:16px 0;
  background:var(--paper);
  position:sticky;
  top:0;
  z-index:10;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:14.5px;
}

.mark{
  width:32px;
  height:32px;
  display:block;
  flex-shrink:0;
}

.mark svg{
  display:block;
  width:100%;
  height:100%;
}

.nav-meta{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav small{
  color:var(--muted);
  font-size:12.5px;
  font-family:var(--font-mono);
}

.status-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 1px rgba(15,23,42,.25);
  display:inline-block;
  animation:blink 1.6s steps(2) infinite;
}

@keyframes blink{
  50%{opacity:.25}
}

main{padding:0}

.hero{
  padding:64px 0 0;
  border-bottom:1px solid var(--line);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 240px;
  gap:48px;
  padding-bottom:40px;
}

.tag-row{
  display:flex;
  gap:8px;
  margin-bottom:24px;
  flex-wrap:wrap;
}

.tag{
  font-family:var(--font-mono);
  font-size:11.5px;
  padding:5px 9px;
  border:1px solid var(--ink);
  color:var(--ink);
  text-transform:uppercase;
  letter-spacing:.02em;
}

.tag.fill{
  background:var(--accent);
  color:var(--ink);
  border-color:var(--accent);
  clip-path:polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
  padding:5px 14px;
}

h1{
  margin:0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(38px, 5.6vw, 72px);
  line-height:1.02;
  letter-spacing:-.02em;
  max-width:760px;
}

h1 .strike{
  position:relative;
  color:var(--muted);
}

h1 .strike::after{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  top:48%;
  height:2.5px;
  background:var(--accent);
  transform:rotate(-2deg);
}

h1 .new{color:var(--ink)}

.lead{
  margin:26px 0 0;
  color:var(--muted);
  font-size:clamp(16px, 1.4vw, 18.5px);
  max-width:560px;
}

.meta-col{
  padding-top:6px;
  border-left:1px solid var(--line);
  padding-left:24px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.meta-item .k{
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:5px;
}

.meta-item .v{
  font-size:14.5px;
  font-weight:600;
}

.ticker{
  display:flex;
  gap:0;
  overflow:hidden;
  border-top:1px solid var(--ink);
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--muted);
  padding:10px 0;
}

.ticker span{
  padding-right:36px;
  white-space:nowrap;
}

.ticker .hl{
  color:var(--ink);
  font-weight:700;
}

section{
  padding:56px 0;
  border-bottom:1px solid var(--line);
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom:32px;
}

.section-head h2{
  margin:0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(22px,2.6vw,32px);
  letter-spacing:-.01em;
}

.section-head .mono{
  font-size:12.5px;
  color:var(--muted);
}

.statement p{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(22px, 3vw, 36px);
  line-height:1.25;
  letter-spacing:-.015em;
  max-width:900px;
  margin:0;
}

.highlight{
  display:inline-block;
  background:var(--ink);
  color:var(--accent);
  padding:0 .32em .18em;
  line-height:.95;
  transform:translateY(-.10em);
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
  clip-path:polygon(0 0, calc(100% - .45em) 0, 100% .45em, 100% 100%, 0 100%);
}

.highlight-lime{
  background:var(--accent);
  color:var(--ink);
}

.highlight-black{
  background:var(--ink);
  color:var(--accent);
}

.highlight-white{
  background:var(--paper);
  color:var(--ink);
}

.highlight-grey{
  background:var(--line);
  color:var(--ink);
}

.statement .hl{
  background:var(--ink);
  color:var(--accent-bright);
  padding:.02em .32em .12em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
  clip-path:polygon(0 0, calc(100% - .45em) 0, 100% .45em, 100% 100%, 0% 100%);
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.card-frame{
  background:var(--accent);
  padding:1.5px;
  display:flex;
  clip-path:polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0% 100%);
}

.card{
  background:var(--paper);
  padding:28px 24px;
  min-height:200px;
  height:100%;
  display:flex;
  flex-direction:column;
  position:relative;
  clip-path:polygon(0 0, calc(100% - 24.94px) 0, 100% 24.94px, 100% 100%, 0% 100%);
}

.card .num{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--ink);
  background:var(--accent);
  display:inline-block;
  padding:3px 8px;
  margin-bottom:24px;
  font-weight:600;
  width:fit-content;
}

.card h3{
  margin:0 0 10px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px;
  letter-spacing:-.005em;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:14.5px;
}

.projects{
  display:flex;
  flex-direction:column;
  gap:0;
  border-top:1px solid var(--ink);
}

.project{
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:24px;
  align-items:baseline;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.project .ptag{
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--ink);
  background:var(--accent-soft);
  padding:3px 8px;
  text-transform:uppercase;
  width:fit-content;
  display:inline-block;
}

.project h3{
  margin:0 0 4px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:18px;
}

.project p{
  margin:0;
  color:var(--muted);
  font-size:14.5px;
  max-width:480px;
}

.project .arrow{
  color:var(--muted);
  font-size:14px;
  font-family:var(--font-mono);
}

footer{
  padding:0;
  border-bottom:none;
}

.foot-cta{
  background:var(--ink);
  color:#fff;
  padding:52px 0;
}

.foot-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.foot-cta-text{
  display:block;
  max-width:520px;
}

.cta-label{
  display:block;
  font-family:var(--font-mono);
  color:var(--accent);
  font-size:12px;
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.foot-cta h2{
  margin:0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(22px,3vw,32px);
  letter-spacing:-.01em;
  max-width:480px;
}

.foot-cta a.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 22px;
  background:var(--accent);
  color:var(--ink);
  font-weight:600;
  font-size:14px;
  transition:opacity .2s ease;
  clip-path:polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0% 100%);
}

.foot-cta a.btn:hover{
  opacity:.85;
}

.foot-bottom{
  padding:20px 0;
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  font-size:12.5px;
  color:var(--muted);
  font-family:var(--font-mono);
}

.foot-bottom a{
  color:inherit;
  text-decoration:none;
  padding:2px 6px;
  margin:-2px -6px;
}

.foot-bottom a:hover,
.foot-bottom a:focus{
  background:var(--ink);
  color:var(--accent);
  outline:none;
}

.content{
  background:var(--paper);
  padding:42px;
}

.cut-card{
  background:var(--accent);
  padding:1.5px;
  clip-path:polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.cut-card > .cut-card-inner{
  background:var(--paper);
  padding:42px;
  clip-path:polygon(0 0, calc(100% - 24.5px) 0, 100% 24.5px, 100% 100%, 0 100%);
}

.border-lime{background:var(--accent)}
.border-black{background:var(--ink)}
.border-grey{background:var(--line)}
.border-white::before{background:var(--paper)}

.content h2{
  margin:38px 0 12px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.01em;
}

.content h2:first-child{
  margin-top:0;
}

.content p{
  margin:0 0 16px;
}

.content a{
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

.page-main{
  padding:72px 0 80px;
}

.page-hero{
  margin-bottom:42px;
}

@media (max-width:780px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .meta-col{
    border-left:none;
    border-top:1px solid var(--line);
    padding-left:0;
    padding-top:20px;
    flex-direction:row;
    flex-wrap:wrap;
  }

  .grid3{
    grid-template-columns:1fr;
  }

  .project{
    grid-template-columns:1fr;
    gap:8px;
  }

  .project .arrow{
    display:none;
  }

  .content,
  .cut-card{
    padding:28px;
  }

  .page-main{
    padding:56px 0 72px;
  }
}