:root{
  --paper:#f4efe3;
  --paper-2:#ebe2d2;
  --ink:#17130d;
  --muted:#625a4d;
  --faint:#8c8170;
  --line:rgba(23,19,13,.16);
  --line-strong:rgba(23,19,13,.28);
  --card:rgba(255,252,245,.72);
  --card-solid:#fffaf0;
  --charcoal:#1d1a16;
  --charcoal-2:#29241d;
  --gold:#b9802e;
  --blue:#2f6f8f;
  --violet:#7057a3;
  --green:#3f7b58;
  --red:#9b4b35;
  --max:1180px;
  --radius:30px;
  --shadow:0 24px 70px rgba(40,31,20,.12);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--ink);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.65;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 10% 2%,rgba(185,128,46,.13),transparent 24rem),
    radial-gradient(circle at 90% 4%,rgba(47,111,143,.12),transparent 27rem),
    linear-gradient(180deg,var(--paper) 0%,#f8f2e7 46%,var(--paper-2) 100%);
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    linear-gradient(rgba(23,19,13,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(23,19,13,.045) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.78),rgba(0,0,0,.18));
}

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

img{
  display:block;
  max-width:100%;
}

.grain{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:100;
  opacity:.11;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* HEADER */

.site-header{
  position:fixed;
  z-index:90;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(var(--max),calc(100% - 28px));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,250,240,.74);
  backdrop-filter:blur(18px);
  box-shadow:0 16px 50px rgba(43,33,20,.08);
  transition:.25s;
}

.site-header.is-scrolled{
  background:rgba(255,250,240,.94);
  border-color:var(--line-strong);
  box-shadow:0 18px 70px rgba(43,33,20,.14);
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:900;
}

.brand span{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--ink);
  color:var(--paper);
  font-size:.9rem;
}

.brand strong{
  letter-spacing:-.02em;
}

nav{
  display:flex;
  align-items:center;
  gap:6px;
}

nav a{
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  font-size:.92rem;
}

nav a:hover{
  background:rgba(23,19,13,.07);
  color:var(--ink);
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  padding:8px;
}

.nav-toggle i{
  display:block;
  width:24px;
  height:2px;
  background:var(--ink);
  border-radius:10px;
  margin:5px;
}

/* GLOBAL */

.kicker{
  margin:0 0 16px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.19em;
  font-size:.76rem;
  font-weight:950;
}

.section{
  width:min(var(--max),calc(100% - 36px));
  margin:0 auto;
  padding:96px 0;
}

.section-head{
  max-width:850px;
  margin-bottom:42px;
}

.section-head h2,
.manifesto h2,
.lab-card h2,
.contact-card h2{
  margin:0;
  line-height:1.02;
  letter-spacing:-.055em;
  font-size:clamp(2.3rem,5vw,5rem);
}

.section-head p:not(.kicker){
  margin:18px 0 0;
  color:var(--muted);
  font-size:1.08rem;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 21px;
  border-radius:999px;
  font-weight:900;
  border:1px solid var(--line-strong);
  transition:.2s;
}

.button:hover{
  transform:translateY(-2px);
}

.button.primary{
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
}

.button.ghost{
  background:rgba(255,250,240,.62);
  color:var(--ink);
}

.text-link{
  display:inline-flex;
  margin-top:18px;
  color:var(--blue);
  font-weight:900;
  border-bottom:1px solid currentColor;
}

/* HERO */

.hero{
  width:min(var(--max),calc(100% - 36px));
  min-height:100vh;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,630px) 400px;
  gap:72px;
  align-items:center;
  justify-content:center;
  padding:150px 0 92px;
}

.hero-copy{
  max-width:630px;
}

.hero h1{
  margin:0;
  max-width:610px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(3rem,5.4vw,6.15rem);
  line-height:.94;
  letter-spacing:-.07em;
  font-weight:700;
}

.lead{
  max-width:590px;
  margin:26px 0 0;
  color:var(--muted);
  font-size:clamp(1.08rem,1.5vw,1.27rem);
  line-height:1.6;
}

.hero-note{
  margin-top:24px;
  padding:20px 22px;
  border-left:4px solid var(--gold);
  background:rgba(255,250,240,.55);
  box-shadow:var(--shadow);
}

.hero-note p{
  margin:0;
  color:var(--ink);
  font-size:1.02rem;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}

