diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 75dc62b13..5dfdfa09b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -78,3 +78,15 @@ jobs:
echo "::error::static-site/ is out of sync with src/. Run 'npm run sync:static' and commit the result as a separate commit (see CONTRIBUTING.md section 4)."
echo "$drift"
exit 1
+
+ # Publish what this Linux runner actually produced, so a maintainer whose
+ # own build disagrees can inspect or adopt it. Only on a manual run, and
+ # only when the check above failed: a green pull request has nothing to
+ # look at, and the snapshot is large enough not to upload for nothing.
+ - name: Upload the regenerated snapshot for inspection
+ if: failure() && github.event_name == 'workflow_dispatch'
+ uses: actions/upload-artifact@v4
+ with:
+ name: static-site-linux
+ path: static-site
+ retention-days: 3
diff --git a/BACKLOG.md b/BACKLOG.md
index 07b90ddfb..12d4fa804 100644
--- a/BACKLOG.md
+++ b/BACKLOG.md
@@ -47,8 +47,20 @@ Still showing a monogram (no file yet):
logo tile) is in place and the partner entry is updated.
- [x] `supplytrace.*` — **no longer needed.** SupplyTrace was removed from the
organisations grid on 2026-08.
-- [ ] `human-generated-by-blockapps.*`
-- [ ] `osce-odihr-anti-trafficking.*`
+- [x] `human-generated-by-blockapps.*` — **no longer needed.** Human Generated
+ by BlockApps was removed from the organisations grid on 2026-08-25.
+- [ ] `osce-odihr-anti-trafficking.*` — **checked 2026-08-25: there is nothing
+ to recover here.** No OSCE/ODIHR logo has ever been committed to this
+ repository, under that name or any other: `git log --diff-filter=D` over
+ `public/logos` returns zero deletions, so no logo file has ever been
+ removed. The entry has carried `logo: ""` since Carolina added it in
+ `a30def40` (2026-07-21), and its `about` text and `url` are byte-identical
+ to that commit — nothing was lost. A search of every repository in the
+ organisation finds only text references. So this needs a file **sourced
+ from OSCE/ODIHR**, not restored. Worth doing deliberately rather than by
+ grabbing the emblem off osce.org: it is a protected intergovernmental
+ emblem with its own usage rules, which is a different question from the
+ company wordmarks in this folder.
- [ ] **Better source files for the two screenshot logos** — Art & Antiquities
Blockchain Consortium and Blockchain for Social Impact were supplied as
screen grabs, so they carry their page background (cream and white) rather
@@ -78,8 +90,9 @@ Commission on the Status of Women (CSW)** was removed from partners entirely.
## 3. Client / partner details (`src/content/site.ts`)
-- [ ] Website URLs for clients still blank: **Generative AI for Good**,
- **SupplyTrace**, **Rivr**. (D_ID, Mesur.io, BlockApps already linked.)
+- [ ] Website URLs for clients still blank: **Generative AI for Good**, **Rivr**.
+ (D_ID and Tradeverifyd are already linked. SupplyTrace and Human Generated
+ by BlockApps were both removed from the grid, so neither needs one.)
- [ ] Short "what we do together" blurbs + URLs for partners: **100x**,
**Apne Aap Women Worldwide** (url set), **Gaia**, **Grid Bank**.
- [ ] **Confirm the collaboration for the three partners added 2026-07-23** —
diff --git a/UPDATES-NEEDED.md b/UPDATES-NEEDED.md
index c36d2da52..970c3a358 100644
--- a/UPDATES-NEEDED.md
+++ b/UPDATES-NEEDED.md
@@ -413,6 +413,49 @@ whether `/print/` should be excluded or marked non-indexable.
**Acceptance:** Only intended pages are publicly reachable, and no unused font
family ships.
+### UPD-017 - Decide how UI symbols are drawn
+
+**Priority:** Medium
+
+The nav's dropdown caret was the character `▾` (U+25BE). `next/font` subsets
+Space Mono to latin, latin-ext and vietnamese and emits a matching
+`unicode-range`, and U+25BE falls outside all three — so the browser was never
+permitted to use Space Mono for it and substituted whatever the visitor's OS
+provides. The result sat next to Space Mono text in a different typeface, at a
+different optical size, on its own baseline. Reported as a font inconsistency in
+the header on 2026-08-25 and fixed there by drawing the caret as an inline SVG.
+
+**The same is true of every other symbol used as an interface affordance.** The
+subsets cover `U+2191` and `U+2193` but not, among others:
+
+| Glyph | Code point | Used in |
+|---|---|---|
+| `→` | U+2192 | `Contact →`, `View profile →`, cohort and archive links |
+| `←` | U+2190 | back links, poster rail |
+| `↗` | U+2197 | external links |
+| `▶` | U+25B6 | launch-demo buttons |
+| `▸` | U+25B8 | cohort and chart markers |
+| `✕` | U+2715 | close buttons |
+| `●` `◦` `─` `+` `📖` | various | explorers, diagrams, book trigger |
+
+None of these is broken today — they render from a fallback, and because they
+*all* fall back they are at least consistent with each other. But the typeface
+is whatever the visitor's platform supplies, so the site looks different on
+Windows, macOS, Android and Linux in a way no one here controls, and a missing
+glyph would show a tofu box.
+
+**Proposed update:** Decide one approach and apply it in a single pass rather
+than piecemeal — converting one arrow at a time is what would create a real
+inconsistency, since the converted one would no longer match its neighbours.
+Either draw them as inline SVGs (as `LinkedInLink`, `ThemeToggle` and now the
+nav caret already do), or add an explicit symbol fallback stack so the
+substitution is at least a deliberate choice. Worth a look at
+`docs/DESIGN-SYSTEM.md` at the same time, which documents typography but says
+nothing about symbols.
+
+**Acceptance:** Interface symbols render identically across platforms, and the
+rule for adding a new one is written down.
+
## B. Draft requests to document the maintenance workflow - review before sending
Addressed to [@carolina-moron](https://github.com/carolina-moron), who authors
diff --git a/src/components/SiteHeader.tsx b/src/components/SiteHeader.tsx
index a217fcd4b..03b733506 100644
--- a/src/components/SiteHeader.tsx
+++ b/src/components/SiteHeader.tsx
@@ -100,14 +100,25 @@ export function SiteHeader() {
className={`inline-flex items-center gap-1 ${itemClass}`}
>
{item.label}
-
- ▾
-
+
+
{open && (
diff --git a/src/content/site.ts b/src/content/site.ts
index 18a10df70..c10a74e82 100644
--- a/src/content/site.ts
+++ b/src/content/site.ts
@@ -1479,13 +1479,6 @@ export const about = {
url: "",
logo: "/logos/rivr.jpg",
},
- {
- name: "Human Generated by BlockApps",
- about:
- "Verifiable human attestations in the age of AI — proving that a person, not a machine, stands behind a claim.",
- url: "https://blockapps.net",
- logo: "",
- },
] as PartnerOrg[],
},
summit: {
@@ -2044,7 +2037,6 @@ const teamOrgOrder = [
"Sayari",
"B3IQ",
"Art & Antiquities Blockchain Consortium",
- "Human Generated by BlockApps",
"100x",
"D_ID",
"Apne Aap Women Worldwide",
diff --git a/static-site/404.html b/static-site/404.html
index 2866e8754..099268752 100644
--- a/static-site/404.html
+++ b/static-site/404.html
@@ -1 +1 @@
-404: This page could not be found.NYU Ethical Tech CoLab · Emerging Tech, Human Condition
404
This page could not be found.
\ No newline at end of file
+404: This page could not be found.NYU Ethical Tech CoLab · Emerging Tech, Human Condition
404
This page could not be found.
\ No newline at end of file
diff --git a/static-site/404/index.html b/static-site/404/index.html
index 2866e8754..099268752 100644
--- a/static-site/404/index.html
+++ b/static-site/404/index.html
@@ -1 +1 @@
-404: This page could not be found.NYU Ethical Tech CoLab · Emerging Tech, Human Condition
404
This page could not be found.
\ No newline at end of file
+404: This page could not be found.NYU Ethical Tech CoLab · Emerging Tech, Human Condition
404
This page could not be found.
\ No newline at end of file
diff --git a/static-site/__next.__PAGE__.txt b/static-site/__next.__PAGE__.txt
index e4f348bd8..184b334cd 100644
--- a/static-site/__next.__PAGE__.txt
+++ b/static-site/__next.__PAGE__.txt
@@ -1,15 +1,15 @@
1:"$Sreact.fragment"
-2:I[85437,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Image"]
-3:I[25150,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"HeroField"]
-4:I[82987,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Reveal"]
-5:I[53675,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"StatementCarousel"]
-e:I[23475,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Link"]
-f:I[82987,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Stagger"]
-10:I[82987,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"StaggerItem"]
-11:I[35852,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"ProjectDiagram"]
-12:I[12243,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Tilt3D"]
-16:I[94376,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Magnetic"]
-17:I[97367,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"OutletBoundary"]
+2:I[85437,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Image"]
+3:I[25150,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"HeroField"]
+4:I[82987,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Reveal"]
+5:I[53675,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"StatementCarousel"]
+e:I[23475,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Link"]
+f:I[82987,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Stagger"]
+10:I[82987,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"StaggerItem"]
+11:I[35852,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"ProjectDiagram"]
+12:I[12243,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Tilt3D"]
+16:I[94376,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Magnetic"]
+17:I[97367,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"OutletBoundary"]
18:"$Sreact.suspense"
0:{"rsc":["$","$1","c",{"children":[[["$","section",null,{"className":"relative overflow-hidden border-b border-border","children":[["$","$L2",null,{"src":"/website/nyu-subway.jpg","alt":"","aria-hidden":true,"fill":true,"priority":true,"sizes":"100vw","className":"pointer-events-none object-cover object-center opacity-25"}],["$","div",null,{"aria-hidden":true,"className":"pointer-events-none absolute inset-0 bg-background/70"}],["$","span",null,{"className":"aura"}],["$","div",null,{"aria-hidden":true,"className":"pointer-events-none absolute inset-0","style":{"background":"radial-gradient(70% 60% at 20% 0%, color-mix(in oklab, var(--glow) 26%, transparent), transparent 65%)"}}],["$","$L3",null,{}],["$","div",null,{"className":"relative mx-auto max-w-6xl px-6 py-24 text-center sm:py-28","children":[["$","$L4",null,{"children":["$","p",null,{"className":"text-base uppercase tracking-[0.25em] text-accent sm:text-lg","children":"NYU CGA × Microsoft"}]}],["$","$L4",null,{"delay":0.15,"children":["$","$L5",null,{"statements":[{"lead":"Ethical Tech CoLab","headingClass":"text-[clamp(4.25rem,13vw,11rem)] leading-[0.88]","figure":["$","p",null,{"className":"font-serif uppercase leading-[0.95] tracking-tight text-foreground","style":{"fontSize":"clamp(1.9rem, 4vw, 3rem)"},"children":["Exploring technology to improve",["$","br",null,{"className":"hidden sm:block"}]," the"," ",["$","span",null,{"className":"display-em","children":"human condition"}],"."]}],"line":["$","p",null,{"className":"mx-auto mt-7 max-w-2xl leading-relaxed text-foreground/85","children":["A research collaboration between NYU's"," ",["$","a",null,{"href":"https://www.sps.nyu.edu/about/academic-divisions-and-departments/center-for-global-affairs.html","target":"_blank","rel":"noopener noreferrer","className":"link-underline text-accent hover:opacity-80","children":"Center for Global Affairs"}]," ","and Microsoft — changing the conversation on how people are informed, and how emerging technology can be used for good."]}]},{"lead":"Four questions. ","em":"One frontier.","figure":"14 projects in the portfolio","line":"Evacuation, cultural heritage, traceability, diplomacy — each question carried through to a fielded prototype, in the open.","cta":"Explore the portfolio","href":"/portfolio"},{"lead":"Run the ","em":"research","tail":".","figure":"18 demos you can open","line":"Not screenshots: the prototypes themselves, running in the browser with their source alongside.","cta":"Open the live demos","href":"/demos"},{"lead":"The research, ","em":"written up","tail":".","figure":"25 in the catalogue","line":"Every research question the CoLab takes on is written up academically, including what did not hold.","cta":"Read the publications","href":"/publications"},{"lead":"The people ","em":"building","tail":" this.","figure":"23 researchers across 3 cohorts","line":"Graduate researchers at NYU's Center for Global Affairs, with advisors and resident fellows alongside.","cta":"Meet the team","href":"/team"}],"label":"Statement","className":"mt-5"}]}]]}]]}],[["$","section",null,{"className":"border-b border-border bg-surface/40","children":["$","div",null,{"className":"mx-auto max-w-6xl px-6 py-16 text-center","children":[["$","$L4",null,{"children":["$","p",null,{"className":"text-xs uppercase tracking-wider text-muted","children":"Mission"}]}],["$","$L4",null,{"delay":0.05,"children":["$","p",null,{"className":"mx-auto mt-4 max-w-4xl fluid-h2 font-heading uppercase leading-[1.02]","children":["Achieving ",["$","span",null,{"className":"display-em","children":"full human potential"}]," ","through technology — changing how people are informed, and how tech is used for good."]}]}],["$","$L4",null,{"delay":0.1,"children":["$","p",null,{"className":"mx-auto mt-6 max-w-2xl text-lg leading-relaxed text-muted","children":"What are the circumstances of the human being, and how can technology improve them? We see technology as a tool — part of the solution."}]}]]}]}],["$","section",null,{"className":"mx-auto max-w-6xl px-6 py-24","children":[["$","$L4",null,{"children":["$","div",null,{"className":"flex items-end justify-between","children":["$L6","$L7"]}]}],"$L8"]}],"$L9","$La","$Lb"]],["$Lc"],"$Ld"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"static-snapshot"}
6:["$","div",null,{"children":[["$","$Le",null,{"href":"/portfolio","className":"link-underline text-xs uppercase tracking-wider text-muted transition-colors hover:text-accent","children":"Current projects"}],["$","h2",null,{"className":"mt-3 fluid-h2 font-heading uppercase","children":"Building at the frontier."}]]}]
diff --git a/static-site/__next._full.txt b/static-site/__next._full.txt
index d4ee23c27..8669ae716 100644
--- a/static-site/__next._full.txt
+++ b/static-site/__next._full.txt
@@ -1,25 +1,25 @@
1:"$Sreact.fragment"
-2:I[23475,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"ViewTransitions"]
-3:I[30353,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"SiteBackground"]
-4:I[46083,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"ScrollProgress"]
-5:I[36852,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"SiteHeader"]
-6:I[39756,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default"]
-7:I[37457,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default"]
-f:I[68027,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default",1]
-:HL["/website/_next/static/chunks/0-hylzi378o2-.css","style"]
+2:I[23475,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"ViewTransitions"]
+3:I[30353,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"SiteBackground"]
+4:I[46083,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"ScrollProgress"]
+5:I[36852,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"SiteHeader"]
+6:I[39756,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default"]
+7:I[37457,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default"]
+f:I[68027,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default",1]
+:HL["/website/_next/static/chunks/2rl-zb5-19h8i.css","style"]
:HL["/website/_next/static/media/17b0f6a4f906cc39-s.p.3nfl-v4jxqll_.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/website/_next/static/media/1ae2575eb5be4118-s.p.29un6u1l3mwyp.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/website/_next/static/media/8d05cfa5faa8406c-s.p.1s123piy9_v1m.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/website/_next/static/media/dc0d9adbac686440-s.p.3cik_s2si-ft-.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/website/_next/static/media/fabcf92ba1ccea36-s.p.1w_qz2ahumqmz.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
-0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/website/_next/static/chunks/0-hylzi378o2-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/website/_next/static/chunks/3w2djlsm0q3jv.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/website/_next/static/chunks/03bgkprhvu4nb.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/website/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/website/_next/static/chunks/42slhzgb7dvh7.js","async":true,"nonce":"$undefined"}]],["$","$L2",null,{"children":["$","html",null,{"lang":"en","data-theme":"dark","suppressHydrationWarning":true,"className":"bebas_neue_4d1b6b20-module__PolqSW__variable space_mono_6ab7c80c-module__dmwzCa__variable h-full antialiased","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"(function(){try{var t=localStorage.getItem(\"theme\");if(t!==\"light\"&&t!==\"dark\")t=\"dark\";document.documentElement.setAttribute(\"data-theme\",t)}catch(e){}})()"}}]}],["$","body",null,{"className":"min-h-full flex flex-col bg-background text-foreground","children":[["$","$L3",null,{}],["$","$L4",null,{}],["$","$L5",null,{}],["$","main",null,{"className":"flex-1","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","footer",null,{"className":"border-t border-border bg-surface/40","children":["$","div",null,{"className":"mx-auto max-w-6xl px-6 py-16","children":[["$","div",null,{"className":"grid gap-10 md:grid-cols-[1.5fr_1fr_1fr]","children":[["$","div",null,{"className":"max-w-sm","children":[["$","p",null,{"className":"text-base font-semibold","children":"Ethical Tech CoLab"}],["$","p",null,{"className":"mt-3 text-sm leading-relaxed text-muted","children":"Exploring intervention opportunities at the intersection of emerging technologies and the human condition."}],["$","p",null,{"className":"mt-4 text-xs uppercase tracking-wider text-muted","children":"NYU SPS · CGA · Microsoft · New York"}],["$","div",null,{"className":"mt-5 flex items-center gap-3","children":[["$","a","linkedin",{"href":"https://www.linkedin.com/company/ethical-tech-lab/","target":"_blank","rel":"noopener noreferrer","aria-label":"LinkedIn","className":"flex h-9 w-9 items-center justify-center rounded-full border border-border text-muted transition-colors hover:border-accent hover:text-accent","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"currentColor","aria-hidden":true,"className":"h-4 w-4","children":["$","path",null,{"d":"M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28ZM5.34 7.43a2.07 2.07 0 1 1 0-4.14 2.07 2.07 0 0 1 0 4.14ZM7.12 20.45H3.55V9h3.57v11.45ZM22.22 0H1.77C.8 0 0 .78 0 1.75v20.5C0 23.22.8 24 1.77 24h20.45c.98 0 1.78-.78 1.78-1.75V1.75C24 .78 23.2 0 22.22 0Z"}]}]}],"$L8"]}]]}],"$L9","$La"]}],"$Lb","$Lc"]}]}]]}]]}]}]]}],{"children":["$Ld",{},null,false,null]},null,false,null],"$Le",false]],"m":"$undefined","G":["$f",["$L10"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"static-snapshot"}
-11:I[23475,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Link"]
-12:I[85437,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Image"]
-13:I[25150,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"HeroField"]
-14:I[82987,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Reveal"]
-15:I[53675,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"StatementCarousel"]
-1e:I[97367,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"ViewportBoundary"]
-20:I[97367,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"MetadataBoundary"]
+0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/website/_next/static/chunks/2rl-zb5-19h8i.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/website/_next/static/chunks/1-kh6uz_49jxr.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/website/_next/static/chunks/146ithun0rz9e.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/website/_next/static/chunks/14mrh2-p_w84d.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/website/_next/static/chunks/42slhzgb7dvh7.js","async":true,"nonce":"$undefined"}]],["$","$L2",null,{"children":["$","html",null,{"lang":"en","data-theme":"dark","suppressHydrationWarning":true,"className":"bebas_neue_4d1b6b20-module__PolqSW__variable space_mono_6ab7c80c-module__dmwzCa__variable h-full antialiased","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"(function(){try{var t=localStorage.getItem(\"theme\");if(t!==\"light\"&&t!==\"dark\")t=\"dark\";document.documentElement.setAttribute(\"data-theme\",t)}catch(e){}})()"}}]}],["$","body",null,{"className":"min-h-full flex flex-col bg-background text-foreground","children":[["$","$L3",null,{}],["$","$L4",null,{}],["$","$L5",null,{}],["$","main",null,{"className":"flex-1","children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","footer",null,{"className":"border-t border-border bg-surface/40","children":["$","div",null,{"className":"mx-auto max-w-6xl px-6 py-16","children":[["$","div",null,{"className":"grid gap-10 md:grid-cols-[1.5fr_1fr_1fr]","children":[["$","div",null,{"className":"max-w-sm","children":[["$","p",null,{"className":"text-base font-semibold","children":"Ethical Tech CoLab"}],["$","p",null,{"className":"mt-3 text-sm leading-relaxed text-muted","children":"Exploring intervention opportunities at the intersection of emerging technologies and the human condition."}],["$","p",null,{"className":"mt-4 text-xs uppercase tracking-wider text-muted","children":"NYU SPS · CGA · Microsoft · New York"}],["$","div",null,{"className":"mt-5 flex items-center gap-3","children":[["$","a","linkedin",{"href":"https://www.linkedin.com/company/ethical-tech-lab/","target":"_blank","rel":"noopener noreferrer","aria-label":"LinkedIn","className":"flex h-9 w-9 items-center justify-center rounded-full border border-border text-muted transition-colors hover:border-accent hover:text-accent","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"currentColor","aria-hidden":true,"className":"h-4 w-4","children":["$","path",null,{"d":"M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28ZM5.34 7.43a2.07 2.07 0 1 1 0-4.14 2.07 2.07 0 0 1 0 4.14ZM7.12 20.45H3.55V9h3.57v11.45ZM22.22 0H1.77C.8 0 0 .78 0 1.75v20.5C0 23.22.8 24 1.77 24h20.45c.98 0 1.78-.78 1.78-1.75V1.75C24 .78 23.2 0 22.22 0Z"}]}]}],"$L8"]}]]}],"$L9","$La"]}],"$Lb","$Lc"]}]}]]}]]}]}]]}],{"children":["$Ld",{},null,false,null]},null,false,null],"$Le",false]],"m":"$undefined","G":["$f",["$L10"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"static-snapshot"}
+11:I[23475,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Link"]
+12:I[85437,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Image"]
+13:I[25150,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"HeroField"]
+14:I[82987,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Reveal"]
+15:I[53675,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"StatementCarousel"]
+1e:I[97367,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"ViewportBoundary"]
+20:I[97367,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"MetadataBoundary"]
21:"$Sreact.suspense"
8:["$","a","github",{"href":"https://github.com/Ethical-Tech-CoLab","target":"_blank","rel":"noopener noreferrer","aria-label":"GitHub","className":"flex h-9 w-9 items-center justify-center rounded-full border border-border text-muted transition-colors hover:border-accent hover:text-accent","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"currentColor","aria-hidden":true,"className":"h-4 w-4","children":["$","path",null,{"d":"M12 .5C5.73.5.67 5.57.67 11.85c0 5.02 3.26 9.28 7.78 10.79.57.1.78-.25.78-.55v-1.94c-3.16.69-3.83-1.53-3.83-1.53-.52-1.32-1.27-1.67-1.27-1.67-1.04-.71.08-.7.08-.7 1.15.08 1.76 1.18 1.76 1.18 1.02 1.76 2.68 1.25 3.33.96.1-.74.4-1.25.72-1.54-2.52-.29-5.17-1.26-5.17-5.61 0-1.24.44-2.25 1.17-3.05-.12-.29-.51-1.45.11-3.02 0 0 .96-.31 3.15 1.17a10.9 10.9 0 0 1 2.87-.39c.97 0 1.95.13 2.87.39 2.19-1.48 3.15-1.17 3.15-1.17.62 1.57.23 2.73.11 3.02.73.8 1.17 1.81 1.17 3.05 0 4.36-2.66 5.31-5.19 5.6.41.35.78 1.05.78 2.12v3.14c0 .3.2.66.79.55a11.36 11.36 0 0 0 7.77-10.79C23.33 5.57 18.27.5 12 .5Z"}]}]}]
9:["$","div",null,{"children":[["$","p",null,{"className":"text-xs uppercase tracking-wider text-muted","children":"Navigate"}],["$","ul",null,{"className":"mt-4 space-y-2 text-sm","children":[["$","li","/portfolio",{"children":["$","$L11",null,{"href":"/portfolio","className":"text-foreground/90 transition-colors hover:text-accent","children":"Portfolio"}]}],["$","li","/team",{"children":["$","$L11",null,{"href":"/team","className":"text-foreground/90 transition-colors hover:text-accent","children":"Team"}]}],["$","li","/contact",{"children":["$","$L11",null,{"href":"/contact","className":"text-foreground/90 transition-colors hover:text-accent","children":"Contact"}]}]]}]]}]
@@ -28,13 +28,13 @@ b:["$","div",null,{"className":"mt-12 flex flex-col gap-2 border-t border-border
c:["$","div",null,{"className":"mt-6 space-y-3 border-t border-border pt-6 text-[11px] leading-relaxed text-muted/80","children":[["$","p","0",{"children":"The Ethical Tech CoLab is a research initiative of the NYU School of Professional Studies Center for Global Affairs, conducted in collaboration with Microsoft. Views and findings expressed on this site are those of the researchers and do not represent the official positions of New York University, Microsoft, or any partner institution."}],["$","p","1",{"children":"Projects and prototypes are experimental applied research, provided “as is” without warranty of any kind. Nothing on this site constitutes legal, financial, or professional advice. Third-party names, logos, and trademarks are the property of their respective owners."}]]}]
d:["$","$1","c",{"children":[[["$","section",null,{"className":"relative overflow-hidden border-b border-border","children":[["$","$L12",null,{"src":"/website/nyu-subway.jpg","alt":"","aria-hidden":true,"fill":true,"priority":true,"sizes":"100vw","className":"pointer-events-none object-cover object-center opacity-25"}],["$","div",null,{"aria-hidden":true,"className":"pointer-events-none absolute inset-0 bg-background/70"}],["$","span",null,{"className":"aura"}],["$","div",null,{"aria-hidden":true,"className":"pointer-events-none absolute inset-0","style":{"background":"radial-gradient(70% 60% at 20% 0%, color-mix(in oklab, var(--glow) 26%, transparent), transparent 65%)"}}],["$","$L13",null,{}],["$","div",null,{"className":"relative mx-auto max-w-6xl px-6 py-24 text-center sm:py-28","children":[["$","$L14",null,{"children":["$","p",null,{"className":"text-base uppercase tracking-[0.25em] text-accent sm:text-lg","children":"NYU CGA × Microsoft"}]}],["$","$L14",null,{"delay":0.15,"children":["$","$L15",null,{"statements":[{"lead":"Ethical Tech CoLab","headingClass":"text-[clamp(4.25rem,13vw,11rem)] leading-[0.88]","figure":["$","p",null,{"className":"font-serif uppercase leading-[0.95] tracking-tight text-foreground","style":{"fontSize":"clamp(1.9rem, 4vw, 3rem)"},"children":["Exploring technology to improve",["$","br",null,{"className":"hidden sm:block"}]," the"," ",["$","span",null,{"className":"display-em","children":"human condition"}],"."]}],"line":["$","p",null,{"className":"mx-auto mt-7 max-w-2xl leading-relaxed text-foreground/85","children":["A research collaboration between NYU's"," ",["$","a",null,{"href":"https://www.sps.nyu.edu/about/academic-divisions-and-departments/center-for-global-affairs.html","target":"_blank","rel":"noopener noreferrer","className":"link-underline text-accent hover:opacity-80","children":"Center for Global Affairs"}]," ","and Microsoft — changing the conversation on how people are informed, and how emerging technology can be used for good."]}]},{"lead":"Four questions. ","em":"One frontier.","figure":"14 projects in the portfolio","line":"Evacuation, cultural heritage, traceability, diplomacy — each question carried through to a fielded prototype, in the open.","cta":"Explore the portfolio","href":"/portfolio"},{"lead":"Run the ","em":"research","tail":".","figure":"18 demos you can open","line":"Not screenshots: the prototypes themselves, running in the browser with their source alongside.","cta":"Open the live demos","href":"/demos"},{"lead":"The research, ","em":"written up","tail":".","figure":"25 in the catalogue","line":"Every research question the CoLab takes on is written up academically, including what did not hold.","cta":"Read the publications","href":"/publications"},{"lead":"The people ","em":"building","tail":" this.","figure":"23 researchers across 3 cohorts","line":"Graduate researchers at NYU's Center for Global Affairs, with advisors and resident fellows alongside.","cta":"Meet the team","href":"/team"}],"label":"Statement","className":"mt-5"}]}]]}]]}],[["$","section",null,{"className":"border-b border-border bg-surface/40","children":["$","div",null,{"className":"mx-auto max-w-6xl px-6 py-16 text-center","children":[["$","$L14",null,{"children":["$","p",null,{"className":"text-xs uppercase tracking-wider text-muted","children":"Mission"}]}],["$","$L14",null,{"delay":0.05,"children":["$","p",null,{"className":"mx-auto mt-4 max-w-4xl fluid-h2 font-heading uppercase leading-[1.02]","children":["Achieving ",["$","span",null,{"className":"display-em","children":"full human potential"}]," ","through technology — changing how people are informed, and how tech is used for good."]}]}],["$","$L14",null,{"delay":0.1,"children":["$","p",null,{"className":"mx-auto mt-6 max-w-2xl text-lg leading-relaxed text-muted","children":"What are the circumstances of the human being, and how can technology improve them? We see technology as a tool — part of the solution."}]}]]}]}],["$","section",null,{"className":"mx-auto max-w-6xl px-6 py-24","children":[["$","$L14",null,{"children":["$","div",null,{"className":"flex items-end justify-between","children":["$L16","$L17"]}]}],"$L18"]}],"$L19","$L1a","$L1b"]],["$L1c"],"$L1d"]}]
e:["$","$1","h",{"children":[null,["$","$L1e",null,{"children":"$L1f"}],["$","div",null,{"hidden":true,"children":["$","$L20",null,{"children":["$","$21",null,{"name":"Next.Metadata","children":"$L22"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
-10:["$","link","0",{"rel":"stylesheet","href":"/website/_next/static/chunks/0-hylzi378o2-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]
-23:I[82987,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Stagger"]
-24:I[82987,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"StaggerItem"]
-25:I[35852,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"ProjectDiagram"]
-26:I[12243,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Tilt3D"]
-2a:I[94376,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Magnetic"]
-2b:I[97367,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"OutletBoundary"]
+10:["$","link","0",{"rel":"stylesheet","href":"/website/_next/static/chunks/2rl-zb5-19h8i.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]
+23:I[82987,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Stagger"]
+24:I[82987,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"StaggerItem"]
+25:I[35852,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"ProjectDiagram"]
+26:I[12243,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Tilt3D"]
+2a:I[94376,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Magnetic"]
+2b:I[97367,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"OutletBoundary"]
16:["$","div",null,{"children":[["$","$L11",null,{"href":"/portfolio","className":"link-underline text-xs uppercase tracking-wider text-muted transition-colors hover:text-accent","children":"Current projects"}],["$","h2",null,{"className":"mt-3 fluid-h2 font-heading uppercase","children":"Building at the frontier."}]]}]
17:["$","$L11",null,{"href":"/portfolio","className":"link-underline hidden text-sm text-accent sm:block","children":["View all ","four"," →"]}]
18:["$","$L23",null,{"className":"mt-12 grid gap-px overflow-hidden rounded-2xl border border-border bg-border sm:grid-cols-2","children":[[["$","$L24","Evacuation",{"children":["$","$L11",null,{"href":"/portfolio#evacuation","className":"group card-glow flex h-full flex-col gap-3 bg-background p-8 transition-colors hover:bg-surface","children":[["$","$L25",null,{"variant":"Evacuation","className":"diagram-live mb-3 aspect-[16/7] w-full overflow-hidden rounded-xl border border-border bg-surface/60"}],["$","span",null,{"className":"font-mono text-xs text-muted","children":["01"," / ","Evacuation"]}],["$","h3",null,{"className":"font-heading text-2xl uppercase tracking-wide sm:text-3xl group-hover:text-accent","children":"How can AI inform evacuation decisions?"}]]}]}],["$","$L24","Cultural heritage",{"children":["$","$L11",null,{"href":"/portfolio#cultural-heritage","className":"group card-glow flex h-full flex-col gap-3 bg-background p-8 transition-colors hover:bg-surface","children":[["$","$L25",null,{"variant":"Cultural heritage","className":"diagram-live mb-3 aspect-[16/7] w-full overflow-hidden rounded-xl border border-border bg-surface/60"}],["$","span",null,{"className":"font-mono text-xs text-muted","children":["02"," / ","Cultural heritage"]}],["$","h3",null,{"className":"font-heading text-2xl uppercase tracking-wide sm:text-3xl group-hover:text-accent","children":"How can technology support the ethical return of cultural artifacts?"}]]}]}],["$","$L24","Traceability",{"children":["$","$L11",null,{"href":"/portfolio#traceability","className":"group card-glow flex h-full flex-col gap-3 bg-background p-8 transition-colors hover:bg-surface","children":[["$","$L25",null,{"variant":"Traceability","className":"diagram-live mb-3 aspect-[16/7] w-full overflow-hidden rounded-xl border border-border bg-surface/60"}],["$","span",null,{"className":"font-mono text-xs text-muted","children":["03"," / ","Traceability"]}],["$","h3",null,{"className":"font-heading text-2xl uppercase tracking-wide sm:text-3xl group-hover:text-accent","children":"How can ethical claims in supply chains be made verifiable?"}]]}]}],["$","$L24","Diplomacy",{"children":["$","$L11",null,{"href":"/portfolio#diplomacy","className":"group card-glow flex h-full flex-col gap-3 bg-background p-8 transition-colors hover:bg-surface","children":[["$","$L25",null,{"variant":"Diplomacy","className":"diagram-live mb-3 aspect-[16/7] w-full overflow-hidden rounded-xl border border-border bg-surface/60"}],["$","span",null,{"className":"font-mono text-xs text-muted","children":["04"," / ","Diplomacy"]}],["$","h3",null,{"className":"font-heading text-2xl uppercase tracking-wide sm:text-3xl group-hover:text-accent","children":"How can AI help practitioners rehearse high-stakes diplomacy?"}]]}]}]],false]}]
@@ -47,6 +47,6 @@ e:["$","$1","h",{"children":[null,["$","$L1e",null,{"children":"$L1f"}],["$","di
28:["$","$L26","02",{"max":7,"children":["$","article",null,{"className":"flex h-full flex-col rounded-2xl border bg-card p-7 transition-colors border-border hover:border-foreground/25","children":[["$","div",null,{"className":"flex items-center justify-end","children":["$","span",null,{"className":"rounded-full border border-border px-2.5 py-0.5 text-xs text-muted","children":"Past"}]}],["$","h3",null,{"className":"mt-5 font-heading text-3xl uppercase leading-none tracking-[0.06em] sm:text-4xl","children":"Fall 2025"}],["$","p",null,{"className":"mt-2 text-sm font-medium text-accent","children":"Prototyping and partner pilots."}],["$","p",null,{"className":"mt-3 text-sm leading-relaxed text-muted","children":"Technical spikes (multi-agent harnesses, verifiable credentials, geospatial pipelines) tested against real partner needs."}],["$","ul",null,{"className":"mt-5 space-y-2 text-sm text-foreground/85","children":[["$","li","8 researchers",{"className":"flex gap-2.5","children":[["$","span",null,{"aria-hidden":true,"className":"mt-1 text-accent","children":"◦"}],["$","span",null,{"children":"8 researchers"}]]}],["$","li","Forced Labor Structural Risk Index",{"className":"flex gap-2.5","children":[["$","span",null,{"aria-hidden":true,"className":"mt-1 text-accent","children":"◦"}],["$","span",null,{"children":"Forced Labor Structural Risk Index"}]]}],["$","li","AI Research Question Assistant",{"className":"flex gap-2.5","children":[["$","span",null,{"aria-hidden":true,"className":"mt-1 text-accent","children":"◦"}],["$","span",null,{"children":"AI Research Question Assistant"}]]}]]}],["$","div",null,{"className":"mt-auto pt-6","children":[["$","p",null,{"className":"text-xs uppercase tracking-wider text-muted","children":"Full archive coming soon"}],["$","div",null,{"className":"mt-3 flex flex-wrap gap-3","children":[["$","$L11",null,{"href":"/portfolio","className":"inline-flex items-center gap-2 rounded-full bg-accent px-4 py-2 text-sm font-semibold text-background transition-opacity hover:opacity-90","children":"Portfolio →"}],["$","$L11",null,{"href":"/team#alumni-fall-2025","className":"inline-flex items-center gap-2 rounded-full border border-border px-4 py-2 text-sm font-medium transition-colors hover:border-accent hover:text-accent","children":"Meet the cohort →"}]]}]]}]]}]}]
29:["$","$L26","01",{"max":7,"children":["$","article",null,{"className":"flex h-full flex-col rounded-2xl border bg-card p-7 transition-colors border-border hover:border-foreground/25","children":[["$","div",null,{"className":"flex items-center justify-end","children":["$","span",null,{"className":"rounded-full border border-border px-2.5 py-0.5 text-xs text-muted","children":"Past"}]}],["$","h3",null,{"className":"mt-5 font-heading text-3xl uppercase leading-none tracking-[0.06em] sm:text-4xl","children":"Spring 2025"}],["$","p",null,{"className":"mt-2 text-sm font-medium text-accent","children":"First applied research projects."}],["$","p",null,{"className":"mt-3 text-sm leading-relaxed text-muted","children":"The lab's first applied research projects, spanning online safety, sustainability, AI's footprint, and generative storytelling."}],["$","ul",null,{"className":"mt-5 space-y-2 text-sm text-foreground/85","children":[["$","li","8 researchers",{"className":"flex gap-2.5","children":[["$","span",null,{"aria-hidden":true,"className":"mt-1 text-accent","children":"◦"}],["$","span",null,{"children":"8 researchers"}]]}],["$","li","Online Grooming Prevention",{"className":"flex gap-2.5","children":[["$","span",null,{"aria-hidden":true,"className":"mt-1 text-accent","children":"◦"}],["$","span",null,{"children":"Online Grooming Prevention"}]]}],["$","li","ESG Labels & Certificates Transparency",{"className":"flex gap-2.5","children":[["$","span",null,{"aria-hidden":true,"className":"mt-1 text-accent","children":"◦"}],["$","span",null,{"children":"ESG Labels & Certificates Transparency"}]]}],["$","li","AI's Carbon Footprint",{"className":"flex gap-2.5","children":[["$","span",null,{"aria-hidden":true,"className":"mt-1 text-accent","children":"◦"}],["$","span",null,{"children":"AI's Carbon Footprint"}]]}],["$","li","Generative AI for Good — Avatar Storytelling",{"className":"flex gap-2.5","children":[["$","span",null,{"aria-hidden":true,"className":"mt-1 text-accent","children":"◦"}],["$","span",null,{"children":"Generative AI for Good — Avatar Storytelling"}]]}]]}],["$","div",null,{"className":"mt-auto pt-6","children":[["$","p",null,{"className":"text-xs uppercase tracking-wider text-muted","children":"Full archive coming soon"}],["$","div",null,{"className":"mt-3 flex flex-wrap gap-3","children":[["$","$L11",null,{"href":"/portfolio","className":"inline-flex items-center gap-2 rounded-full bg-accent px-4 py-2 text-sm font-semibold text-background transition-opacity hover:opacity-90","children":"Portfolio →"}],["$","$L11",null,{"href":"/team#alumni-spring-2025","className":"inline-flex items-center gap-2 rounded-full border border-border px-4 py-2 text-sm font-medium transition-colors hover:border-accent hover:text-accent","children":"Meet the cohort →"}]]}]]}]]}]}]
1f:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
-2d:I[27201,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"IconMark"]
+2d:I[27201,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"IconMark"]
22:[["$","title","0",{"children":"NYU Ethical Tech CoLab · Emerging Tech, Human Condition"}],["$","meta","1",{"name":"description","content":"A research collaboration between NYU's Center for Global Affairs and Microsoft, exploring tech interventions for migration, forced labor, IDPs and refugees."}],["$","link","2",{"rel":"icon","href":"/website/icon0.svg?icon0.2w9sc__8sl4r2.svg","sizes":"any","type":"image/svg+xml"}],["$","link","3",{"rel":"icon","href":"/website/icon1.png?icon1.3ffv-c-gon2pc.png","sizes":"256x256","type":"image/png"}],["$","link","4",{"rel":"apple-touch-icon","href":"/website/apple-icon.png?apple-icon.3ffv-c-gon2pc.png","sizes":"256x256","type":"image/png"}],["$","$L2d","5",{}]]
2c:null
diff --git a/static-site/__next._head.txt b/static-site/__next._head.txt
index fcd686822..522556cbf 100644
--- a/static-site/__next._head.txt
+++ b/static-site/__next._head.txt
@@ -1,6 +1,6 @@
1:"$Sreact.fragment"
-2:I[97367,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"ViewportBoundary"]
-3:I[97367,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"MetadataBoundary"]
+2:I[97367,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"ViewportBoundary"]
+3:I[97367,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"MetadataBoundary"]
4:"$Sreact.suspense"
-5:I[27201,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"IconMark"]
+5:I[27201,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"IconMark"]
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"NYU Ethical Tech CoLab · Emerging Tech, Human Condition"}],["$","meta","1",{"name":"description","content":"A research collaboration between NYU's Center for Global Affairs and Microsoft, exploring tech interventions for migration, forced labor, IDPs and refugees."}],["$","link","2",{"rel":"icon","href":"/website/icon0.svg?icon0.2w9sc__8sl4r2.svg","sizes":"any","type":"image/svg+xml"}],["$","link","3",{"rel":"icon","href":"/website/icon1.png?icon1.3ffv-c-gon2pc.png","sizes":"256x256","type":"image/png"}],["$","link","4",{"rel":"apple-touch-icon","href":"/website/apple-icon.png?apple-icon.3ffv-c-gon2pc.png","sizes":"256x256","type":"image/png"}],["$","$L5","5",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"static-snapshot"}
diff --git a/static-site/__next._index.txt b/static-site/__next._index.txt
index 599352ce9..ddfd4e5d0 100644
--- a/static-site/__next._index.txt
+++ b/static-site/__next._index.txt
@@ -1,13 +1,13 @@
1:"$Sreact.fragment"
-2:I[23475,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"ViewTransitions"]
-3:I[30353,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"SiteBackground"]
-4:I[46083,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"ScrollProgress"]
-5:I[36852,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"SiteHeader"]
-6:I[39756,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default"]
-7:I[37457,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default"]
-d:I[23475,["/website/_next/static/chunks/3w2djlsm0q3jv.js","/website/_next/static/chunks/03bgkprhvu4nb.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Link"]
-:HL["/website/_next/static/chunks/0-hylzi378o2-.css","style"]
-0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/website/_next/static/chunks/0-hylzi378o2-.css","precedence":"next"}],["$","script","script-0",{"src":"/website/_next/static/chunks/3w2djlsm0q3jv.js","async":true}],["$","script","script-1",{"src":"/website/_next/static/chunks/03bgkprhvu4nb.js","async":true}],["$","script","script-2",{"src":"/website/_next/static/chunks/14mrh2-p_w84d.js","async":true}],["$","script","script-3",{"src":"/website/_next/static/chunks/42slhzgb7dvh7.js","async":true}]],["$","$L2",null,{"children":["$","html",null,{"lang":"en","data-theme":"dark","suppressHydrationWarning":true,"className":"bebas_neue_4d1b6b20-module__PolqSW__variable space_mono_6ab7c80c-module__dmwzCa__variable h-full antialiased","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"(function(){try{var t=localStorage.getItem(\"theme\");if(t!==\"light\"&&t!==\"dark\")t=\"dark\";document.documentElement.setAttribute(\"data-theme\",t)}catch(e){}})()"}}]}],["$","body",null,{"className":"min-h-full flex flex-col bg-background text-foreground","children":[["$","$L3",null,{}],["$","$L4",null,{}],["$","$L5",null,{}],["$","main",null,{"className":"flex-1","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}],["$","footer",null,{"className":"border-t border-border bg-surface/40","children":["$","div",null,{"className":"mx-auto max-w-6xl px-6 py-16","children":[["$","div",null,{"className":"grid gap-10 md:grid-cols-[1.5fr_1fr_1fr]","children":[["$","div",null,{"className":"max-w-sm","children":[["$","p",null,{"className":"text-base font-semibold","children":"Ethical Tech CoLab"}],["$","p",null,{"className":"mt-3 text-sm leading-relaxed text-muted","children":"Exploring intervention opportunities at the intersection of emerging technologies and the human condition."}],["$","p",null,{"className":"mt-4 text-xs uppercase tracking-wider text-muted","children":"NYU SPS · CGA · Microsoft · New York"}],["$","div",null,{"className":"mt-5 flex items-center gap-3","children":[["$","a","linkedin",{"href":"https://www.linkedin.com/company/ethical-tech-lab/","target":"_blank","rel":"noopener noreferrer","aria-label":"LinkedIn","className":"flex h-9 w-9 items-center justify-center rounded-full border border-border text-muted transition-colors hover:border-accent hover:text-accent","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"currentColor","aria-hidden":true,"className":"h-4 w-4","children":["$","path",null,{"d":"M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28ZM5.34 7.43a2.07 2.07 0 1 1 0-4.14 2.07 2.07 0 0 1 0 4.14ZM7.12 20.45H3.55V9h3.57v11.45ZM22.22 0H1.77C.8 0 0 .78 0 1.75v20.5C0 23.22.8 24 1.77 24h20.45c.98 0 1.78-.78 1.78-1.75V1.75C24 .78 23.2 0 22.22 0Z"}]}]}],["$","a","github",{"href":"https://github.com/Ethical-Tech-CoLab","target":"_blank","rel":"noopener noreferrer","aria-label":"GitHub","className":"flex h-9 w-9 items-center justify-center rounded-full border border-border text-muted transition-colors hover:border-accent hover:text-accent","children":"$L8"}]]}]]}],"$L9","$La"]}],"$Lb","$Lc"]}]}]]}]]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"static-snapshot"}
+2:I[23475,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"ViewTransitions"]
+3:I[30353,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"SiteBackground"]
+4:I[46083,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"ScrollProgress"]
+5:I[36852,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"SiteHeader"]
+6:I[39756,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default"]
+7:I[37457,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js"],"default"]
+d:I[23475,["/website/_next/static/chunks/1-kh6uz_49jxr.js","/website/_next/static/chunks/146ithun0rz9e.js","/website/_next/static/chunks/14mrh2-p_w84d.js","/website/_next/static/chunks/42slhzgb7dvh7.js","/website/_next/static/chunks/3y2ffd9s1k5e5.js"],"Link"]
+:HL["/website/_next/static/chunks/2rl-zb5-19h8i.css","style"]
+0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/website/_next/static/chunks/2rl-zb5-19h8i.css","precedence":"next"}],["$","script","script-0",{"src":"/website/_next/static/chunks/1-kh6uz_49jxr.js","async":true}],["$","script","script-1",{"src":"/website/_next/static/chunks/146ithun0rz9e.js","async":true}],["$","script","script-2",{"src":"/website/_next/static/chunks/14mrh2-p_w84d.js","async":true}],["$","script","script-3",{"src":"/website/_next/static/chunks/42slhzgb7dvh7.js","async":true}]],["$","$L2",null,{"children":["$","html",null,{"lang":"en","data-theme":"dark","suppressHydrationWarning":true,"className":"bebas_neue_4d1b6b20-module__PolqSW__variable space_mono_6ab7c80c-module__dmwzCa__variable h-full antialiased","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"(function(){try{var t=localStorage.getItem(\"theme\");if(t!==\"light\"&&t!==\"dark\")t=\"dark\";document.documentElement.setAttribute(\"data-theme\",t)}catch(e){}})()"}}]}],["$","body",null,{"className":"min-h-full flex flex-col bg-background text-foreground","children":[["$","$L3",null,{}],["$","$L4",null,{}],["$","$L5",null,{}],["$","main",null,{"className":"flex-1","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}],["$","footer",null,{"className":"border-t border-border bg-surface/40","children":["$","div",null,{"className":"mx-auto max-w-6xl px-6 py-16","children":[["$","div",null,{"className":"grid gap-10 md:grid-cols-[1.5fr_1fr_1fr]","children":[["$","div",null,{"className":"max-w-sm","children":[["$","p",null,{"className":"text-base font-semibold","children":"Ethical Tech CoLab"}],["$","p",null,{"className":"mt-3 text-sm leading-relaxed text-muted","children":"Exploring intervention opportunities at the intersection of emerging technologies and the human condition."}],["$","p",null,{"className":"mt-4 text-xs uppercase tracking-wider text-muted","children":"NYU SPS · CGA · Microsoft · New York"}],["$","div",null,{"className":"mt-5 flex items-center gap-3","children":[["$","a","linkedin",{"href":"https://www.linkedin.com/company/ethical-tech-lab/","target":"_blank","rel":"noopener noreferrer","aria-label":"LinkedIn","className":"flex h-9 w-9 items-center justify-center rounded-full border border-border text-muted transition-colors hover:border-accent hover:text-accent","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"currentColor","aria-hidden":true,"className":"h-4 w-4","children":["$","path",null,{"d":"M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28ZM5.34 7.43a2.07 2.07 0 1 1 0-4.14 2.07 2.07 0 0 1 0 4.14ZM7.12 20.45H3.55V9h3.57v11.45ZM22.22 0H1.77C.8 0 0 .78 0 1.75v20.5C0 23.22.8 24 1.77 24h20.45c.98 0 1.78-.78 1.78-1.75V1.75C24 .78 23.2 0 22.22 0Z"}]}]}],["$","a","github",{"href":"https://github.com/Ethical-Tech-CoLab","target":"_blank","rel":"noopener noreferrer","aria-label":"GitHub","className":"flex h-9 w-9 items-center justify-center rounded-full border border-border text-muted transition-colors hover:border-accent hover:text-accent","children":"$L8"}]]}]]}],"$L9","$La"]}],"$Lb","$Lc"]}]}]]}]]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"static-snapshot"}
8:["$","svg",null,{"viewBox":"0 0 24 24","fill":"currentColor","aria-hidden":true,"className":"h-4 w-4","children":["$","path",null,{"d":"M12 .5C5.73.5.67 5.57.67 11.85c0 5.02 3.26 9.28 7.78 10.79.57.1.78-.25.78-.55v-1.94c-3.16.69-3.83-1.53-3.83-1.53-.52-1.32-1.27-1.67-1.27-1.67-1.04-.71.08-.7.08-.7 1.15.08 1.76 1.18 1.76 1.18 1.02 1.76 2.68 1.25 3.33.96.1-.74.4-1.25.72-1.54-2.52-.29-5.17-1.26-5.17-5.61 0-1.24.44-2.25 1.17-3.05-.12-.29-.51-1.45.11-3.02 0 0 .96-.31 3.15 1.17a10.9 10.9 0 0 1 2.87-.39c.97 0 1.95.13 2.87.39 2.19-1.48 3.15-1.17 3.15-1.17.62 1.57.23 2.73.11 3.02.73.8 1.17 1.81 1.17 3.05 0 4.36-2.66 5.31-5.19 5.6.41.35.78 1.05.78 2.12v3.14c0 .3.2.66.79.55a11.36 11.36 0 0 0 7.77-10.79C23.33 5.57 18.27.5 12 .5Z"}]}]
9:["$","div",null,{"children":[["$","p",null,{"className":"text-xs uppercase tracking-wider text-muted","children":"Navigate"}],["$","ul",null,{"className":"mt-4 space-y-2 text-sm","children":[["$","li","/portfolio",{"children":["$","$Ld",null,{"href":"/portfolio","className":"text-foreground/90 transition-colors hover:text-accent","children":"Portfolio"}]}],["$","li","/team",{"children":["$","$Ld",null,{"href":"/team","className":"text-foreground/90 transition-colors hover:text-accent","children":"Team"}]}],["$","li","/contact",{"children":["$","$Ld",null,{"href":"/contact","className":"text-foreground/90 transition-colors hover:text-accent","children":"Contact"}]}]]}]]}]
a:["$","div",null,{"children":[["$","p",null,{"className":"text-xs uppercase tracking-wider text-muted","children":"Connect"}],["$","ul",null,{"className":"mt-4 space-y-2 text-sm","children":[["$","li",null,{"children":["$","a",null,{"href":"mailto:ethical-tech-colab@nyu.edu","className":"text-foreground/90 transition-colors hover:text-accent","children":"ethical-tech-colab@nyu.edu"}]}],["$","li",null,{"children":["$","$Ld",null,{"href":"/#newsletter","className":"text-foreground/90 transition-colors hover:text-accent","children":"Join the newsletter ↗"}]}],["$","li",null,{"children":["$","a",null,{"href":"https://www.sps.nyu.edu","target":"_blank","rel":"noopener noreferrer","className":"text-foreground/90 transition-colors hover:text-accent","children":"NYU SPS ↗"}]}],["$","li",null,{"children":["$","a",null,{"href":"https://www.sps.nyu.edu/about/academic-divisions-and-departments/center-for-global-affairs.html","target":"_blank","rel":"noopener noreferrer","className":"text-foreground/90 transition-colors hover:text-accent","children":"NYU CGA ↗"}]}]]}]]}]
diff --git a/static-site/__next._tree.txt b/static-site/__next._tree.txt
index 4be7a1c47..f46a05d72 100644
--- a/static-site/__next._tree.txt
+++ b/static-site/__next._tree.txt
@@ -1,4 +1,4 @@
-:HL["/website/_next/static/chunks/0-hylzi378o2-.css","style"]
+:HL["/website/_next/static/chunks/2rl-zb5-19h8i.css","style"]
:HL["/website/_next/static/media/17b0f6a4f906cc39-s.p.3nfl-v4jxqll_.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/website/_next/static/media/1ae2575eb5be4118-s.p.29un6u1l3mwyp.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/website/_next/static/media/8d05cfa5faa8406c-s.p.1s123piy9_v1m.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
diff --git a/static-site/_next/static/chunks/0-hylzi378o2-.css b/static-site/_next/static/chunks/0-hylzi378o2-.css
deleted file mode 100644
index ff8f3129b..000000000
--- a/static-site/_next/static/chunks/0-hylzi378o2-.css
+++ /dev/null
@@ -1,3 +0,0 @@
-@font-face{font-family:Bebas Neue;font-style:normal;font-weight:400;font-display:swap;src:url(../media/2039e8342bda6056-s.1hiu0hj9qpr9g.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Bebas Neue;font-style:normal;font-weight:400;font-display:swap;src:url(../media/fabcf92ba1ccea36-s.p.1w_qz2ahumqmz.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Bebas Neue Fallback;src:local(Arial);ascent-override:117.32%;descent-override:39.11%;line-gap-override:0.0%;size-adjust:76.72%}.bebas_neue_4d1b6b20-module__PolqSW__className{font-family:Bebas Neue,Bebas Neue Fallback;font-style:normal;font-weight:400}.bebas_neue_4d1b6b20-module__PolqSW__variable{--font-bebas:"Bebas Neue", "Bebas Neue Fallback"}
-@font-face{font-family:Space Mono;font-style:italic;font-weight:400;font-display:swap;src:url(../media/417912ede2e82152-s.1umk1654cmfxm.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Mono;font-style:italic;font-weight:400;font-display:swap;src:url(../media/51f2519120a6b711-s.038kgsu-hd-vh.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Mono;font-style:italic;font-weight:400;font-display:swap;src:url(../media/1ae2575eb5be4118-s.p.29un6u1l3mwyp.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Mono;font-style:italic;font-weight:700;font-display:swap;src:url(../media/2c4e8b1b42841af7-s.2p_e9n24plgne.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Mono;font-style:italic;font-weight:700;font-display:swap;src:url(../media/7663dec790de7af8-s.2b96g58xb1jk9.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Mono;font-style:italic;font-weight:700;font-display:swap;src:url(../media/17b0f6a4f906cc39-s.p.3nfl-v4jxqll_.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Mono;font-style:normal;font-weight:400;font-display:swap;src:url(../media/4ba802ed8e67eac5-s.0fuxtgzazslqx.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Mono;font-style:normal;font-weight:400;font-display:swap;src:url(../media/d7a0600e467cf0bd-s.451yigaaz_4mg.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Mono;font-style:normal;font-weight:400;font-display:swap;src:url(../media/dc0d9adbac686440-s.p.3cik_s2si-ft-.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Mono;font-style:normal;font-weight:700;font-display:swap;src:url(../media/b8f2b92a9960dd69-s.0we3rzhp_h228.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Mono;font-style:normal;font-weight:700;font-display:swap;src:url(../media/28e60ca39c9ae554-s.44izq0ia6orkf.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Mono;font-style:normal;font-weight:700;font-display:swap;src:url(../media/8d05cfa5faa8406c-s.p.1s123piy9_v1m.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Mono Fallback;src:local(Arial);ascent-override:81.58%;descent-override:26.3%;line-gap-override:0.0%;size-adjust:137.28%}.space_mono_6ab7c80c-module__dmwzCa__className{font-family:Space Mono,Space Mono Fallback}.space_mono_6ab7c80c-module__dmwzCa__variable{--font-space-mono:"Space Mono", "Space Mono Fallback"}
-@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-scroll-snap-strictness:proximity;--tw-space-y-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-content:"";--aura-rot:0deg}}}@layer theme{:root,:host{--font-sans:var(--font-space-mono);--font-serif:var(--font-bebas);--font-mono:var(--font-space-mono);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-sm:24rem;--container-md:28rem;--container-xl:36rem;--container-2xl:42rem;--container-3xl:48rem;--container-4xl:56rem;--container-5xl:64rem;--container-6xl:72rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height:calc(1.5 / 1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25 / 1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5 / 2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--tracking-tight:-.025em;--tracking-wide:.025em;--tracking-wider:.05em;--leading-tight:1.25;--leading-snug:1.375;--leading-relaxed:1.625;--radius-sm:.25rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--ease-in:cubic-bezier(.4, 0, 1, 1);--ease-out:cubic-bezier(0, 0, .2, 1);--ease-in-out:cubic-bezier(.4, 0, .2, 1);--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--blur-sm:8px;--blur-md:12px;--aspect-video:16 / 9;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-space-mono);--default-mono-font-family:var(--font-space-mono);--font-heading:var(--font-bebas)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab, currentcolor 50%, transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}h1,h2,h3{font-family:var(--font-heading), "Bebas Neue", sans-serif;letter-spacing:.02em;font-weight:400}}@layer components;@layer utilities{.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:0}.inset-x-0{inset-inline:0}.inset-x-4{inset-inline:calc(var(--spacing) * 4)}.inset-y-0{inset-block:0}.-top-\[20\%\]{top:-20%}.top-0{top:0}.top-1\/2{top:50%}.top-3{top:calc(var(--spacing) * 3)}.top-4{top:calc(var(--spacing) * 4)}.top-full{top:100%}.right-0{right:0}.right-3{right:calc(var(--spacing) * 3)}.right-4{right:calc(var(--spacing) * 4)}.right-\[-60px\]{right:-60px}.bottom-0{bottom:0}.bottom-4{bottom:calc(var(--spacing) * 4)}.-left-\[20\%\]{left:-20%}.left-0{left:0}.left-3{left:calc(var(--spacing) * 3)}.left-\[-5000px\]{left:-5000px}.z-10{z-index:10}.z-40{z-index:40}.z-50{z-index:50}.z-\[55\]{z-index:55}.z-\[90\]{z-index:90}.z-\[100\]{z-index:100}.col-span-full{grid-column:1/-1}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.-mx-6{margin-inline:calc(var(--spacing) * -6)}.mx-auto{margin-inline:auto}.mt-1{margin-top:var(--spacing)}.mt-1\.5{margin-top:calc(var(--spacing) * 1.5)}.mt-2{margin-top:calc(var(--spacing) * 2)}.mt-3{margin-top:calc(var(--spacing) * 3)}.mt-4{margin-top:calc(var(--spacing) * 4)}.mt-5{margin-top:calc(var(--spacing) * 5)}.mt-6{margin-top:calc(var(--spacing) * 6)}.mt-7{margin-top:calc(var(--spacing) * 7)}.mt-8{margin-top:calc(var(--spacing) * 8)}.mt-10{margin-top:calc(var(--spacing) * 10)}.mt-12{margin-top:calc(var(--spacing) * 12)}.mt-14{margin-top:calc(var(--spacing) * 14)}.mt-16{margin-top:calc(var(--spacing) * 16)}.mt-20{margin-top:calc(var(--spacing) * 20)}.mt-auto{margin-top:auto}.-mr-4{margin-right:calc(var(--spacing) * -4)}.mr-2{margin-right:calc(var(--spacing) * 2)}.-mb-px{margin-bottom:-1px}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.mb-3{margin-bottom:calc(var(--spacing) * 3)}.mb-6{margin-bottom:calc(var(--spacing) * 6)}.-ml-4{margin-left:calc(var(--spacing) * -4)}.ml-2{margin-left:calc(var(--spacing) * 2)}.ml-auto{margin-left:auto}.line-clamp-2{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-3{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.table{display:table}.aspect-\[2\/3\]{aspect-ratio:2/3}.aspect-\[4\/3\]{aspect-ratio:4/3}.aspect-\[4\/5\]{aspect-ratio:4/5}.aspect-\[16\/7\]{aspect-ratio:16/7}.aspect-\[16\/10\]{aspect-ratio:16/10}.aspect-square{aspect-ratio:1}.aspect-video{aspect-ratio:var(--aspect-video)}.h-0\.5{height:calc(var(--spacing) * .5)}.h-1\.5{height:calc(var(--spacing) * 1.5)}.h-2\.5{height:calc(var(--spacing) * 2.5)}.h-3{height:calc(var(--spacing) * 3)}.h-3\.5{height:calc(var(--spacing) * 3.5)}.h-4{height:calc(var(--spacing) * 4)}.h-8{height:calc(var(--spacing) * 8)}.h-9{height:calc(var(--spacing) * 9)}.h-\[140\%\]{height:140%}.h-full{height:100%}.h-px{height:1px}.min-h-\[2\.75rem\]{min-height:2.75rem}.min-h-full{min-height:100%}.w-1\.5{width:calc(var(--spacing) * 1.5)}.w-2\.5{width:calc(var(--spacing) * 2.5)}.w-3\.5{width:calc(var(--spacing) * 3.5)}.w-4{width:calc(var(--spacing) * 4)}.w-6{width:calc(var(--spacing) * 6)}.w-8{width:calc(var(--spacing) * 8)}.w-9{width:calc(var(--spacing) * 9)}.w-20{width:calc(var(--spacing) * 20)}.w-52{width:calc(var(--spacing) * 52)}.w-72{width:calc(var(--spacing) * 72)}.w-\[124px\]{width:124px}.w-\[140\%\]{width:140%}.w-\[190px\]{width:190px}.w-\[min\(72vw\,380px\)\]{width:min(72vw,380px)}.w-fit{width:fit-content}.w-full{width:100%}.max-w-2xl{max-width:var(--container-2xl)}.max-w-3xl{max-width:var(--container-3xl)}.max-w-4xl{max-width:var(--container-4xl)}.max-w-5xl{max-width:var(--container-5xl)}.max-w-6xl{max-width:var(--container-6xl)}.max-w-\[40em\]{max-width:40em}.max-w-\[80vw\]{max-width:80vw}.max-w-md{max-width:var(--container-md)}.max-w-sm{max-width:var(--container-sm)}.max-w-xl{max-width:var(--container-xl)}.min-w-0{min-width:0}.min-w-\[180px\]{min-width:180px}.min-w-\[240px\]{min-width:240px}.min-w-\[640px\]{min-width:640px}.flex-1{flex:1}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.border-collapse{border-collapse:collapse}.origin-left{transform-origin:0}.-translate-x-full{--tw-translate-x:-100%;translate:var(--tw-translate-x) var(--tw-translate-y)}.translate-x-0{--tw-translate-x:0;translate:var(--tw-translate-x) var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.-translate-y-2{--tw-translate-y:calc(var(--spacing) * -2);translate:var(--tw-translate-x) var(--tw-translate-y)}.translate-y-2{--tw-translate-y:calc(var(--spacing) * 2);translate:var(--tw-translate-x) var(--tw-translate-y)}.-rotate-45{rotate:-45deg}.rotate-45{rotate:45deg}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize{resize:both}.snap-x{scroll-snap-type:x var(--tw-scroll-snap-strictness)}.snap-mandatory{--tw-scroll-snap-strictness:mandatory}.snap-start{scroll-snap-align:start}.scroll-mt-24{scroll-margin-top:calc(var(--spacing) * 24)}.scroll-mt-28{scroll-margin-top:calc(var(--spacing) * 28)}.scroll-pl-6{scroll-padding-left:calc(var(--spacing) * 6)}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-rows-\[0fr\]{grid-template-rows:0fr}.grid-rows-\[1fr\]{grid-template-rows:1fr}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.place-items-center{place-items:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-1{gap:var(--spacing)}.gap-1\.5{gap:calc(var(--spacing) * 1.5)}.gap-2{gap:calc(var(--spacing) * 2)}.gap-2\.5{gap:calc(var(--spacing) * 2.5)}.gap-3{gap:calc(var(--spacing) * 3)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-5{gap:calc(var(--spacing) * 5)}.gap-6{gap:calc(var(--spacing) * 6)}.gap-8{gap:calc(var(--spacing) * 8)}.gap-10{gap:calc(var(--spacing) * 10)}.gap-px{gap:1px}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(var(--spacing) * var(--tw-space-y-reverse));margin-block-end:calc(var(--spacing) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-10>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 10) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 10) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-14>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 14) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 14) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-16>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 16) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 16) * calc(1 - var(--tw-space-y-reverse)))}.gap-x-3{column-gap:calc(var(--spacing) * 3)}.gap-x-4{column-gap:calc(var(--spacing) * 4)}.gap-x-5{column-gap:calc(var(--spacing) * 5)}.gap-x-10{column-gap:calc(var(--spacing) * 10)}.gap-y-1{row-gap:var(--spacing)}.gap-y-2{row-gap:calc(var(--spacing) * 2)}.gap-y-4{row-gap:calc(var(--spacing) * 4)}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px * var(--tw-divide-y-reverse));border-bottom-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)))}:where(.divide-border>:not(:last-child)){border-color:var(--border)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-sm{border-radius:var(--radius-sm)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-r-\[4px\]{border-top-right-radius:4px;border-bottom-right-radius:4px}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-2{border-bottom-style:var(--tw-border-style);border-bottom-width:2px}.border-l-2{border-left-style:var(--tw-border-style);border-left-width:2px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-accent,.border-accent\/60{border-color:var(--accent)}@supports (color:color-mix(in lab, red, red)){.border-accent\/60{border-color:color-mix(in oklab, var(--accent) 60%, transparent)}}.border-border{border-color:var(--border)}.border-border-strong{border-color:var(--border-strong)}.border-transparent{border-color:#0000}.border-white\/35{border-color:#ffffff59}@supports (color:color-mix(in lab, red, red)){.border-white\/35{border-color:color-mix(in oklab, var(--color-white) 35%, transparent)}}.bg-\[\#11172f\]{background-color:#11172f}.bg-accent{background-color:var(--accent)}.bg-background,.bg-background\/30{background-color:var(--background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/30{background-color:color-mix(in oklab, var(--background) 30%, transparent)}}.bg-background\/60{background-color:var(--background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/60{background-color:color-mix(in oklab, var(--background) 60%, transparent)}}.bg-background\/70{background-color:var(--background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/70{background-color:color-mix(in oklab, var(--background) 70%, transparent)}}.bg-background\/80{background-color:var(--background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/80{background-color:color-mix(in oklab, var(--background) 80%, transparent)}}.bg-background\/90{background-color:var(--background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/90{background-color:color-mix(in oklab, var(--background) 90%, transparent)}}.bg-black\/45{background-color:#00000073}@supports (color:color-mix(in lab, red, red)){.bg-black\/45{background-color:color-mix(in oklab, var(--color-black) 45%, transparent)}}.bg-black\/60{background-color:#0009}@supports (color:color-mix(in lab, red, red)){.bg-black\/60{background-color:color-mix(in oklab, var(--color-black) 60%, transparent)}}.bg-border{background-color:var(--border)}.bg-card{background-color:var(--card)}.bg-current{background-color:currentColor}.bg-foreground\/25{background-color:var(--foreground)}@supports (color:color-mix(in lab, red, red)){.bg-foreground\/25{background-color:color-mix(in oklab, var(--foreground) 25%, transparent)}}.bg-secondary{background-color:var(--secondary)}.bg-surface,.bg-surface\/40{background-color:var(--surface)}@supports (color:color-mix(in lab, red, red)){.bg-surface\/40{background-color:color-mix(in oklab, var(--surface) 40%, transparent)}}.bg-surface\/60{background-color:var(--surface)}@supports (color:color-mix(in lab, red, red)){.bg-surface\/60{background-color:color-mix(in oklab, var(--surface) 60%, transparent)}}.bg-white{background-color:var(--color-white)}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-background{--tw-gradient-from:var(--background);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-black\/70{--tw-gradient-from:#000000b3}@supports (color:color-mix(in lab, red, red)){.from-black\/70{--tw-gradient-from:color-mix(in oklab, var(--color-black) 70%, transparent)}}.from-black\/70{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.via-background\/90{--tw-gradient-via:var(--background)}@supports (color:color-mix(in lab, red, red)){.via-background\/90{--tw-gradient-via:color-mix(in oklab, var(--background) 90%, transparent)}}.via-background\/90{--tw-gradient-via-stops:var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.to-background\/45{--tw-gradient-to:var(--background)}@supports (color:color-mix(in lab, red, red)){.to-background\/45{--tw-gradient-to:color-mix(in oklab, var(--background) 45%, transparent)}}.to-background\/45{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.bg-top{background-position:top}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.object-\[70\%_35\%\]{object-position:70% 35%}.object-center{object-position:center}.p-1{padding:var(--spacing)}.p-2{padding:calc(var(--spacing) * 2)}.p-4{padding:calc(var(--spacing) * 4)}.p-5{padding:calc(var(--spacing) * 5)}.p-6{padding:calc(var(--spacing) * 6)}.p-7{padding:calc(var(--spacing) * 7)}.p-8{padding:calc(var(--spacing) * 8)}.px-2{padding-inline:calc(var(--spacing) * 2)}.px-2\.5{padding-inline:calc(var(--spacing) * 2.5)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-4{padding-inline:calc(var(--spacing) * 4)}.px-5{padding-inline:calc(var(--spacing) * 5)}.px-6{padding-inline:calc(var(--spacing) * 6)}.py-0\.5{padding-block:calc(var(--spacing) * .5)}.py-1{padding-block:var(--spacing)}.py-1\.5{padding-block:calc(var(--spacing) * 1.5)}.py-2{padding-block:calc(var(--spacing) * 2)}.py-2\.5{padding-block:calc(var(--spacing) * 2.5)}.py-3{padding-block:calc(var(--spacing) * 3)}.py-4{padding-block:calc(var(--spacing) * 4)}.py-8{padding-block:calc(var(--spacing) * 8)}.py-12{padding-block:calc(var(--spacing) * 12)}.py-16{padding-block:calc(var(--spacing) * 16)}.py-20{padding-block:calc(var(--spacing) * 20)}.py-24{padding-block:calc(var(--spacing) * 24)}.py-28{padding-block:calc(var(--spacing) * 28)}.py-32{padding-block:calc(var(--spacing) * 32)}.pt-2{padding-top:calc(var(--spacing) * 2)}.pt-4{padding-top:calc(var(--spacing) * 4)}.pt-5{padding-top:calc(var(--spacing) * 5)}.pt-6{padding-top:calc(var(--spacing) * 6)}.pt-7{padding-top:calc(var(--spacing) * 7)}.pt-8{padding-top:calc(var(--spacing) * 8)}.pt-10{padding-top:calc(var(--spacing) * 10)}.pt-12{padding-top:calc(var(--spacing) * 12)}.pt-24{padding-top:calc(var(--spacing) * 24)}.pr-4{padding-right:calc(var(--spacing) * 4)}.pb-2{padding-bottom:calc(var(--spacing) * 2)}.pb-3{padding-bottom:calc(var(--spacing) * 3)}.pb-8{padding-bottom:calc(var(--spacing) * 8)}.pb-24{padding-bottom:calc(var(--spacing) * 24)}.pl-1{padding-left:var(--spacing)}.pl-5{padding-left:calc(var(--spacing) * 5)}.pl-6{padding-left:calc(var(--spacing) * 6)}.text-center{text-align:center}.text-left{text-align:left}.align-top{vertical-align:top}.font-heading{font-family:var(--font-bebas)}.font-mono,.font-sans{font-family:var(--font-space-mono)}.font-serif{font-family:var(--font-bebas)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-7xl{font-size:var(--text-7xl);line-height:var(--tw-leading,var(--text-7xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[0\.65em\]{font-size:.65em}.text-\[0\.65rem\]{font-size:.65rem}.text-\[9px\]{font-size:9px}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[clamp\(4\.25rem\,13vw\,11rem\)\]{font-size:clamp(4.25rem,13vw,11rem)}.leading-\[0\.9\]{--tw-leading:.9;line-height:.9}.leading-\[0\.88\]{--tw-leading:.88;line-height:.88}.leading-\[0\.95\]{--tw-leading:.95;line-height:.95}.leading-\[1\.02\]{--tw-leading:1.02;line-height:1.02}.leading-\[1\.05\]{--tw-leading:1.05;line-height:1.05}.leading-\[1\.12\]{--tw-leading:1.12;line-height:1.12}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-snug{--tw-leading:var(--leading-snug);line-height:var(--leading-snug)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-\[0\.02em\]{--tw-tracking:.02em;letter-spacing:.02em}.tracking-\[0\.2em\]{--tw-tracking:.2em;letter-spacing:.2em}.tracking-\[0\.06em\]{--tw-tracking:.06em;letter-spacing:.06em}.tracking-\[0\.12em\]{--tw-tracking:.12em;letter-spacing:.12em}.tracking-\[0\.16em\]{--tw-tracking:.16em;letter-spacing:.16em}.tracking-\[0\.18em\]{--tw-tracking:.18em;letter-spacing:.18em}.tracking-\[0\.25em\]{--tw-tracking:.25em;letter-spacing:.25em}.tracking-\[0\.35em\]{--tw-tracking:.35em;letter-spacing:.35em}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.break-words{overflow-wrap:break-word}.whitespace-nowrap{white-space:nowrap}.text-\[\"\]\)\<\/script\>\404: This page could not be found.NYU Ethical Tech CoLab · Emerging Tech, Human Condition