:root {
  --bg: #0b0c0e; --panel: #131519; --panel-2: #181b20; --line: #23262d; --line-2: #3a3f48;
  --text: #e8e9eb; --muted: #8b9098; --faint: #5b6068; --accent: #7fa7d9; --accent-line: #2c3a4d;
  --max: 1240px; --pad: 40px; --gap: 10px;
}
* { box-sizing: border-box; margin: 0; }
body { background: var(--bg); color: var(--text); font: 400 15px/1.5 Geist, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.mono { font-family: "Geist Mono", monospace; }

/* header */
header { position: sticky; top: 0; z-index: 5; background: rgba(11,12,14,.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
header .wrap { display: flex; justify-content: space-between; align-items: center; height: 64px; }
header .name { font-weight: 500; text-decoration: none; }
header nav a { color: var(--muted); text-decoration: none; font-size: 14px; margin-left: 28px; }
header nav a:hover, header nav a.on { color: var(--text); }
header nav a.cta { color: var(--text); border: 1px solid var(--line-2); padding: 7px 14px; }

/* section scaffolding */
section { padding: 96px 0 0; }
.sec-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 28px; }
.sec-head h2 { font-weight: 400; font-size: 28px; letter-spacing: -.01em; }
.sec-head .mono, .sec-head a { color: var(--faint); font-size: 12px; text-decoration: none; }
.sec-head a:hover { color: var(--text); }
.eyebrow { font-size: 12px; color: var(--accent); letter-spacing: .08em; text-transform: uppercase; }

/* hero + stats */
.hero { padding: 120px 0 80px; }
.hero h1 { font-weight: 300; font-size: clamp(38px, 6vw, 72px); line-height: 1.05; letter-spacing: -.025em; margin-top: 20px; max-width: 1000px; }
.hero h1 em { font-style: normal; color: var(--muted); }
.hero p { color: var(--muted); font-size: 18px; max-width: 620px; margin-top: 28px; }
.page-head { padding: 88px 0 40px; }
.page-head h1 { font-weight: 300; font-size: clamp(34px, 5vw, 56px); letter-spacing: -.02em; margin-top: 16px; }
.page-head p { color: var(--muted); max-width: 560px; margin-top: 14px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 32px 24px 32px 0; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }
.stat b { display: block; font-weight: 300; font-size: 44px; letter-spacing: -.02em; }
.stat span { color: var(--muted); font-size: 13px; }

/* logos */
.logo {
  display: inline-block; background: currentColor;
  -webkit-mask: var(--logo) left center / contain no-repeat; mask: var(--logo) left center / contain no-repeat;
}
.logo.wordmark { background: none; width: auto !important; height: auto !important; font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }

/* logo wall */
.wall { display: grid; grid-template-columns: repeat(7, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.cell { --base: 36px; height: 110px; display: flex; gap: 12px; align-items: center; justify-content: center; color: var(--muted);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .2s; }
.cell:hover { color: var(--text); }
.cell .logo { -webkit-mask-position: center; mask-position: center; }
.cell .wordmark { font-size: 12px; text-align: center; }

/* tiles */
.grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); grid-auto-rows: 150px; grid-auto-flow: dense; }
.tile {
  position: relative; overflow: hidden; background: var(--panel); border: 1px solid var(--line); color: var(--text);
  padding: 20px; display: flex; flex-direction: column; justify-content: space-between; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.tile:hover { border-color: var(--line-2); background: var(--panel-2); }
.tile.s1 { grid-row: span 2; }
.tile.s2 { grid-row: span 3; }
.tile.s3 { grid-row: span 4; grid-column: span 2; }

.tile > * { position: relative; z-index: 1; }
.tile .logos { --base: 34px; display: flex; gap: 14px; align-items: center; min-height: 36px; }
.tile.s3 .logos { --base: 54px; }
.tile.s3 .wordmark { font-size: 26px; }
.tile .meta { font-size: 11px; color: var(--faint); letter-spacing: .02em; }
.tile h3 { font-weight: 500; font-size: 17px; line-height: 1.3; margin-top: 6px; }
.tile.s3 h3 { font-size: 34px; font-weight: 400; letter-spacing: -.01em; }
.tile .line { color: var(--muted); font-size: 13px; margin-top: 8px; display: none; }
.tile.s2 .line, .tile.s3 .line { display: block; }
.tile.s3 .line { font-size: 16px; max-width: 460px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tags span { font-size: 10px; color: var(--accent); border: 1px solid var(--accent-line); padding: 2px 7px; }

/* featured grid on home: fixed 4-column composition */
.featured { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 205px; }
.featured .tile.s2 { grid-row: span 2; }

/* list view */
.list { border-top: 1px solid var(--line); }
.row { display: grid; grid-template-columns: 110px 210px 1fr 170px; gap: 24px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding .2s, background .2s; }
.row:hover { background: var(--panel); padding-left: 16px; padding-right: 16px; }
.row .lg, .tl .lg, .recog .lg { --base: 26px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.row:hover .lg { color: var(--text); }
.lg .wordmark { display: none; }
.row .co small { display: block; color: var(--faint); font-size: 12px; margin-top: 2px; }
.row .co { color: var(--text); font-size: 14px; }
.row h3 { font-weight: 400; font-size: 20px; letter-spacing: -.01em; }
.row p { color: var(--muted); font-size: 13px; margin-top: 4px; max-height: 0; overflow: hidden; transition: max-height .25s; }
.row:hover p { max-height: 60px; }
.row .tg { text-align: right; color: var(--accent); font-size: 11px; }

/* controls */
.controls { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.seg { display: inline-flex; border: 1px solid var(--line); }
.seg button { background: none; border: 0; color: var(--muted); font: 500 12px "Geist Mono", monospace; padding: 8px 14px; cursor: pointer; }
.seg button + button { border-left: 1px solid var(--line); }
.seg button[aria-pressed="true"] { color: var(--text); background: var(--panel-2); }



/* visual placeholders inside tiles */
.vis { flex: 1; margin: 16px 0; min-height: 0; border: 1px dashed var(--line-2); display: flex; flex-direction: column; color: var(--faint); background:
  repeating-linear-gradient(135deg, transparent 0 9px, rgba(255,255,255,.018) 9px 10px); }
.vis .mono { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.vis-screen .chrome { display: flex; gap: 5px; padding: 8px 10px; border-bottom: 1px dashed var(--line-2); }
.vis-screen .chrome i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); }
.vis-screen .shot { flex: 1; display: grid; place-items: center; }
.vis-diagram { align-items: center; justify-content: center; gap: 8px; padding: 12px; }
.vis-diagram svg { width: 100%; max-width: 360px; max-height: 70%; color: var(--line-2); }
.tile:hover .vis { border-color: #4a515c; }

/* real media: muted at rest, full colour on hover */
.vis-media { border: 1px solid var(--line); background: #0e0f12; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.vis-media img { display: block; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.6) brightness(.78) contrast(1.05); transition: filter .5s; flex: 1; min-height: 0; }
.tile:hover .vis-media img, .vis-media:hover img { filter: none; }
.tile .vis-media { border-color: var(--line); }
.vis-svg { align-items: center; justify-content: center; padding: 10px; background: var(--bg); }
.vis-svg .svg, .vis-svg .svg svg { width: 100%; height: 100%; display: block; }
.vis-media figcaption { flex: none; padding: 9px 14px; font-size: 11px; color: var(--faint); background: var(--panel); border-top: 1px solid var(--line); }
.vis-svg figcaption { align-self: stretch; margin: 12px -24px -44px; }
.cs-hero-vis .vis-media { flex: 1; }
.cs-hero-vis .vis-media img { height: auto; max-height: 640px; }
.cs-hero-vis .vis-svg { padding: 32px 24px 44px; }
.cs-hero-vis .vis-svg .svg svg { height: auto; }

/* capabilities */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.cap { padding: 28px 28px 8px 0; }
.cap + .cap { padding-left: 28px; border-left: 1px solid var(--line); }
.cap .mono { color: var(--accent); font-size: 12px; }
.cap h3 { font-weight: 400; font-size: 22px; margin: 14px 0 10px; letter-spacing: -.01em; }
.cap p { color: var(--muted); font-size: 14px; }

/* recognition */
.recog { border-top: 1px solid var(--line); }
.recog div { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.recog .mono { color: var(--faint); font-size: 12px; }

/* testimonials */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.quote { background: var(--panel); border: 1px solid var(--line); padding: 32px; }
.quote p { font-size: 20px; font-weight: 300; line-height: 1.45; letter-spacing: -.005em; }
.quote p::before { content: "“"; color: var(--accent); margin-right: 2px; }
.quote .who { margin-top: 24px; font-size: 14px; }
.quote .who span { color: var(--muted); display: block; font-size: 13px; }

/* about page */
.about { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.portrait { aspect-ratio: 4/5; border: 1px dashed var(--line-2); display: grid; place-items: center; color: var(--faint);
  background: repeating-linear-gradient(135deg, transparent 0 9px, rgba(255,255,255,.018) 9px 10px); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.bio p { font-size: 19px; font-weight: 300; line-height: 1.6; color: #cfd1d5; }
.bio p + p { margin-top: 20px; }
.skills { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.skill { border: 1px solid var(--line); padding: 22px; }
.skill h3 { font-weight: 500; font-size: 15px; margin-bottom: 12px; }
.skill ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.skill li { font-size: 12px; color: var(--muted); border: 1px solid var(--line); padding: 3px 9px; }
.timeline { border-top: 1px solid var(--line); }
.tl { display: grid; grid-template-columns: 110px 1fr 1fr; gap: 24px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.tl .mono { color: var(--faint); font-size: 12px; }
.tl .role { color: var(--muted); font-size: 14px; }

img.portrait { display: block; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 25%; border: 0; background: none; filter: grayscale(.15); }

/* case study page */
.cs-head { padding: 72px 0 48px; }
.cs-head .back { color: var(--faint); font-size: 12px; text-decoration: none; }
.cs-head .back:hover { color: var(--text); }
.cs-head .logos { --base: 48px; display: flex; gap: 16px; align-items: center; margin-top: 40px; }
.cs-head .logos .wordmark { font-size: 22px; }
.cs-head h1 { font-weight: 300; font-size: clamp(36px, 5.5vw, 64px); letter-spacing: -.025em; line-height: 1.05; margin-top: 28px; max-width: 900px; }
.cs-head p { color: var(--muted); font-size: 19px; max-width: 700px; margin-top: 20px; }
.cs-meta { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cs-meta div { padding: 20px 20px 20px 0; }
.cs-meta div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.cs-meta .mono { color: var(--faint); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.cs-meta b { display: block; font-weight: 400; margin-top: 6px; }
.cs-hero-vis { margin-top: 48px; display: flex; }
.cs-hero-vis .vis:not(.vis-media) { height: 520px; }
.cs-hero-vis .vis { margin: 0; }
.cs-body { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-top: 80px; }
.cs-body h2 { font-weight: 400; font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; font-family: "Geist Mono", monospace; }
.cs-body p { font-size: 19px; font-weight: 300; line-height: 1.6; color: #cfd1d5; max-width: 720px; }
.cs-body > * + h2 { }
.cs-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); margin-top: 80px; }
.cs-pair .vis { height: 380px; }
.cs-pair .vis { margin: 0; }
.cs-nav { display: grid; grid-template-columns: 1fr 1fr; margin-top: 96px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cs-nav a { display: flex; flex-direction: column; gap: 10px; padding: 32px 24px 32px 0; text-decoration: none; transition: background .2s; }
.cs-nav a.nx { align-items: flex-end; text-align: right; padding: 32px 0 32px 24px; border-left: 1px solid var(--line); }
.cs-nav .mono { color: var(--faint); font-size: 12px; }
.cs-nav b { font-weight: 300; font-size: 26px; letter-spacing: -.015em; line-height: 1.2; }
.cs-nav a:hover b { color: var(--accent); }

/* footer */
footer { padding: 120px 0 48px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end; padding-bottom: 64px; border-bottom: 1px solid var(--line); }
footer h2 { font-weight: 300; font-size: clamp(32px, 5vw, 56px); letter-spacing: -.02em; line-height: 1.1; }
.foot-links a { display: flex; justify-content: space-between; padding: 16px 0; border-top: 1px solid var(--line); text-decoration: none; font-size: 17px; }
.foot-links a span { color: var(--faint); transition: color .2s, transform .2s; }
.foot-links a:hover span { color: var(--accent); transform: translateX(4px); }
.foot-base { display: flex; justify-content: space-between; color: var(--faint); font-size: 12px; margin-top: 24px; }

@media (max-width: 900px) {
  :root { --pad: 16px; }
  header nav a:not(.cta) { display: none; }
  .hero { padding: 72px 0 48px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .wall { grid-template-columns: repeat(3, 1fr); }
  .featured { grid-template-columns: 1fr 1fr; }
  .tile.s3 { grid-column: span 2; }
  .row { grid-template-columns: 1fr; gap: 4px; }
  .row .tg { text-align: left; }
  .caps, .quotes, .about, .cs-body, .foot-grid { grid-template-columns: 1fr; }
  .cap + .cap { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .about { gap: 32px; } .portrait { max-width: 280px; }
  .skills { grid-template-columns: 1fr 1fr; }
  .tl { grid-template-columns: 80px 1fr; gap: 2px 16px; } .tl .role { grid-column: 2; }
  .row .lg { margin-bottom: 6px; }
  .cs-meta { grid-template-columns: 1fr 1fr; }
  .cs-meta div:nth-child(3) { padding-left: 0; border-left: 0; }
  .cs-meta div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .cs-hero-vis .vis:not(.vis-media) { height: 280px; } .cs-pair { grid-template-columns: 1fr; } .cs-pair .vis { height: 240px; }
  .cs-body { gap: 12px; } .cs-body p { margin-bottom: 28px; }
}
@media (max-width: 560px) {
  .grid, .featured { grid-template-columns: 1fr; }
  .tile.s3 { grid-column: auto; }
  .tile.s3 h3 { font-size: 26px; }
  .skills { grid-template-columns: 1fr; }
  .cs-nav { grid-template-columns: 1fr; } .cs-nav a.nx { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; } .cs-nav b { font-size: 20px; }
}

/* ---- depth: light, gradients, elevation (part of the editorial style) ---- */

html[data-style="editorial"] {
  --glow: 127,167,217;
  --panel-top: #181b21; --panel-bot: #111317;
}
[data-style="editorial"] body {
  background:
    radial-gradient(1100px 620px at 12% -8%, rgba(var(--glow), .13), transparent 62%),
    radial-gradient(900px 520px at 105% 18%, rgba(var(--glow), .06), transparent 60%),
    var(--bg);
  background-repeat: no-repeat;
}
[data-style="editorial"] header {
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 12px 24px -18px rgba(0,0,0,.8);
}
[data-style="editorial"] header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--glow), .45), transparent);
}
[data-style="editorial"] .hero h1 em {
  background: linear-gradient(90deg, #9aa3ad, rgba(var(--glow), 1)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
[data-style="editorial"] :is(.tile, .quote, .skill) {
  background: linear-gradient(180deg, var(--panel-top), var(--panel-bot));
  border-color: #252930;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 24px 48px -28px rgba(0,0,0,.9);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
[data-style="editorial"] .tile:hover {
  transform: translateY(-3px); border-color: rgba(var(--glow), .45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 30px 60px -28px rgba(0,0,0,.95), 0 0 0 1px rgba(var(--glow), .12), 0 0 40px -10px rgba(var(--glow), .25);
}
[data-style="editorial"] .stats {
  background: linear-gradient(90deg, rgba(var(--glow), .07), rgba(var(--glow), .01) 70%, transparent);
  border-image: linear-gradient(90deg, rgba(var(--glow), .5), var(--line) 60%) 1;
}
[data-style="editorial"] .stat b {
  background: linear-gradient(180deg, #fff, #aab4c0); -webkit-background-clip: text; background-clip: text; color: transparent;
}
[data-style="editorial"] .sec-head h2::before {
  content: ""; display: inline-block; width: 18px; height: 2px; margin-right: 12px; vertical-align: middle;
  background: rgba(var(--glow), 1); transform: translateY(-3px);
}
[data-style="editorial"] .cap {
  background: linear-gradient(180deg, rgba(var(--glow), .06), transparent 70%);
}
[data-style="editorial"] .vis-media { box-shadow: 0 20px 40px -24px rgba(0,0,0,.9); }
[data-style="editorial"] .cell { background: linear-gradient(180deg, rgba(255,255,255,.015), transparent); }
[data-style="editorial"] footer .foot-grid {
  background: radial-gradient(700px 300px at 0% 100%, rgba(var(--glow), .08), transparent 70%);
}

/* ---- editorial (the chosen style): Inter Tight display, warmer white, fine grain ---- */
html[data-style="editorial"] { --text: #ede9e2; --muted: #9a958d; --display: "Inter Tight", Geist, system-ui, sans-serif; }
:root { --hot: 90,168,255; }
[data-style="editorial"] body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
[data-style="editorial"] :is(.hero h1, .page-head h1, .cs-head h1, .sec-head h2, footer h2, .tile.s3 h3, .cs-nav b, .stat b, .cap h3) {
  font-family: var(--display); font-weight: 300; letter-spacing: -.025em;
}
[data-style="editorial"] .hero h1 { font-size: clamp(40px, 6.4vw, 80px); line-height: 1.02; }
[data-style="editorial"] .sec-head h2 { font-size: 32px; }
[data-style="editorial"] .stat b { font-size: 52px; }
[data-style="editorial"] .tile.s3 h3 { font-size: 40px; }
[data-style="editorial"] .cap h3 { font-size: 24px; }
[data-style="editorial"] .quote p { font-family: var(--display); font-weight: 300; font-size: 22px; }
/* serif display faces: a touch larger, italic second line */
[data-font-kind="serif"] :is(.hero h1, .page-head h1, .cs-head h1, .sec-head h2, footer h2, .tile.s3 h3, .cs-nav b, .stat b, .cap h3) { letter-spacing: -.01em; }
[data-font-kind="serif"] .hero h1 { font-size: clamp(44px, 7vw, 88px); line-height: 1; }
[data-font-kind="serif"] .hero h1 em, [data-font-kind="serif"] .quote p { font-style: italic; }
[data-style="editorial"] .cs-body p, [data-style="editorial"] .bio p { color: #d9d4cc; }

/* ---- hover: spotlight, lift, zoom, reveal ---- */
.tile { isolation: isolate; }
.tile::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(var(--hot), .16), transparent 45%);
}
.tile:hover::before { opacity: 1; }
.tile .go { position: absolute; top: 20px; right: 20px; z-index: 2; font-size: 11px; color: rgb(var(--hot));
  opacity: 0; transform: translateX(-8px); transition: opacity .25s, transform .25s; }
.tile:hover .go { opacity: 1; transform: none; }
.tile h3 { transition: color .25s; }
.tile:hover h3 { color: #fff; }
.tile .logos { transition: color .25s, opacity .25s; opacity: .85; }
.tile:hover .logos { opacity: 1; }
.vis-media img { transition: filter .5s, transform .7s cubic-bezier(.2,.7,.2,1); }
.tile:hover .vis-media img { transform: scale(1.045); }
.tile .vis-svg .svg { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.tile:hover .vis-svg .svg { transform: scale(1.03); }
html[data-style="editorial"] .tile:hover {
  transform: translateY(-5px); border-color: rgba(var(--hot), .6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 36px 70px -30px rgba(0,0,0,1), 0 0 0 1px rgba(var(--hot), .18), 0 0 60px -12px rgba(var(--hot), .3);
}
.row { position: relative; }
.row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgb(var(--hot)); transform: scaleY(0); transition: transform .25s; }
.row:hover::before { transform: none; }
.row:hover { background: linear-gradient(90deg, rgba(var(--hot), .08), transparent 70%); }
.row h3 { transition: color .25s, transform .25s; }
.row:hover h3 { color: #fff; transform: translateX(4px); }
.row:hover .lg { color: var(--text); }
.cell { transition: color .25s, background .25s; }
.cell .logo { transition: transform .3s; }
.cell:hover { background: radial-gradient(circle at 50% 50%, rgba(var(--hot), .10), transparent 70%); }
.cell:hover .logo { transform: scale(1.08); }
.cs-nav a { position: relative; }
.cs-nav a:hover { background: linear-gradient(90deg, rgba(var(--hot), .08), transparent); }
.cs-nav a.nx:hover { background: linear-gradient(270deg, rgba(var(--hot), .08), transparent); }
.cs-nav b { transition: color .25s, transform .25s; }
.cs-nav a:hover b { transform: translateX(-4px); }
.cs-nav a.nx:hover b { transform: translateX(4px); }
.foot-links a { transition: padding .25s, color .25s; }
.foot-links a:hover { padding-left: 8px; color: #fff; }
@media (prefers-reduced-motion: reduce) { .tile, .tile *, .row *, .cell *, .cs-nav * { transition: none !important; transform: none !important; } }

/* case study bullets and single-image gallery */
.cs-points { list-style: none; padding: 0; margin: 0; max-width: 760px; }
.cs-points li { position: relative; padding: 0 0 22px 28px; font-size: 19px; font-weight: 300; line-height: 1.55; color: #d9d4cc; }
.cs-points li::before { content: ""; position: absolute; left: 0; top: .72em; width: 14px; height: 1px; background: rgb(var(--hot)); }
.cs-pair.one { grid-template-columns: 1fr; }
.cs-pair.one .vis { height: auto; }
.cs-pair.one .vis img { height: auto; max-height: 720px; }
@media (max-width: 900px) { .cs-points li { font-size: 17px; } }