.hero-portrait{
  position:relative;
  align-self:center;
}

.hero-portrait:before{
  content:"";
  position:absolute;
  inset:18px -18px -18px 18px;
  border:1px solid var(--line-strong);
  border-radius:38px;
  z-index:-1;
}

.hero-portrait img{
  height:560px;
  width:100%;
  object-fit:cover;
  object-position:center top;
  border-radius:38px;
  border:1px solid var(--line-strong);
  box-shadow:0 30px 90px rgba(43,33,20,.18);
  filter:saturate(.94) contrast(1.02);
}

.floating-note{
  position:absolute;
  left:-30px;
  right:24px;
  bottom:26px;
  padding:20px;
  border:1px solid var(--line-strong);
  border-radius:24px;
  background:rgba(255,250,240,.86);
  backdrop-filter:blur(16px);
  box-shadow:0 20px 60px rgba(43,33,20,.16);
}

.floating-note span{
  display:block;
  font-weight:950;
  color:var(--blue);
}

.floating-note p{
  margin:6px 0 0;
  color:var(--muted);
}

/* MANIFESTO */

.manifesto{
  width:min(var(--max),calc(100% - 36px));
  margin:0 auto 34px;
  padding:58px;
  border:1px solid var(--line-strong);
  border-radius:var(--radius);
  background:
    linear-gradient(135deg,rgba(255,250,240,.76),rgba(255,250,240,.38)),
    radial-gradient(circle at 0% 0%,rgba(47,111,143,.12),transparent 22rem);
  box-shadow:var(--shadow);
}

.manifesto h2{
  max-width:980px;
}

.manifesto-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:34px;
}

.manifesto-grid p{
  margin:0;
  color:var(--muted);
  font-size:1.08rem;
}

/* MAP OF THINKING */

.thinking-map{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.thinking-map:before{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  top:50%;
  height:2px;
  background:linear-gradient(90deg,var(--gold),var(--blue),var(--violet));
  opacity:.4;
  z-index:0;
}

.map-node{
  position:relative;
  z-index:1;
  min-height:300px;
  padding:26px;
  border:1px solid var(--line-strong);
  border-radius:28px;
  background:rgba(255,250,240,.84);
  box-shadow:var(--shadow);
}

.map-node span{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--ink);
  color:var(--paper);
  font-weight:950;
  font-size:.82rem;
  margin-bottom:18px;
}

.map-node h3{
  margin:0 0 10px;
  font-size:1.38rem;
  line-height:1.15;
  letter-spacing:-.035em;
}

.map-node p{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
}

.map-node a{
  display:inline-flex;
  margin-top:16px;
  color:var(--blue);
  font-weight:900;
  border-bottom:1px solid currentColor;
}

/* IDEAS */

.idea-stack{
  display:grid;
  gap:20px;
}

.idea-card{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:26px;
  padding:32px;
  border:1px solid var(--line-strong);
  border-radius:var(--radius);
  background:
    linear-gradient(180deg,rgba(255,250,240,.82),rgba(255,250,240,.46));
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.idea-card:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:5px;
  height:100%;
  background:linear-gradient(var(--gold),var(--blue),var(--violet));
}

.idea-index{
  font-family:Georgia, "Times New Roman", serif;
  font-size:4.4rem;
  font-weight:700;
  color:rgba(185,128,46,.45);
  line-height:.85;
}

.idea-card h3{
  margin:0 0 10px;
  font-size:clamp(1.55rem,3vw,2.45rem);
  line-height:1.1;
  letter-spacing:-.045em;
}

.idea-card p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
}

.idea-card ul{
  margin:18px 0 0;
  padding-left:20px;
  color:var(--muted);
}

.idea-card li{
  margin:7px 0;
}

/* COMPARISON */

.comparison{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.comparison > div{
  padding:32px;
  border-radius:var(--radius);
  border:1px solid var(--line-strong);
  background:rgba(255,250,240,.68);
  box-shadow:var(--shadow);
}

.comparison > div:last-child{
  background:var(--charcoal);
  color:var(--paper);
}

.comparison h3{
  margin:0 0 10px;
  font-size:1.45rem;
  letter-spacing:-.035em;
}

.comparison p{
  margin:0;
  color:var(--muted);
}

.comparison > div:last-child p{
  color:rgba(244,239,227,.74);
}

/* JOURNEY */

.journey-redesign{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
  gap:34px;
  align-items:start;
}

.journey-main{
  padding:36px;
  border-radius:var(--radius);
  border:1px solid var(--line-strong);
  background:
    radial-gradient(circle at 0% 0%,rgba(185,128,46,.12),transparent 22rem),
    rgba(255,250,240,.7);
  box-shadow:var(--shadow);
}

.journey-intro{
  margin:0 0 30px;
  color:var(--ink);
  font-size:1.25rem;
  line-height:1.55;
  letter-spacing:-.02em;
}

.journey-timeline{
  display:grid;
  gap:18px;
  position:relative;
}

.journey-timeline:before{
  content:"";
  position:absolute;
  left:23px;
  top:12px;
  bottom:12px;
  width:1px;
  background:linear-gradient(var(--gold),var(--blue),var(--violet));
  opacity:.55;
}

.journey-timeline article{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:18px;
  position:relative;
}

.journey-timeline article span{
  position:relative;
  z-index:1;
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--ink);
  color:var(--paper);
  font-weight:950;
  font-size:.82rem;
  box-shadow:0 0 0 8px rgba(255,250,240,.8);
}

.journey-timeline article div{
  padding:0 0 8px;
}

.journey-timeline h3{
  margin:0 0 6px;
  font-size:1.28rem;
  line-height:1.2;
  letter-spacing:-.035em;
}

.journey-timeline p{
  margin:0;
  color:var(--muted);
  font-size:1rem;
}

.journey-timeline strong{
  color:var(--ink);
}

.journey-side{
  display:grid;
  gap:18px;
  position:sticky;
  top:120px;
}

.journey-side img{
  height:310px;
  width:100%;
  object-fit:cover;
  border-radius:30px;
  border:1px solid var(--line-strong);
  box-shadow:0 24px 80px rgba(43,33,20,.18);
}

.journey-side-card{
  padding:26px;
  border-radius:28px;
  border:1px solid var(--line-strong);
  background:rgba(255,250,240,.72);
  box-shadow:var(--shadow);
}

.journey-side-card h3{
  margin:0 0 10px;
  font-size:1.45rem;
  line-height:1.15;
  letter-spacing:-.04em;
}

.journey-side-card p{
  margin:0;
  color:var(--muted);
}

.journey-side-card.accent{
  background:var(--charcoal);
  color:var(--paper);
}

.journey-side-card.accent p{
  color:rgba(244,239,227,.74);
}

/* LIBRARY */

.library-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
}

.library-card{
  min-height:280px;
  padding:30px;
  border:1px solid var(--line-strong);
  border-radius:var(--radius);
  background:rgba(255,250,240,.72);
  box-shadow:var(--shadow);
}

.library-card.feature{
  grid-row:span 2;
  background:
    linear-gradient(135deg,rgba(29,26,22,.96),rgba(41,36,29,.94)),
    radial-gradient(circle at 0% 0%,rgba(47,111,143,.22),transparent 20rem);
  color:var(--paper);
}

.library-type{
  margin:0 0 12px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.72rem;
  font-weight:950;
}

.library-card h3{
  margin:0 0 12px;
  font-size:clamp(1.4rem,2.6vw,2.3rem);
  line-height:1.08;
  letter-spacing:-.045em;
}

.library-card p{
  margin:0;
  color:var(--muted);
}

.library-card.feature p{
  color:rgba(244,239,227,.74);
}

.library-card a{
  display:inline-flex;
  margin-top:22px;
  color:var(--blue);
  font-weight:950;
  border-bottom:1px solid currentColor;
}

.library-card.feature a{
  color:var(--gold);
}

.muted-card{
  background:rgba(255,250,240,.42);
}

/* BOOKS */

.book-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.book{
  overflow:hidden;
  border:1px solid var(--line-strong);
  border-radius:var(--radius);
  background:rgba(255,250,240,.68);
  box-shadow:var(--shadow);
}

.book-cover{
  min-height:360px;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  color:var(--paper);
}

.book-cover:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 20%,rgba(255,255,255,.24),transparent 12rem),
    linear-gradient(135deg,rgba(0,0,0,.03),rgba(0,0,0,.34));
}

.book-cover span,
.book-cover small{
  position:relative;
}

.book-cover span{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(2.2rem,5vw,4rem);
  font-weight:700;
  line-height:.95;
  letter-spacing:-.06em;
}

.book-cover small{
  color:rgba(255,255,255,.78);
  font-weight:800;
}

.bpmn{
  background:linear-gradient(135deg,#17315a,#0b6a88);
}

.archi{
  background:linear-gradient(135deg,#42245d,#1c4962);
}

.book-body{
  padding:30px;
}

.book-body h3{
  margin:0 0 10px;
  font-size:1.6rem;
  letter-spacing:-.035em;
}

.book-body p{
  margin:0;
  color:var(--muted);
}

.book-body ul{
  margin:18px 0 0;
  padding-left:20px;
  color:var(--muted);
}

.book-body li{
  margin:7px 0;
}

.book-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.book-actions a{
  display:inline-flex;
  padding:10px 14px;
  border:1px solid var(--line-strong);
  border-radius:999px;
  font-weight:900;
  color:var(--ink);
  background:rgba(255,250,240,.58);
}

/* PRIOSTACK */

.lab-card{
  display:flex;
  justify-content:space-between;
  gap:34px;
  align-items:center;
  padding:46px;
  border-radius:var(--radius);
  border:1px solid var(--line-strong);
  background:
    linear-gradient(135deg,rgba(255,250,240,.82),rgba(255,250,240,.44)),
    radial-gradient(circle at 0% 0%,rgba(185,128,46,.16),transparent 22rem);
  box-shadow:var(--shadow);
}

.lab-card h2{
  max-width:780px;
}

.lab-card p:not(.kicker){
  max-width:740px;
  color:var(--muted);
}

/* CONTACT */

.contact-card{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:34px;
  align-items:center;
  padding:34px;
  border-radius:var(--radius);
  border:1px solid var(--line-strong);
  background:var(--charcoal);
  color:var(--paper);
  box-shadow:0 24px 80px rgba(43,33,20,.2);
}

.contact-card img{
  height:440px;
  width:100%;
  object-fit:cover;
  object-position:center top;
  border-radius:28px;
  border:1px solid rgba(244,239,227,.18);
}

.contact-card h2{
  color:var(--paper);
}

.contact-card p:not(.kicker){
  color:rgba(244,239,227,.74);
}

.contact-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.contact-links a{
  padding:12px 16px;
  border:1px solid rgba(244,239,227,.2);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  font-weight:900;
}

/* FOOTER */

footer{
  width:min(var(--max),calc(100% - 36px));
  margin:0 auto;
  padding:34px 0 56px;
  border-top:1px solid var(--line-strong);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
}

footer a{
  font-weight:900;
}

/* ANIMATION */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .72s ease,transform .72s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

.delay-1{
  transition-delay:.14s;
}

/* RESPONSIVE */

@media(max-width:1100px){
  .hero{
    grid-template-columns:minmax(0,560px) 340px;
    gap:42px;
  }

  .hero h1{
    font-size:clamp(2.8rem,5vw,4.8rem);
  }

  .hero-portrait img{
    height:500px;
  }

  .thinking-map{
    grid-template-columns:repeat(2,1fr);
  }

  .thinking-map:before{
    display:none;
  }
}

@media(max-width:920px){
  .hero,
  .manifesto-grid,
  .comparison,
  .journey-redesign,
  .library-grid,
  .book-grid,
  .contact-card{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:130px;
  }

  .hero-copy{
    max-width:100%;
  }

  .hero h1{
    max-width:850px;
    font-size:clamp(3rem,10vw,5.2rem);
  }

  .hero-portrait{
    max-width:520px;
  }

  .floating-note{
    position:static;
    margin-top:14px;
  }

  .idea-card{
    grid-template-columns:1fr;
  }

  .thinking-map{
    grid-template-columns:1fr;
  }

  .map-node{
    min-height:auto;
  }

  .journey-side{
    position:static;
  }

  .library-card.feature{
    grid-row:auto;
  }

  .lab-card{
    display:block;
  }

  .lab-card .button{
    margin-top:18px;
  }

  .contact-card img{
    height:360px;
    max-width:360px;
  }

  nav{
    display:none;
    position:absolute;
    top:66px;
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    padding:16px;
    border:1px solid var(--line-strong);
    border-radius:28px;
    background:rgba(255,250,240,.96);
    box-shadow:var(--shadow);
  }

  nav.is-open{
    display:flex;
  }

  .nav-toggle{
    display:block;
  }
}

@media(max-width:560px){
  .site-header{
    top:10px;
    width:calc(100% - 18px);
  }

  .brand strong{
    display:none;
  }

  .hero{
    width:calc(100% - 28px);
    padding-bottom:72px;
  }

  .hero h1{
    font-size:clamp(2.85rem,14vw,4.25rem);
  }

  .lead{
    font-size:1.02rem;
  }

  .section,
  .manifesto{
    width:calc(100% - 28px);
  }

  .section{
    padding:74px 0;
  }

  .manifesto{
    padding:28px;
  }

  .hero-portrait img{
    height:520px;
  }

  .hero-portrait:before{
    display:none;
  }

  .idea-card,
  .journey-main,
  .journey-side-card,
  .library-card,
  .lab-card,
  .contact-card{
    padding:24px;
  }

  .journey-intro{
    font-size:1.1rem;
  }

  .journey-timeline article{
    grid-template-columns:46px 1fr;
    gap:14px;
  }

  .journey-timeline article span{
    width:42px;
    height:42px;
  }

  .journey-timeline:before{
    left:20px;
  }

  .journey-side img{
    height:260px;
  }

  .book-cover{
    min-height:260px;
  }

  footer{
    flex-direction:column;
  }

  .button,
  .contact-links a,
  .book-actions a{
    width:100%;
    text-align:center;
    justify-content:center;
  }

  .hero-actions{
    width:100%;
  }
}
/* GENESIS */

.genesis-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
  gap:30px;
  align-items:start;
}

.genesis-copy{
  padding:36px;
  border-radius:var(--radius);
  border:1px solid var(--line-strong);
  background:
    radial-gradient(circle at 0% 0%,rgba(185,128,46,.12),transparent 22rem),
    rgba(255,250,240,.7);
  box-shadow:var(--shadow);
}

.genesis-copy p{
  margin:0 0 20px;
  color:var(--muted);
  font-size:1.08rem;
}

.genesis-copy p:last-child{
  margin-bottom:0;
}

.genesis-copy strong{
  color:var(--ink);
}

.genesis-artifact{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--line-strong);
  background:rgba(255,250,240,.74);
  box-shadow:var(--shadow);
}

.genesis-artifact img{
  width:100%;
  border-radius:22px;
  border:1px solid var(--line);
  background:#f8e5ba;
}

.genesis-artifact p{
  margin:16px 4px 2px;
  color:var(--muted);
  font-size:.98rem;
}

/* ECOSYSTEM / LABS */

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

.lab-tile{
  min-height:330px;
  padding:30px;
  border-radius:var(--radius);
  border:1px solid var(--line-strong);
  background:rgba(255,250,240,.72);
  box-shadow:var(--shadow);
}

.lab-tile:nth-child(1){
  background:
    linear-gradient(180deg,rgba(255,250,240,.86),rgba(255,250,240,.52)),
    radial-gradient(circle at 0% 0%,rgba(185,128,46,.18),transparent 18rem);
}

.lab-tile:nth-child(2){
  background:var(--charcoal);
  color:var(--paper);
}

.lab-tile:nth-child(2) p:not(.library-type){
  color:rgba(244,239,227,.74);
}

.lab-tile:nth-child(3){
  background:
    linear-gradient(180deg,rgba(255,250,240,.86),rgba(255,250,240,.52)),
    radial-gradient(circle at 0% 0%,rgba(47,111,143,.16),transparent 18rem);
}

.lab-tile h3{
  margin:0 0 12px;
  font-size:clamp(1.7rem,3vw,2.6rem);
  line-height:1.05;
  letter-spacing:-.05em;
}

.lab-tile p{
  margin:0;
  color:var(--muted);
}

.lab-tile a{
  display:inline-flex;
  margin-top:22px;
  color:var(--blue);
  font-weight:950;
  border-bottom:1px solid currentColor;
}

.lab-tile:nth-child(2) a{
  color:var(--gold);
}

/* UPDATED RESPONSIVE RULES */

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

  .lab-tile{
    min-height:auto;
  }
}

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

@media(max-width:560px){
  .genesis-copy,
  .genesis-artifact,
  .lab-tile{
    padding:24px;
  }
}
